From a77ce5cf343c00fc95b5f3d9b2c27e02b6205fd3 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Sat, 10 Apr 2021 19:16:44 +0200 Subject: Recognize OGC:84 as an alias of OGC:CRS84 --- src/iso19111/factory.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') 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( -- cgit v1.2.3