diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-12-14 18:14:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-14 18:14:31 +0100 |
| commit | bfc54bbac8550e18d352468032ad0b3d5ca2d328 (patch) | |
| tree | b1b3de6fb6cbb482129fe90f2d633e0f5bae4f0b /src/iso19111/static.cpp | |
| parent | 69994f1922146640ee18497c6e1a5ecd2a737942 (diff) | |
| parent | 49c6a49d83a3b29836a930d296a9f239d2860de0 (diff) | |
| download | PROJ-bfc54bbac8550e18d352468032ad0b3d5ca2d328.tar.gz PROJ-bfc54bbac8550e18d352468032ad0b3d5ca2d328.zip | |
Merge pull request #2483 from rouault/split_coordinateoperation
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 |
