aboutsummaryrefslogtreecommitdiff
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:43:04 +0200
commit16a0b9ecc397d659e1fd27a4788095d303cab289 (patch)
tree214de9ae544b1bff548a7e7cde47df638b29cd80
parent38339dfb571baa791d0681e7fac64ff2d5d3a9d4 (diff)
downloadPROJ-16a0b9ecc397d659e1fd27a4788095d303cab289.tar.gz
PROJ-16a0b9ecc397d659e1fd27a4788095d303cab289.zip
PROJ CRS string ingestion: fix typo in identification of projection steps (fixes #2307)
-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();