aboutsummaryrefslogtreecommitdiff
path: root/src/iso19111
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2021-09-15 00:32:58 +0200
committerEven Rouault <even.rouault@spatialys.com>2021-09-15 00:32:58 +0200
commit85f496b26702bf6566296072795e821d70156c09 (patch)
tree3085b80ac1ceb0dba3c58946f8b1f9246f651d55 /src/iso19111
parentd3c615f9ce893c9dc1e6314b9542f510bfd0f023 (diff)
downloadPROJ-85f496b26702bf6566296072795e821d70156c09.tar.gz
PROJ-85f496b26702bf6566296072795e821d70156c09.zip
Database: update to EPSG v10.035
This seriously impacts French CRS users with the introduction of new datums, geodetic CRS and projected CRS based on "RGF 93 v2" and "RGF 93 v2b", and the previous single "RGF 93" being renamed as "RGF 93 v1". To be noted too, the addition of a null transformation between NAD83(2011) and WGS 84, which impacts a number of tests in the test suite.
Diffstat (limited to 'src/iso19111')
-rw-r--r--src/iso19111/operation/coordinateoperationfactory.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/iso19111/operation/coordinateoperationfactory.cpp b/src/iso19111/operation/coordinateoperationfactory.cpp
index 1b1cae9b..b59eeb91 100644
--- a/src/iso19111/operation/coordinateoperationfactory.cpp
+++ b/src/iso19111/operation/coordinateoperationfactory.cpp
@@ -883,12 +883,12 @@ struct SortFunction {
b_name.find("NTF (Paris) to NTF (1)") != std::string::npos) {
return false;
}
- if (a_name.find("NTF (Paris) to RGF93 (1)") != std::string::npos &&
- b_name.find("NTF (Paris) to RGF93 (2)") != std::string::npos) {
+ if (a_name.find("NTF (Paris) to RGF93 v1 (1)") != std::string::npos &&
+ b_name.find("NTF (Paris) to RGF93 v1 (2)") != std::string::npos) {
return true;
}
- if (a_name.find("NTF (Paris) to RGF93 (2)") != std::string::npos &&
- b_name.find("NTF (Paris) to RGF93 (1)") != std::string::npos) {
+ if (a_name.find("NTF (Paris) to RGF93 v1 (2)") != std::string::npos &&
+ b_name.find("NTF (Paris) to RGF93 v1 (1)") != std::string::npos) {
return false;
}