From 234e1ad4c2f763115115c471ea63df2bff6dcb64 Mon Sep 17 00:00:00 2001 From: Filipe Fernandes Date: Tue, 21 Jul 2026 15:52:53 -0300 Subject: [PATCH] don't run this code --- docs/user_guide/plugins/WmsTimeDimension.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/user_guide/plugins/WmsTimeDimension.md b/docs/user_guide/plugins/WmsTimeDimension.md index f21be758b8..8ddb0658da 100644 --- a/docs/user_guide/plugins/WmsTimeDimension.md +++ b/docs/user_guide/plugins/WmsTimeDimension.md @@ -4,10 +4,9 @@ Add a time dimension to a WMS tile layer. ### Exploring the WMS with OWSLib -```{code-cell} ipython3 +```python from owslib.wms import WebMapService - url = "https://pae-paha.pacioos.hawaii.edu/thredds/wms/dhw_5km?service=WMS" web_map_services = WebMapService(url, timeout=100) @@ -17,7 +16,7 @@ print("\n".join(web_map_services.contents.keys())) ### Layer metadata -```{code-cell} ipython3 +```python layer = "CRW_SST" wms = web_map_services.contents[layer] @@ -38,7 +37,7 @@ if style not in wms.styles: ### Map with WmsTileLayer and TimestampedWmsTileLayers -```{code-cell} ipython3 +```python import folium import folium.plugins