diff options
| author | Nyall Dawson <nyall.dawson@gmail.com> | 2020-02-21 09:45:47 +1000 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2020-02-21 11:26:55 +0100 |
| commit | 6aedfb204a2ff09998dae6bd3731a1f18f85ef14 (patch) | |
| tree | fe16bce0567c1101582e8a146f2e804c3fd42d40 /scripts | |
| parent | 0bc2ae258dc928052719cc85b9f01957e4541fc5 (diff) | |
| download | PROJ-6aedfb204a2ff09998dae6bd3731a1f18f85ef14.tar.gz PROJ-6aedfb204a2ff09998dae6bd3731a1f18f85ef14.zip | |
Add support for creating coordinates operations using Compact Miller,
Times and Vertical Near Side Perspective projections
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/build_esri_projection_mapping.py | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/scripts/build_esri_projection_mapping.py b/scripts/build_esri_projection_mapping.py index 9a3c90b6..8d16ca24 100644 --- a/scripts/build_esri_projection_mapping.py +++ b/scripts/build_esri_projection_mapping.py @@ -459,9 +459,19 @@ config_str = """ - Longitude_Of_Center: EPSG_NAME_PARAMETER_LONGITUDE_OF_NATURAL_ORIGIN - Latitude_Of_Center: EPSG_NAME_PARAMETER_LATITUDE_OF_NATURAL_ORIGIN -# Times: not handled, but present in PROJ +- Times: + WKT2_name: PROJ_WKT2_NAME_METHOD_TIMES + Params: + - False_Easting: EPSG_NAME_PARAMETER_FALSE_EASTING + - False_Northing: EPSG_NAME_PARAMETER_FALSE_NORTHING + - Central_Meridian: EPSG_NAME_PARAMETER_LONGITUDE_OF_NATURAL_ORIGIN -# Vertical_Near_Side_Perspective: not handled, but present in PROJ +- Vertical_Near_Side_Perspective: + WKT2_name: PROJ_WKT2_NAME_METHOD_VERTICAL_NEAR_SIDE_PERSPECTIVE + Params: + - False_Easting: EPSG_NAME_PARAMETER_FALSE_EASTING + - False_Northing: EPSG_NAME_PARAMETER_FALSE_NORTHING + - Central_Meridian: EPSG_NAME_PARAMETER_LONGITUDE_OF_NATURAL_ORIGIN - Stereographic_North_Pole: WKT2_name: EPSG_NAME_METHOD_POLAR_STEREOGRAPHIC_VARIANT_B @@ -614,7 +624,12 @@ config_str = """ - False_Northing: EPSG_NAME_PARAMETER_FALSE_NORTHING - Central_Meridian: EPSG_NAME_PARAMETER_LONGITUDE_OF_NATURAL_ORIGIN -# Compact_Miller: not handled +- Compact_Miller: + WKT2_name: PROJ_WKT2_NAME_METHOD_COMPACT_MILLER + Params: + - False_Easting: EPSG_NAME_PARAMETER_FALSE_EASTING + - False_Northing: EPSG_NAME_PARAMETER_FALSE_NORTHING + - Central_Meridian: EPSG_NAME_PARAMETER_LONGITUDE_OF_NATURAL_ORIGIN # Transverse_Mercator_NGA_2014: not handled |
