diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-03-04 14:35:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-04 14:35:18 +0100 |
| commit | c1fbdd88b3898279abc6a834254df15070fca39b (patch) | |
| tree | cc4b3e0738913763c0a4ab58ded6d507f8c4a51f /test/unit/test_io.cpp | |
| parent | 72f5bb21ae35999b4994766e47b81900e8826c33 (diff) | |
| parent | cb64ce26221811bc19c362e0950dc2b057e5b757 (diff) | |
| download | PROJ-c1fbdd88b3898279abc6a834254df15070fca39b.tar.gz PROJ-c1fbdd88b3898279abc6a834254df15070fca39b.zip | |
Merge pull request #1986 from nyalldawson/behrman
Map the Behrman projection to cae when converting ESRI CRSes
Diffstat (limited to 'test/unit/test_io.cpp')
| -rw-r--r-- | test/unit/test_io.cpp | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/test/unit/test_io.cpp b/test/unit/test_io.cpp index 95153a8a..884b52f2 100644 --- a/test/unit/test_io.cpp +++ b/test/unit/test_io.cpp @@ -4360,6 +4360,70 @@ static const struct { {"False northing", 2}, }}, + {"Patterson", + {{"False_Easting", 1}, {"False_Northing", 2}, {"Central_Meridian", 3}}, + "Patterson", + { + {"Longitude of natural origin", 3}, + {"False easting", 1}, + {"False northing", 2}, + }}, + + {"Natural_Earth", + {{"False_Easting", 1}, {"False_Northing", 2}, {"Central_Meridian", 3}}, + "Natural Earth", + { + {"Longitude of natural origin", 3}, + {"False easting", 1}, + {"False northing", 2}, + }}, + + {"Natural_Earth_II", + {{"False_Easting", 1}, {"False_Northing", 2}, {"Central_Meridian", 3}}, + "Natural Earth II", + { + {"Longitude of natural origin", 3}, + {"False easting", 1}, + {"False northing", 2}, + }}, + + {"Compact_Miller", + {{"False_Easting", 1}, {"False_Northing", 2}, {"Central_Meridian", 3}}, + "Compact Miller", + { + {"Longitude of natural origin", 3}, + {"False easting", 1}, + {"False northing", 2}, + }}, + + {"Times", + {{"False_Easting", 1}, {"False_Northing", 2}, {"Central_Meridian", 3}}, + "Times", + { + {"Longitude of natural origin", 3}, + {"False easting", 1}, + {"False northing", 2}, + }}, + + {"Flat_Polar_Quartic", + {{"False_Easting", 1}, {"False_Northing", 2}, {"Central_Meridian", 3}}, + "Flat Polar Quartic", + { + {"Longitude of natural origin", 3}, + {"False easting", 1}, + {"False northing", 2}, + }}, + + {"Behrmann", + {{"False_Easting", 1}, {"False_Northing", 2}, {"Central_Meridian", 3}}, + "Lambert Cylindrical Equal Area (Spherical)", + { + {"Latitude of 1st standard parallel", 30}, + {"Longitude of natural origin", 3}, + {"False easting", 1}, + {"False northing", 2}, + }}, + {"Winkel_I", { {"False_Easting", 1}, |
