geonode-pycsw 3.0.0b2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- geonode_pycsw-3.0.0b2.dist-info/METADATA +73 -0
- geonode_pycsw-3.0.0b2.dist-info/RECORD +382 -0
- geonode_pycsw-3.0.0b2.dist-info/WHEEL +5 -0
- geonode_pycsw-3.0.0b2.dist-info/entry_points.txt +2 -0
- geonode_pycsw-3.0.0b2.dist-info/licenses/LICENSE.txt +26 -0
- geonode_pycsw-3.0.0b2.dist-info/top_level.txt +1 -0
- pycsw/__init__.py +33 -0
- pycsw/core/__init__.py +29 -0
- pycsw/core/admin.py +703 -0
- pycsw/core/config.py +621 -0
- pycsw/core/etree.py +43 -0
- pycsw/core/formats/__init__.py +29 -0
- pycsw/core/formats/fmt_json.py +69 -0
- pycsw/core/log.py +71 -0
- pycsw/core/metadata.py +1996 -0
- pycsw/core/pygeofilter_evaluate.py +83 -0
- pycsw/core/repository.py +941 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/_wrapper.xsd +14 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswAll.xsd +33 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswCommon.xsd +71 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswGetCapabilities.xsd +80 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswGetDomain.xsd +146 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswGetRecordById.xsd +58 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswGetRecords.xsd +391 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswHarvest.xsd +95 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswTransaction.xsd +187 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/cswUnHarvest.xsd +77 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/rec-dcmes.xsd +245 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/rec-dcterms.xsd +101 -0
- pycsw/core/schemas/ogc/cat/csw/3.0/record.xsd +170 -0
- pycsw/core/schemas/ogc/csw/2.0.2/CSW-discovery.xsd +494 -0
- pycsw/core/schemas/ogc/csw/2.0.2/CSW-publication.xsd +242 -0
- pycsw/core/schemas/ogc/csw/2.0.2/rec-dcmes.xsd +199 -0
- pycsw/core/schemas/ogc/csw/2.0.2/rec-dcterms.xsd +94 -0
- pycsw/core/schemas/ogc/csw/2.0.2/record.xsd +138 -0
- pycsw/core/schemas/ogc/filter/1.1.0/expr.xsd +67 -0
- pycsw/core/schemas/ogc/filter/1.1.0/filter.xsd +265 -0
- pycsw/core/schemas/ogc/filter/1.1.0/filterCapabilities.xsd +171 -0
- pycsw/core/schemas/ogc/filter/1.1.0/sort.xsd +46 -0
- pycsw/core/schemas/ogc/filter/2.0/_wrapper.xsd +5 -0
- pycsw/core/schemas/ogc/filter/2.0/expr.xsd +44 -0
- pycsw/core/schemas/ogc/filter/2.0/filter.xsd +396 -0
- pycsw/core/schemas/ogc/filter/2.0/filterAll.xsd +23 -0
- pycsw/core/schemas/ogc/filter/2.0/filterCapabilities.xsd +286 -0
- pycsw/core/schemas/ogc/filter/2.0/query.xsd +70 -0
- pycsw/core/schemas/ogc/filter/2.0/sort.xsd +49 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/basicTypes.xsd +278 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/coordinateOperations.xsd +789 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/coordinateReferenceSystems.xsd +429 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/coordinateSystems.xsd +408 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/coverage.xsd +451 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/dataQuality.xsd +129 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/datums.xsd +484 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/defaultStyle.xsd +454 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/dictionary.xsd +137 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/direction.xsd +72 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/dynamicFeature.xsd +115 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/feature.xsd +199 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/geometryAggregates.xsd +430 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/geometryBasic0d1d.xsd +602 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/geometryBasic2d.xsd +213 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/geometryComplexes.xsd +141 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/geometryPrimitives.xsd +1609 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/gml.xsd +22 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/gmlBase.xsd +294 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/grids.xsd +76 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/measures.xsd +200 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/observation.xsd +96 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/referenceSystems.xsd +211 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/temporal.xsd +332 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/temporalReferenceSystems.xsd +251 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/temporalTopology.xsd +186 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/topology.xsd +459 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/units.xsd +170 -0
- pycsw/core/schemas/ogc/gml/3.1.1/base/valueObjects.xsd +361 -0
- pycsw/core/schemas/ogc/gml/3.1.1/smil/smil20-language.xsd +117 -0
- pycsw/core/schemas/ogc/gml/3.1.1/smil/smil20.xsd +234 -0
- pycsw/core/schemas/ogc/gml/3.2.1/basicTypes.xsd +268 -0
- pycsw/core/schemas/ogc/gml/3.2.1/coordinateOperations.xsd +525 -0
- pycsw/core/schemas/ogc/gml/3.2.1/coordinateReferenceSystems.xsd +373 -0
- pycsw/core/schemas/ogc/gml/3.2.1/coordinateSystems.xsd +297 -0
- pycsw/core/schemas/ogc/gml/3.2.1/coverage.xsd +292 -0
- pycsw/core/schemas/ogc/gml/3.2.1/datums.xsd +287 -0
- pycsw/core/schemas/ogc/gml/3.2.1/defaultStyle.xsd +453 -0
- pycsw/core/schemas/ogc/gml/3.2.1/deprecatedTypes.xsd +1133 -0
- pycsw/core/schemas/ogc/gml/3.2.1/dictionary.xsd +90 -0
- pycsw/core/schemas/ogc/gml/3.2.1/direction.xsd +84 -0
- pycsw/core/schemas/ogc/gml/3.2.1/dynamicFeature.xsd +109 -0
- pycsw/core/schemas/ogc/gml/3.2.1/feature.xsd +94 -0
- pycsw/core/schemas/ogc/gml/3.2.1/geometryAggregates.xsd +197 -0
- pycsw/core/schemas/ogc/gml/3.2.1/geometryBasic0d1d.xsd +277 -0
- pycsw/core/schemas/ogc/gml/3.2.1/geometryBasic2d.xsd +124 -0
- pycsw/core/schemas/ogc/gml/3.2.1/geometryComplexes.xsd +95 -0
- pycsw/core/schemas/ogc/gml/3.2.1/geometryPrimitives.xsd +846 -0
- pycsw/core/schemas/ogc/gml/3.2.1/gml.xsd +20 -0
- pycsw/core/schemas/ogc/gml/3.2.1/gmlBase.xsd +185 -0
- pycsw/core/schemas/ogc/gml/3.2.1/grids.xsd +64 -0
- pycsw/core/schemas/ogc/gml/3.2.1/measures.xsd +68 -0
- pycsw/core/schemas/ogc/gml/3.2.1/observation.xsd +95 -0
- pycsw/core/schemas/ogc/gml/3.2.1/referenceSystems.xsd +70 -0
- pycsw/core/schemas/ogc/gml/3.2.1/temporal.xsd +269 -0
- pycsw/core/schemas/ogc/gml/3.2.1/temporalReferenceSystems.xsd +189 -0
- pycsw/core/schemas/ogc/gml/3.2.1/temporalTopology.xsd +119 -0
- pycsw/core/schemas/ogc/gml/3.2.1/topology.xsd +386 -0
- pycsw/core/schemas/ogc/gml/3.2.1/units.xsd +162 -0
- pycsw/core/schemas/ogc/gml/3.2.1/valueObjects.xsd +205 -0
- pycsw/core/schemas/ogc/ogcapi/records/part1/1.0/ogcapi-records-1.yaml +932 -0
- pycsw/core/schemas/ogc/ows/1.0.0/ows19115subset.xsd +222 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsAll.xsd +20 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsCommon.xsd +155 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsDataIdentification.xsd +112 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsExceptionReport.xsd +67 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsGetCapabilities.xsd +108 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsOperationsMetadata.xsd +161 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsServiceIdentification.xsd +55 -0
- pycsw/core/schemas/ogc/ows/1.0.0/owsServiceProvider.xsd +46 -0
- pycsw/core/schemas/ogc/ows/1.1.0/ows19115subset.xsd +236 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsAll.xsd +23 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsCommon.xsd +158 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsContents.xsd +87 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsDataIdentification.xsd +128 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsDomainType.xsd +280 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsExceptionReport.xsd +77 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsGetCapabilities.xsd +113 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsGetResourceByID.xsd +52 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsInputOutputData.xsd +60 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsManifest.xsd +125 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsOperationsMetadata.xsd +141 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsServiceIdentification.xsd +61 -0
- pycsw/core/schemas/ogc/ows/1.1.0/owsServiceProvider.xsd +48 -0
- pycsw/core/schemas/ogc/ows/2.0/ows19115subset.xsd +364 -0
- pycsw/core/schemas/ogc/ows/2.0/owsAdditionalParameters.xsd +114 -0
- pycsw/core/schemas/ogc/ows/2.0/owsAll.xsd +29 -0
- pycsw/core/schemas/ogc/ows/2.0/owsCommon.xsd +275 -0
- pycsw/core/schemas/ogc/ows/2.0/owsContents.xsd +163 -0
- pycsw/core/schemas/ogc/ows/2.0/owsDataIdentification.xsd +202 -0
- pycsw/core/schemas/ogc/ows/2.0/owsDomainType.xsd +388 -0
- pycsw/core/schemas/ogc/ows/2.0/owsExceptionReport.xsd +126 -0
- pycsw/core/schemas/ogc/ows/2.0/owsGetCapabilities.xsd +220 -0
- pycsw/core/schemas/ogc/ows/2.0/owsGetResourceByID.xsd +83 -0
- pycsw/core/schemas/ogc/ows/2.0/owsInputOutputData.xsd +98 -0
- pycsw/core/schemas/ogc/ows/2.0/owsManifest.xsd +181 -0
- pycsw/core/schemas/ogc/ows/2.0/owsOperationsMetadata.xsd +234 -0
- pycsw/core/schemas/ogc/ows/2.0/owsServiceIdentification.xsd +98 -0
- pycsw/core/schemas/ogc/ows/2.0/owsServiceProvider.xsd +64 -0
- pycsw/core/schemas/w3c/1999/xlink.xsd +271 -0
- pycsw/core/schemas/w3c/2001/xml.xsd +287 -0
- pycsw/core/util.py +552 -0
- pycsw/oaipmh.py +311 -0
- pycsw/ogc/__init__.py +29 -0
- pycsw/ogc/api/__init__.py +28 -0
- pycsw/ogc/api/oapi.py +558 -0
- pycsw/ogc/api/records.py +1414 -0
- pycsw/ogc/api/templates/_base.html +76 -0
- pycsw/ogc/api/templates/collection.html +44 -0
- pycsw/ogc/api/templates/collections.html +45 -0
- pycsw/ogc/api/templates/conformance.html +21 -0
- pycsw/ogc/api/templates/exception.html +8 -0
- pycsw/ogc/api/templates/item.html +228 -0
- pycsw/ogc/api/templates/items.html +337 -0
- pycsw/ogc/api/templates/landing_page.html +27 -0
- pycsw/ogc/api/templates/openapi.html +58 -0
- pycsw/ogc/api/templates/queryables.html +50 -0
- pycsw/ogc/api/templates/stac_items.html +173 -0
- pycsw/ogc/api/templates/static/favicon.ico +0 -0
- pycsw/ogc/api/templates/static/logo-horizontal.png +0 -0
- pycsw/ogc/api/templates/static/logo-vertical-darkbg.png +0 -0
- pycsw/ogc/api/util.py +252 -0
- pycsw/ogc/csw/__init__.py +29 -0
- pycsw/ogc/csw/cql.py +133 -0
- pycsw/ogc/csw/csw2.py +2042 -0
- pycsw/ogc/csw/csw3.py +2193 -0
- pycsw/ogc/fes/__init__.py +29 -0
- pycsw/ogc/fes/fes1.py +433 -0
- pycsw/ogc/fes/fes2.py +451 -0
- pycsw/ogc/gml/__init__.py +29 -0
- pycsw/ogc/gml/gml3.py +240 -0
- pycsw/ogc/gml/gml32.py +243 -0
- pycsw/opensearch.py +857 -0
- pycsw/plugins/__init__.py +29 -0
- pycsw/plugins/outputschemas/__init__.py +31 -0
- pycsw/plugins/outputschemas/atom.py +143 -0
- pycsw/plugins/outputschemas/datacite.py +375 -0
- pycsw/plugins/outputschemas/dif.py +213 -0
- pycsw/plugins/outputschemas/fgdc.py +180 -0
- pycsw/plugins/outputschemas/gm03.py +240 -0
- pycsw/plugins/profiles/__init__.py +29 -0
- pycsw/plugins/profiles/apiso/__init__.py +29 -0
- pycsw/plugins/profiles/apiso/apiso.py +757 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/csw/2.0.2/profiles/apiso/1.0.0/apiso.xsd +13 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gco/basicTypes.xsd +429 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gco/gco.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gco/gcoBase.xsd +61 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/applicationSchema.xsd +42 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/citation.xsd +275 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/constraints.xsd +106 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/content.xsd +188 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/dataQuality.xsd +554 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/distribution.xsd +202 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/extent.xsd +205 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/freeText.xsd +122 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/gmd.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/identification.xsd +348 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/maintenance.xsd +86 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/metadataApplication.xsd +175 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/metadataEntity.xsd +70 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/metadataExtension.xsd +99 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/portrayalCatalogue.xsd +36 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/referenceSystem.xsd +100 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmd/spatialRepresentation.xsd +237 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/basicTypes.xsd +267 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/coordinateOperations.xsd +639 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/coordinateReferenceSystems.xsd +526 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/coordinateSystems.xsd +401 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/coverage.xsd +462 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/datums.xsd +342 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/dictionary.xsd +129 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/direction.xsd +80 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/dynamicFeature.xsd +142 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/feature.xsd +215 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/geometryAggregates.xsd +216 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/geometryBasic0d1d.xsd +304 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/geometryBasic2d.xsd +123 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/geometryComplexes.xsd +89 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/geometryPrimitives.xsd +892 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/gml.xsd +14 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/gmlBase.xsd +305 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/grids.xsd +58 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/measures.xsd +167 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/observation.xsd +90 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/referenceSystems.xsd +69 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/temporal.xsd +263 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/temporalReferenceSystems.xsd +183 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/temporalTopology.xsd +124 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/topology.xsd +372 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/units.xsd +156 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gml/valueObjects.xsd +212 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/catalogues.xsd +112 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/codelistItem.xsd +168 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/crsItem.xsd +1030 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/extendedTypes.xsd +75 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/gmx.xsd +2 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/gmxUsage.xsd +127 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gmx/uomItem.xsd +162 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gsr/gsr.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gsr/spatialReferencing.xsd +24 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gss/geometry.xsd +35 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gss/gss.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gts/gts.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/gts/temporalObjects.xsd +34 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/srv/serviceMetadata.xsd +197 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/srv/serviceModel.xsd +220 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20060504/srv/srv.xsd +13 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gco/basicTypes.xsd +431 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gco/gco.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gco/gcoBase.xsd +63 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/applicationSchema.xsd +43 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/citation.xsd +276 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/constraints.xsd +107 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/content.xsd +190 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/dataQuality.xsd +556 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/distribution.xsd +203 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/extent.xsd +206 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/freeText.xsd +123 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/gmd.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/identification.xsd +349 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/maintenance.xsd +87 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/metadataApplication.xsd +176 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/metadataEntity.xsd +71 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/metadataExtension.xsd +100 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/portrayalCatalogue.xsd +37 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/referenceSystem.xsd +101 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmd/spatialRepresentation.xsd +238 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/catalogues.xsd +113 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/codelistItem.xsd +169 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/crsItem.xsd +1031 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/extendedTypes.xsd +76 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/gmx.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/gmxUsage.xsd +128 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gmx/uomItem.xsd +163 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gsr/gsr.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gsr/spatialReferencing.xsd +25 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gss/geometry.xsd +36 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gss/gss.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gts/gts.xsd +12 -0
- pycsw/plugins/profiles/apiso/schemas/ogc/iso/19139/20070417/gts/temporalObjects.xsd +35 -0
- pycsw/plugins/profiles/ebrim/__init__.py +29 -0
- pycsw/plugins/profiles/ebrim/ebrim.py +174 -0
- pycsw/plugins/profiles/ebrim/schemas/ogc/csw/2.0.2/profiles/ebrim/1.0/csw-ebrim-iri.xsd +146 -0
- pycsw/plugins/profiles/ebrim/schemas/ogc/csw/2.0.2/profiles/ebrim/1.0/csw-ebrim.xsd +104 -0
- pycsw/plugins/profiles/iso19115p3/__init__.py +29 -0
- pycsw/plugins/profiles/iso19115p3/iso19115p3.py +854 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cat/1.0/cat.xsd +13 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cat/1.0/catalogues.xsd +53 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cat/1.0/codelistItem.xsd +54 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cat/1.0/crsItem.xsd +181 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cat/1.0/uomItem.xsd +38 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cit/1.0/cit.xsd +7 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cit/1.0/citation.xsd +514 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cit/2.0/cit.xsd +10 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/cit/2.0/citation.xsd +523 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gco/1.0/baseTypes2014.xsd +530 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gco/1.0/gco.xsd +16 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gcx/1.0/extendedTypes.xsd +92 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gcx/1.0/extendedTypes_autoFromShapeChange.xsd +60 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gcx/1.0/gcx.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gex/1.0/extent.xsd +241 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gex/1.0/gex.xsd +9 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gmw/1.0/gmlWrapperTypes2014.xsd +159 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/gmw/1.0/gmw.xsd +14 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/lan/1.0/lan.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/lan/1.0/language.xsd +140 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mac/1.0/acquisitionInformationImagery.xsd +622 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mac/1.0/mac.xsd +11 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mac/2.0/acquisitionInformationImagery.xsd +590 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mac/2.0/event.xsd +108 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mac/2.0/mac.xsd +10 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mas/1.0/applicationSchema.xsd +61 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mas/1.0/mas.xsd +9 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mcc/1.0/AbstractCommonClasses.xsd +358 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mcc/1.0/commonClasses.xsd +220 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mcc/1.0/mcc.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mco/1.0/constraints.xsd +188 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mco/1.0/mco.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/md1/1.0/md1.xsd +9 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/md1/1.0/metadataWExtendedType.xsd +4 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/md2/1.0/md2.xsd +15 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/md2/1.0/metadataWithExtensions.xsd +4 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mda/1.0/mda.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mda/1.0/metadataApplication.xsd +200 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdb/1.0/mdb.xsd +14 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdb/1.0/metadataBase.xsd +98 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdb/2.0/mdb.xsd +20 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdb/2.0/metadataBase.xsd +102 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mds/1.0/mds.xsd +22 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mds/1.0/metadataDataServices.xsd +4 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdt/1.0/mdt.xsd +13 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mdt/1.0/metadataTransfer.xsd +111 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mex/1.0/metadataExtension.xsd +156 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mex/1.0/mex.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mmi/1.0/maintenance.xsd +76 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mmi/1.0/mmi.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mpc/1.0/mpc.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mpc/1.0/portrayalCatalogue.xsd +31 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/1.0/content.xsd +416 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/1.0/contentInformationImagery.xsd +185 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/1.0/mrc.xsd +11 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/2.0/content.xsd +419 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/2.0/contentInformationImagery.xsd +171 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrc/2.0/mrc.xsd +11 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrd/1.0/distribution.xsd +267 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrd/1.0/mrd.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mri/1.0/identification.xsd +517 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mri/1.0/mri.xsd +9 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/1.0/lineage.xsd +147 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/1.0/lineageImagery.xsd +236 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/1.0/mrl.xsd +9 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/2.0/lineage.xsd +147 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/2.0/lineageImagery.xsd +312 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrl/2.0/mrl.xsd +11 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrs/1.0/mrs.xsd +8 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/mrs/1.0/referenceSystem.xsd +47 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/1.0/msr.xsd +10 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/1.0/spatialRepresentation.xsd +375 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/1.0/spatialRepresentationImagery.xsd +119 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/2.0/msr.xsd +15 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/2.0/spatialRepresentation.xsd +381 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/msr/2.0/spatialRepresentationImagery.xsd +120 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/srv/2.0/serviceInformation.xsd +272 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/srv/2.0/srv.xsd +6 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/srv/2.1/serviceInformation.xsd +278 -0
- pycsw/plugins/profiles/iso19115p3/schemas/ogc/iso/iso19115-3/srv/2.1/srv.xsd +6 -0
- pycsw/plugins/profiles/profile.py +141 -0
- pycsw/plugins/repository/__init__.py +29 -0
- pycsw/plugins/repository/odc/__init__.py +29 -0
- pycsw/plugins/repository/odc/odc.py +153 -0
- pycsw/server.py +938 -0
- pycsw/sru.py +217 -0
- pycsw/stac/__init__.py +29 -0
- pycsw/stac/api.py +571 -0
- pycsw/wsgi.py +233 -0
- pycsw/wsgi_flask.py +345 -0
|
@@ -0,0 +1,932 @@
|
|
|
1
|
+
openapi: 3.0.2
|
|
2
|
+
info:
|
|
3
|
+
title: "Building Blocks specified in OGC API - Records - Part 1: Core"
|
|
4
|
+
description: |-
|
|
5
|
+
Common components used in the
|
|
6
|
+
[OGC standard "OGC API - Records - Part 1: Core"]
|
|
7
|
+
(https://docs.ogc.org/DRAFTS/20-004.html).
|
|
8
|
+
|
|
9
|
+
OGC API - Records - Part 1: Core 1.0 is an OGC Standard.
|
|
10
|
+
Copyright (c) 2020 Open Geospatial Consortium.
|
|
11
|
+
To obtain additional rights of use, visit
|
|
12
|
+
http://www.opengeospatial.org/legal/ .
|
|
13
|
+
|
|
14
|
+
This document is also available on
|
|
15
|
+
[OGC](http://schemas.opengis.net/ogcapi/records/part1/1.0/openapi/ogcapi-records-1.yaml).
|
|
16
|
+
version: '1.0.0'
|
|
17
|
+
contact:
|
|
18
|
+
name: Panagiotis (Peter) A. Vretanos
|
|
19
|
+
email: pvretano@pvretano.com
|
|
20
|
+
license:
|
|
21
|
+
name: OGC License
|
|
22
|
+
url: 'http://www.opengeospatial.org/legal/'
|
|
23
|
+
components:
|
|
24
|
+
parameters:
|
|
25
|
+
bbox:
|
|
26
|
+
name: bbox
|
|
27
|
+
in: query
|
|
28
|
+
description: |-
|
|
29
|
+
Only records that have a geometry that intersects the bounding box are
|
|
30
|
+
selected. The bounding box is provided as four or six numbers,
|
|
31
|
+
depending on whether the coordinate reference system includes a
|
|
32
|
+
vertical axis (height or depth):
|
|
33
|
+
|
|
34
|
+
* Lower left corner, coordinate axis 1
|
|
35
|
+
* Lower left corner, coordinate axis 2
|
|
36
|
+
* Minimum value, coordinate axis 3 (optional)
|
|
37
|
+
* Upper right corner, coordinate axis 1
|
|
38
|
+
* Upper right corner, coordinate axis 2
|
|
39
|
+
* Maximum value, coordinate axis 3 (optional)
|
|
40
|
+
|
|
41
|
+
The coordinate reference system of the values is WGS 84 long/lat
|
|
42
|
+
(http://www.opengis.net/def/crs/OGC/1.3/CRS84) unless a different
|
|
43
|
+
coordinate reference system is specified in the parameter `bbox-crs`.
|
|
44
|
+
|
|
45
|
+
For WGS 84 longitude/latitude the values are in most cases the sequence
|
|
46
|
+
of minimum longitude, minimum latitude, maximum longitude and maximum
|
|
47
|
+
latitude.
|
|
48
|
+
|
|
49
|
+
However, in cases where the box spans the antimeridian the first value
|
|
50
|
+
(west-most box edge) is larger than the third value (east-most box
|
|
51
|
+
edge).
|
|
52
|
+
|
|
53
|
+
If the vertical axis is included, the third and the sixth number are
|
|
54
|
+
the bottom and the top of the 3-dimensional bounding box.
|
|
55
|
+
|
|
56
|
+
If a record has multiple spatial geometry properties, it is the
|
|
57
|
+
decision of the server whether only a single spatial geometry property
|
|
58
|
+
is used to determine the extent or all relevant geometries.
|
|
59
|
+
required: false
|
|
60
|
+
schema:
|
|
61
|
+
type: array
|
|
62
|
+
oneOf:
|
|
63
|
+
- minItems: 4
|
|
64
|
+
maxItems: 4
|
|
65
|
+
- minItems: 6
|
|
66
|
+
maxItems: 6
|
|
67
|
+
items:
|
|
68
|
+
type: number
|
|
69
|
+
style: form
|
|
70
|
+
explode: false
|
|
71
|
+
datetime:
|
|
72
|
+
name: datetime
|
|
73
|
+
in: query
|
|
74
|
+
description: |-
|
|
75
|
+
Either a date-time or an interval, open or closed. Date and time
|
|
76
|
+
expressions adhere to RFC 3339. Open intervals are expressed using
|
|
77
|
+
double-dots.
|
|
78
|
+
|
|
79
|
+
Examples:
|
|
80
|
+
|
|
81
|
+
* A date-time: "2018-02-12T23:20:50Z"
|
|
82
|
+
* A closed interval: "2018-02-12T00:00:00Z/2018-03-18T12:31:12Z"
|
|
83
|
+
* Open intervals: "2018-02-12T00:00:00Z/.." or "../2018-03-18T12:31:12Z"
|
|
84
|
+
|
|
85
|
+
Only records that have a temporal property that intersects the value of
|
|
86
|
+
`datetime` are selected. It is left to the decision of the server
|
|
87
|
+
whether only a single temporal property is used to determine the extent
|
|
88
|
+
or all relevant temporal properties.
|
|
89
|
+
required: false
|
|
90
|
+
schema:
|
|
91
|
+
type: string
|
|
92
|
+
style: form
|
|
93
|
+
explode: false
|
|
94
|
+
limit:
|
|
95
|
+
name: limit
|
|
96
|
+
in: query
|
|
97
|
+
description: |-
|
|
98
|
+
The optional limit parameter limits the number of items that are
|
|
99
|
+
presented in the response document. Only items are counted that
|
|
100
|
+
are on the first level of the collection in the response document.
|
|
101
|
+
Nested objects contained within the explicitly requested items
|
|
102
|
+
shall not be counted.
|
|
103
|
+
required: false
|
|
104
|
+
schema:
|
|
105
|
+
type: integer
|
|
106
|
+
minimum: 1
|
|
107
|
+
maximum: 10000
|
|
108
|
+
default: 10
|
|
109
|
+
style: form
|
|
110
|
+
explode: false
|
|
111
|
+
q:
|
|
112
|
+
name: q
|
|
113
|
+
in: query
|
|
114
|
+
description: |-
|
|
115
|
+
The optional q parameter supports keyword searching. Only records
|
|
116
|
+
whose text fields contain one or more of the specified search terms
|
|
117
|
+
are selected. The specific set of text keys/fields/properties of a
|
|
118
|
+
record to which the q operator is applied is up to the description
|
|
119
|
+
of the server. Implementations should, however, apply the q
|
|
120
|
+
operator to the title, description and keywords keys/fields/properties.
|
|
121
|
+
required: false
|
|
122
|
+
schema:
|
|
123
|
+
type: array
|
|
124
|
+
items:
|
|
125
|
+
type: string
|
|
126
|
+
explode: false
|
|
127
|
+
style: form
|
|
128
|
+
type:
|
|
129
|
+
name: type
|
|
130
|
+
in: query
|
|
131
|
+
description: |-
|
|
132
|
+
The optional type parameter supports searching by resource type. Only
|
|
133
|
+
records whose type, as indicated by the value of the type core
|
|
134
|
+
queryable, is equal to one of the listed values shall be selected.
|
|
135
|
+
required: false
|
|
136
|
+
schema:
|
|
137
|
+
type: array
|
|
138
|
+
items:
|
|
139
|
+
type: string
|
|
140
|
+
explode: false
|
|
141
|
+
style: form
|
|
142
|
+
externalId:
|
|
143
|
+
name: externalId
|
|
144
|
+
in: query
|
|
145
|
+
description: |-
|
|
146
|
+
The optional externalId parameter supports searching by an identifier
|
|
147
|
+
that was not assigned by the catalogue (i.e. an external identifier).
|
|
148
|
+
Only records with an external identifer, as indicated by the value of
|
|
149
|
+
the externalId core queryable array, that is equal to one of the listed
|
|
150
|
+
values shall be selected.
|
|
151
|
+
required: false
|
|
152
|
+
schema:
|
|
153
|
+
type: array
|
|
154
|
+
items:
|
|
155
|
+
type: string
|
|
156
|
+
explode: false
|
|
157
|
+
style: form
|
|
158
|
+
sortby:
|
|
159
|
+
name: sortby
|
|
160
|
+
in: query
|
|
161
|
+
required: false
|
|
162
|
+
schema:
|
|
163
|
+
type: array
|
|
164
|
+
minItems: 1
|
|
165
|
+
items:
|
|
166
|
+
type: string
|
|
167
|
+
pattern: '[+|-][A-Za-z_][A-Za-z_0-9]*'
|
|
168
|
+
style: form
|
|
169
|
+
explode: false
|
|
170
|
+
collectionId:
|
|
171
|
+
name: collectionId
|
|
172
|
+
in: path
|
|
173
|
+
description: local identifier of a collection
|
|
174
|
+
required: true
|
|
175
|
+
schema:
|
|
176
|
+
type: string
|
|
177
|
+
recordId:
|
|
178
|
+
name: recordId
|
|
179
|
+
in: path
|
|
180
|
+
description: local identifier of a record
|
|
181
|
+
required: true
|
|
182
|
+
schema:
|
|
183
|
+
type: string
|
|
184
|
+
schemas:
|
|
185
|
+
collectionInfo:
|
|
186
|
+
type: object
|
|
187
|
+
required:
|
|
188
|
+
- id
|
|
189
|
+
- links
|
|
190
|
+
properties:
|
|
191
|
+
id:
|
|
192
|
+
description: identifier of the collection used, for example, in URIs
|
|
193
|
+
type: string
|
|
194
|
+
title:
|
|
195
|
+
description: human readable title of the collection
|
|
196
|
+
type: string
|
|
197
|
+
description:
|
|
198
|
+
description: a description of the records in the collection
|
|
199
|
+
type: string
|
|
200
|
+
links:
|
|
201
|
+
type: array
|
|
202
|
+
items:
|
|
203
|
+
$ref: "#/components/schemas/link"
|
|
204
|
+
extent:
|
|
205
|
+
$ref: "#/components/schemas/extent"
|
|
206
|
+
itemType:
|
|
207
|
+
description: |-
|
|
208
|
+
indicator about the type of the items in the collection (the
|
|
209
|
+
default value is 'record' for OAPIR).
|
|
210
|
+
type: string
|
|
211
|
+
default: record
|
|
212
|
+
crs:
|
|
213
|
+
description: |-
|
|
214
|
+
the list of coordinate reference systems supported by the service
|
|
215
|
+
type: array
|
|
216
|
+
items:
|
|
217
|
+
type: string
|
|
218
|
+
default:
|
|
219
|
+
- http://www.opengis.net/def/crs/OGC/1.3/CRS84
|
|
220
|
+
collections:
|
|
221
|
+
type: object
|
|
222
|
+
required:
|
|
223
|
+
- links
|
|
224
|
+
- collections
|
|
225
|
+
properties:
|
|
226
|
+
links:
|
|
227
|
+
type: array
|
|
228
|
+
items:
|
|
229
|
+
$ref: "#/components/schemas/link"
|
|
230
|
+
collections:
|
|
231
|
+
type: array
|
|
232
|
+
items:
|
|
233
|
+
$ref: "#/components/schemas/collectionInfo"
|
|
234
|
+
confClasses:
|
|
235
|
+
type: object
|
|
236
|
+
required:
|
|
237
|
+
- conformsTo
|
|
238
|
+
properties:
|
|
239
|
+
conformsTo:
|
|
240
|
+
type: array
|
|
241
|
+
items:
|
|
242
|
+
type: string
|
|
243
|
+
exception:
|
|
244
|
+
type: object
|
|
245
|
+
description: |-
|
|
246
|
+
information about the exception; an error code plus an optional
|
|
247
|
+
description.
|
|
248
|
+
required:
|
|
249
|
+
- code
|
|
250
|
+
properties:
|
|
251
|
+
code:
|
|
252
|
+
type: string
|
|
253
|
+
description:
|
|
254
|
+
type: string
|
|
255
|
+
extent:
|
|
256
|
+
type: object
|
|
257
|
+
description: |-
|
|
258
|
+
The extent of the records in the collection. In the Core only spatial
|
|
259
|
+
and temporal extents are specified. Extensions may add additional
|
|
260
|
+
members to represent other extents, for example, thermal or pressure
|
|
261
|
+
ranges.
|
|
262
|
+
properties:
|
|
263
|
+
spatial:
|
|
264
|
+
description: |-
|
|
265
|
+
The spatial extent of the records in the collection.
|
|
266
|
+
type: object
|
|
267
|
+
properties:
|
|
268
|
+
bbox:
|
|
269
|
+
description: |-
|
|
270
|
+
One or more bounding boxes that describe the spatial extent of
|
|
271
|
+
the dataset. In the Core only a single bounding box is
|
|
272
|
+
supported. Extensions may support additional areas. If multiple
|
|
273
|
+
areas are provided, the union of the bounding boxes describes
|
|
274
|
+
the spatial extent.
|
|
275
|
+
type: array
|
|
276
|
+
minItems: 1
|
|
277
|
+
items:
|
|
278
|
+
description: |-
|
|
279
|
+
Each bounding box is provided as four or six numbers,
|
|
280
|
+
depending on whether the coordinate reference system
|
|
281
|
+
includes a vertical axis (height or depth):
|
|
282
|
+
|
|
283
|
+
* Lower left corner, coordinate axis 1
|
|
284
|
+
* Lower left corner, coordinate axis 2
|
|
285
|
+
* Minimum value, coordinate axis 3 (optional)
|
|
286
|
+
* Upper right corner, coordinate axis 1
|
|
287
|
+
* Upper right corner, coordinate axis 2
|
|
288
|
+
* Maximum value, coordinate axis 3 (optional)
|
|
289
|
+
|
|
290
|
+
The coordinate reference system of the values is WGS 84
|
|
291
|
+
long/lat (http://www.opengis.net/def/crs/OGC/1.3/CRS84)
|
|
292
|
+
unless a different coordinate reference system is specified
|
|
293
|
+
in `crs`.
|
|
294
|
+
|
|
295
|
+
For WGS 84 longitude/latitude the values are in most cases
|
|
296
|
+
the sequence of minimum longitude, minimum latitude, maximum
|
|
297
|
+
longitude and maximum latitude. However, in cases where the
|
|
298
|
+
box spans the antimeridian the first value (west-most box
|
|
299
|
+
edge) is larger than the third value (east-most box edge).
|
|
300
|
+
|
|
301
|
+
If the vertical axis is included, the third and the sixth
|
|
302
|
+
number are the bottom and the top of the 3-dimensional
|
|
303
|
+
bounding box.
|
|
304
|
+
|
|
305
|
+
If a record has multiple spatial geometry properties, it is
|
|
306
|
+
the decision of the server whether only a single spatial
|
|
307
|
+
geometry property is used to determine the extent or all
|
|
308
|
+
relevant geometries.
|
|
309
|
+
type: array
|
|
310
|
+
oneOf:
|
|
311
|
+
- minItems: 4
|
|
312
|
+
maxItems: 4
|
|
313
|
+
- minItems: 6
|
|
314
|
+
maxItems: 6
|
|
315
|
+
items:
|
|
316
|
+
type: number
|
|
317
|
+
example:
|
|
318
|
+
- -180
|
|
319
|
+
- -90
|
|
320
|
+
- 180
|
|
321
|
+
- 90
|
|
322
|
+
crs:
|
|
323
|
+
description: |-
|
|
324
|
+
Coordinate reference system of the coordinates in the spatial
|
|
325
|
+
extent (property `bbox`). The default reference system is WGS
|
|
326
|
+
84 longitude/latitude. In the Core this is the only supported
|
|
327
|
+
coordinate reference system. Extensions may support additional
|
|
328
|
+
coordinate reference systems and add additional enum values.
|
|
329
|
+
type: string
|
|
330
|
+
enum:
|
|
331
|
+
- 'http://www.opengis.net/def/crs/OGC/1.3/CRS84'
|
|
332
|
+
default: 'http://www.opengis.net/def/crs/OGC/1.3/CRS84'
|
|
333
|
+
temporal:
|
|
334
|
+
description: |-
|
|
335
|
+
The temporal extent of the records in the collection.
|
|
336
|
+
type: object
|
|
337
|
+
properties:
|
|
338
|
+
interval:
|
|
339
|
+
description: |-
|
|
340
|
+
One or more time intervals that describe the temporal extent of
|
|
341
|
+
the dataset. The value `null` is supported and indicates an
|
|
342
|
+
open time interval. In the Core only a single time interval is
|
|
343
|
+
supported. Extensions may support multiple intervals. If
|
|
344
|
+
multiple intervals are provided, the union of the intervals
|
|
345
|
+
describes the temporal extent.
|
|
346
|
+
type: array
|
|
347
|
+
minItems: 1
|
|
348
|
+
items:
|
|
349
|
+
description: |-
|
|
350
|
+
Begin and end times of the time interval. The timestamps are
|
|
351
|
+
in the temporal coordinate reference system specified in
|
|
352
|
+
`trs`. By default this is the Gregorian calendar.
|
|
353
|
+
type: array
|
|
354
|
+
minItems: 2
|
|
355
|
+
maxItems: 2
|
|
356
|
+
items:
|
|
357
|
+
type: string
|
|
358
|
+
format: date-time
|
|
359
|
+
nullable: true
|
|
360
|
+
example:
|
|
361
|
+
- '2011-11-11T12:22:11Z'
|
|
362
|
+
- null
|
|
363
|
+
trs:
|
|
364
|
+
description: |-
|
|
365
|
+
Coordinate reference system of the coordinates in the temporal
|
|
366
|
+
extent (property `interval`). The default reference system is
|
|
367
|
+
the Gregorian calendar. In the Core this is the only supported
|
|
368
|
+
temporal coordinate reference system. Extensions may support
|
|
369
|
+
additional temporal coordinate reference systems and add
|
|
370
|
+
additional enum values.
|
|
371
|
+
type: string
|
|
372
|
+
enum:
|
|
373
|
+
- 'http://www.opengis.net/def/uom/ISO-8601/0/Gregorian'
|
|
374
|
+
default: 'http://www.opengis.net/def/uom/ISO-8601/0/Gregorian'
|
|
375
|
+
featureCollectionGeoJSON:
|
|
376
|
+
type: object
|
|
377
|
+
required:
|
|
378
|
+
- type
|
|
379
|
+
- features
|
|
380
|
+
properties:
|
|
381
|
+
type:
|
|
382
|
+
type: string
|
|
383
|
+
enum:
|
|
384
|
+
- FeatureCollection
|
|
385
|
+
features:
|
|
386
|
+
type: array
|
|
387
|
+
items:
|
|
388
|
+
$ref: "#/components/schemas/recordGeoJSON"
|
|
389
|
+
links:
|
|
390
|
+
type: array
|
|
391
|
+
items:
|
|
392
|
+
$ref: "#/components/schemas/link"
|
|
393
|
+
timeStamp:
|
|
394
|
+
$ref: "#/components/schemas/timeStamp"
|
|
395
|
+
numberMatched:
|
|
396
|
+
$ref: "#/components/schemas/numberMatched"
|
|
397
|
+
numberReturned:
|
|
398
|
+
$ref: "#/components/schemas/numberReturned"
|
|
399
|
+
recordGeoJSON:
|
|
400
|
+
type: object
|
|
401
|
+
required:
|
|
402
|
+
- id
|
|
403
|
+
- type
|
|
404
|
+
- geometry
|
|
405
|
+
- properties
|
|
406
|
+
properties:
|
|
407
|
+
id:
|
|
408
|
+
type: string
|
|
409
|
+
description: A unique identifier of the catalogue record.
|
|
410
|
+
format: uri
|
|
411
|
+
type:
|
|
412
|
+
type: string
|
|
413
|
+
enum:
|
|
414
|
+
- Feature
|
|
415
|
+
geometry:
|
|
416
|
+
$ref: "#/components/schemas/geometryGeoJSON"
|
|
417
|
+
properties:
|
|
418
|
+
type: object
|
|
419
|
+
required:
|
|
420
|
+
- type
|
|
421
|
+
- title
|
|
422
|
+
properties:
|
|
423
|
+
recordCreated:
|
|
424
|
+
type: string
|
|
425
|
+
description: Date of creation of this record.
|
|
426
|
+
format: date-time
|
|
427
|
+
recordUpdated:
|
|
428
|
+
type: string
|
|
429
|
+
description: The most recent date on which the record was changed.
|
|
430
|
+
format: date-time
|
|
431
|
+
type:
|
|
432
|
+
type: string
|
|
433
|
+
description: The nature or genre of the resource.
|
|
434
|
+
format: uri
|
|
435
|
+
title:
|
|
436
|
+
type: string
|
|
437
|
+
description: A human-readable name given to the resource.
|
|
438
|
+
description:
|
|
439
|
+
type: string
|
|
440
|
+
description: A free-text account of the resource.
|
|
441
|
+
keywords:
|
|
442
|
+
type: array
|
|
443
|
+
description: |-
|
|
444
|
+
The topic or topics of the resource. Typically represented
|
|
445
|
+
using keywords, tags, key phrases, or classification codes.
|
|
446
|
+
Recommended best practice is to use a controlled vocabulary.
|
|
447
|
+
items:
|
|
448
|
+
type: string
|
|
449
|
+
keywordsCodespace:
|
|
450
|
+
type: string
|
|
451
|
+
description: |-
|
|
452
|
+
A reference to a controlled vocabulary used for the keywords.
|
|
453
|
+
format: uri
|
|
454
|
+
language:
|
|
455
|
+
type: string
|
|
456
|
+
description: |-
|
|
457
|
+
The natural language used for textual values (e.g. titles,
|
|
458
|
+
descriptions, etc.) of the resource. ISO 639-1/639-2 codes
|
|
459
|
+
should be used.
|
|
460
|
+
default: en
|
|
461
|
+
externalId:
|
|
462
|
+
type: array
|
|
463
|
+
description: |-
|
|
464
|
+
An identifier for the resource assigned by an external (to
|
|
465
|
+
the catalogue) entity.
|
|
466
|
+
items:
|
|
467
|
+
type: string
|
|
468
|
+
created:
|
|
469
|
+
type: string
|
|
470
|
+
description: Date of creation of the resource.
|
|
471
|
+
format: date-time
|
|
472
|
+
updated:
|
|
473
|
+
type: string
|
|
474
|
+
description: Most recent date on which the resource was changed.
|
|
475
|
+
format: date-time
|
|
476
|
+
publisher:
|
|
477
|
+
type: string
|
|
478
|
+
description: |-
|
|
479
|
+
Link to the entity making the resource available. Recommended
|
|
480
|
+
best practice is to use a VCard
|
|
481
|
+
(see http://www.w3.org/TR/vcard-rdf/).
|
|
482
|
+
format: uri
|
|
483
|
+
themes:
|
|
484
|
+
type: array
|
|
485
|
+
description: |-
|
|
486
|
+
A knowledge organization system used to classify the resource.
|
|
487
|
+
items:
|
|
488
|
+
type: object
|
|
489
|
+
properties:
|
|
490
|
+
scheme:
|
|
491
|
+
type: string
|
|
492
|
+
description: |-
|
|
493
|
+
An identifier for the knowledge organization system used
|
|
494
|
+
to classify the resource. It is recommended that the
|
|
495
|
+
identifier by a resolvable URI.
|
|
496
|
+
concepts:
|
|
497
|
+
type: array
|
|
498
|
+
description: |-
|
|
499
|
+
One or more entity/concept identifers from this
|
|
500
|
+
knowledge system. it is recommended that a resolvable
|
|
501
|
+
URI be used for each entity/concept identifier.
|
|
502
|
+
items:
|
|
503
|
+
type: string
|
|
504
|
+
formats:
|
|
505
|
+
type: array
|
|
506
|
+
description: A list of available distributions of the resource.
|
|
507
|
+
items:
|
|
508
|
+
type: string
|
|
509
|
+
contactPoint:
|
|
510
|
+
type: string
|
|
511
|
+
description: |-
|
|
512
|
+
Link to relevant contact information. Recommended best
|
|
513
|
+
practice is to use a VCard
|
|
514
|
+
(see http://www.w3.org/TR/vcard-rdf/).
|
|
515
|
+
format: uri
|
|
516
|
+
license:
|
|
517
|
+
type: string
|
|
518
|
+
description: |-
|
|
519
|
+
A legal document under which the resource is made available.
|
|
520
|
+
format: uri
|
|
521
|
+
rights:
|
|
522
|
+
type: string
|
|
523
|
+
description: |-
|
|
524
|
+
A statement that concerns all rights not addresses by the
|
|
525
|
+
license such as a copyright statement.
|
|
526
|
+
extent:
|
|
527
|
+
$ref: "#/components/schemas/extent"
|
|
528
|
+
associations:
|
|
529
|
+
type: array
|
|
530
|
+
description: |-
|
|
531
|
+
A list of links for accessing the resource (e.g. download
|
|
532
|
+
link, access link) in one of the supported distribution
|
|
533
|
+
formats and/or links to other resources associated with
|
|
534
|
+
this resource.
|
|
535
|
+
items:
|
|
536
|
+
$ref: "#/components/schemas/link"
|
|
537
|
+
additionalProperties: true
|
|
538
|
+
links:
|
|
539
|
+
type: array
|
|
540
|
+
description: |-
|
|
541
|
+
A list of links for navigating the API (e.g. prev, next, etc.).
|
|
542
|
+
items:
|
|
543
|
+
$ref: "#/components/schemas/link"
|
|
544
|
+
geometryGeoJSON:
|
|
545
|
+
oneOf:
|
|
546
|
+
- $ref: "#/components/schemas/pointGeoJSON"
|
|
547
|
+
- $ref: "#/components/schemas/multipointGeoJSON"
|
|
548
|
+
- $ref: "#/components/schemas/linestringGeoJSON"
|
|
549
|
+
- $ref: "#/components/schemas/multilinestringGeoJSON"
|
|
550
|
+
- $ref: "#/components/schemas/polygonGeoJSON"
|
|
551
|
+
- $ref: "#/components/schemas/multipolygonGeoJSON"
|
|
552
|
+
- $ref: "#/components/schemas/geometrycollectionGeoJSON"
|
|
553
|
+
geometrycollectionGeoJSON:
|
|
554
|
+
type: object
|
|
555
|
+
required:
|
|
556
|
+
- type
|
|
557
|
+
- geometries
|
|
558
|
+
properties:
|
|
559
|
+
type:
|
|
560
|
+
type: string
|
|
561
|
+
enum:
|
|
562
|
+
- GeometryCollection
|
|
563
|
+
geometries:
|
|
564
|
+
type: array
|
|
565
|
+
items:
|
|
566
|
+
$ref: "#/components/schemas/geometryGeoJSON"
|
|
567
|
+
landingPage:
|
|
568
|
+
type: object
|
|
569
|
+
required:
|
|
570
|
+
- links
|
|
571
|
+
properties:
|
|
572
|
+
title:
|
|
573
|
+
type: string
|
|
574
|
+
description:
|
|
575
|
+
type: string
|
|
576
|
+
links:
|
|
577
|
+
type: array
|
|
578
|
+
items:
|
|
579
|
+
$ref: "#/components/schemas/link"
|
|
580
|
+
linestringGeoJSON:
|
|
581
|
+
type: object
|
|
582
|
+
required:
|
|
583
|
+
- type
|
|
584
|
+
- coordinates
|
|
585
|
+
properties:
|
|
586
|
+
type:
|
|
587
|
+
type: string
|
|
588
|
+
enum:
|
|
589
|
+
- LineString
|
|
590
|
+
coordinates:
|
|
591
|
+
type: array
|
|
592
|
+
minItems: 2
|
|
593
|
+
items:
|
|
594
|
+
type: array
|
|
595
|
+
minItems: 2
|
|
596
|
+
items:
|
|
597
|
+
type: number
|
|
598
|
+
link:
|
|
599
|
+
type: object
|
|
600
|
+
required:
|
|
601
|
+
- href
|
|
602
|
+
properties:
|
|
603
|
+
href:
|
|
604
|
+
type: string
|
|
605
|
+
rel:
|
|
606
|
+
type: string
|
|
607
|
+
type:
|
|
608
|
+
type: string
|
|
609
|
+
hreflang:
|
|
610
|
+
type: string
|
|
611
|
+
title:
|
|
612
|
+
type: string
|
|
613
|
+
length:
|
|
614
|
+
type: integer
|
|
615
|
+
multilinestringGeoJSON:
|
|
616
|
+
type: object
|
|
617
|
+
required:
|
|
618
|
+
- type
|
|
619
|
+
- coordinates
|
|
620
|
+
properties:
|
|
621
|
+
type:
|
|
622
|
+
type: string
|
|
623
|
+
enum:
|
|
624
|
+
- MultiLineString
|
|
625
|
+
coordinates:
|
|
626
|
+
type: array
|
|
627
|
+
items:
|
|
628
|
+
type: array
|
|
629
|
+
minItems: 2
|
|
630
|
+
items:
|
|
631
|
+
type: array
|
|
632
|
+
minItems: 2
|
|
633
|
+
items:
|
|
634
|
+
type: number
|
|
635
|
+
multipointGeoJSON:
|
|
636
|
+
type: object
|
|
637
|
+
required:
|
|
638
|
+
- type
|
|
639
|
+
- coordinates
|
|
640
|
+
properties:
|
|
641
|
+
type:
|
|
642
|
+
type: string
|
|
643
|
+
enum:
|
|
644
|
+
- MultiPoint
|
|
645
|
+
coordinates:
|
|
646
|
+
type: array
|
|
647
|
+
items:
|
|
648
|
+
type: array
|
|
649
|
+
minItems: 2
|
|
650
|
+
items:
|
|
651
|
+
type: number
|
|
652
|
+
multipolygonGeoJSON:
|
|
653
|
+
type: object
|
|
654
|
+
required:
|
|
655
|
+
- type
|
|
656
|
+
- coordinates
|
|
657
|
+
properties:
|
|
658
|
+
type:
|
|
659
|
+
type: string
|
|
660
|
+
enum:
|
|
661
|
+
- MultiPolygon
|
|
662
|
+
coordinates:
|
|
663
|
+
type: array
|
|
664
|
+
items:
|
|
665
|
+
type: array
|
|
666
|
+
items:
|
|
667
|
+
type: array
|
|
668
|
+
minItems: 4
|
|
669
|
+
items:
|
|
670
|
+
type: array
|
|
671
|
+
minItems: 2
|
|
672
|
+
items:
|
|
673
|
+
type: number
|
|
674
|
+
numberMatched:
|
|
675
|
+
description: |-
|
|
676
|
+
The number of records of the record type that match the selection
|
|
677
|
+
parameters like `bbox`.
|
|
678
|
+
type: integer
|
|
679
|
+
minimum: 0
|
|
680
|
+
numberReturned:
|
|
681
|
+
description: |-
|
|
682
|
+
The number of records in the record collection.
|
|
683
|
+
|
|
684
|
+
A server may omit this information in a response, if the information
|
|
685
|
+
about the number of records is not known or difficult to compute.
|
|
686
|
+
|
|
687
|
+
If the value is provided, the value shall be identical to the number
|
|
688
|
+
of items in the "records" array.
|
|
689
|
+
type: integer
|
|
690
|
+
minimum: 0
|
|
691
|
+
pointGeoJSON:
|
|
692
|
+
type: object
|
|
693
|
+
required:
|
|
694
|
+
- type
|
|
695
|
+
- coordinates
|
|
696
|
+
properties:
|
|
697
|
+
type:
|
|
698
|
+
type: string
|
|
699
|
+
enum:
|
|
700
|
+
- Point
|
|
701
|
+
coordinates:
|
|
702
|
+
type: array
|
|
703
|
+
minItems: 2
|
|
704
|
+
items:
|
|
705
|
+
type: number
|
|
706
|
+
polygonGeoJSON:
|
|
707
|
+
type: object
|
|
708
|
+
required:
|
|
709
|
+
- type
|
|
710
|
+
- coordinates
|
|
711
|
+
properties:
|
|
712
|
+
type:
|
|
713
|
+
type: string
|
|
714
|
+
enum:
|
|
715
|
+
- Polygon
|
|
716
|
+
coordinates:
|
|
717
|
+
type: array
|
|
718
|
+
items:
|
|
719
|
+
type: array
|
|
720
|
+
minItems: 4
|
|
721
|
+
items:
|
|
722
|
+
type: array
|
|
723
|
+
minItems: 2
|
|
724
|
+
items:
|
|
725
|
+
type: number
|
|
726
|
+
sortable:
|
|
727
|
+
type: object
|
|
728
|
+
required:
|
|
729
|
+
- id
|
|
730
|
+
properties:
|
|
731
|
+
id:
|
|
732
|
+
description: the identifier/name for the sortable
|
|
733
|
+
type: string
|
|
734
|
+
title:
|
|
735
|
+
description: a human readable title for the sortable
|
|
736
|
+
type: string
|
|
737
|
+
description:
|
|
738
|
+
description: a human-readable narrative describing the sortable
|
|
739
|
+
type: string
|
|
740
|
+
language:
|
|
741
|
+
description: the language used for the title and description
|
|
742
|
+
type: string
|
|
743
|
+
links:
|
|
744
|
+
type: array
|
|
745
|
+
items:
|
|
746
|
+
$ref: "#/components/schemas/link"
|
|
747
|
+
timeStamp:
|
|
748
|
+
description: |-
|
|
749
|
+
This property indicates the time and date when the response was
|
|
750
|
+
generated.
|
|
751
|
+
type: string
|
|
752
|
+
format: date-time
|
|
753
|
+
example: '2017-08-17T08:05:32Z'
|
|
754
|
+
responses:
|
|
755
|
+
LandingPage:
|
|
756
|
+
description: |-
|
|
757
|
+
The landing page provides links to the API definition
|
|
758
|
+
(link relations `service-desc` and `service-doc`),
|
|
759
|
+
the Conformance declaration (path `/conformance`,
|
|
760
|
+
link relation `conformance`), and the Record
|
|
761
|
+
Collections (path `/collections`, link relation
|
|
762
|
+
`data`).
|
|
763
|
+
content:
|
|
764
|
+
application/json:
|
|
765
|
+
schema:
|
|
766
|
+
$ref: '#/components/schemas/landingPage'
|
|
767
|
+
text/html:
|
|
768
|
+
schema:
|
|
769
|
+
type: string
|
|
770
|
+
ConformanceDeclaration:
|
|
771
|
+
description: |-
|
|
772
|
+
The URIs of all conformance classes supported by the server.
|
|
773
|
+
|
|
774
|
+
To support "generic" clients that want to access multiple
|
|
775
|
+
OGC API Records implementations - and not "just" a specific
|
|
776
|
+
API / server, the server declares the conformance
|
|
777
|
+
classes it implements and conforms to.
|
|
778
|
+
content:
|
|
779
|
+
application/json:
|
|
780
|
+
schema:
|
|
781
|
+
$ref: '#/components/schemas/confClasses'
|
|
782
|
+
text/html:
|
|
783
|
+
schema:
|
|
784
|
+
type: string
|
|
785
|
+
Collections:
|
|
786
|
+
description: |-
|
|
787
|
+
The record collections shared by this API.
|
|
788
|
+
|
|
789
|
+
Catalogues are organized as one or more record collections. This
|
|
790
|
+
resource provides information about and access to these collections.
|
|
791
|
+
|
|
792
|
+
The response contains the list of record collections (itemType=record).
|
|
793
|
+
For each record collection, a link to the items in the collection
|
|
794
|
+
(path `/collections/{collectionId}/items`, link relation `items`) as
|
|
795
|
+
well as key information about the collection. This information
|
|
796
|
+
includes...
|
|
797
|
+
|
|
798
|
+
* A local identifier for the collection that is unique for the +
|
|
799
|
+
catalogue;
|
|
800
|
+
* A list of coordinate reference systems (CRS) in which geometries +
|
|
801
|
+
may be returned by the server. The first CRS is the default +
|
|
802
|
+
coordinate reference system (the default is always WGS 84 with axis +
|
|
803
|
+
order longitude/latitude);
|
|
804
|
+
* An optional title and description for the collection;
|
|
805
|
+
* An optional extent that can be used to provide an indication of the +
|
|
806
|
+
spatial and temporal extent of the collection - typically derived +
|
|
807
|
+
from the data;
|
|
808
|
+
* An optional indicator about the type of the items in the collection +
|
|
809
|
+
(the default value, if the indicator is not provided, is 'record').
|
|
810
|
+
content:
|
|
811
|
+
application/json:
|
|
812
|
+
schema:
|
|
813
|
+
$ref: '#/components/schemas/collections'
|
|
814
|
+
text/html:
|
|
815
|
+
schema:
|
|
816
|
+
type: string
|
|
817
|
+
Collection:
|
|
818
|
+
description: |-
|
|
819
|
+
Information about the record collection with id `collectionId`.
|
|
820
|
+
|
|
821
|
+
The response contains a link to the items in the collection
|
|
822
|
+
(path `/collections/{collectionId}/items`, link relation `items`)
|
|
823
|
+
as well as key information about the collection. This information
|
|
824
|
+
includes:
|
|
825
|
+
|
|
826
|
+
* A local identifier for the collection that is unique for the +
|
|
827
|
+
catalogue;
|
|
828
|
+
* A list of coordinate reference systems (CRS) in which geometries +
|
|
829
|
+
may be returned by the server. The first CRS is the default +
|
|
830
|
+
coordinate reference system (the default is always WGS 84 with +
|
|
831
|
+
axis order longitude/latitude);
|
|
832
|
+
* An optional title and description for the collection;
|
|
833
|
+
* An optional extent that can be used to provide an indication of +
|
|
834
|
+
the spatial and temporal extent of the collection - typically +
|
|
835
|
+
derived from the data;
|
|
836
|
+
* An optional indicator about the type of the items in the collection +
|
|
837
|
+
(the default value, if the indicator is not provided, is 'record').
|
|
838
|
+
content:
|
|
839
|
+
application/json:
|
|
840
|
+
schema:
|
|
841
|
+
$ref: '#/components/schemas/collectionInfo'
|
|
842
|
+
text/html:
|
|
843
|
+
schema:
|
|
844
|
+
type: string
|
|
845
|
+
Records:
|
|
846
|
+
description: |-
|
|
847
|
+
The response is a document consisting of records in the collection.
|
|
848
|
+
The records included in the response are determined by the server
|
|
849
|
+
based on the query parameters of the request. To support access to
|
|
850
|
+
larger collections without overloading the client, the API supports
|
|
851
|
+
paged access with links to the next page, if more records are selected
|
|
852
|
+
that the page size.
|
|
853
|
+
|
|
854
|
+
The `bbox` and `datetime` parameter can be used to select only a
|
|
855
|
+
subset of the records in the collection (the records that are in the
|
|
856
|
+
bounding box or time interval). The `bbox` parameter matches all records
|
|
857
|
+
in the collection that are not associated with a location, too. The
|
|
858
|
+
`datetime` parameter matches all records in the collection that are
|
|
859
|
+
not associated with a time stamp or interval, too.
|
|
860
|
+
|
|
861
|
+
The `limit` parameter may be used to control the subset of the
|
|
862
|
+
selected records that should be returned in the response, the page size.
|
|
863
|
+
Each page may include information about the number of selected and
|
|
864
|
+
returned records (`numberMatched` and `numberReturned`) as well as
|
|
865
|
+
links to support paging (link relation `next`).
|
|
866
|
+
|
|
867
|
+
The XML representation of the response document is an ATOM feed.
|
|
868
|
+
content:
|
|
869
|
+
application/geo+json:
|
|
870
|
+
schema:
|
|
871
|
+
$ref: '#/components/schemas/featureCollectionGeoJSON'
|
|
872
|
+
text/html:
|
|
873
|
+
schema:
|
|
874
|
+
type: string
|
|
875
|
+
application/atom+xml:
|
|
876
|
+
schema:
|
|
877
|
+
type: string
|
|
878
|
+
Record:
|
|
879
|
+
description: |-
|
|
880
|
+
Fetch the record with id `recordId` in the record collection
|
|
881
|
+
with id `collectionId`. The XML representation of a record
|
|
882
|
+
is an ATOM entry.
|
|
883
|
+
content:
|
|
884
|
+
application/geo+json:
|
|
885
|
+
schema:
|
|
886
|
+
$ref: '#/components/schemas/recordGeoJSON'
|
|
887
|
+
text/html:
|
|
888
|
+
schema:
|
|
889
|
+
type: string
|
|
890
|
+
application/atom+xml:
|
|
891
|
+
schema:
|
|
892
|
+
type: string
|
|
893
|
+
Sortables:
|
|
894
|
+
type: array
|
|
895
|
+
items:
|
|
896
|
+
$ref: "#/components/schemas/sortable"
|
|
897
|
+
OpenSearchDescriptionDocument:
|
|
898
|
+
description: |-
|
|
899
|
+
description document for OpenSearch clients
|
|
900
|
+
content:
|
|
901
|
+
application/opensearchdescription+xml:
|
|
902
|
+
schema:
|
|
903
|
+
type: string
|
|
904
|
+
InvalidParameter:
|
|
905
|
+
description: |-
|
|
906
|
+
A query parameter has an invalid value.
|
|
907
|
+
content:
|
|
908
|
+
application/json:
|
|
909
|
+
schema:
|
|
910
|
+
$ref: '#/components/schemas/exception'
|
|
911
|
+
text/html:
|
|
912
|
+
schema:
|
|
913
|
+
type: string
|
|
914
|
+
NotFound:
|
|
915
|
+
description: |-
|
|
916
|
+
The requested resource does not exist on the server. For example,
|
|
917
|
+
a path parameter had an incorrect value.
|
|
918
|
+
NotAcceptable:
|
|
919
|
+
description: |-
|
|
920
|
+
Content negotiation failed. For example, the `Accept` header submitted
|
|
921
|
+
in the request did not support any of the media types supported by the
|
|
922
|
+
server for the requested resource.
|
|
923
|
+
ServerError:
|
|
924
|
+
description: |-
|
|
925
|
+
A server error occurred.
|
|
926
|
+
content:
|
|
927
|
+
application/json:
|
|
928
|
+
schema:
|
|
929
|
+
$ref: '#/components/schemas/exception'
|
|
930
|
+
text/html:
|
|
931
|
+
schema:
|
|
932
|
+
type: string
|