diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2021-04-10 20:15:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-10 20:15:34 +0200 |
| commit | 34ea13913717b20982778d5e5f13b4a5ee8288ab (patch) | |
| tree | c16c443866a0eec19c488e415fc75815a090327e /src/iso19111/static.cpp | |
| parent | 84a679954b1fa4c41c7bdbac87013be78b64bea4 (diff) | |
| parent | a77ce5cf343c00fc95b5f3d9b2c27e02b6205fd3 (diff) | |
| download | PROJ-34ea13913717b20982778d5e5f13b4a5ee8288ab.tar.gz PROJ-34ea13913717b20982778d5e5f13b4a5ee8288ab.zip | |
Merge pull request #2656 from rouault/createFromUserInput_improvements
createFromUserInput(): various enhancements
Diffstat (limited to 'src/iso19111/static.cpp')
| -rw-r--r-- | src/iso19111/static.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/iso19111/static.cpp b/src/iso19111/static.cpp index d099cd6c..e4467882 100644 --- a/src/iso19111/static.cpp +++ b/src/iso19111/static.cpp @@ -317,6 +317,17 @@ const UnitOfMeasure UnitOfMeasure::METRE("metre", 1.0, UnitOfMeasure::Type::LINEAR, Identifier::EPSG, "9001"); +/** \brief Foot, unit of measure of type LINEAR. */ +const UnitOfMeasure UnitOfMeasure::FOOT("foot", 0.3048, + UnitOfMeasure::Type::LINEAR, + Identifier::EPSG, "9002"); + +/** \brief US survey foot, unit of measure of type LINEAR. */ +const UnitOfMeasure UnitOfMeasure::US_FOOT("US survey foot", + 0.304800609601219241184, + UnitOfMeasure::Type::LINEAR, + Identifier::EPSG, "9003"); + /** \brief Degree, unit of measure of type ANGULAR. */ const UnitOfMeasure UnitOfMeasure::DEGREE("degree", M_PI / 180., UnitOfMeasure::Type::ANGULAR, |
