OWSLib icon indicating copy to clipboard operation
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.

Results 138 OWSLib issues
Sort by recently updated
recently updated
newest added

Greetings Not sure if it's a bug or me misunderstanding. In this small snippet (which works) ```python wfs20 = WebFeatureService(url='http://services.ga.gov.au/earthresource/wfs', version='2.0.0') gold= """ erl:representativeCommodity_uri http://resource.geosciml.org/classifier/cgi/commodity-code/gold """ # Get some mineral...

I'm trying to connect to a WFS, get features, and iterate through the features in the resulting featureCollection, converting the GML to GeoJSON. I've been trying with owslib and can...

wfs
help wanted
question

Hello. Where can I find the good values o width and height to get data in a specific CRS and Resolution? I would like to get a bbox in the...

PR https://github.com/geopython/OWSLib/pull/741 breaks the code: Example ``` #!/usr/bin/python3 from owslib.sos import SensorObservationService service = SensorObservationService('http://sensorweb.demo.52north.org/52n-sos-webapp/sos/kvp', version='2.0.0') offering = 'ws2500' observedProperty = 'AirTemperature' get_obs = service.get_operation_by_name('GetObservation') response = service.get_observation(responseFormat='http://www.opengis.net/om/2.0', offerings=[offering], observedProperties=[observedProperty])...

According to (https://portal.ogc.org/files/?artifact_id=39967) I believe that for WFS version 2 the filter does not belong to query parameter, but to filter parameter. Current implementation does not work for me with...

When I call getrecords2 like this: ``` csw.getrecords2( startposition=startposition, maxrecords=pagesize, outputschema=outputschema, esn='full', sortby=sortby ) ``` no value for `outputschema`, other than `http://www.isotc211.org/2005/gmd` works, which is no good, since we are...

csw

This pull request: * introduces `iter_content` method for the `ResponseWrapper` object - this will make reading of large outputs more safe * outputs will not be returned back as whole...

Hi @ferreteleco, I was wondering if you can help me. I was using owslib version 0.22 without any problem when calling WFS, but in versions 0.23 and newer I got...

I am having a very similar issue as in #636 but with WebFeatureService() instead: owslib\feature\wfs100.py I get the same error because a tag with the name 'Service' was not found...

Current our debian setup is in `etc/debian`. Move to `debian` and update accordingly.

enhancement