aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-07-30 17:42:27 +0200
committerEven Rouault <even.rouault@spatialys.com>2020-07-30 17:42:27 +0200
commit53abcb0425eecceea076ba29ea3f071f53156efa (patch)
tree53accba393611866c3e84d46d8b7e819c8e35110 /src
parent9488a7264a11ba4f2217ab5ed78a49afcc0d5de8 (diff)
downloadPROJ-53abcb0425eecceea076ba29ea3f071f53156efa.tar.gz
PROJ-53abcb0425eecceea076ba29ea3f071f53156efa.zip
PROJ CRS string ingestion: fix typo in identification of projection steps (fixes #2307)
Diffstat (limited to 'src')
-rw-r--r--src/iso19111/io.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iso19111/io.cpp b/src/iso19111/io.cpp
index 4fc9b70f..a5e473c0 100644
--- a/src/iso19111/io.cpp
+++ b/src/iso19111/io.cpp
@@ -8122,7 +8122,7 @@ static bool isProjectedStep(const std::string &name) {
// transformations.
if (name == "pipeline" || name == "geoc" || name == "deformation" ||
name == "helmert" || name == "hgridshift" || name == "molodensky" ||
- name == "vgridshit") {
+ name == "vgridshift") {
return false;
}
const auto *operations = proj_list_operations();