diff options
| author | Nyall Dawson <nyall.dawson@gmail.com> | 2021-11-24 11:50:55 +1000 |
|---|---|---|
| committer | Nyall Dawson <nyall.dawson@gmail.com> | 2022-01-24 11:41:34 +1000 |
| commit | b258bedfdfd0ff31d96c60d55e66452fd49cb4aa (patch) | |
| tree | 8de3b01e79dab922ebf0a6331f42ddf670e46522 /scripts | |
| parent | 7e4ef8211a21f7267fbb7cb43ce7ffb35b249a67 (diff) | |
| download | PROJ-b258bedfdfd0ff31d96c60d55e66452fd49cb4aa.tar.gz PROJ-b258bedfdfd0ff31d96c60d55e66452fd49cb4aa.zip | |
Add some additional method mapping during ESRI db import
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/build_db_from_esri.py | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/scripts/build_db_from_esri.py b/scripts/build_db_from_esri.py index 4a86ea1a..75b64fe0 100755 --- a/scripts/build_db_from_esri.py +++ b/scripts/build_db_from_esri.py @@ -1072,7 +1072,28 @@ MAPPED_PROJCS: Dict[str, ConversionMapping] = { 8806: 'False_Easting', 8807: 'False_Northing', } - ) + ), + 'Mercator': ConversionMapping( + epsg_code='9805', + epsg_name='Mercator (variant B)', + param_mapping={ + 8823: 'Standard_Parallel_1', + 8802: 'Central_Meridian', + 8806: 'False_Easting', + 8807: 'False_Northing', + } + ), + 'Polyconic': ConversionMapping( + epsg_code='9818', + epsg_name='American Polyconic', + param_mapping={ + 8801: 'Latitude_Of_Origin', + 8802: 'Central_Meridian', + 8806: 'False_Easting', + 8807: 'False_Northing', + } + ), + } MAPPED_PROJCS_WITH_EXTRA_LOGIC: Dict[str, Dict[str, ConversionMapping]] = { |
