From ce0d50e4aa011f08c425ba5e93a57ba760d1f005 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Sat, 20 Mar 2021 23:06:09 +0100 Subject: [PATCH] Yet another CRS URI format (used by Swisstopo) --- src/map/crs.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/map/crs.cpp b/src/map/crs.cpp index 4a521322..16227482 100644 --- a/src/map/crs.cpp +++ b/src/map/crs.cpp @@ -16,6 +16,10 @@ Projection CRS::projection(const QString &crs) authority = list.at(0); code = list.at(1); break; + case 6: + authority = list.at(4); + code = list.at(5); + break; case 7: authority = list.at(4); code = list.at(6);