aboutsummaryrefslogtreecommitdiff
path: root/src/iso19111/io.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/iso19111/io.cpp')
-rw-r--r--src/iso19111/io.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/iso19111/io.cpp b/src/iso19111/io.cpp
index f047ef3e..02bcf3b0 100644
--- a/src/iso19111/io.cpp
+++ b/src/iso19111/io.cpp
@@ -9907,10 +9907,16 @@ PROJStringParser::Private::buildProjectedCRS(int iStep,
if (mappings.size() >= 2) {
// To distinguish for example +ortho from +ortho +f=0
+ bool allMappingsHaveAuxParam = true;
+ bool foundStrictlyMatchingMapping = false;
for (const auto *mappingIter : mappings) {
+ if (mappingIter->proj_name_aux == nullptr) {
+ allMappingsHaveAuxParam = false;
+ }
if (mappingIter->proj_name_aux != nullptr &&
strchr(mappingIter->proj_name_aux, '=') == nullptr &&
hasParamValue(step, mappingIter->proj_name_aux)) {
+ foundStrictlyMatchingMapping = true;
mapping = mappingIter;
break;
} else if (mappingIter->proj_name_aux != nullptr &&
@@ -9918,11 +9924,15 @@ PROJStringParser::Private::buildProjectedCRS(int iStep,
const auto tokens = split(mappingIter->proj_name_aux, '=');
if (tokens.size() == 2 &&
getParamValue(step, tokens[0]) == tokens[1]) {
+ foundStrictlyMatchingMapping = true;
mapping = mappingIter;
break;
}
}
}
+ if (allMappingsHaveAuxParam && !foundStrictlyMatchingMapping) {
+ mapping = nullptr;
+ }
}
if (mapping) {