diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-04-14 23:58:51 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-04-15 00:06:48 +0200 |
| commit | 5078ce353450fc8746f508e1285d047d0ed6c31e (patch) | |
| tree | 46586072f55388151dd00b83e428897c06078ca8 /test | |
| parent | d462db642c59f58950d1ba26d2998263c10c4ee8 (diff) | |
| download | PROJ-5078ce353450fc8746f508e1285d047d0ed6c31e.tar.gz PROJ-5078ce353450fc8746f508e1285d047d0ed6c31e.zip | |
createOperations(): do not remove ballpark transformation if there are only grid based operations, even if they cover the whole area of use (fixes #2143)
Diffstat (limited to 'test')
| -rw-r--r-- | test/unit/test_operation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/test_operation.cpp b/test/unit/test_operation.cpp index d124efa6..d0701a30 100644 --- a/test/unit/test_operation.cpp +++ b/test/unit/test_operation.cpp @@ -5109,7 +5109,7 @@ TEST(operation, geogCRS_to_geogCRS_init_IGNF_to_init_IGNF_context) { auto ctxt = CoordinateOperationContext::create(authFactory, nullptr, 0.0); auto list = CoordinateOperationFactory::create()->createOperations( NN_CHECK_ASSERT(sourceCRS), NN_CHECK_ASSERT(targetCRS), ctxt); - ASSERT_EQ(list.size(), 1U); + ASSERT_EQ(list.size(), 2U); EXPECT_EQ(list[0]->nameStr(), "NOUVELLE TRIANGULATION DE LA FRANCE (NTF) vers RGF93 (ETRS89)"); @@ -6552,7 +6552,7 @@ TEST(operation, ETRS89_3D_to_proj_string_with_geoidgrids_nadgrids) { auto ctxt = CoordinateOperationContext::create(authFactory, nullptr, 0.0); auto list = CoordinateOperationFactory::create()->createOperations( src, NN_NO_CHECK(dst), ctxt); - ASSERT_EQ(list.size(), 1U); + ASSERT_EQ(list.size(), 2U); EXPECT_EQ(list[0]->exportToPROJString(PROJStringFormatter::create().get()), "+proj=pipeline " "+step +proj=axisswap +order=2,1 " |
