From c461b2e549218dbb60755aa561eaca20ef9c0966 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Sat, 2 May 2020 09:48:30 +0200 Subject: [PATCH] Added support for non-standard 8-parts CRSs --- src/map/crs.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/map/crs.cpp b/src/map/crs.cpp index 07907e4b..018d51a3 100644 --- a/src/map/crs.cpp +++ b/src/map/crs.cpp @@ -20,6 +20,10 @@ Projection CRS::projection(const QString &crs) authority = list.at(4); code = list.at(6); break; + case 8: + authority = list.at(4); + code = list.at(7); + break; default: return Projection(); }