diff options
| author | Even Rouault <even.rouault@mines-paris.org> | 2019-04-23 21:54:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-23 21:54:29 +0200 |
| commit | 4c7364ba84b97fc87270386906af66522feea94f (patch) | |
| tree | 7b721bd91cc8a45d4e7b245c9db36a4fd0ef8688 /include | |
| parent | 8cfd9ca89c89b52a3c22d5ee7ecbe06791924a15 (diff) | |
| parent | 292807eee9e1194175b64cb5c0a9f0b432352abc (diff) | |
| download | PROJ-4c7364ba84b97fc87270386906af66522feea94f.tar.gz PROJ-4c7364ba84b97fc87270386906af66522feea94f.zip | |
Merge pull request #1441 from rouault/support_compound_crs_urn
proj_create(): add support for compoundCRS and concatenatedOperation named from their components
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/io.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/proj/io.hpp b/include/proj/io.hpp index 5386ca6c..a603533e 100644 --- a/include/proj/io.hpp +++ b/include/proj/io.hpp @@ -993,16 +993,16 @@ class PROJ_GCC_DLL AuthorityFactory { PROJ_INTERNAL std::list<crs::CompoundCRSNNPtr> createCompoundCRSFromExisting(const crs::CompoundCRSNNPtr &crs) const; + + PROJ_INTERNAL crs::CRSNNPtr + createCoordinateReferenceSystem(const std::string &code, + bool allowCompound) const; //! @endcond protected: PROJ_INTERNAL AuthorityFactory(const DatabaseContextNNPtr &context, const std::string &authorityName); - PROJ_INTERNAL crs::CRSNNPtr - createCoordinateReferenceSystem(const std::string &code, - bool allowCompound) const; - PROJ_INTERNAL crs::GeodeticCRSNNPtr createGeodeticCRS(const std::string &code, bool geographicOnly) const; |
