From fb34f5c7db2a4261294bd33510f8950aeec1b3b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Sat, 2 Mar 2019 18:49:01 +0100 Subject: [PATCH] Added missing UTM S/N handling --- src/map/rmap.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/map/rmap.cpp b/src/map/rmap.cpp index bb662563..c2097826 100644 --- a/src/map/rmap.cpp +++ b/src/map/rmap.cpp @@ -71,6 +71,8 @@ static Projection parseProjection(const QString &str, const GCS *gcs) zone = fields.at(2).toInt(&ret); if (!ret) return Projection(); + if (fields.at(3) == "S") + zone = -zone; pcs = PCS(gcs, 9807, UTM::setup(zone), 9001); return Projection(&pcs); case 1: