diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2021-08-27 12:52:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-27 12:52:25 +0200 |
| commit | 2a3384e9b2b45f4ad37974607f2a0f05f2fc67c9 (patch) | |
| tree | a1c820ea23381273a56f51eabcf2e1f957b75c26 /test/unit/test_io.cpp | |
| parent | db5a6e683bdd80dedc7140b8f8af65e586b72e02 (diff) | |
| parent | 1e5bd1ac696186d985a418c61bb5a68951b3e0a4 (diff) | |
| download | PROJ-2a3384e9b2b45f4ad37974607f2a0f05f2fc67c9.tar.gz PROJ-2a3384e9b2b45f4ad37974607f2a0f05f2fc67c9.zip | |
Merge pull request #2823 from rouault/fix_8353
WKT importer: better detect ESRI WKT
Diffstat (limited to 'test/unit/test_io.cpp')
| -rw-r--r-- | test/unit/test_io.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/test_io.cpp b/test/unit/test_io.cpp index 0235a0c1..a899482e 100644 --- a/test/unit/test_io.cpp +++ b/test/unit/test_io.cpp @@ -5929,8 +5929,8 @@ static const struct { TEST(wkt_parse, esri_projcs) { for (const auto &projDef : esriProjDefs) { - std::string wkt("PROJCS[\"unnamed\",GEOGCS[\"GCS_WGS_1984\"," - "DATUM[\"D_WGS_1984\",SPHEROID[\"WGS_1984\"," + std::string wkt("PROJCS[\"unnamed\",GEOGCS[\"unnamed\"," + "DATUM[\"unnamed\",SPHEROID[\"unnamed\"," "6378137.0,298.257223563]],PRIMEM[\"Greenwich\",0.0]," "UNIT[\"Degree\",0.0174532925199433]],PROJECTION[\""); wkt += projDef.esriProjectionName; |
