diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-12-14 21:41:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-14 21:41:57 +0100 |
| commit | cf438683b963788d3f5804c9c79b9bc955ffd853 (patch) | |
| tree | 10996442836ae51985674145aedf3ebe6bffd22e /src/iso19111/static.cpp | |
| parent | 28032616a93f0eb53a87e99c7dc0d14b79e66687 (diff) | |
| parent | b451382cda3d465567798f4f9dfef991bc15b1d3 (diff) | |
| download | PROJ-cf438683b963788d3f5804c9c79b9bc955ffd853.tar.gz PROJ-cf438683b963788d3f5804c9c79b9bc955ffd853.zip | |
Merge pull request #2484 from rouault/backport_7_2_split_coordinateoperation
[Backport 7.2] Split coordinateoperation.cpp and test_operation.cpp in several parts
Diffstat (limited to 'src/iso19111/static.cpp')
| -rw-r--r-- | src/iso19111/static.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/iso19111/static.cpp b/src/iso19111/static.cpp index 11306e35..d099cd6c 100644 --- a/src/iso19111/static.cpp +++ b/src/iso19111/static.cpp @@ -39,6 +39,7 @@ #include "proj/metadata.hpp" #include "proj/util.hpp" +#include "operation/oputils.hpp" #include "proj/internal/coordinatesystem_internal.hpp" #include "proj/internal/io_internal.hpp" @@ -653,6 +654,17 @@ const GeographicCRSNNPtr const std::string operation::CoordinateOperation::OPERATION_VERSION_KEY("operationVersion"); +//! @cond Doxygen_Suppress +const common::Measure operation::nullMeasure{}; + +const std::string operation::INVERSE_OF = "Inverse of "; + +const std::string operation::AXIS_ORDER_CHANGE_2D_NAME = + "axis order change (2D)"; +const std::string operation::AXIS_ORDER_CHANGE_3D_NAME = + "axis order change (geographic3D horizontal)"; +//! @endcond + // --------------------------------------------------------------------------- NS_PROJ_END |
