diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2021-12-08 17:41:48 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2021-12-08 17:41:48 +0100 |
| commit | d285111ffb46de0cf482f5847d003b1b8ba201ca (patch) | |
| tree | c660cb3038712ff087c039ce19d0de715ccbd099 /src/iso19111/operation/oputils.cpp | |
| parent | ea719555f86399325b6d90840f8b3d4508b6e9bc (diff) | |
| download | PROJ-d285111ffb46de0cf482f5847d003b1b8ba201ca.tar.gz PROJ-d285111ffb46de0cf482f5847d003b1b8ba201ca.zip | |
createOperations(): improvement for "NAD83(CSRS) + CGVD28 height" to "NAD83(CSRS) + CGVD2013(CGG2013) height"
That transformation involves doing CGVD28 height to CGVD2013(CGG2013)
height by doing:
- CGVD28 height to NAD83(CSRS): EPSG registered operation
- NAD83(CSRS) to CGVD2013(CGG2013) height by doing:
* NAD83(CSRS) to NAD83(CSRS)v6: ballpark
* NAD83(CSRS)v6 to CGVD2013(CGG2013): EPSG registered operation
Diffstat (limited to 'src/iso19111/operation/oputils.cpp')
| -rw-r--r-- | src/iso19111/operation/oputils.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/iso19111/operation/oputils.cpp b/src/iso19111/operation/oputils.cpp index b5834edf..5efbf07f 100644 --- a/src/iso19111/operation/oputils.cpp +++ b/src/iso19111/operation/oputils.cpp @@ -61,10 +61,10 @@ const char *NULL_GEOGRAPHIC_OFFSET = "Null geographic offset"; const char *NULL_GEOCENTRIC_TRANSLATION = "Null geocentric translation"; const char *BALLPARK_GEOGRAPHIC_OFFSET = "Ballpark geographic offset"; const char *BALLPARK_VERTICAL_TRANSFORMATION = - " (ballpark vertical transformation)"; + "ballpark vertical transformation"; const char *BALLPARK_VERTICAL_TRANSFORMATION_NO_ELLIPSOID_VERT_HEIGHT = - " (ballpark vertical transformation, without ellipsoid height to vertical " - "height correction)"; + "ballpark vertical transformation, without ellipsoid height to vertical " + "height correction"; // --------------------------------------------------------------------------- |
