diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2019-11-19 15:20:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-19 15:20:00 +0100 |
| commit | 2d7a2f73c523233ce6b3150d724c170a49f3021d (patch) | |
| tree | fff8874bfc73fef4615a0964225a3ada8f5db444 /include | |
| parent | 10434b1f053bb8c58f522ab8be9abe21504acd17 (diff) | |
| parent | 43c5c8cad35c7cb33118cb8e7b8e2059ea450dbe (diff) | |
| download | PROJ-2d7a2f73c523233ce6b3150d724c170a49f3021d.tar.gz PROJ-2d7a2f73c523233ce6b3150d724c170a49f3021d.zip | |
Merge pull request #1734 from rouault/intermediate_crs_through_datum
createOperations(): chain operations whose middle CRSs are not identical but have the same datum
Diffstat (limited to 'include')
| -rw-r--r-- | include/proj/io.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/proj/io.hpp b/include/proj/io.hpp index 52ffebad..be293eb9 100644 --- a/include/proj/io.hpp +++ b/include/proj/io.hpp @@ -1120,6 +1120,17 @@ class PROJ_GCC_DLL AuthorityFactory { getTransformationsForGeoid(const std::string &geoidName, bool usePROJAlternativeGridNames) const; + PROJ_INTERNAL std::vector<operation::CoordinateOperationNNPtr> + createBetweenGeodeticCRSWithDatumBasedIntermediates( + const crs::CRSNNPtr &sourceCRS, const std::string &sourceCRSAuthName, + const std::string &sourceCRSCode, const crs::CRSNNPtr &targetCRS, + const std::string &targetCRSAuthName, const std::string &targetCRSCode, + bool usePROJAlternativeGridNames, bool discardIfMissingGrid, + bool discardSuperseded, + const std::vector<std::string> &allowedAuthorities, + const metadata::ExtentPtr &intersectingExtent1, + const metadata::ExtentPtr &intersectingExtent2) const; + //! @endcond protected: |
