OWSLib
OWSLib copied to clipboard
OWSLib is a Python package for client programming with Open Geospatial Consortium (OGC) web service (hence OWS) interface standards, and their related content models.
When a style is found without "title" or "name", a ValueError is raised However, the style should only be ignored, otherwise it's too restrictive for some services (ex : https://inspire.cadastre.gouv.fr/scpc/31555.wms?service=WMS&request=GetCapabilities)
uma solução para issue#636 testada
In WFS 2.0 GetFeature requests currently fail for MapServer URLs containing `?map=path/my.map&` This is the same issue as #533 - and unfortunately I missed that there was also an open...
Probably applies to other services and versions as well, but as an example: WebCoverageService_1_0_0.getCoverage() calls OpenURL with no timeout parameter, so the timeout is always the default of 30 seconds....
When initiating WMS 1.1.1 with custom `headers` argument, these HTTP headers are sent with [initial GetCapabilities](https://github.com/geopython/OWSLib/blob/06f8da9c4398d90e8b9efef5e13254706db2458e/owslib/map/wms111.py#L71) request, but they are not sent with [GetMap](https://github.com/geopython/OWSLib/blob/06f8da9c4398d90e8b9efef5e13254706db2458e/owslib/map/wms111.py#L262) request. They are probably also not...
https://github.com/geopython/OWSLib/blob/06f8da9c4398d90e8b9efef5e13254706db2458e/owslib/feature/wfs200.py#L308 Hi, The function getPOSTGetFeatureRequest was not implemented in _init_ for v2.0.0. This leads to amissing attribute error when method='Post' is used in getFeature function. Bye Kork
I try to query a WFS. Basis-URL: https://isk.geobasis-bb.de/ows/alkis_sf_wfs? Service Capabilities: https://isk.geobasis-bb.de/ows/alkis_sf_wfs?SERVICE=WFS&REQUEST=GetCapabilities Input ``` from owslib.wfs import WebFeatureService wfs11 = WebFeatureService(url='https://isk.geobasis-bb.de/ows/alkis_sf_wfs?', version='1.1.0') ``` Output ``` --------------------------------------------------------------------------- KeyError Traceback (most recent call...
I know that the specification requires both the name and the title to be set for a Style element inside a GetCapabilities response, but many GIS Desktop softwares are a...
This should never happen where a layer is listed as existing in GetCapabilities, but has an error response when DescribeFeatureType is requested. Still, some servers can be mis-configured, and this...