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,451 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema targetNamespace="http://www.opengis.net/gml" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml" elementFormDefault="qualified" version="3.1.1 2010-01-28">
|
|
3
|
+
<annotation>
|
|
4
|
+
<appinfo source="urn:opengis:specification:gml:schema-xsd:coverage:3.1.1">coverage.xsd</appinfo>
|
|
5
|
+
<documentation xml:lang="en">GML Coverage schema.
|
|
6
|
+
|
|
7
|
+
GML is an OGC Standard.
|
|
8
|
+
Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved.
|
|
9
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
|
10
|
+
</documentation>
|
|
11
|
+
</annotation>
|
|
12
|
+
<!-- ==============================================================
|
|
13
|
+
includes and imports
|
|
14
|
+
============================================================== -->
|
|
15
|
+
<include schemaLocation="feature.xsd"/>
|
|
16
|
+
<include schemaLocation="valueObjects.xsd"/>
|
|
17
|
+
<include schemaLocation="grids.xsd"/>
|
|
18
|
+
<include schemaLocation="geometryAggregates.xsd"/>
|
|
19
|
+
<!-- ==============================================================
|
|
20
|
+
global types and elements
|
|
21
|
+
============================================================== -->
|
|
22
|
+
<!-- ================= Abstract coverage definition ================== -->
|
|
23
|
+
<!-- =========================================================== -->
|
|
24
|
+
<!-- =========================================================== -->
|
|
25
|
+
<element name="_Coverage" type="gml:AbstractCoverageType" abstract="true" substitutionGroup="gml:_Feature"/>
|
|
26
|
+
<!-- =========================================================== -->
|
|
27
|
+
<complexType name="AbstractCoverageType" abstract="true">
|
|
28
|
+
<annotation>
|
|
29
|
+
<documentation>Abstract element which acts as the head of a substitution group for coverages. Note that a coverage is a GML feature.</documentation>
|
|
30
|
+
</annotation>
|
|
31
|
+
<complexContent>
|
|
32
|
+
<extension base="gml:AbstractFeatureType">
|
|
33
|
+
<sequence>
|
|
34
|
+
<element ref="gml:domainSet"/>
|
|
35
|
+
<element ref="gml:rangeSet"/>
|
|
36
|
+
</sequence>
|
|
37
|
+
<attribute name="dimension" type="positiveInteger" use="optional"/>
|
|
38
|
+
</extension>
|
|
39
|
+
</complexContent>
|
|
40
|
+
</complexType>
|
|
41
|
+
<!-- =========================================================== -->
|
|
42
|
+
<element name="_ContinuousCoverage" type="gml:AbstractContinuousCoverageType" abstract="true" substitutionGroup="gml:_Coverage"/>
|
|
43
|
+
<!-- =========================================================== -->
|
|
44
|
+
<complexType name="AbstractContinuousCoverageType" abstract="true">
|
|
45
|
+
<annotation>
|
|
46
|
+
<documentation>A continuous coverage as defined in ISO 19123 is a coverage that can return different values for the same feature attribute at different direct positions within a single spatiotemporal object in its spatiotemporal domain</documentation>
|
|
47
|
+
</annotation>
|
|
48
|
+
<complexContent>
|
|
49
|
+
<extension base="gml:AbstractCoverageType">
|
|
50
|
+
<sequence>
|
|
51
|
+
<element ref="gml:coverageFunction" minOccurs="0"/>
|
|
52
|
+
</sequence>
|
|
53
|
+
</extension>
|
|
54
|
+
</complexContent>
|
|
55
|
+
</complexType>
|
|
56
|
+
<!-- =========================================================== -->
|
|
57
|
+
<element name="_DiscreteCoverage" type="gml:AbstractDiscreteCoverageType" abstract="true" substitutionGroup="gml:_Coverage"/>
|
|
58
|
+
<!-- =========================================================== -->
|
|
59
|
+
<complexType name="AbstractDiscreteCoverageType" abstract="true">
|
|
60
|
+
<annotation>
|
|
61
|
+
<documentation>A discrete coverage consists of a domain set, range set and optionally a coverage function. The domain set consists of either geometry or temporal objects, finite in number. The range set is comprised of a finite number of attribute values each of which is associated to every direct position within any single spatiotemporal object in the domain. In other words, the range values are constant on each spatiotemporal object in the domain. This coverage function maps each element from the coverage domain to an element in its range. This definition conforms to ISO 19123.</documentation>
|
|
62
|
+
</annotation>
|
|
63
|
+
<complexContent>
|
|
64
|
+
<extension base="gml:AbstractCoverageType">
|
|
65
|
+
<sequence>
|
|
66
|
+
<element ref="gml:coverageFunction" minOccurs="0"/>
|
|
67
|
+
</sequence>
|
|
68
|
+
</extension>
|
|
69
|
+
</complexContent>
|
|
70
|
+
</complexType>
|
|
71
|
+
<!-- =========================================================== -->
|
|
72
|
+
<element name="domainSet" type="gml:DomainSetType"/>
|
|
73
|
+
<!-- =========================================================== -->
|
|
74
|
+
<complexType name="DomainSetType">
|
|
75
|
+
<annotation>
|
|
76
|
+
<documentation>The spatiotemporal domain of a coverage.
|
|
77
|
+
Typically
|
|
78
|
+
* a geometry collection,
|
|
79
|
+
* an implicit geometry (e.g. a grid),
|
|
80
|
+
* an explicit or implicit collection of time instances or periods, or
|
|
81
|
+
|
|
82
|
+
N.B. Temporal geometric complexes and temporal grids are not yet implemented in GML.</documentation>
|
|
83
|
+
</annotation>
|
|
84
|
+
<sequence minOccurs="0">
|
|
85
|
+
<choice>
|
|
86
|
+
<element ref="gml:_Geometry"/>
|
|
87
|
+
<element ref="gml:_TimeObject"/>
|
|
88
|
+
</choice>
|
|
89
|
+
</sequence>
|
|
90
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
91
|
+
</complexType>
|
|
92
|
+
<!-- =========================================================== -->
|
|
93
|
+
<element name="rangeSet" type="gml:RangeSetType"/>
|
|
94
|
+
<!-- =========================================================== -->
|
|
95
|
+
<complexType name="RangeSetType">
|
|
96
|
+
<choice>
|
|
97
|
+
<element ref="gml:ValueArray" maxOccurs="unbounded">
|
|
98
|
+
<annotation>
|
|
99
|
+
<documentation>each member _Value holds a tuple or "row" from the equivalent table</documentation>
|
|
100
|
+
</annotation>
|
|
101
|
+
</element>
|
|
102
|
+
<group ref="gml:ScalarValueList" maxOccurs="unbounded">
|
|
103
|
+
<annotation>
|
|
104
|
+
<documentation>each list holds the complete set of one scalar component from the values - i.e. a "column" from the equivalent table</documentation>
|
|
105
|
+
</annotation>
|
|
106
|
+
</group>
|
|
107
|
+
<element ref="gml:DataBlock">
|
|
108
|
+
<annotation>
|
|
109
|
+
<documentation>Its tuple list holds the values as space-separated tuples each of which contains comma-separated components, and the tuple structure is specified using the rangeParameters property.</documentation>
|
|
110
|
+
</annotation>
|
|
111
|
+
</element>
|
|
112
|
+
<element ref="gml:File">
|
|
113
|
+
<annotation>
|
|
114
|
+
<documentation>a reference to an external source for the data, together with a description of how that external source is structured</documentation>
|
|
115
|
+
</annotation>
|
|
116
|
+
</element>
|
|
117
|
+
</choice>
|
|
118
|
+
</complexType>
|
|
119
|
+
<!-- =========================================================== -->
|
|
120
|
+
<element name="coverageFunction" type="gml:CoverageFunctionType"/>
|
|
121
|
+
<!-- =========================================================== -->
|
|
122
|
+
<complexType name="CoverageFunctionType">
|
|
123
|
+
<annotation>
|
|
124
|
+
<documentation>The function or rule which defines the map from members of the domainSet to the range.
|
|
125
|
+
More functions will be added to this list</documentation>
|
|
126
|
+
</annotation>
|
|
127
|
+
<choice>
|
|
128
|
+
<element ref="gml:MappingRule"/>
|
|
129
|
+
<element ref="gml:GridFunction"/>
|
|
130
|
+
</choice>
|
|
131
|
+
</complexType>
|
|
132
|
+
<!-- =========================================================== -->
|
|
133
|
+
<!-- ============== Components for encoding the rangeSet ============= -->
|
|
134
|
+
<!-- =========================================================== -->
|
|
135
|
+
<element name="DataBlock" type="gml:DataBlockType"/>
|
|
136
|
+
<!-- =========================================================== -->
|
|
137
|
+
<complexType name="DataBlockType">
|
|
138
|
+
<sequence>
|
|
139
|
+
<element ref="gml:rangeParameters"/>
|
|
140
|
+
<choice>
|
|
141
|
+
<element ref="gml:tupleList"/>
|
|
142
|
+
<element ref="gml:doubleOrNullTupleList"/>
|
|
143
|
+
</choice>
|
|
144
|
+
</sequence>
|
|
145
|
+
</complexType>
|
|
146
|
+
<!-- =========================================================== -->
|
|
147
|
+
<element name="tupleList" type="gml:CoordinatesType"/>
|
|
148
|
+
<!-- =========================================================== -->
|
|
149
|
+
<element name="doubleOrNullTupleList" type="gml:doubleOrNullList"/>
|
|
150
|
+
<!-- =========================================================== -->
|
|
151
|
+
<element name="File" type="gml:FileType"/>
|
|
152
|
+
<!-- =========================================================== -->
|
|
153
|
+
<complexType name="FileType">
|
|
154
|
+
<sequence>
|
|
155
|
+
<element ref="gml:rangeParameters"/>
|
|
156
|
+
<element name="fileName" type="anyURI"/>
|
|
157
|
+
<element name="fileStructure" type="gml:FileValueModelType"/>
|
|
158
|
+
<element name="mimeType" type="anyURI" minOccurs="0"/>
|
|
159
|
+
<element name="compression" type="anyURI" minOccurs="0"/>
|
|
160
|
+
</sequence>
|
|
161
|
+
</complexType>
|
|
162
|
+
<!-- =========================================================== -->
|
|
163
|
+
<simpleType name="FileValueModelType">
|
|
164
|
+
<annotation>
|
|
165
|
+
<documentation>List of codes that identifies the file structure model for records stored in files.</documentation>
|
|
166
|
+
</annotation>
|
|
167
|
+
<restriction base="string">
|
|
168
|
+
<enumeration value="Record Interleaved"/>
|
|
169
|
+
</restriction>
|
|
170
|
+
</simpleType>
|
|
171
|
+
<!-- =========================================================== -->
|
|
172
|
+
<element name="rangeParameters" type="gml:RangeParametersType"/>
|
|
173
|
+
<!-- =========================================================== -->
|
|
174
|
+
<complexType name="RangeParametersType">
|
|
175
|
+
<annotation>
|
|
176
|
+
<documentation>Metadata about the rangeSet. Definition of record structure.
|
|
177
|
+
This is required if the rangeSet is encoded in a DataBlock.
|
|
178
|
+
We use a gml:_Value with empty values as a map of the composite value structure.</documentation>
|
|
179
|
+
</annotation>
|
|
180
|
+
<sequence minOccurs="0">
|
|
181
|
+
<group ref="gml:ValueObject"/>
|
|
182
|
+
</sequence>
|
|
183
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
184
|
+
</complexType>
|
|
185
|
+
<!-- =========================================================== -->
|
|
186
|
+
<!-- ============= Components for coverageFunctions ================ -->
|
|
187
|
+
<!-- =========================================================== -->
|
|
188
|
+
<element name="MappingRule" type="gml:StringOrRefType">
|
|
189
|
+
<annotation>
|
|
190
|
+
<documentation>Description of a rule for associating members from the domainSet with members of the rangeSet.</documentation>
|
|
191
|
+
</annotation>
|
|
192
|
+
</element>
|
|
193
|
+
<!-- =========================================================== -->
|
|
194
|
+
<element name="GridFunction" type="gml:GridFunctionType"/>
|
|
195
|
+
<!-- =========================================================== -->
|
|
196
|
+
<complexType name="GridFunctionType">
|
|
197
|
+
<annotation>
|
|
198
|
+
<documentation>Defines how values in the domain are mapped to the range set. The start point and the sequencing rule are specified here.</documentation>
|
|
199
|
+
</annotation>
|
|
200
|
+
<sequence>
|
|
201
|
+
<element name="sequenceRule" type="gml:SequenceRuleType" minOccurs="0">
|
|
202
|
+
<annotation>
|
|
203
|
+
<documentation>If absent, the implied value is "Linear".</documentation>
|
|
204
|
+
</annotation>
|
|
205
|
+
</element>
|
|
206
|
+
<element name="startPoint" type="gml:integerList" minOccurs="0">
|
|
207
|
+
<annotation>
|
|
208
|
+
<documentation>Index position of the first grid post, which must lie somwhere in the GridEnvelope. If absent, the startPoint is equal to the value of gridEnvelope::low from the grid definition.</documentation>
|
|
209
|
+
</annotation>
|
|
210
|
+
</element>
|
|
211
|
+
</sequence>
|
|
212
|
+
</complexType>
|
|
213
|
+
<!-- =========================================================== -->
|
|
214
|
+
<element name="IndexMap" type="gml:IndexMapType" substitutionGroup="gml:GridFunction"/>
|
|
215
|
+
<!-- =========================================================== -->
|
|
216
|
+
<complexType name="IndexMapType">
|
|
217
|
+
<annotation>
|
|
218
|
+
<documentation>Exends GridFunctionType with a lookUpTable. This contains a list of indexes of members within the rangeSet corresponding with the members of the domainSet. The domainSet is traversed in list order if it is enumerated explicitly, or in the order specified by a SequenceRule if the domain is an implicit set. The length of the lookUpTable corresponds with the length of the subset of the domainSet for which the coverage is defined.</documentation>
|
|
219
|
+
</annotation>
|
|
220
|
+
<complexContent>
|
|
221
|
+
<extension base="gml:GridFunctionType">
|
|
222
|
+
<sequence>
|
|
223
|
+
<element name="lookUpTable" type="gml:integerList"/>
|
|
224
|
+
</sequence>
|
|
225
|
+
</extension>
|
|
226
|
+
</complexContent>
|
|
227
|
+
</complexType>
|
|
228
|
+
<!-- =========================================================== -->
|
|
229
|
+
<complexType name="SequenceRuleType">
|
|
230
|
+
<simpleContent>
|
|
231
|
+
<extension base="gml:SequenceRuleNames">
|
|
232
|
+
<attribute name="order" type="gml:IncrementOrder" use="optional"/>
|
|
233
|
+
</extension>
|
|
234
|
+
</simpleContent>
|
|
235
|
+
</complexType>
|
|
236
|
+
<!-- =========================================================== -->
|
|
237
|
+
<simpleType name="SequenceRuleNames">
|
|
238
|
+
<annotation>
|
|
239
|
+
<documentation>List of codes (adopted from ISO 19123 Annex C) that identifies the rule for traversing a grid to correspond with the sequence of members of the rangeSet.</documentation>
|
|
240
|
+
</annotation>
|
|
241
|
+
<restriction base="string">
|
|
242
|
+
<enumeration value="Linear"/>
|
|
243
|
+
<enumeration value="Boustrophedonic"/>
|
|
244
|
+
<enumeration value="Cantor-diagonal"/>
|
|
245
|
+
<enumeration value="Spiral"/>
|
|
246
|
+
<enumeration value="Morton"/>
|
|
247
|
+
<enumeration value="Hilbert"/>
|
|
248
|
+
</restriction>
|
|
249
|
+
</simpleType>
|
|
250
|
+
<!-- =========================================================== -->
|
|
251
|
+
<simpleType name="IncrementOrder">
|
|
252
|
+
<annotation>
|
|
253
|
+
<documentation>The enumeration value here indicates the incrementation order to be used on the first 2 axes, i.e. "+x-y" means that the points on the first axis are to be traversed from lowest to highest and the points on the second axis are to be traversed from highest to lowest. The points on all other axes (if any) beyond the first 2 are assumed to increment from lowest to highest.</documentation>
|
|
254
|
+
</annotation>
|
|
255
|
+
<restriction base="string">
|
|
256
|
+
<enumeration value="+x+y"/>
|
|
257
|
+
<enumeration value="+y+x"/>
|
|
258
|
+
<enumeration value="+x-y"/>
|
|
259
|
+
<enumeration value="-x-y"/>
|
|
260
|
+
</restriction>
|
|
261
|
+
</simpleType>
|
|
262
|
+
<!-- =========================================================== -->
|
|
263
|
+
<!-- == Specialised Coverage types - typed by the structure of the domain set == -->
|
|
264
|
+
<!-- =========================================================== -->
|
|
265
|
+
<element name="MultiPointCoverage" type="gml:MultiPointCoverageType" substitutionGroup="gml:_DiscreteCoverage"/>
|
|
266
|
+
<!-- =========================================================== -->
|
|
267
|
+
<complexType name="MultiPointCoverageType">
|
|
268
|
+
<annotation>
|
|
269
|
+
<documentation>A discrete coverage type whose domain is defined by a collection of point</documentation>
|
|
270
|
+
</annotation>
|
|
271
|
+
<complexContent>
|
|
272
|
+
<restriction base="gml:AbstractDiscreteCoverageType">
|
|
273
|
+
<sequence>
|
|
274
|
+
<group ref="gml:StandardObjectProperties"/>
|
|
275
|
+
<element ref="gml:boundedBy" minOccurs="0"/>
|
|
276
|
+
<element ref="gml:multiPointDomain"/>
|
|
277
|
+
<element ref="gml:rangeSet"/>
|
|
278
|
+
<element ref="gml:coverageFunction" minOccurs="0"/>
|
|
279
|
+
</sequence>
|
|
280
|
+
</restriction>
|
|
281
|
+
</complexContent>
|
|
282
|
+
</complexType>
|
|
283
|
+
<!-- =========================================================== -->
|
|
284
|
+
<element name="multiPointDomain" type="gml:MultiPointDomainType" substitutionGroup="gml:domainSet"/>
|
|
285
|
+
<!-- =========================================================== -->
|
|
286
|
+
<complexType name="MultiPointDomainType">
|
|
287
|
+
<complexContent>
|
|
288
|
+
<restriction base="gml:DomainSetType">
|
|
289
|
+
<sequence minOccurs="0">
|
|
290
|
+
<element ref="gml:MultiPoint"/>
|
|
291
|
+
</sequence>
|
|
292
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
293
|
+
</restriction>
|
|
294
|
+
</complexContent>
|
|
295
|
+
</complexType>
|
|
296
|
+
<!-- =========================================================== -->
|
|
297
|
+
<element name="MultiCurveCoverage" type="gml:MultiCurveCoverageType" substitutionGroup="gml:_DiscreteCoverage"/>
|
|
298
|
+
<!-- =========================================================== -->
|
|
299
|
+
<complexType name="MultiCurveCoverageType">
|
|
300
|
+
<annotation>
|
|
301
|
+
<documentation>A discrete coverage type whose domain is defined by a collection of curves.</documentation>
|
|
302
|
+
</annotation>
|
|
303
|
+
<complexContent>
|
|
304
|
+
<restriction base="gml:AbstractDiscreteCoverageType">
|
|
305
|
+
<sequence>
|
|
306
|
+
<group ref="gml:StandardObjectProperties"/>
|
|
307
|
+
<element ref="gml:boundedBy" minOccurs="0"/>
|
|
308
|
+
<element ref="gml:multiCurveDomain"/>
|
|
309
|
+
<element ref="gml:rangeSet"/>
|
|
310
|
+
<element ref="gml:coverageFunction" minOccurs="0"/>
|
|
311
|
+
</sequence>
|
|
312
|
+
</restriction>
|
|
313
|
+
</complexContent>
|
|
314
|
+
</complexType>
|
|
315
|
+
<!-- =========================================================== -->
|
|
316
|
+
<element name="multiCurveDomain" type="gml:MultiCurveDomainType" substitutionGroup="gml:domainSet"/>
|
|
317
|
+
<!-- =========================================================== -->
|
|
318
|
+
<complexType name="MultiCurveDomainType">
|
|
319
|
+
<complexContent>
|
|
320
|
+
<restriction base="gml:DomainSetType">
|
|
321
|
+
<sequence minOccurs="0">
|
|
322
|
+
<element ref="gml:MultiCurve"/>
|
|
323
|
+
</sequence>
|
|
324
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
325
|
+
</restriction>
|
|
326
|
+
</complexContent>
|
|
327
|
+
</complexType>
|
|
328
|
+
<!-- =========================================================== -->
|
|
329
|
+
<element name="MultiSurfaceCoverage" type="gml:MultiSurfaceCoverageType" substitutionGroup="gml:_DiscreteCoverage"/>
|
|
330
|
+
<!-- =========================================================== -->
|
|
331
|
+
<complexType name="MultiSurfaceCoverageType">
|
|
332
|
+
<annotation>
|
|
333
|
+
<documentation>A discrete coverage type whose domain is defined by a collection of surface patches (includes polygons, triangles, rectangles, etc).</documentation>
|
|
334
|
+
</annotation>
|
|
335
|
+
<complexContent>
|
|
336
|
+
<restriction base="gml:AbstractDiscreteCoverageType">
|
|
337
|
+
<sequence>
|
|
338
|
+
<group ref="gml:StandardObjectProperties"/>
|
|
339
|
+
<element ref="gml:boundedBy" minOccurs="0"/>
|
|
340
|
+
<element ref="gml:multiSurfaceDomain"/>
|
|
341
|
+
<element ref="gml:rangeSet"/>
|
|
342
|
+
<element ref="gml:coverageFunction" minOccurs="0"/>
|
|
343
|
+
</sequence>
|
|
344
|
+
</restriction>
|
|
345
|
+
</complexContent>
|
|
346
|
+
</complexType>
|
|
347
|
+
<!-- =========================================================== -->
|
|
348
|
+
<element name="multiSurfaceDomain" type="gml:MultiSurfaceDomainType" substitutionGroup="gml:domainSet"/>
|
|
349
|
+
<!-- =========================================================== -->
|
|
350
|
+
<complexType name="MultiSurfaceDomainType">
|
|
351
|
+
<complexContent>
|
|
352
|
+
<restriction base="gml:DomainSetType">
|
|
353
|
+
<sequence minOccurs="0">
|
|
354
|
+
<element ref="gml:MultiSurface"/>
|
|
355
|
+
</sequence>
|
|
356
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
357
|
+
</restriction>
|
|
358
|
+
</complexContent>
|
|
359
|
+
</complexType>
|
|
360
|
+
<!-- =========================================================== -->
|
|
361
|
+
<element name="MultiSolidCoverage" type="gml:MultiSolidCoverageType" substitutionGroup="gml:_DiscreteCoverage"/>
|
|
362
|
+
<!-- =========================================================== -->
|
|
363
|
+
<complexType name="MultiSolidCoverageType">
|
|
364
|
+
<annotation>
|
|
365
|
+
<documentation>A discrete coverage type whose domain is defined by a collection of Solids.</documentation>
|
|
366
|
+
</annotation>
|
|
367
|
+
<complexContent>
|
|
368
|
+
<restriction base="gml:AbstractDiscreteCoverageType">
|
|
369
|
+
<sequence>
|
|
370
|
+
<group ref="gml:StandardObjectProperties"/>
|
|
371
|
+
<element ref="gml:boundedBy" minOccurs="0"/>
|
|
372
|
+
<element ref="gml:multiSolidDomain"/>
|
|
373
|
+
<element ref="gml:rangeSet"/>
|
|
374
|
+
<element ref="gml:coverageFunction" minOccurs="0"/>
|
|
375
|
+
</sequence>
|
|
376
|
+
</restriction>
|
|
377
|
+
</complexContent>
|
|
378
|
+
</complexType>
|
|
379
|
+
<!-- =========================================================== -->
|
|
380
|
+
<element name="multiSolidDomain" type="gml:MultiSolidDomainType" substitutionGroup="gml:domainSet"/>
|
|
381
|
+
<!-- =========================================================== -->
|
|
382
|
+
<complexType name="MultiSolidDomainType">
|
|
383
|
+
<complexContent>
|
|
384
|
+
<restriction base="gml:DomainSetType">
|
|
385
|
+
<sequence minOccurs="0">
|
|
386
|
+
<element ref="gml:MultiSolid"/>
|
|
387
|
+
</sequence>
|
|
388
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
389
|
+
</restriction>
|
|
390
|
+
</complexContent>
|
|
391
|
+
</complexType>
|
|
392
|
+
<!-- =========================================================== -->
|
|
393
|
+
<element name="GridCoverage" type="gml:GridCoverageType" substitutionGroup="gml:_DiscreteCoverage"/>
|
|
394
|
+
<!-- =========================================================== -->
|
|
395
|
+
<complexType name="GridCoverageType">
|
|
396
|
+
<complexContent>
|
|
397
|
+
<restriction base="gml:AbstractDiscreteCoverageType">
|
|
398
|
+
<sequence>
|
|
399
|
+
<group ref="gml:StandardObjectProperties"/>
|
|
400
|
+
<element ref="gml:boundedBy" minOccurs="0"/>
|
|
401
|
+
<element ref="gml:gridDomain"/>
|
|
402
|
+
<element ref="gml:rangeSet"/>
|
|
403
|
+
<element ref="gml:coverageFunction" minOccurs="0"/>
|
|
404
|
+
</sequence>
|
|
405
|
+
</restriction>
|
|
406
|
+
</complexContent>
|
|
407
|
+
</complexType>
|
|
408
|
+
<!-- =========================================================== -->
|
|
409
|
+
<element name="gridDomain" type="gml:GridDomainType" substitutionGroup="gml:domainSet"/>
|
|
410
|
+
<!-- =========================================================== -->
|
|
411
|
+
<complexType name="GridDomainType">
|
|
412
|
+
<complexContent>
|
|
413
|
+
<restriction base="gml:DomainSetType">
|
|
414
|
+
<sequence minOccurs="0">
|
|
415
|
+
<element ref="gml:Grid"/>
|
|
416
|
+
</sequence>
|
|
417
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
418
|
+
</restriction>
|
|
419
|
+
</complexContent>
|
|
420
|
+
</complexType>
|
|
421
|
+
<!-- =========================================================== -->
|
|
422
|
+
<element name="RectifiedGridCoverage" type="gml:RectifiedGridCoverageType" substitutionGroup="gml:_DiscreteCoverage"/>
|
|
423
|
+
<!-- =========================================================== -->
|
|
424
|
+
<complexType name="RectifiedGridCoverageType">
|
|
425
|
+
<complexContent>
|
|
426
|
+
<restriction base="gml:AbstractDiscreteCoverageType">
|
|
427
|
+
<sequence>
|
|
428
|
+
<group ref="gml:StandardObjectProperties"/>
|
|
429
|
+
<element ref="gml:boundedBy" minOccurs="0"/>
|
|
430
|
+
<element ref="gml:rectifiedGridDomain"/>
|
|
431
|
+
<element ref="gml:rangeSet"/>
|
|
432
|
+
<element ref="gml:coverageFunction" minOccurs="0"/>
|
|
433
|
+
</sequence>
|
|
434
|
+
</restriction>
|
|
435
|
+
</complexContent>
|
|
436
|
+
</complexType>
|
|
437
|
+
<!-- =========================================================== -->
|
|
438
|
+
<element name="rectifiedGridDomain" type="gml:RectifiedGridDomainType" substitutionGroup="gml:domainSet"/>
|
|
439
|
+
<!-- =========================================================== -->
|
|
440
|
+
<complexType name="RectifiedGridDomainType">
|
|
441
|
+
<complexContent>
|
|
442
|
+
<restriction base="gml:DomainSetType">
|
|
443
|
+
<sequence minOccurs="0">
|
|
444
|
+
<element ref="gml:RectifiedGrid"/>
|
|
445
|
+
</sequence>
|
|
446
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
447
|
+
</restriction>
|
|
448
|
+
</complexContent>
|
|
449
|
+
</complexType>
|
|
450
|
+
<!-- =========================================================== -->
|
|
451
|
+
</schema>
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema targetNamespace="http://www.opengis.net/gml" xmlns:gml="http://www.opengis.net/gml" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="3.1.1 2010-01-28" xml:lang="en">
|
|
3
|
+
<annotation>
|
|
4
|
+
<appinfo source="urn:opengis:specification:gml:schema-xsd:dataQuality:3.1.1"/>
|
|
5
|
+
<documentation>How to encode positional data quality information. Builds on units.xsd to encode the data needed to describe the positional accuracy of coordinate operations.
|
|
6
|
+
This schema encodes the Data Quality (DQ) package of the extended UML Model for OGC Abstract Specification Topic 2: Spatial Referencing by Coordinates. That UML model is adapted from ISO 19111 - Spatial referencing by coordinates, as described in Annex C of Topic 2.
|
|
7
|
+
Caution: The CRS package in GML 3.1 and GML 3.1.1 is preliminary, and is expected to undergo some modifications that are not backward compatible during the development of GML 3.2 (ISO 19136). The GML 3.2 package will implement the model described in the revised version of ISO 19111.
|
|
8
|
+
|
|
9
|
+
GML is an OGC Standard.
|
|
10
|
+
Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved.
|
|
11
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
|
12
|
+
</documentation>
|
|
13
|
+
</annotation>
|
|
14
|
+
<!-- ======================================================
|
|
15
|
+
includes and imports
|
|
16
|
+
====================================================== -->
|
|
17
|
+
<include schemaLocation="units.xsd"/>
|
|
18
|
+
<!-- ======================================================
|
|
19
|
+
elements and types
|
|
20
|
+
====================================================== -->
|
|
21
|
+
<element name="_positionalAccuracy" type="gml:AbstractPositionalAccuracyType" abstract="true"/>
|
|
22
|
+
<!-- =================================================== -->
|
|
23
|
+
<complexType name="AbstractPositionalAccuracyType" abstract="true">
|
|
24
|
+
<annotation>
|
|
25
|
+
<documentation>Position error estimate (or accuracy) data. </documentation>
|
|
26
|
+
</annotation>
|
|
27
|
+
<sequence>
|
|
28
|
+
<element ref="gml:measureDescription" minOccurs="0"/>
|
|
29
|
+
</sequence>
|
|
30
|
+
</complexType>
|
|
31
|
+
<!-- =================================================== -->
|
|
32
|
+
<element name="measureDescription" type="gml:CodeType">
|
|
33
|
+
<annotation>
|
|
34
|
+
<documentation>A description of the position accuracy parameter(s) provided. </documentation>
|
|
35
|
+
</annotation>
|
|
36
|
+
</element>
|
|
37
|
+
<!-- =================================================== -->
|
|
38
|
+
<element name="absoluteExternalPositionalAccuracy" type="gml:AbsoluteExternalPositionalAccuracyType" substitutionGroup="gml:_positionalAccuracy"/>
|
|
39
|
+
<!-- =================================================== -->
|
|
40
|
+
<complexType name="AbsoluteExternalPositionalAccuracyType">
|
|
41
|
+
<annotation>
|
|
42
|
+
<documentation>Closeness of reported coordinate values to values accepted as or being true. </documentation>
|
|
43
|
+
</annotation>
|
|
44
|
+
<complexContent>
|
|
45
|
+
<extension base="gml:AbstractPositionalAccuracyType">
|
|
46
|
+
<sequence>
|
|
47
|
+
<element ref="gml:result"/>
|
|
48
|
+
</sequence>
|
|
49
|
+
</extension>
|
|
50
|
+
</complexContent>
|
|
51
|
+
</complexType>
|
|
52
|
+
<!-- =================================================== -->
|
|
53
|
+
<element name="relativeInternalPositionalAccuracy" type="gml:RelativeInternalPositionalAccuracyType" substitutionGroup="gml:_positionalAccuracy"/>
|
|
54
|
+
<!-- =================================================== -->
|
|
55
|
+
<complexType name="RelativeInternalPositionalAccuracyType">
|
|
56
|
+
<annotation>
|
|
57
|
+
<documentation>Closeness of the relative positions of two or more positions to their respective relative positions accepted as or being true. </documentation>
|
|
58
|
+
</annotation>
|
|
59
|
+
<complexContent>
|
|
60
|
+
<extension base="gml:AbstractPositionalAccuracyType">
|
|
61
|
+
<sequence>
|
|
62
|
+
<element ref="gml:result"/>
|
|
63
|
+
</sequence>
|
|
64
|
+
</extension>
|
|
65
|
+
</complexContent>
|
|
66
|
+
</complexType>
|
|
67
|
+
<!-- =================================================== -->
|
|
68
|
+
<element name="result" type="gml:MeasureType">
|
|
69
|
+
<annotation>
|
|
70
|
+
<documentation>A quantitative result defined by the evaluation procedure used, and identified by the measureDescription. </documentation>
|
|
71
|
+
</annotation>
|
|
72
|
+
</element>
|
|
73
|
+
<!-- =================================================== -->
|
|
74
|
+
<element name="covarianceMatrix" type="gml:CovarianceMatrixType" substitutionGroup="gml:_positionalAccuracy"/>
|
|
75
|
+
<!-- =================================================== -->
|
|
76
|
+
<complexType name="CovarianceMatrixType">
|
|
77
|
+
<annotation>
|
|
78
|
+
<documentation>Error estimate covariance matrix. </documentation>
|
|
79
|
+
</annotation>
|
|
80
|
+
<complexContent>
|
|
81
|
+
<extension base="gml:AbstractPositionalAccuracyType">
|
|
82
|
+
<sequence>
|
|
83
|
+
<element ref="gml:unitOfMeasure" maxOccurs="unbounded">
|
|
84
|
+
<annotation>
|
|
85
|
+
<documentation>Ordered sequence of units of measure, corresponding to the row and column index numbers of the covariance matrix, starting with row and column 1 and ending with row/column N. Each unit of measure is for the ordinate reflected in the relevant row and column of the covariance matrix. </documentation>
|
|
86
|
+
</annotation>
|
|
87
|
+
</element>
|
|
88
|
+
<element ref="gml:includesElement" maxOccurs="unbounded">
|
|
89
|
+
<annotation>
|
|
90
|
+
<documentation>Unordered set of elements in this covariance matrix. Because the covariance matrix is symmetrical, only the elements in the upper or lower diagonal part (including the main diagonal) of the matrix need to be specified. Any zero valued covariance elements can be omitted. </documentation>
|
|
91
|
+
</annotation>
|
|
92
|
+
</element>
|
|
93
|
+
</sequence>
|
|
94
|
+
</extension>
|
|
95
|
+
</complexContent>
|
|
96
|
+
</complexType>
|
|
97
|
+
<!-- =================================================== -->
|
|
98
|
+
<element name="includesElement" type="gml:CovarianceElementType"/>
|
|
99
|
+
<!-- =================================================== -->
|
|
100
|
+
<complexType name="CovarianceElementType">
|
|
101
|
+
<annotation>
|
|
102
|
+
<documentation>An element of a covariance matrix.</documentation>
|
|
103
|
+
</annotation>
|
|
104
|
+
<sequence>
|
|
105
|
+
<element ref="gml:rowIndex"/>
|
|
106
|
+
<element ref="gml:columnIndex"/>
|
|
107
|
+
<element ref="gml:covariance"/>
|
|
108
|
+
</sequence>
|
|
109
|
+
</complexType>
|
|
110
|
+
<!-- =================================================== -->
|
|
111
|
+
<element name="rowIndex" type="positiveInteger">
|
|
112
|
+
<annotation>
|
|
113
|
+
<documentation>Row number of this covariance element value. </documentation>
|
|
114
|
+
</annotation>
|
|
115
|
+
</element>
|
|
116
|
+
<!-- =================================================== -->
|
|
117
|
+
<element name="columnIndex" type="positiveInteger">
|
|
118
|
+
<annotation>
|
|
119
|
+
<documentation>Column number of this covariance element value. </documentation>
|
|
120
|
+
</annotation>
|
|
121
|
+
</element>
|
|
122
|
+
<!-- =================================================== -->
|
|
123
|
+
<element name="covariance" type="double">
|
|
124
|
+
<annotation>
|
|
125
|
+
<documentation>Value of covariance matrix element. </documentation>
|
|
126
|
+
</annotation>
|
|
127
|
+
</element>
|
|
128
|
+
<!-- =================================================== -->
|
|
129
|
+
</schema>
|