diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-08-13 18:06:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-13 18:06:22 +0200 |
| commit | b8c198897da30e59d41f7b9ccb66bc1b0079e5d8 (patch) | |
| tree | 043294bf305c46986a0fc3e268efda0c264455d0 /include | |
| parent | 9701afb98c93fd575982265428af53849ee213b6 (diff) | |
| download | PROJ-b8c198897da30e59d41f7b9ccb66bc1b0079e5d8.tar.gz PROJ-b8c198897da30e59d41f7b9ccb66bc1b0079e5d8.zip | |
WKT importer: tune for Oracle WKT and 'Lambert Conformal Conic' (#2321)
Fixes https://github.com/qgis/QGIS/issues/37898
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/internal/coordinateoperation_constants.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/proj/internal/coordinateoperation_constants.hpp b/include/proj/internal/coordinateoperation_constants.hpp index 53213424..79b47a6a 100644 --- a/include/proj/internal/coordinateoperation_constants.hpp +++ b/include/proj/internal/coordinateoperation_constants.hpp @@ -560,6 +560,11 @@ static const MethodMapping projectionMethodMappings[] = { EPSG_CODE_METHOD_LAMBERT_CONIC_CONFORMAL_2SP, "Lambert_Conformal_Conic_2SP", "lcc", nullptr, paramsLCC2SP}, + // Oracle WKT + {EPSG_NAME_METHOD_LAMBERT_CONIC_CONFORMAL_2SP, + EPSG_CODE_METHOD_LAMBERT_CONIC_CONFORMAL_2SP, "Lambert Conformal Conic", + "lcc", nullptr, paramsLCC2SP}, + {EPSG_NAME_METHOD_LAMBERT_CONIC_CONFORMAL_2SP_MICHIGAN, EPSG_CODE_METHOD_LAMBERT_CONIC_CONFORMAL_2SP_MICHIGAN, nullptr, // no mapping to WKT1_GDAL |
