diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-05-25 21:10:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-25 21:10:18 +0200 |
| commit | 9ff543c4ffd86152bc58d0a0164b2ce9ebbb8bec (patch) | |
| tree | 3eaff4e515826148a53cf717096d062d38c8e2f2 /include/proj | |
| parent | 4ade1b2eb1ba2b28a76f446176da24712ce67720 (diff) | |
| parent | 172744361c83d2a40c11600a398a0e1668052031 (diff) | |
| download | PROJ-9ff543c4ffd86152bc58d0a0164b2ce9ebbb8bec.tar.gz PROJ-9ff543c4ffd86152bc58d0a0164b2ce9ebbb8bec.zip | |
Merge pull request #2240 from rouault/fix_identification_epsg_3035
Fix identification of (one of the) ESRI WKT formulations of EPSG:3035
Diffstat (limited to 'include/proj')
| -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: |
