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 16:11:33 +0200 |
| commit | d9934eb07fb38ad57f40eb6c308fcbbf0f713d86 (patch) | |
| tree | fb74a190ceaf05dc763bec79ce656137074eab3f /include | |
| parent | d032e0d957e020ede28832b3d18c15d238355e72 (diff) | |
| download | PROJ-d9934eb07fb38ad57f40eb6c308fcbbf0f713d86.tar.gz PROJ-d9934eb07fb38ad57f40eb6c308fcbbf0f713d86.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 3c3e964a..6c7d8357 100644 --- a/include/proj/internal/esri_projection_mappings.hpp +++ b/include/proj/internal/esri_projection_mappings.hpp @@ -840,9 +840,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, |
