Description: Fix axis order problem with GDAL 3.
 In GDAL 3 the axis order for WGS84 changed from lon, lat to lat, lon!
 So we need to use the magic "CRS84" instead which does the same thing in
 GDAL 2 and GDAL 3. See https://gdal.org/tutorials/osr_api_tut.html .
Author: Jochen Topf <jochen@topf.org>
Origin: https://github.com/osmcode/osmcoastline/commit/a0a95090410106730d57eb31d2cf5869f4539be8
Bug-Debian: https://bugs.debian.org/993518
Forwarded: not-needed

--- a/src/srs.hpp
+++ b/src/srs.hpp
@@ -60,7 +60,7 @@ public:
     }; // class TransformationException
 
     SRS() noexcept {
-        m_srs_wgs84.SetWellKnownGeogCS("WGS84");
+        m_srs_wgs84.SetWellKnownGeogCS("CRS84");
     }
 
     /**
