diff options
| author | Javier Jimenez Shaw <j1@jimenezshaw.com> | 2021-04-24 10:37:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-24 10:37:19 +0200 |
| commit | 93dc8422c4cddf5fa52824222143effa6bb4d67f (patch) | |
| tree | 53f8aba4764a68887e50e6d59fa2ec7162b93144 /include | |
| parent | a002a3e9da175228494faca7219bce4e7e9effe6 (diff) | |
| download | PROJ-93dc8422c4cddf5fa52824222143effa6bb4d67f.tar.gz PROJ-93dc8422c4cddf5fa52824222143effa6bb4d67f.zip | |
Add proj_get_geoid_models_from_database() (#2681)
to list all geoid model names that apply to a vertical CRS
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/io.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/proj/io.hpp b/include/proj/io.hpp index e51dd19a..e56e0994 100644 --- a/include/proj/io.hpp +++ b/include/proj/io.hpp @@ -1000,6 +1000,9 @@ class PROJ_GCC_DLL AuthorityFactory { const std::string &sourceCRSCode, const std::string &targetCRSCode) const; + PROJ_DLL std::list<std::string> + getGeoidModels(const std::string &code) const; + PROJ_DLL const std::string &getAuthority() PROJ_PURE_DECL; /** Object type. */ |
