Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This example is based on the Deltares Data Portal geoserver contents. Every known URL can be used, like the 'http://geo.vliz.be/geoserver/wfs?' as used in the above primer examples.
Off course more information can be retrieved. Basic documentation on OWSLib can be found on geopython page and more detailed on the doctest section of this github repository.

 

Accessing WFS by R

This is an example of the [Marine projects geoserver](http://marineprojects.openearth.nl/geoserver/web/). As above, this can be used with any WFS server.

Code Block
titleAccess WFS with R
library(gdalUtils)
library(rgdal)
dsn <- "http://marineprojects.openearth.nl/geoserver/ows?service=WFS&request=GetCapabilities"
ogrinfo(dsn, so=TRUE)

...