diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2018-12-13 17:17:36 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2018-12-13 17:17:36 +0100 |
| commit | ed14754a6b3ec488ab2994a43d3533763627ba70 (patch) | |
| tree | 08fdfbde41b225f1976560256261a5ba2b24ca9f /test/unit/test_c_api.cpp | |
| parent | 7ce68ff69084faece5ee3ef1be4b5bbbf3e30de3 (diff) | |
| download | PROJ-ed14754a6b3ec488ab2994a43d3533763627ba70.tar.gz PROJ-ed14754a6b3ec488ab2994a43d3533763627ba70.zip | |
imort from WKT1: set correct CS for Transverse Mercator South Oriented
Diffstat (limited to 'test/unit/test_c_api.cpp')
| -rw-r--r-- | test/unit/test_c_api.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/unit/test_c_api.cpp b/test/unit/test_c_api.cpp index d53f38fd..f1cf3417 100644 --- a/test/unit/test_c_api.cpp +++ b/test/unit/test_c_api.cpp @@ -2695,6 +2695,12 @@ TEST_F(CApi, proj_obj_create_cartesian_2D_cs) { ObjectKeeper keeper_cs(cs); ASSERT_NE(cs, nullptr); } + { + auto cs = proj_obj_create_cartesian_2D_cs( + m_ctxt, PJ_CART2D_WESTING_SOUTHING, nullptr, 0); + ObjectKeeper keeper_cs(cs); + ASSERT_NE(cs, nullptr); + } } } // namespace |
