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:31:07 +0100 |
| commit | 0139b8580b5f858d7308b85dca28f0c9784bd509 (patch) | |
| tree | e198f57cfc12c882995c6244551eb009b951751a /scripts | |
| parent | ae01170481c2893c85a078b2049537952c5bf3d1 (diff) | |
| download | PROJ-0139b8580b5f858d7308b85dca28f0c9784bd509.tar.gz PROJ-0139b8580b5f858d7308b85dca28f0c9784bd509.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 |
