aboutsummaryrefslogtreecommitdiff
path: root/src/iso19111/factory.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2019-11-17 20:11:17 +0100
committerEven Rouault <even.rouault@spatialys.com>2019-11-17 20:13:28 +0100
commita8c1588d43fccdbc3b65448f2c7af6472fa6519b (patch)
tree1a678f146a94d1a3d859dcde291b29c40e447f33 /src/iso19111/factory.cpp
parent940bb7447647631676b90b03431aa88cb88fdd2d (diff)
downloadPROJ-a8c1588d43fccdbc3b65448f2c7af6472fa6519b.tar.gz
PROJ-a8c1588d43fccdbc3b65448f2c7af6472fa6519b.zip
createOperations(): remove the concept of geodetic_datum_preferred_hub
This was introduced in 63857c92b271bbcd10df0a032304982011acb2a9. Due to the fix done in the previous commit, we can mostly revert the above commit. We just keep the added tests and the custom WGS 84<-->WGS 84 (Gxxxx) null transformations.
Diffstat (limited to 'src/iso19111/factory.cpp')
-rw-r--r--src/iso19111/factory.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/iso19111/factory.cpp b/src/iso19111/factory.cpp
index b55efb3c..309e778a 100644
--- a/src/iso19111/factory.cpp
+++ b/src/iso19111/factory.cpp
@@ -5384,29 +5384,6 @@ AuthorityFactory::createCompoundCRSFromExisting(
// ---------------------------------------------------------------------------
//! @cond Doxygen_Suppress
-std::list<datum::GeodeticReferenceFrameNNPtr>
-AuthorityFactory::getPreferredHubGeodeticReferenceFrames(
- const std::string &geodeticReferenceFrameCode) const {
- std::list<datum::GeodeticReferenceFrameNNPtr> res;
-
- const std::string sql("SELECT hub_auth_name, hub_code FROM "
- "geodetic_datum_preferred_hub WHERE "
- "src_auth_name = ? AND src_code = ?");
- auto sqlRes = d->run(sql, {d->authority(), geodeticReferenceFrameCode});
- for (const auto &row : sqlRes) {
- const auto &auth_name = row[0];
- const auto &code = row[1];
- res.emplace_back(
- d->createFactory(auth_name)->createGeodeticDatum(code));
- }
-
- return res;
-}
-//! @endcond
-
-// ---------------------------------------------------------------------------
-
-//! @cond Doxygen_Suppress
std::vector<operation::CoordinateOperationNNPtr>
AuthorityFactory::getTransformationsForGeoid(
const std::string &geoidName, bool usePROJAlternativeGridNames) const {