-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for CRS described as PROJ pipeline #10537
Comments
This is just a usage issue. You cannot use a pipeline as a CRS. A pipeline expresses a coordinate operation which is not a CRS. You need to use the -ct switch to specify a custom pipeline. Something like:
|
@rouault Thanks, that command does generate a test.tiff that looks right, so it might work as I intended (the difference is hard to tell from without the
This is confusing to me, because in ISO19111, CRSes can include all types of transformation. And these OGC:1534 and OGC:153456 CRSes which we want to define require this extra If I understand correctly, the The problem with that is that currently, the Then if accessing the So that I'm really confused how such scenarios are intended to work. |
Perhaps a solution would be to build the projected CRS on top of a geodetic CRS that uses geocentric latitudes, like done for some IAU CRS, like
which relies on
but I'm not sure that would add the +proj=geoc step the way you'd like. You're on the edge of what the modelling allows to do |
Feature description
Currently it is not possible to use
gdalwarp
(and possibly alsoogr2ogr
and QGIS) to transform to/from a CRS described by a PROJ string using a pipeline.For example,
results in:
This is preventing the use of an ISEA CRS which I believe currently can only be accurately described using this pipeline, since
+proj=isea
does not currently automatically apply the expected geodetic -> geocentric conversion (separate issue to clarify whether that should always be done automatically).Another use case is for the 5x6 ISEA space, where we want to perform an additional
+proj=affine
step.Additional context
See also OSGeo/PROJ#4211
The text was updated successfully, but these errors were encountered: