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,222 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema targetNamespace="http://www.opengis.net/ows"
|
|
3
|
+
xmlns:ows="http://www.opengis.net/ows"
|
|
4
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
5
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
|
6
|
+
elementFormDefault="qualified" version="1.0.0 2010-01-30" xml:lang="en">
|
|
7
|
+
<annotation>
|
|
8
|
+
<appinfo>ows19115subset.xsd 2010-01-30</appinfo>
|
|
9
|
+
<documentation>This XML Schema Document encodes the parts of ISO 19115 used by the common "ServiceIdentification" and "ServiceProvider" sections of the GetCapabilities operation response, known as the service metadata XML document. The parts encoded here are the MD_Keywords, CI_ResponsibleParty, and related classes. This XML Schema largely follows the current draft for ISO 19139, with the addition of documentation text extracted and edited from Annex B of ISO 19115. The UML package prefixes were omitted from XML names, and the XML element names were all capitalized, for consistency with other OWS Schemas. Also, the optional smXML:id attributes were omitted, as not being useful in a service metadata document.
|
|
10
|
+
|
|
11
|
+
OWS is an OGC Standard.
|
|
12
|
+
Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved.
|
|
13
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
|
14
|
+
</documentation>
|
|
15
|
+
</annotation>
|
|
16
|
+
<!-- ==============================================================
|
|
17
|
+
includes and imports
|
|
18
|
+
============================================================== -->
|
|
19
|
+
<import namespace="http://www.w3.org/1999/xlink" schemaLocation="../../../w3c/1999/xlink.xsd"/>
|
|
20
|
+
<!-- ==============================================================
|
|
21
|
+
elements and types
|
|
22
|
+
============================================================== -->
|
|
23
|
+
<element name="Title" type="string">
|
|
24
|
+
<annotation>
|
|
25
|
+
<documentation>Title of this resource, normally used for display to a human. </documentation>
|
|
26
|
+
</annotation>
|
|
27
|
+
</element>
|
|
28
|
+
<!-- =========================================================== -->
|
|
29
|
+
<element name="Abstract" type="string">
|
|
30
|
+
<annotation>
|
|
31
|
+
<documentation>Brief narrative description of this resource, normally used for display to a human. </documentation>
|
|
32
|
+
</annotation>
|
|
33
|
+
</element>
|
|
34
|
+
<!-- =========================================================== -->
|
|
35
|
+
<element name="Keywords" type="ows:KeywordsType"/>
|
|
36
|
+
<!-- =========================================================== -->
|
|
37
|
+
<complexType name="KeywordsType">
|
|
38
|
+
<annotation>
|
|
39
|
+
<documentation>Unordered list of one or more commonly used or formalised word(s) or phrase(s) used to describe the subject. When needed, the optional "type" can name the type of the associated list of keywords that shall all have the same type. Also when needed, the codeSpace attribute of that "type" can reference the type name authority and/or thesaurus. </documentation>
|
|
40
|
+
<documentation>For OWS use, the optional thesaurusName element was omitted as being complex information that could be referenced by the codeSpace attribute of the Type element. </documentation>
|
|
41
|
+
</annotation>
|
|
42
|
+
<sequence>
|
|
43
|
+
<element name="Keyword" type="string" maxOccurs="unbounded"/>
|
|
44
|
+
<element name="Type" type="ows:CodeType" minOccurs="0"/>
|
|
45
|
+
</sequence>
|
|
46
|
+
</complexType>
|
|
47
|
+
<!-- =========================================================== -->
|
|
48
|
+
<complexType name="CodeType">
|
|
49
|
+
<annotation>
|
|
50
|
+
<documentation>Name or code with an (optional) authority. If the codeSpace attribute is present, its value should reference a dictionary, thesaurus, or authority for the name or code, such as the organisation who assigned the value, or the dictionary from which it is taken. </documentation>
|
|
51
|
+
<documentation>Type copied from basicTypes.xsd of GML 3 with documentation edited, for possible use outside the ServiceIdentification section of a service metadata document. </documentation>
|
|
52
|
+
</annotation>
|
|
53
|
+
<simpleContent>
|
|
54
|
+
<extension base="string">
|
|
55
|
+
<attribute name="codeSpace" type="anyURI" use="optional"/>
|
|
56
|
+
</extension>
|
|
57
|
+
</simpleContent>
|
|
58
|
+
</complexType>
|
|
59
|
+
<!-- =========================================================== -->
|
|
60
|
+
<element name="PointOfContact" type="ows:ResponsiblePartyType">
|
|
61
|
+
<annotation>
|
|
62
|
+
<documentation>Identification of, and means of communication with, person(s) responsible for the resource(s). </documentation>
|
|
63
|
+
<documentation>For OWS use in the ServiceProvider section of a service metadata document, the optional organizationName element was removed, since this type is always used with the ProviderName element which provides that information. The optional individualName element was made mandatory, since either the organizationName or individualName element is mandatory. The mandatory "role" element was changed to optional, since no clear use of this information is known in the ServiceProvider section. </documentation>
|
|
64
|
+
</annotation>
|
|
65
|
+
</element>
|
|
66
|
+
<!-- =========================================================== -->
|
|
67
|
+
<complexType name="ResponsiblePartyType">
|
|
68
|
+
<annotation>
|
|
69
|
+
<documentation>Identification of, and means of communication with, person responsible for the server. At least one of IndividualName, OrganisationName, or PositionName shall be included. </documentation>
|
|
70
|
+
</annotation>
|
|
71
|
+
<sequence>
|
|
72
|
+
<element ref="ows:IndividualName" minOccurs="0"/>
|
|
73
|
+
<element ref="ows:OrganisationName" minOccurs="0"/>
|
|
74
|
+
<element ref="ows:PositionName" minOccurs="0"/>
|
|
75
|
+
<element ref="ows:ContactInfo" minOccurs="0"/>
|
|
76
|
+
<element ref="ows:Role"/>
|
|
77
|
+
</sequence>
|
|
78
|
+
</complexType>
|
|
79
|
+
<!-- =========================================================== -->
|
|
80
|
+
<!-- =========================================================== -->
|
|
81
|
+
<complexType name="ResponsiblePartySubsetType">
|
|
82
|
+
<annotation>
|
|
83
|
+
<documentation>Identification of, and means of communication with, person responsible for the server. </documentation>
|
|
84
|
+
<documentation>For OWS use in the ServiceProvider section of a service metadata document, the optional organizationName element was removed, since this type is always used with the ProviderName element which provides that information. The mandatory "role" element was changed to optional, since no clear use of this information is known in the ServiceProvider section. </documentation>
|
|
85
|
+
</annotation>
|
|
86
|
+
<sequence>
|
|
87
|
+
<element ref="ows:IndividualName" minOccurs="0"/>
|
|
88
|
+
<element ref="ows:PositionName" minOccurs="0"/>
|
|
89
|
+
<element ref="ows:ContactInfo" minOccurs="0"/>
|
|
90
|
+
<element ref="ows:Role" minOccurs="0"/>
|
|
91
|
+
</sequence>
|
|
92
|
+
</complexType>
|
|
93
|
+
<!-- =========================================================== -->
|
|
94
|
+
<element name="IndividualName" type="string">
|
|
95
|
+
<annotation>
|
|
96
|
+
<documentation>Name of the responsible person: surname, given name, title separated by a delimiter. </documentation>
|
|
97
|
+
</annotation>
|
|
98
|
+
</element>
|
|
99
|
+
<!-- =========================================================== -->
|
|
100
|
+
<element name="OrganisationName" type="string">
|
|
101
|
+
<annotation>
|
|
102
|
+
<documentation>Name of the responsible organization. </documentation>
|
|
103
|
+
</annotation>
|
|
104
|
+
</element>
|
|
105
|
+
<!-- =========================================================== -->
|
|
106
|
+
<element name="PositionName" type="string">
|
|
107
|
+
<annotation>
|
|
108
|
+
<documentation>Role or position of the responsible person. </documentation>
|
|
109
|
+
</annotation>
|
|
110
|
+
</element>
|
|
111
|
+
<!-- =========================================================== -->
|
|
112
|
+
<element name="Role" type="ows:CodeType">
|
|
113
|
+
<annotation>
|
|
114
|
+
<documentation>Function performed by the responsible party. Possible values of this Role shall include the values and the meanings listed in Subclause B.5.5 of ISO 19115:2003. </documentation>
|
|
115
|
+
</annotation>
|
|
116
|
+
</element>
|
|
117
|
+
<!-- =========================================================== -->
|
|
118
|
+
<element name="ContactInfo" type="ows:ContactType">
|
|
119
|
+
<annotation>
|
|
120
|
+
<documentation>Address of the responsible party. </documentation>
|
|
121
|
+
</annotation>
|
|
122
|
+
</element>
|
|
123
|
+
<!-- =========================================================== -->
|
|
124
|
+
<complexType name="ContactType">
|
|
125
|
+
<annotation>
|
|
126
|
+
<documentation>Information required to enable contact with the responsible person and/or organization. </documentation>
|
|
127
|
+
<documentation>For OWS use in the service metadata document, the optional hoursOfService and contactInstructions elements were retained, as possibly being useful in the ServiceProvider section. </documentation>
|
|
128
|
+
</annotation>
|
|
129
|
+
<sequence>
|
|
130
|
+
<element name="Phone" type="ows:TelephoneType" minOccurs="0">
|
|
131
|
+
<annotation>
|
|
132
|
+
<documentation>Telephone numbers at which the organization or individual may be contacted. </documentation>
|
|
133
|
+
</annotation>
|
|
134
|
+
</element>
|
|
135
|
+
<element name="Address" type="ows:AddressType" minOccurs="0">
|
|
136
|
+
<annotation>
|
|
137
|
+
<documentation>Physical and email address at which the organization or individual may be contacted. </documentation>
|
|
138
|
+
</annotation>
|
|
139
|
+
</element>
|
|
140
|
+
<element name="OnlineResource" type="ows:OnlineResourceType" minOccurs="0">
|
|
141
|
+
<annotation>
|
|
142
|
+
<documentation>On-line information that can be used to contact the individual or organization. OWS specifics: The xlink:href attribute in the xlink:simpleAttrs attribute group shall be used to reference this resource. Whenever practical, the xlink:href attribute with type anyURI should be a URL from which more contact information can be electronically retrieved. The xlink:title attribute with type "string" can be used to name this set of information. The other attributes in the xlink:simpleAttrs attribute group should not be used. </documentation>
|
|
143
|
+
</annotation>
|
|
144
|
+
</element>
|
|
145
|
+
<element name="HoursOfService" type="string" minOccurs="0">
|
|
146
|
+
<annotation>
|
|
147
|
+
<documentation>Time period (including time zone) when individuals can contact the organization or individual. </documentation>
|
|
148
|
+
</annotation>
|
|
149
|
+
</element>
|
|
150
|
+
<element name="ContactInstructions" type="string" minOccurs="0">
|
|
151
|
+
<annotation>
|
|
152
|
+
<documentation>Supplemental instructions on how or when to contact the individual or organization. </documentation>
|
|
153
|
+
</annotation>
|
|
154
|
+
</element>
|
|
155
|
+
</sequence>
|
|
156
|
+
</complexType>
|
|
157
|
+
<!-- =========================================================== -->
|
|
158
|
+
<complexType name="OnlineResourceType">
|
|
159
|
+
<annotation>
|
|
160
|
+
<documentation>Reference to on-line resource from which data can be obtained. </documentation>
|
|
161
|
+
<documentation>For OWS use in the service metadata document, the CI_OnlineResource class was XML encoded as the attributeGroup "xlink:simpleAttrs", as used in GML. </documentation>
|
|
162
|
+
</annotation>
|
|
163
|
+
<attributeGroup ref="xlink:simpleAttrs"/>
|
|
164
|
+
</complexType>
|
|
165
|
+
<!-- ========================================================== -->
|
|
166
|
+
<complexType name="TelephoneType">
|
|
167
|
+
<annotation>
|
|
168
|
+
<documentation>Telephone numbers for contacting the responsible individual or organization. </documentation>
|
|
169
|
+
</annotation>
|
|
170
|
+
<sequence>
|
|
171
|
+
<element name="Voice" type="string" minOccurs="0" maxOccurs="unbounded">
|
|
172
|
+
<annotation>
|
|
173
|
+
<documentation>Telephone number by which individuals can speak to the responsible organization or individual. </documentation>
|
|
174
|
+
</annotation>
|
|
175
|
+
</element>
|
|
176
|
+
<element name="Facsimile" type="string" minOccurs="0" maxOccurs="unbounded">
|
|
177
|
+
<annotation>
|
|
178
|
+
<documentation>Telephone number of a facsimile machine for the responsible
|
|
179
|
+
organization or individual. </documentation>
|
|
180
|
+
</annotation>
|
|
181
|
+
</element>
|
|
182
|
+
</sequence>
|
|
183
|
+
</complexType>
|
|
184
|
+
<!-- =========================================================== -->
|
|
185
|
+
<complexType name="AddressType">
|
|
186
|
+
<annotation>
|
|
187
|
+
<documentation>Location of the responsible individual or organization. </documentation>
|
|
188
|
+
</annotation>
|
|
189
|
+
<sequence>
|
|
190
|
+
<element name="DeliveryPoint" type="string" minOccurs="0" maxOccurs="unbounded">
|
|
191
|
+
<annotation>
|
|
192
|
+
<documentation>Address line for the location. </documentation>
|
|
193
|
+
</annotation>
|
|
194
|
+
</element>
|
|
195
|
+
<element name="City" type="string" minOccurs="0">
|
|
196
|
+
<annotation>
|
|
197
|
+
<documentation>City of the location. </documentation>
|
|
198
|
+
</annotation>
|
|
199
|
+
</element>
|
|
200
|
+
<element name="AdministrativeArea" type="string" minOccurs="0">
|
|
201
|
+
<annotation>
|
|
202
|
+
<documentation>State or province of the location. </documentation>
|
|
203
|
+
</annotation>
|
|
204
|
+
</element>
|
|
205
|
+
<element name="PostalCode" type="string" minOccurs="0">
|
|
206
|
+
<annotation>
|
|
207
|
+
<documentation>ZIP or other postal code. </documentation>
|
|
208
|
+
</annotation>
|
|
209
|
+
</element>
|
|
210
|
+
<element name="Country" type="string" minOccurs="0">
|
|
211
|
+
<annotation>
|
|
212
|
+
<documentation>Country of the physical address. </documentation>
|
|
213
|
+
</annotation>
|
|
214
|
+
</element>
|
|
215
|
+
<element name="ElectronicMailAddress" type="string" minOccurs="0" maxOccurs="unbounded">
|
|
216
|
+
<annotation>
|
|
217
|
+
<documentation>Address of the electronic mailbox of the responsible organization or individual. </documentation>
|
|
218
|
+
</annotation>
|
|
219
|
+
</element>
|
|
220
|
+
</sequence>
|
|
221
|
+
</complexType>
|
|
222
|
+
</schema>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema targetNamespace="http://www.opengis.net/ows"
|
|
3
|
+
xmlns:ows="http://www.opengis.net/ows"
|
|
4
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
|
5
|
+
elementFormDefault="qualified" version="1.0.0 2010-01-30" xml:lang="en">
|
|
6
|
+
<annotation>
|
|
7
|
+
<appinfo>owsAll.xsd 2010-01-30</appinfo>
|
|
8
|
+
<documentation>This XML Schema Document includes and imports, directly and indirectly, all the XML Schemas defined by the OWS Common Implemetation Specification.
|
|
9
|
+
|
|
10
|
+
OWS is an OGC Standard.
|
|
11
|
+
Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved.
|
|
12
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
|
13
|
+
</documentation>
|
|
14
|
+
</annotation>
|
|
15
|
+
<!-- ==============================================================
|
|
16
|
+
includes and imports
|
|
17
|
+
============================================================== -->
|
|
18
|
+
<include schemaLocation="owsGetCapabilities.xsd"/>
|
|
19
|
+
<include schemaLocation="owsExceptionReport.xsd"/>
|
|
20
|
+
</schema>
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema targetNamespace="http://www.opengis.net/ows"
|
|
3
|
+
xmlns:ows="http://www.opengis.net/ows"
|
|
4
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
5
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
|
6
|
+
elementFormDefault="qualified" version="1.0.0 2010-01-30" xml:lang="en">
|
|
7
|
+
<annotation>
|
|
8
|
+
<appinfo>owsCommon.xsd 2010-01-30</appinfo>
|
|
9
|
+
<documentation>This XML Schema Document encodes various parameters and parameter types that can be used in OWS operation requests and responses.
|
|
10
|
+
|
|
11
|
+
OWS is an OGC Standard.
|
|
12
|
+
Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved.
|
|
13
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
|
14
|
+
</documentation>
|
|
15
|
+
</annotation>
|
|
16
|
+
<!-- ==============================================================
|
|
17
|
+
includes and imports
|
|
18
|
+
============================================================== -->
|
|
19
|
+
<import namespace="http://www.w3.org/1999/xlink" schemaLocation="../../../w3c/1999/xlink.xsd"/>
|
|
20
|
+
<!-- ==============================================================
|
|
21
|
+
elements and types
|
|
22
|
+
============================================================== -->
|
|
23
|
+
<simpleType name="MimeType">
|
|
24
|
+
<annotation>
|
|
25
|
+
<documentation>XML encoded identifier of a standard MIME type, possibly a parameterized MIME type. </documentation>
|
|
26
|
+
</annotation>
|
|
27
|
+
<restriction base="string">
|
|
28
|
+
<pattern value="(application|audio|image|text|video|message|multipart|model)/.+(;\s*.+=.+)*"/>
|
|
29
|
+
</restriction>
|
|
30
|
+
</simpleType>
|
|
31
|
+
<!-- ========================================================= -->
|
|
32
|
+
<simpleType name="VersionType">
|
|
33
|
+
<annotation>
|
|
34
|
+
<documentation>Specification version for OWS operation. The string value shall contain one x.y.z "version" value (e.g., "2.1.3"). A version number shall contain three non-negative integers separated by decimal points, in the form "x.y.z". The integers y and z shall not exceed 99. Each version shall be for the Implementation Specification (document) and the associated XML Schemas to which requested operations will conform. An Implementation Specification version normally specifies XML Schemas against which an XML encoded operation response must conform and should be validated. See Version negotiation subclause for more information. </documentation>
|
|
35
|
+
</annotation>
|
|
36
|
+
<restriction base="string"/>
|
|
37
|
+
</simpleType>
|
|
38
|
+
<!-- ========================================================== -->
|
|
39
|
+
<element name="Metadata" type="ows:MetadataType"/>
|
|
40
|
+
<!-- ========================================================== -->
|
|
41
|
+
<complexType name="MetadataType">
|
|
42
|
+
<annotation>
|
|
43
|
+
<documentation>This element either references or contains more metadata about the element that includes this element. To reference metadata stored remotely, at least the xlinks:href attribute in xlink:simpleAttrs shall be included. Either at least one of the attributes in xlink:simpleAttrs or a substitute for the AbstractMetaData element shall be included, but not both. An Implementation Specification can restrict the contents of this element to always be a reference or always contain metadata. (Informative: This element was adapted from the metaDataProperty element in GML 3.0.) </documentation>
|
|
44
|
+
</annotation>
|
|
45
|
+
<sequence>
|
|
46
|
+
<element ref="ows:AbstractMetaData" minOccurs="0"/>
|
|
47
|
+
</sequence>
|
|
48
|
+
<attributeGroup ref="xlink:simpleAttrs">
|
|
49
|
+
<annotation>
|
|
50
|
+
<documentation>Reference to metadata recorded elsewhere, either external to this XML document or within it. Whenever practical, the xlink:href attribute with type anyURI should include a URL from which this metadata can be electronically retrieved. </documentation>
|
|
51
|
+
</annotation>
|
|
52
|
+
</attributeGroup>
|
|
53
|
+
<attribute name="about" type="anyURI" use="optional">
|
|
54
|
+
<annotation>
|
|
55
|
+
<documentation>Optional reference to the aspect of the element which includes this "metadata" element that this metadata provides more information about. </documentation>
|
|
56
|
+
</annotation>
|
|
57
|
+
</attribute>
|
|
58
|
+
</complexType>
|
|
59
|
+
<!-- ========================================================== -->
|
|
60
|
+
<element name="AbstractMetaData" abstract="true">
|
|
61
|
+
<annotation>
|
|
62
|
+
<documentation>Abstract element containing more metadata about the element that includes the containing "metadata" element. A specific server implementation, or an Implementation Specification, can define concrete elements in the AbstractMetaData substitution group. </documentation>
|
|
63
|
+
</annotation>
|
|
64
|
+
</element>
|
|
65
|
+
<!-- ========================================================== -->
|
|
66
|
+
<!-- ========================================================== -->
|
|
67
|
+
<element name="BoundingBox" type="ows:BoundingBoxType"/>
|
|
68
|
+
<!-- =========================================================== -->
|
|
69
|
+
<complexType name="BoundingBoxType">
|
|
70
|
+
<annotation>
|
|
71
|
+
<documentation>XML encoded minimum rectangular bounding box (or region) parameter, surrounding all the associated data. </documentation>
|
|
72
|
+
<documentation>This type is adapted from the EnvelopeType of GML 3.1, with modified contents and documentation for encoding a MINIMUM size box SURROUNDING all associated data. </documentation>
|
|
73
|
+
</annotation>
|
|
74
|
+
<sequence>
|
|
75
|
+
<element name="LowerCorner" type="ows:PositionType">
|
|
76
|
+
<annotation>
|
|
77
|
+
<documentation>Position of the bounding box corner at which the value of each coordinate normally is the algebraic minimum within this bounding box. In some cases, this position is normally displayed at the top, such as the top left for some image coordinates. For more information, see Subclauses 10.2.5 and C.13. </documentation>
|
|
78
|
+
</annotation>
|
|
79
|
+
</element>
|
|
80
|
+
<element name="UpperCorner" type="ows:PositionType">
|
|
81
|
+
<annotation>
|
|
82
|
+
<documentation>Position of the bounding box corner at which the value of each coordinate normally is the algebraic maximum within this bounding box. In some cases, this position is normally displayed at the bottom, such as the bottom right for some image coordinates. For more information, see Subclauses 10.2.5 and C.13. </documentation>
|
|
83
|
+
</annotation>
|
|
84
|
+
</element>
|
|
85
|
+
</sequence>
|
|
86
|
+
<attribute name="crs" type="anyURI" use="optional">
|
|
87
|
+
<annotation>
|
|
88
|
+
<documentation>Usually references the definition of a CRS, as specified in [OGC Topic 2]. Such a CRS definition can be XML encoded using the gml:CoordinateReferenceSystemType in [GML 3.1]. For well known references, it is not required that a CRS definition exist at the location the URI points to. If no anyURI value is included, the applicable CRS must be either:
|
|
89
|
+
a) Specified outside the bounding box, but inside a data structure that includes this bounding box, as specified for a specific OWS use of this bounding box type.
|
|
90
|
+
b) Fixed and specified in the Implementation Specification for a specific OWS use of the bounding box type. </documentation>
|
|
91
|
+
</annotation>
|
|
92
|
+
</attribute>
|
|
93
|
+
<attribute name="dimensions" type="positiveInteger" use="optional">
|
|
94
|
+
<annotation>
|
|
95
|
+
<documentation>The number of dimensions in this CRS (the length of a coordinate sequence in this use of the PositionType). This number is specified by the CRS definition, but can also be specified here. </documentation>
|
|
96
|
+
</annotation>
|
|
97
|
+
</attribute>
|
|
98
|
+
</complexType>
|
|
99
|
+
<!-- =========================================================== -->
|
|
100
|
+
<simpleType name="PositionType">
|
|
101
|
+
<annotation>
|
|
102
|
+
<documentation>Position instances hold the coordinates of a position in a coordinate reference system (CRS) referenced by the related "crs" attribute or elsewhere. For an angular coordinate axis that is physically continuous for multiple revolutions, but whose recorded values can be discontinuous, special conditions apply when the bounding box is continuous across the value discontinuity:
|
|
103
|
+
a) If the bounding box is continuous clear around this angular axis, then ordinate values of minus and plus infinity shall be used.
|
|
104
|
+
b) If the bounding box is continuous across the value discontinuity but is not continuous clear around this angular axis, then some non-normal value can be used if specified for a specific OWS use of the BoundingBoxType. For more information, see Subclauses 10.2.5 and C.13. </documentation>
|
|
105
|
+
<documentation>This type is adapted from DirectPositionType and doubleList of GML 3.1. The adaptations include omission of all the attributes, since the needed information is included in the BoundingBoxType. </documentation>
|
|
106
|
+
</annotation>
|
|
107
|
+
<list itemType="double"/>
|
|
108
|
+
</simpleType>
|
|
109
|
+
<!-- =========================================================== -->
|
|
110
|
+
<element name="WGS84BoundingBox" type="ows:WGS84BoundingBoxType" substitutionGroup="ows:BoundingBox"/>
|
|
111
|
+
<!-- =========================================================== -->
|
|
112
|
+
<complexType name="WGS84BoundingBoxType">
|
|
113
|
+
<annotation>
|
|
114
|
+
<documentation>XML encoded minimum rectangular bounding box (or region) parameter, surrounding all the associated data. This box is specialized for use with the 2D WGS 84 coordinate reference system with decimal values of longitude and latitude. </documentation>
|
|
115
|
+
<documentation>This type is adapted from the general BoundingBoxType, with modified contents and documentation for use with the 2D WGS 84 coordinate reference system. </documentation>
|
|
116
|
+
</annotation>
|
|
117
|
+
<complexContent>
|
|
118
|
+
<restriction base="ows:BoundingBoxType">
|
|
119
|
+
<sequence>
|
|
120
|
+
<element name="LowerCorner" type="ows:PositionType2D">
|
|
121
|
+
<annotation>
|
|
122
|
+
<documentation>Position of the bounding box corner at which the values of longitude and latitude normally are the algebraic minimums within this bounding box. For more information, see Subclauses 10.4.5 and C.13. </documentation>
|
|
123
|
+
</annotation>
|
|
124
|
+
</element>
|
|
125
|
+
<element name="UpperCorner" type="ows:PositionType2D">
|
|
126
|
+
<annotation>
|
|
127
|
+
<documentation>Position of the bounding box corner at which the values of longitude and latitude normally are the algebraic minimums within this bounding box. For more information, see Subclauses 10.4.5 and C.13. </documentation>
|
|
128
|
+
</annotation>
|
|
129
|
+
</element>
|
|
130
|
+
</sequence>
|
|
131
|
+
<attribute name="crs" type="anyURI" use="optional" fixed="urn:ogc:def:crs:OGC:2:84">
|
|
132
|
+
<annotation>
|
|
133
|
+
<documentation>This attribute can be included when considered useful. When included, this attribute shall reference the 2D WGS 84 coordinate reference system with longitude before latitude and decimal values of longitude and latitude. </documentation>
|
|
134
|
+
</annotation>
|
|
135
|
+
</attribute>
|
|
136
|
+
<attribute name="dimensions" type="positiveInteger" use="optional" fixed="2">
|
|
137
|
+
<annotation>
|
|
138
|
+
<documentation>The number of dimensions in this CRS (the length of a coordinate sequence in this use of the PositionType). This number is specified by the CRS definition, but can also be specified here. </documentation>
|
|
139
|
+
</annotation>
|
|
140
|
+
</attribute>
|
|
141
|
+
</restriction>
|
|
142
|
+
</complexContent>
|
|
143
|
+
</complexType>
|
|
144
|
+
<!-- =========================================================== -->
|
|
145
|
+
<simpleType name="PositionType2D">
|
|
146
|
+
<annotation>
|
|
147
|
+
<documentation>Two-dimensional position instances hold the longitude and latitude coordinates of a position in the 2D WGS 84 coordinate reference system. The longitude value shall be listed first, followed by the latitude value, both in decimal degrees. Latitude values shall range from -90 to +90 degrees, and longitude values shall normally range from -180 to +180 degrees. For the longitude axis, special conditions apply when the bounding box is continuous across the +/- 180 degrees meridian longitude value discontinuity:
|
|
148
|
+
a) If the bounding box is continuous clear around the Earth, then longitude values of minus and plus infinity shall be used.
|
|
149
|
+
b) If the bounding box is continuous across the value discontinuity but is not continuous clear around the Earth, then some non-normal value can be used if specified for a specific OWS use of the WGS84BoundingBoxType. For more information, see Subclauses 10.4.5 and C.13. </documentation>
|
|
150
|
+
</annotation>
|
|
151
|
+
<restriction base="ows:PositionType">
|
|
152
|
+
<length value="2"/>
|
|
153
|
+
</restriction>
|
|
154
|
+
</simpleType>
|
|
155
|
+
</schema>
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema targetNamespace="http://www.opengis.net/ows"
|
|
3
|
+
xmlns:ows="http://www.opengis.net/ows"
|
|
4
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
|
5
|
+
elementFormDefault="qualified" version="1.0.0 2010-01-30" xml:lang="en">
|
|
6
|
+
<annotation>
|
|
7
|
+
<appinfo>owsDataIdentification.xsd 2010-01-30</appinfo>
|
|
8
|
+
<documentation>This XML Schema Document encodes the parts of the MD_DataIdentification class of ISO 19115 (OGC Abstract Specification Topic 11) which are expected to be used for most datasets. This Schema also encodes the parts of this class that are expected to be useful for other metadata. Both are expected to be used within the Contents section of OWS service metadata (Capabilities) documents.
|
|
9
|
+
|
|
10
|
+
OWS is an OGC Standard.
|
|
11
|
+
Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved.
|
|
12
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
|
13
|
+
</documentation>
|
|
14
|
+
</annotation>
|
|
15
|
+
<!-- ==============================================================
|
|
16
|
+
includes and imports
|
|
17
|
+
============================================================== -->
|
|
18
|
+
<include schemaLocation="owsCommon.xsd"/>
|
|
19
|
+
<include schemaLocation="ows19115subset.xsd"/>
|
|
20
|
+
<!-- ==============================================================
|
|
21
|
+
elements and types
|
|
22
|
+
============================================================== -->
|
|
23
|
+
<complexType name="DescriptionType">
|
|
24
|
+
<annotation>
|
|
25
|
+
<documentation>Human-readable descriptive information for the object it is included within.
|
|
26
|
+
This type shall be extended if needed for specific OWS use to include additional metadata for each type of information. This type shall not be restricted for a specific OWS to change the multiplicity (or optionality) of some elements. </documentation>
|
|
27
|
+
</annotation>
|
|
28
|
+
<sequence>
|
|
29
|
+
<element ref="ows:Title" minOccurs="0"/>
|
|
30
|
+
<element ref="ows:Abstract" minOccurs="0"/>
|
|
31
|
+
<element ref="ows:Keywords" minOccurs="0" maxOccurs="unbounded"/>
|
|
32
|
+
</sequence>
|
|
33
|
+
</complexType>
|
|
34
|
+
<!-- ========================================================= -->
|
|
35
|
+
<complexType name="IdentificationType">
|
|
36
|
+
<annotation>
|
|
37
|
+
<documentation>General metadata identifying and describing a set of data. This type shall be extended if needed for each specific OWS to include additional metadata for each type of dataset. If needed, this type should first be restricted for each specific OWS to change the multiplicity (or optionality) of some elements. </documentation>
|
|
38
|
+
</annotation>
|
|
39
|
+
<complexContent>
|
|
40
|
+
<extension base="ows:DescriptionType">
|
|
41
|
+
<sequence>
|
|
42
|
+
<element ref="ows:Identifier" minOccurs="0">
|
|
43
|
+
<annotation>
|
|
44
|
+
<documentation>Optional unique identifier or name of this dataset. </documentation>
|
|
45
|
+
</annotation>
|
|
46
|
+
</element>
|
|
47
|
+
<element ref="ows:BoundingBox" minOccurs="0" maxOccurs="unbounded">
|
|
48
|
+
<annotation>
|
|
49
|
+
<documentation>Unordered list of zero or more bounding boxes whose union describes the extent of this dataset. </documentation>
|
|
50
|
+
</annotation>
|
|
51
|
+
</element>
|
|
52
|
+
<element ref="ows:OutputFormat" minOccurs="0" maxOccurs="unbounded">
|
|
53
|
+
<annotation>
|
|
54
|
+
<documentation>Unordered list of zero or more references to data formats supported for server outputs. </documentation>
|
|
55
|
+
</annotation>
|
|
56
|
+
</element>
|
|
57
|
+
<element ref="ows:AvailableCRS" minOccurs="0" maxOccurs="unbounded">
|
|
58
|
+
<annotation>
|
|
59
|
+
<documentation>Unordered list of zero or more available coordinate reference systems. </documentation>
|
|
60
|
+
</annotation>
|
|
61
|
+
</element>
|
|
62
|
+
<element ref="ows:Metadata" minOccurs="0" maxOccurs="unbounded">
|
|
63
|
+
<annotation>
|
|
64
|
+
<documentation>Optional unordered list of additional metadata about this data(set). A list of optional metadata elements for this data identification could be specified in the Implementation Specification for this service. </documentation>
|
|
65
|
+
</annotation>
|
|
66
|
+
</element>
|
|
67
|
+
</sequence>
|
|
68
|
+
</extension>
|
|
69
|
+
</complexContent>
|
|
70
|
+
</complexType>
|
|
71
|
+
<!-- ===========================================================-->
|
|
72
|
+
<element name="Identifier" type="ows:CodeType">
|
|
73
|
+
<annotation>
|
|
74
|
+
<documentation>Unique identifier or name of this dataset. </documentation>
|
|
75
|
+
</annotation>
|
|
76
|
+
</element>
|
|
77
|
+
<!-- ===========================================================-->
|
|
78
|
+
<element name="OutputFormat" type="ows:MimeType">
|
|
79
|
+
<annotation>
|
|
80
|
+
<documentation>Reference to a format in which this data can be encoded and transferred. More specific parameter names should be used by specific OWS specifications wherever applicable. More than one such parameter can be included for different purposes. </documentation>
|
|
81
|
+
</annotation>
|
|
82
|
+
</element>
|
|
83
|
+
<!-- ===========================================================-->
|
|
84
|
+
<element name="AvailableCRS" type="anyURI"/>
|
|
85
|
+
<element name="SupportedCRS" type="anyURI" substitutionGroup="ows:AvailableCRS">
|
|
86
|
+
<annotation>
|
|
87
|
+
<documentation>Coordinate reference system in which data from this data(set) or resource is available or supported. More specific parameter names should be used by specific OWS specifications wherever applicable. More than one such parameter can be included for different purposes. </documentation>
|
|
88
|
+
</annotation>
|
|
89
|
+
</element>
|
|
90
|
+
<!-- ==========================================================
|
|
91
|
+
The following elements could be added to the IdentificationType when useful for a
|
|
92
|
+
specific OWS. In addition the PointOfContact element in ows19115subset.xsd could
|
|
93
|
+
be added.
|
|
94
|
+
============================================================= -->
|
|
95
|
+
<element name="AccessConstraints" type="string">
|
|
96
|
+
<annotation>
|
|
97
|
+
<documentation>Access constraint applied to assure the protection of privacy or intellectual property, or any other restrictions on retrieving or using data from or otherwise using this server. The reserved value NONE (case insensitive) shall be used to mean no access constraints are imposed. </documentation>
|
|
98
|
+
</annotation>
|
|
99
|
+
</element>
|
|
100
|
+
<!-- ========================================================== -->
|
|
101
|
+
<element name="Fees" type="string">
|
|
102
|
+
<annotation>
|
|
103
|
+
<documentation>Fees and terms for retrieving data from or otherwise using this server, including the monetary units as specified in ISO 4217. The reserved value NONE (case insensitive) shall be used to mean no fees or terms. </documentation>
|
|
104
|
+
</annotation>
|
|
105
|
+
</element>
|
|
106
|
+
<!-- ========================================================== -->
|
|
107
|
+
<element name="Language" type="language">
|
|
108
|
+
<annotation>
|
|
109
|
+
<documentation>Identifier of a language used by the data(set) contents. This language identifier shall be as specified in IETF RFC 1766. When this element is omitted, the language used is not identified. </documentation>
|
|
110
|
+
</annotation>
|
|
111
|
+
</element>
|
|
112
|
+
</schema>
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema targetNamespace="http://www.opengis.net/ows"
|
|
3
|
+
xmlns:ows="http://www.opengis.net/ows"
|
|
4
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
|
5
|
+
elementFormDefault="qualified" version="1.0.0 2010-01-30" xml:lang="en">
|
|
6
|
+
<annotation>
|
|
7
|
+
<appinfo>owsExceptionReport.xsd 2010-01-30</appinfo>
|
|
8
|
+
<documentation>This XML Schema Document encodes the Exception Report response to all OWS operations.
|
|
9
|
+
|
|
10
|
+
OWS is an OGC Standard.
|
|
11
|
+
Copyright (c) 2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved.
|
|
12
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
|
13
|
+
</documentation>
|
|
14
|
+
</annotation>
|
|
15
|
+
<!-- ==============================================================
|
|
16
|
+
elements and types
|
|
17
|
+
============================================================== -->
|
|
18
|
+
<element name="ExceptionReport">
|
|
19
|
+
<annotation>
|
|
20
|
+
<documentation>Report message returned to the client that requested any OWS operation when the server detects an error while processing that operation request. </documentation>
|
|
21
|
+
</annotation>
|
|
22
|
+
<complexType>
|
|
23
|
+
<sequence>
|
|
24
|
+
<element ref="ows:Exception" maxOccurs="unbounded">
|
|
25
|
+
<annotation>
|
|
26
|
+
<documentation>Unordered list of one or more Exception elements that each describes an error. These Exception elements shall be interpreted by clients as being independent of one another (not hierarchical). </documentation>
|
|
27
|
+
</annotation>
|
|
28
|
+
</element>
|
|
29
|
+
</sequence>
|
|
30
|
+
<attribute name="version" type="string" use="required">
|
|
31
|
+
<annotation>
|
|
32
|
+
<documentation>Specification version for OWS operation. The string value shall contain one x.y.z "version" value (e.g., "2.1.3"). A version number shall contain three non-negative integers separated by decimal points, in the form "x.y.z". The integers y and z shall not exceed 99. Each version shall be for the Implementation Specification (document) and the associated XML Schemas to which requested operations will conform. An Implementation Specification version normally specifies XML Schemas against which an XML encoded operation response must conform and should be validated. See Version negotiation subclause for more information. </documentation>
|
|
33
|
+
</annotation>
|
|
34
|
+
</attribute>
|
|
35
|
+
<attribute name="language" type="language" use="optional">
|
|
36
|
+
<annotation>
|
|
37
|
+
<documentation>Identifier of the language used by all included exception text values. These language identifiers shall be as specified in IETF RFC 1766. When this attribute is omitted, the language used is not identified. </documentation>
|
|
38
|
+
</annotation>
|
|
39
|
+
</attribute>
|
|
40
|
+
</complexType>
|
|
41
|
+
</element>
|
|
42
|
+
<!-- ======================================================= -->
|
|
43
|
+
<element name="Exception" type="ows:ExceptionType"/>
|
|
44
|
+
<!-- ======================================================= -->
|
|
45
|
+
<complexType name="ExceptionType">
|
|
46
|
+
<annotation>
|
|
47
|
+
<documentation>An Exception element describes one detected error that a server chooses to convey to the client. </documentation>
|
|
48
|
+
</annotation>
|
|
49
|
+
<sequence>
|
|
50
|
+
<element name="ExceptionText" type="string" minOccurs="0" maxOccurs="unbounded">
|
|
51
|
+
<annotation>
|
|
52
|
+
<documentation>Ordered sequence of text strings that describe this specific exception or error. The contents of these strings are left open to definition by each server implementation. A server is strongly encouraged to include at least one ExceptionText value, to provide more information about the detected error than provided by the exceptionCode. When included, multiple ExceptionText values shall provide hierarchical information about one detected error, with the most significant information listed first. </documentation>
|
|
53
|
+
</annotation>
|
|
54
|
+
</element>
|
|
55
|
+
</sequence>
|
|
56
|
+
<attribute name="exceptionCode" type="string" use="required">
|
|
57
|
+
<annotation>
|
|
58
|
+
<documentation>A code representing the type of this exception, which shall be selected from a set of exceptionCode values specified for the specific service operation and server. </documentation>
|
|
59
|
+
</annotation>
|
|
60
|
+
</attribute>
|
|
61
|
+
<attribute name="locator" type="string" use="optional">
|
|
62
|
+
<annotation>
|
|
63
|
+
<documentation>When included, this locator shall indicate to the client where an exception was encountered in servicing the client's operation request. This locator should be included whenever meaningful information can be provided by the server. The contents of this locator will depend on the specific exceptionCode and OWS service, and shall be specified in the OWS Implementation Specification. </documentation>
|
|
64
|
+
</annotation>
|
|
65
|
+
</attribute>
|
|
66
|
+
</complexType>
|
|
67
|
+
</schema>
|