From d0b64ec7aaaf1b04d6172743fc4019c0bfc8ea4c Mon Sep 17 00:00:00 2001 From: Paul van Genuchten Date: Mon, 14 Jul 2025 15:01:42 +0200 Subject: [PATCH] aiports layer makes more sense, because we just created it on this page (may fail if people didn't do the wms facade exersize) --- workshop/content/docs/publishing/ogcapi-maps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workshop/content/docs/publishing/ogcapi-maps.md b/workshop/content/docs/publishing/ogcapi-maps.md index c83d7b5e..887bd40f 100644 --- a/workshop/content/docs/publishing/ogcapi-maps.md +++ b/workshop/content/docs/publishing/ogcapi-maps.md @@ -116,7 +116,7 @@ QGIS added support for API's providing rendered image layers via its raster supp ```python >>> from owslib.ogcapi.maps import Maps >>> m = Maps('http://localhost:5000') - >>> data = m.map('wms-facade-demo', width=1200, height=800, transparent=False) + >>> data = m.map('airports', width=1200, height=800, transparent=False) >>> with open("output.png", "wb") as fh: ... fh.write(data.getbuffer()) ``` @@ -128,7 +128,7 @@ QGIS added support for API's providing rendered image layers via its raster supp ```python >>> from owslib.ogcapi.maps import Maps >>> m = Maps('http://localhost:5000') - >>> data = m.map('wms-facade-demo', width=1200, height=800, transparent=False) + >>> data = m.map('airports', width=1200, height=800, transparent=False) >>> with open("output.png", "wb") as fh: ... fh.write(data.getbuffer()) ```