From a01ff337682de35b5ea9508fdaf2cffb801987d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Mon, 8 Aug 2022 00:20:30 +0200 Subject: [PATCH] Add another alias for WGS84 --- src/map/gcs.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/map/gcs.cpp b/src/map/gcs.cpp index ed2abf30..392706da 100644 --- a/src/map/gcs.cpp +++ b/src/map/gcs.cpp @@ -53,6 +53,7 @@ const GCS &GCS::WGS84() QList GCS::defaults() { QList list; + list.append(GCS::Entry(4326, 6326, "WGS 1984", WGS84())); list.append(GCS::Entry(4326, 6326, "WGS 84", WGS84())); list.append(GCS::Entry(4326, 6326, "WGS84", WGS84())); return list;