gemgis.web.load_wfs#

gemgis.web.load_wfs(url: str)#

Loading a WFS Service by URL

Parameters

url (str) – Link of the WFS Service, e.g. url="https://nibis.lbeg.de/net3/public/ogc.ashx?NodeId=476&Service=WFS&"

Returns

wfs – OWSLib Feature object

Return type

owslib.feature.wfs100.WebFeatureService_1_0_0

New in version 1.0.x.

Example

>>> # Loading Libraries and WFS Service
>>> import gemgis as gg
>>> wfs = gg.web.load_wfs(url="https://nibis.lbeg.de/net3/public/ogc.ashx?NodeId=476&Service=WFS&")
>>> wfs
<owslib.feature.wfs100.WebFeatureService_1_0_0 at 0x19260e21340>

See also

load_as_gpd

Load information of a WFS Service as GeoDataFrame