diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-05-25 19:47:43 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-05-25 19:47:51 +0200 |
| commit | 172744361c83d2a40c11600a398a0e1668052031 (patch) | |
| tree | 84a034e942372ada367eb832b48061ee6d11e11b /include | |
| parent | cfdd474dd8aef197297c488c6133f7484fe421fd (diff) | |
| download | PROJ-172744361c83d2a40c11600a398a0e1668052031.tar.gz PROJ-172744361c83d2a40c11600a398a0e1668052031.zip | |
Fix identification of (one of the) ESRI WKT formulations of EPSG:3035
Fixes https://github.com/qgis/QGIS/issues/36111
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/io.hpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/proj/io.hpp b/include/proj/io.hpp index 1620c1fe..d1f79aab 100644 --- a/include/proj/io.hpp +++ b/include/proj/io.hpp @@ -1172,6 +1172,14 @@ class PROJ_GCC_DLL AuthorityFactory { const metadata::ExtentPtr &intersectingExtent1, const metadata::ExtentPtr &intersectingExtent2) const; + typedef std::pair<common::IdentifiedObjectNNPtr, std::string> + PairObjectName; + PROJ_INTERNAL std::list<PairObjectName> + createObjectsFromNameEx(const std::string &name, + const std::vector<ObjectType> &allowedObjectTypes = + std::vector<ObjectType>(), + bool approximateMatch = true, + size_t limitResultCount = 0) const; //! @endcond protected: |
