Skip to content

Commit be763ed

Browse files
authored
aiports layer makes more sense, because we just created it on this page (may fail if people didn't do the wms facade exersize) (#204)
1 parent e304734 commit be763ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workshop/content/docs/publishing/ogcapi-maps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ QGIS added support for API's providing rendered image layers via its raster supp
116116
```python
117117
>>> from owslib.ogcapi.maps import Maps
118118
>>> m = Maps('http://localhost:5000')
119-
>>> data = m.map('wms-facade-demo', width=1200, height=800, transparent=False)
119+
>>> data = m.map('airports', width=1200, height=800, transparent=False)
120120
>>> with open("output.png", "wb") as fh:
121121
... fh.write(data.getbuffer())
122122
```
@@ -128,7 +128,7 @@ QGIS added support for API's providing rendered image layers via its raster supp
128128
```python
129129
>>> from owslib.ogcapi.maps import Maps
130130
>>> m = Maps('http://localhost:5000')
131-
>>> data = m.map('wms-facade-demo', width=1200, height=800, transparent=False)
131+
>>> data = m.map('airports', width=1200, height=800, transparent=False)
132132
>>> with open("output.png", "wb") as fh:
133133
... fh.write(data.getbuffer())
134134
```

0 commit comments

Comments
 (0)