Tom Kralidis

Results 512 comments of Tom Kralidis

Update: the (draft) CSW 3.0 specification allows for a `DefaultSortingAlgorithm` URL reference in Capabilities XML: > A reference to a description of the default sort which is the sort that...

Note: CKAN PR fix issued in https://github.com/ckan/ckanext-spatial/pull/136

FYI this is now fixed for the CKAN use case in ckanext-spatial https://github.com/ckan/ckanext-spatial/pull/136

@DeordD it is still incumbent on the client to explicitly state sort order.

Thanks for the report. OGC 07-006r1 Table 65 says `typeNames` should be comma separated. However in the rest of the document `typeNames` is expressed as space separated. As well, if...

Hi all: I'm not able to reproduce. The following URLs return records (and not exceptions): - http://demo.pycsw.org/gisdata/csw?service=CSW&version=2.0.2&resultType=results&startPosition=1&maxRecords=10&typeNames=csw:Record&request=GetRecords&typeNames=csw:Record&ElementSetName=full&constraintlanguage=CQL_TEXT&constraint=dc%3Atitle%20like%20%27%25Agriculture%25%27 - http://demo.pycsw.org/gisdata/csw?service=CSW&version=2.0.2&resultType=results&startPosition=1&maxRecords=10&typeNames=csw:Record&request=GetRecords&typeNames=csw:Record&ElementSetName=full&constraintlanguage=CQL_TEXT Can someone test and report back with an example that can...

You need to place spaces between property name, operator, and literal, and the property name needs to be bound to a namespace prefix, so: http://demo.pycsw.org/gisdata/csw?service=CSW&version=2.0.2&resultType=results&startPosition=1&maxRecords=10&typeNames=csw:Record&request=GetRecords&typeNames=csw:Record&ElementSetName=full&constraintlanguage=CQL_TEXT&constraint=dc:type%20%3D%20%27dataset%27 http://demo.pycsw.org/gisdata/csw?service=CSW&version=2.0.2&resultType=results&startPosition=1&maxRecords=10&typeNames=csw:Record&request=GetRecords&typeNames=csw:Record&ElementSetName=full&constraintlanguage=CQL_TEXT&constraint=apiso:Type%20%3D%20%27dataset%27

@ocefpaf `pkg_resources` was introduced in as part of 4eb9a3320509d791d4619199c832d4481c3813f7. @ricardogsilva comments? Could we implement without `pkg_resources`? Proposed patch: ```diff diff --git a/pycsw/__init__.py b/pycsw/__init__.py index b017be0..853e3d0 100644 --- a/pycsw/__init__.py +++ b/pycsw/__init__.py...

cc @kalxas Thanks @ricardogsilva. The tight pinning in `requirements.txt` has since been lifted, so I'm wondering if this is an issue now (at least for master). Note we are also...