diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-11-04 22:35:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-04 22:35:57 +0100 |
| commit | 34dc695402ba5d10248ea47bec3ab88ed950eccb (patch) | |
| tree | 56bfb7962cca13095a85a93af4e372ffac2e0be2 /include | |
| parent | 1bee3d54b05d2f6bd406749126ff7d6ac26e7013 (diff) | |
| parent | 67e987ed84e19dd0ce46bdc529e8a73010af2c66 (diff) | |
| download | PROJ-34dc695402ba5d10248ea47bec3ab88ed950eccb.tar.gz PROJ-34dc695402ba5d10248ea47bec3ab88ed950eccb.zip | |
Merge pull request #1710 from rouault/geoid_model
Add support for GEOIDMODEL
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/internal/io_internal.hpp | 1 | ||||
| -rw-r--r-- | include/proj/io.hpp | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/include/proj/internal/io_internal.hpp b/include/proj/internal/io_internal.hpp index 781dfa6c..1e2508cc 100644 --- a/include/proj/internal/io_internal.hpp +++ b/include/proj/internal/io_internal.hpp @@ -134,6 +134,7 @@ class WKTConstants { static const std::string BASEPARAMCRS; static const std::string BASETIMECRS; static const std::string VERSION; + static const std::string GEOIDMODEL; // WKT2-2019 // WKT2 alternate (longer or shorter) static const std::string GEODETICCRS; diff --git a/include/proj/io.hpp b/include/proj/io.hpp index f8ee1c97..17f0fea5 100644 --- a/include/proj/io.hpp +++ b/include/proj/io.hpp @@ -1118,6 +1118,10 @@ class PROJ_GCC_DLL AuthorityFactory { getPreferredHubGeodeticReferenceFrames( const std::string &geodeticReferenceFrameCode) const; + PROJ_INTERNAL std::vector<operation::CoordinateOperationNNPtr> + getTransformationsForGeoid(const std::string &geoidName, + bool usePROJAlternativeGridNames) const; + //! @endcond protected: |
