diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-05-15 00:40:25 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-05-15 00:40:25 +0200 |
| commit | a2f8fd1a21da1352a39cc56db2bb39613fc29091 (patch) | |
| tree | c956aeaaa622f874a5152c4fa95547867728d972 /include | |
| parent | 672b610dbccb37f7f0e1d73745b5a02331a3e090 (diff) | |
| download | PROJ-a2f8fd1a21da1352a39cc56db2bb39613fc29091.tar.gz PROJ-a2f8fd1a21da1352a39cc56db2bb39613fc29091.zip | |
Make projinfo --3d --boundcrs-to-wgs84 better work (fixes #2202)
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/coordinateoperation.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/proj/coordinateoperation.hpp b/include/proj/coordinateoperation.hpp index 686a0c73..7868de4d 100644 --- a/include/proj/coordinateoperation.hpp +++ b/include/proj/coordinateoperation.hpp @@ -1593,6 +1593,14 @@ class PROJ_GCC_DLL Transformation : public SingleOperation { PROJ_INTERNAL TransformationNNPtr shallowClone() const; + PROJ_INTERNAL TransformationNNPtr + promoteTo3D(const std::string &newName, + const io::DatabaseContextPtr &dbContext) const; + + PROJ_INTERNAL TransformationNNPtr + demoteTo2D(const std::string &newName, + const io::DatabaseContextPtr &dbContext) const; + //! @endcond protected: |
