| 66 | // --------------------------------------------------------------------------- |
| 67 | |
| 68 | TEST(operation, geogCRS_to_geogCRS) { |
| 69 | |
| 70 | auto op = CoordinateOperationFactory::create()->createOperation( |
| 71 | GeographicCRS::EPSG_4807, GeographicCRS::EPSG_4326); |
| 72 | ASSERT_TRUE(op != nullptr); |
| 73 | EXPECT_EQ( |
| 74 | op->exportToPROJString(PROJStringFormatter::create().get()), |
| 75 | "+proj=pipeline +step +proj=axisswap +order=2,1 +step " |
| 76 | "+proj=unitconvert +xy_in=grad +xy_out=rad +step +inv +proj=longlat " |
| 77 | "+ellps=clrk80ign +pm=paris +step +proj=unitconvert +xy_in=rad " |
| 78 | "+xy_out=deg +step +proj=axisswap +order=2,1"); |
| 79 | } |
| 80 | |
| 81 | // --------------------------------------------------------------------------- |
| 82 |
nothing calls this directly
no test coverage detected