There was an error while loading. Please reload this page.
1 parent 5640107 commit 69e7adaCopy full SHA for 69e7ada
1 file changed
docs/user_guide/plugins/WmsTimeDimension.md
@@ -4,10 +4,9 @@ Add a time dimension to a WMS tile layer.
4
5
### Exploring the WMS with OWSLib
6
7
-```{code-cell} ipython3
+```python
8
from owslib.wms import WebMapService
9
10
-
11
url = "https://pae-paha.pacioos.hawaii.edu/thredds/wms/dhw_5km?service=WMS"
12
13
web_map_services = WebMapService(url, timeout=100)
@@ -17,7 +16,7 @@ print("\n".join(web_map_services.contents.keys()))
17
16
18
### Layer metadata
19
20
21
layer = "CRW_SST"
22
wms = web_map_services.contents[layer]
23
@@ -38,7 +37,7 @@ if style not in wms.styles:
38
37
39
### Map with WmsTileLayer and TimestampedWmsTileLayers
40
41
42
import folium
43
import folium.plugins
44
0 commit comments