diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2021-04-10 19:16:44 +0200 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2021-04-10 19:17:40 +0200 |
| commit | a77ce5cf343c00fc95b5f3d9b2c27e02b6205fd3 (patch) | |
| tree | c16c443866a0eec19c488e415fc75815a090327e /src/iso19111/factory.cpp | |
| parent | b6c12e6968f38770177347f368ee2e75211d4d28 (diff) | |
| download | PROJ-a77ce5cf343c00fc95b5f3d9b2c27e02b6205fd3.tar.gz PROJ-a77ce5cf343c00fc95b5f3d9b2c27e02b6205fd3.zip | |
Recognize OGC:84 as an alias of OGC:CRS84
Diffstat (limited to 'src/iso19111/factory.cpp')
| -rw-r--r-- | src/iso19111/factory.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/iso19111/factory.cpp b/src/iso19111/factory.cpp index cf44024f..3367f55c 100644 --- a/src/iso19111/factory.cpp +++ b/src/iso19111/factory.cpp @@ -5019,6 +5019,9 @@ AuthorityFactory::createCoordinateReferenceSystem(const std::string &code, "T", cs::AxisDirection::FUTURE, common::UnitOfMeasure::SECOND))); } + if (code == "84") { + return createCoordinateReferenceSystem("CRS84", false); + } } auto res = d->runWithCodeParam( |
