diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-04-19 13:27:25 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-04-19 14:42:16 +0200 |
| commit | ba393af3295e9f13b55d6b5efd23a6a8fdbd32bd (patch) | |
| tree | 574a6bcc11162c8c6e14dda91b2209aff8067d12 /include | |
| parent | bc79cfbfe1bc56a60b72042f498c95d46420c692 (diff) | |
| download | PROJ-ba393af3295e9f13b55d6b5efd23a6a8fdbd32bd.tar.gz PROJ-ba393af3295e9f13b55d6b5efd23a6a8fdbd32bd.zip | |
Ingestion of WKT1_GDAL: correctly map 'Cylindrical_Equal_Area'
Map it to 'Lambert Cylindrical Equal Area' / EPSG:9835 non-spherical
method, when the ellipsoid is not a sphere. And rationalize the
handling of this for other methods with spherical vs non-spherical formulations
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/internal/esri_projection_mappings.hpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/proj/internal/esri_projection_mappings.hpp b/include/proj/internal/esri_projection_mappings.hpp index 707f9c47..fdd3ef30 100644 --- a/include/proj/internal/esri_projection_mappings.hpp +++ b/include/proj/internal/esri_projection_mappings.hpp @@ -898,9 +898,8 @@ static const ESRIMethodMapping esriMappings[] = { EPSG_NAME_METHOD_LAMBERT_AZIMUTHAL_EQUAL_AREA, EPSG_CODE_METHOD_LAMBERT_AZIMUTHAL_EQUAL_AREA, paramsESRI_Lambert_Azimuthal_Equal_Area}, - {"Cylindrical_Equal_Area", - EPSG_NAME_METHOD_LAMBERT_CYLINDRICAL_EQUAL_AREA_SPHERICAL, - EPSG_CODE_METHOD_LAMBERT_CYLINDRICAL_EQUAL_AREA_SPHERICAL, + {"Cylindrical_Equal_Area", EPSG_NAME_METHOD_LAMBERT_CYLINDRICAL_EQUAL_AREA, + EPSG_CODE_METHOD_LAMBERT_CYLINDRICAL_EQUAL_AREA, paramsESRI_Cylindrical_Equal_Area}, {"Hotine_Oblique_Mercator_Two_Point_Center", PROJ_WKT2_NAME_METHOD_HOTINE_OBLIQUE_MERCATOR_TWO_POINT_NATURAL_ORIGIN, 0, |
