diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-09-30 13:37:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-30 13:37:40 +0200 |
| commit | 1cd25bb01d7a703b9556abdf57035ee0424faa26 (patch) | |
| tree | 0b34f0a8f5517708baa0107d8210c77c00dfecc8 /scripts | |
| parent | 48c3a9a225b197d2462c4c03b18088fcc4f68c62 (diff) | |
| parent | 016e8e60747a2def2dfd7ffc7f6ad2e6aa8ba009 (diff) | |
| download | PROJ-1cd25bb01d7a703b9556abdf57035ee0424faa26.tar.gz PROJ-1cd25bb01d7a703b9556abdf57035ee0424faa26.zip | |
Merge pull request #2361 from rouault/ortho_ellipsoidal
Implement ellipsoidal formulation of +proj=ortho (fixes #397)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/build_esri_projection_mapping.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/build_esri_projection_mapping.py b/scripts/build_esri_projection_mapping.py index 5206e191..12eeb852 100644 --- a/scripts/build_esri_projection_mapping.py +++ b/scripts/build_esri_projection_mapping.py @@ -436,11 +436,23 @@ config_str = """ - Longitude_Of_Origin: EPSG_NAME_PARAMETER_LONGITUDE_OF_NATURAL_ORIGIN - Latitude_Of_Origin: EPSG_NAME_PARAMETER_LATITUDE_OF_NATURAL_ORIGIN +# ESRI's Orthographic is a spherical-only formulation. The ellipsoidal capable +# name is Local. See below - Orthographic: + WKT2_name: PROJ_WKT2_NAME_ORTHOGRAPHIC_SPHERICAL + Params: + - False_Easting: EPSG_NAME_PARAMETER_FALSE_EASTING + - False_Northing: EPSG_NAME_PARAMETER_FALSE_NORTHING + - Longitude_Of_Center: EPSG_NAME_PARAMETER_LONGITUDE_OF_NATURAL_ORIGIN + - Latitude_Of_Center: EPSG_NAME_PARAMETER_LATITUDE_OF_NATURAL_ORIGIN + +- Local: WKT2_name: EPSG_NAME_METHOD_ORTHOGRAPHIC Params: - False_Easting: EPSG_NAME_PARAMETER_FALSE_EASTING - False_Northing: EPSG_NAME_PARAMETER_FALSE_NORTHING + - Scale_Factor: 1.0 + - Azimuth: 0.0 - Longitude_Of_Center: EPSG_NAME_PARAMETER_LONGITUDE_OF_NATURAL_ORIGIN - Latitude_Of_Center: EPSG_NAME_PARAMETER_LATITUDE_OF_NATURAL_ORIGIN |
