diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-10-29 22:20:24 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2019-10-29 22:20:24 +0100 |
| commit | ffc865a41aa540673eaedb2552565cf9f8d18679 (patch) | |
| tree | fb391ea482d0a66d22b44b61b3c703a3abeb6e3a /include | |
| parent | eed030d96b1b8142e1a1c236555054c32a143e93 (diff) | |
| download | PROJ-ffc865a41aa540673eaedb2552565cf9f8d18679.tar.gz PROJ-ffc865a41aa540673eaedb2552565cf9f8d18679.zip | |
Vertical transformations: improve situations similar to transforming from 'NAVD88 (ftUS)' to X, where we now consider the available transformations from 'NAVD88' to X that might exist in the database
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/io.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/proj/io.hpp b/include/proj/io.hpp index 12b3b111..37b94c1e 100644 --- a/include/proj/io.hpp +++ b/include/proj/io.hpp @@ -1089,6 +1089,10 @@ class PROJ_GCC_DLL AuthorityFactory { const std::string &datum_code, const std::string &geodetic_crs_type) const; + PROJ_INTERNAL std::list<crs::VerticalCRSNNPtr> + createVerticalCRSFromDatum(const std::string &datum_auth_name, + const std::string &datum_code) const; + PROJ_INTERNAL std::list<crs::GeodeticCRSNNPtr> createGeodeticCRSFromEllipsoid(const std::string &ellipsoid_auth_name, const std::string &ellipsoid_code, |
