-
Notifications
You must be signed in to change notification settings - Fork 280
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
connecting to a csw #972
Comments
Trying to access https://servizimoka.regione.emilia-romagna.it/geoportalEsri/csw?service=CSW&version=2.0.2&request=GetCapabilities currently throws If you have a Python snippet that is able to connect and recreate this error, please add here. |
yes, the service went down at some point, and didn't come up, else let's close it, if it doesn't come back |
@pvgenuchten service is backup so if you are able to provide a failing Python snippet I can debug, fix, and add a test. |
from owslib.iso import *
from owslib.etree import etree
from owslib.csw import CatalogueServiceWeb
from owslib.fes import PropertyIsEqualTo, PropertyIsLike, BBox
url = "https://servizimoka.regione.emilia-romagna.it/geoportalEsri/csw"
csw = CatalogueServiceWeb(url)
constraints = []
constraints.append(PropertyIsEqualTo('csw:AnyText', 'suoli'))
csw.getrecords2(maxrecords=5,outputschema='http://www.isotc211.org/2005/gmd',constraints=constraints,startposition=1,esn='full')
|
probably the csw:anytext is the problematic one, i guess that would be on my side to check capabilities if such a filter exists |
when connecting to this csw
there are 2 observations
oh, seems the service is currently down, i hope these requests didn't break it... at least explains the second error.
The text was updated successfully, but these errors were encountered: