From 2e39ebea823b33d7fb395f323cb73202399ab0b9 Mon Sep 17 00:00:00 2001 From: Corentin Carton de Wiart Date: Tue, 15 Sep 2026 16:06:17 +0200 Subject: [PATCH] Fix the name of the south polar CRS in wmscrs(): EPSG:32761 wmscrs() advertised EPSG:32762, which does not exist. The south Universal Polar Stereographic CRS implemented by Magics (subpage_map_projection) is EPSG:32761, so WMS clients requesting the advertised name got an 'Unsupported CRS' error from skinnywms. Co-Authored-By: Claude Fable 5.1 --- Magics/macro.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Magics/macro.py b/Magics/macro.py index baef35d..06e2111 100644 --- a/Magics/macro.py +++ b/Magics/macro.py @@ -761,7 +761,7 @@ def wmscrs(): "n_lat": 2555456.55, }, { - "name": "EPSG:32762", + "name": "EPSG:32761", "w_lon": 1999030.54, "s_lat": 1444543.45, "e_lon": 2005944.38,