From 82f5bfdd474cb6791224c3ea390151cd807f9ccb Mon Sep 17 00:00:00 2001 From: Michael Rudolf <rudolf@geo.tu-darmstadt.de> Date: Mon, 17 Mar 2025 14:15:00 +0100 Subject: [PATCH] "really fixed" --- u4py/addons/web_services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/u4py/addons/web_services.py b/u4py/addons/web_services.py index f1bad98..37d275f 100644 --- a/u4py/addons/web_services.py +++ b/u4py/addons/web_services.py @@ -357,7 +357,7 @@ def wms_in_gdf_boundary( ] # use only a reduced set where the bounds are supplied elif hasattr(lyr, "crsOptions"): lyr_crsopts = [ - v[-1] for v in lyr.crs_list if v[-1].startswith("EPSG:") + v[-1] for v in lyr.crsOptions if v[-1].startswith("EPSG:") ] else: raise AttributeError("Check the WMS layer crs attribute!") -- GitLab