diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-12-27 22:16:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-27 22:16:10 +0100 |
| commit | 123011447a2d7d25041cc3e466408a0d81bb4d3b (patch) | |
| tree | 450cb1f8db7247c224fc309465cea0f22b045bc8 /test/unit/test_io.cpp | |
| parent | 81ec8c0b58d66333fccd3703dab62a11132a0331 (diff) | |
| parent | 6bb14fa874562eb4879a3b80b51b22cd2add058e (diff) | |
| download | PROJ-123011447a2d7d25041cc3e466408a0d81bb4d3b.tar.gz PROJ-123011447a2d7d25041cc3e466408a0d81bb4d3b.zip | |
Merge pull request #1210 from rouault/remove_proj_defs_dat
Remove proj_def.dat (#201)
Diffstat (limited to 'test/unit/test_io.cpp')
| -rw-r--r-- | test/unit/test_io.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/unit/test_io.cpp b/test/unit/test_io.cpp index 466ce80b..5ea92fd0 100644 --- a/test/unit/test_io.cpp +++ b/test/unit/test_io.cpp @@ -7967,12 +7967,14 @@ TEST(io, projparse_init) { { auto obj = createFromUserInput( - "proj=pipeline step init=epsg:4326 step proj=longlat", dbContext, + "proj=pipeline step init=epsg:4326 step proj=longlat ellps=WGS84", + dbContext, true); auto co = nn_dynamic_pointer_cast<CoordinateOperation>(obj); ASSERT_TRUE(co != nullptr); EXPECT_EQ(co->exportToPROJString(PROJStringFormatter::create().get()), - "+proj=pipeline +step +init=epsg:4326 +step +proj=longlat"); + "+proj=pipeline +step +init=epsg:4326 +step +proj=longlat " + "+ellps=WGS84"); } { |
