Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions docs/user_guide/plugins/WmsTimeDimension.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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]

Expand All @@ -38,7 +37,7 @@ if style not in wms.styles:

### Map with WmsTileLayer and TimestampedWmsTileLayers

```{code-cell} ipython3
```python
import folium
import folium.plugins

Expand Down
Loading