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,269 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema targetNamespace="http://www.opengis.net/gml/3.2" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml/3.2" elementFormDefault="qualified" version="3.2.1.2">
|
|
3
|
+
<annotation>
|
|
4
|
+
<appinfo source="urn:x-ogc:specification:gml:schema-xsd:temporal:3.2.1">temporal.xsd</appinfo>
|
|
5
|
+
<documentation>See ISO/DIS 19136 15.2.
|
|
6
|
+
The GML temporal schemas include components for describing temporal geometry and topology, temporal reference systems, and the temporal characteristics of geographic data. The model underlying the representation constitutes a profile of the conceptual schema described in ISO 19108. The underlying spatiotemporal model strives to accommodate both feature-level and attribute-level time stamping; basic support for tracking moving objects is also included.
|
|
7
|
+
Time is measured on two types of scales: interval and ordinal. An interval scale offers a basis for measuring duration, an ordinal scale provides information only about relative position in time.
|
|
8
|
+
Two other ISO standards are relevant to describing temporal objects: ISO 8601 describes encodings for time instants and time periods, as text strings with particular structure and punctuation; ISO 11404 provides a detailed description of time intervals as part of a general discussion of language independent datatypes.
|
|
9
|
+
The temporal schemas cover two interrelated topics and provide basic schema components for representing temporal instants and periods, temporal topology, and reference systems; more specialized schema components defines components used for dynamic features. Instances of temporal geometric types are used as values for the temporal properties of geographic features.
|
|
10
|
+
|
|
11
|
+
GML is an OGC Standard.
|
|
12
|
+
Copyright (c) 2007,2010 Open Geospatial Consortium.
|
|
13
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
|
14
|
+
</documentation>
|
|
15
|
+
</annotation>
|
|
16
|
+
<include schemaLocation="gml.xsd"/>
|
|
17
|
+
<include schemaLocation="gmlBase.xsd"/>
|
|
18
|
+
<element name="AbstractTimeObject" type="gml:AbstractTimeObjectType" abstract="true" substitutionGroup="gml:AbstractGML">
|
|
19
|
+
<annotation>
|
|
20
|
+
<documentation>gml:AbstractTimeObject acts as the head of a substitution group for all temporal primitives and complexes.</documentation>
|
|
21
|
+
</annotation>
|
|
22
|
+
</element>
|
|
23
|
+
<complexType name="AbstractTimeObjectType" abstract="true">
|
|
24
|
+
<complexContent>
|
|
25
|
+
<extension base="gml:AbstractGMLType"/>
|
|
26
|
+
</complexContent>
|
|
27
|
+
</complexType>
|
|
28
|
+
<element name="AbstractTimePrimitive" type="gml:AbstractTimePrimitiveType" abstract="true" substitutionGroup="gml:AbstractTimeObject">
|
|
29
|
+
<annotation>
|
|
30
|
+
<documentation>gml:AbstractTimePrimitive acts as the head of a substitution group for geometric and topological temporal primitives.</documentation>
|
|
31
|
+
</annotation>
|
|
32
|
+
</element>
|
|
33
|
+
<complexType name="AbstractTimePrimitiveType" abstract="true">
|
|
34
|
+
<complexContent>
|
|
35
|
+
<extension base="gml:AbstractTimeObjectType">
|
|
36
|
+
<sequence>
|
|
37
|
+
<element name="relatedTime" type="gml:RelatedTimeType" minOccurs="0" maxOccurs="unbounded"/>
|
|
38
|
+
</sequence>
|
|
39
|
+
</extension>
|
|
40
|
+
</complexContent>
|
|
41
|
+
</complexType>
|
|
42
|
+
<complexType name="TimePrimitivePropertyType">
|
|
43
|
+
<annotation>
|
|
44
|
+
<documentation>gml:TimePrimitivePropertyType provides a standard content model for associations between an arbitrary member of the substitution group whose head is gml:AbstractTimePrimitive and another object.</documentation>
|
|
45
|
+
</annotation>
|
|
46
|
+
<sequence minOccurs="0">
|
|
47
|
+
<element ref="gml:AbstractTimePrimitive"/>
|
|
48
|
+
</sequence>
|
|
49
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
50
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
51
|
+
</complexType>
|
|
52
|
+
<element name="validTime" type="gml:TimePrimitivePropertyType">
|
|
53
|
+
<annotation>
|
|
54
|
+
<documentation>gml:validTime is a convenience property element.</documentation>
|
|
55
|
+
</annotation>
|
|
56
|
+
</element>
|
|
57
|
+
<complexType name="RelatedTimeType">
|
|
58
|
+
<annotation>
|
|
59
|
+
<documentation>gml:RelatedTimeType provides a content model for indicating the relative position of an arbitrary member of the substitution group whose head is gml:AbstractTimePrimitive. It extends the generic gml:TimePrimitivePropertyType with an XML attribute relativePosition, whose value is selected from the set of 13 temporal relationships identified by Allen (1983)</documentation>
|
|
60
|
+
</annotation>
|
|
61
|
+
<complexContent>
|
|
62
|
+
<extension base="gml:TimePrimitivePropertyType">
|
|
63
|
+
<attribute name="relativePosition">
|
|
64
|
+
<simpleType>
|
|
65
|
+
<restriction base="string">
|
|
66
|
+
<enumeration value="Before"/>
|
|
67
|
+
<enumeration value="After"/>
|
|
68
|
+
<enumeration value="Begins"/>
|
|
69
|
+
<enumeration value="Ends"/>
|
|
70
|
+
<enumeration value="During"/>
|
|
71
|
+
<enumeration value="Equals"/>
|
|
72
|
+
<enumeration value="Contains"/>
|
|
73
|
+
<enumeration value="Overlaps"/>
|
|
74
|
+
<enumeration value="Meets"/>
|
|
75
|
+
<enumeration value="OverlappedBy"/>
|
|
76
|
+
<enumeration value="MetBy"/>
|
|
77
|
+
<enumeration value="BegunBy"/>
|
|
78
|
+
<enumeration value="EndedBy"/>
|
|
79
|
+
</restriction>
|
|
80
|
+
</simpleType>
|
|
81
|
+
</attribute>
|
|
82
|
+
</extension>
|
|
83
|
+
</complexContent>
|
|
84
|
+
</complexType>
|
|
85
|
+
<element name="AbstractTimeComplex" type="gml:AbstractTimeComplexType" abstract="true" substitutionGroup="gml:AbstractTimeObject">
|
|
86
|
+
<annotation>
|
|
87
|
+
<documentation>gml:AbstractTimeComplex is an aggregation of temporal primitives and acts as the head of a substitution group for temporal complexes.</documentation>
|
|
88
|
+
</annotation>
|
|
89
|
+
</element>
|
|
90
|
+
<complexType name="AbstractTimeComplexType" abstract="true">
|
|
91
|
+
<complexContent>
|
|
92
|
+
<extension base="gml:AbstractTimeObjectType"/>
|
|
93
|
+
</complexContent>
|
|
94
|
+
</complexType>
|
|
95
|
+
<element name="AbstractTimeGeometricPrimitive" type="gml:AbstractTimeGeometricPrimitiveType" abstract="true" substitutionGroup="gml:AbstractTimePrimitive">
|
|
96
|
+
<annotation>
|
|
97
|
+
<documentation>gml:TimeGeometricPrimitive acts as the head of a substitution group for geometric temporal primitives.
|
|
98
|
+
A temporal geometry shall be associated with a temporal reference system through the frame attribute that provides a URI reference that identifies a description of the reference system. Following ISO 19108, the Gregorian calendar with UTC is the default reference system, but others may also be used. The GPS calendar is an alternative reference systems in common use.
|
|
99
|
+
The two geometric primitives in the temporal dimension are the instant and the period. GML components are defined to support these as follows.</documentation>
|
|
100
|
+
</annotation>
|
|
101
|
+
</element>
|
|
102
|
+
<complexType name="AbstractTimeGeometricPrimitiveType" abstract="true">
|
|
103
|
+
<complexContent>
|
|
104
|
+
<extension base="gml:AbstractTimePrimitiveType">
|
|
105
|
+
<attribute name="frame" type="anyURI" default="#ISO-8601"/>
|
|
106
|
+
</extension>
|
|
107
|
+
</complexContent>
|
|
108
|
+
</complexType>
|
|
109
|
+
<element name="TimeInstant" type="gml:TimeInstantType" substitutionGroup="gml:AbstractTimeGeometricPrimitive">
|
|
110
|
+
<annotation>
|
|
111
|
+
<documentation>gml:TimeInstant acts as a zero-dimensional geometric primitive that represents an identifiable position in time.</documentation>
|
|
112
|
+
</annotation>
|
|
113
|
+
</element>
|
|
114
|
+
<complexType name="TimeInstantType" final="#all">
|
|
115
|
+
<complexContent>
|
|
116
|
+
<extension base="gml:AbstractTimeGeometricPrimitiveType">
|
|
117
|
+
<sequence>
|
|
118
|
+
<element ref="gml:timePosition"/>
|
|
119
|
+
</sequence>
|
|
120
|
+
</extension>
|
|
121
|
+
</complexContent>
|
|
122
|
+
</complexType>
|
|
123
|
+
<complexType name="TimeInstantPropertyType">
|
|
124
|
+
<annotation>
|
|
125
|
+
<documentation>gml:TimeInstantPropertyType provides for associating a gml:TimeInstant with an object.</documentation>
|
|
126
|
+
</annotation>
|
|
127
|
+
<sequence minOccurs="0">
|
|
128
|
+
<element ref="gml:TimeInstant"/>
|
|
129
|
+
</sequence>
|
|
130
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
131
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
132
|
+
</complexType>
|
|
133
|
+
<element name="TimePeriod" type="gml:TimePeriodType" substitutionGroup="gml:AbstractTimeGeometricPrimitive">
|
|
134
|
+
<annotation>
|
|
135
|
+
<documentation>gml:TimePeriod acts as a one-dimensional geometric primitive that represents an identifiable extent in time.
|
|
136
|
+
The location in of a gml:TimePeriod is described by the temporal positions of the instants at which it begins and ends. The length of the period is equal to the temporal distance between the two bounding temporal positions.
|
|
137
|
+
Both beginning and end may be described in terms of their direct position using gml:TimePositionType which is an XML Schema simple content type, or by reference to an indentifiable time instant using gml:TimeInstantPropertyType.
|
|
138
|
+
Alternatively a limit of a gml:TimePeriod may use the conventional GML property model to make a reference to a time instant described elsewhere, or a limit may be indicated as a direct position.</documentation>
|
|
139
|
+
</annotation>
|
|
140
|
+
</element>
|
|
141
|
+
<complexType name="TimePeriodType">
|
|
142
|
+
<complexContent>
|
|
143
|
+
<extension base="gml:AbstractTimeGeometricPrimitiveType">
|
|
144
|
+
<sequence>
|
|
145
|
+
<choice>
|
|
146
|
+
<element name="beginPosition" type="gml:TimePositionType"/>
|
|
147
|
+
<element name="begin" type="gml:TimeInstantPropertyType"/>
|
|
148
|
+
</choice>
|
|
149
|
+
<choice>
|
|
150
|
+
<element name="endPosition" type="gml:TimePositionType"/>
|
|
151
|
+
<element name="end" type="gml:TimeInstantPropertyType"/>
|
|
152
|
+
</choice>
|
|
153
|
+
<group ref="gml:timeLength" minOccurs="0"/>
|
|
154
|
+
</sequence>
|
|
155
|
+
</extension>
|
|
156
|
+
</complexContent>
|
|
157
|
+
</complexType>
|
|
158
|
+
<complexType name="TimePeriodPropertyType">
|
|
159
|
+
<annotation>
|
|
160
|
+
<documentation>gml:TimePeriodPropertyType provides for associating a gml:TimePeriod with an object.</documentation>
|
|
161
|
+
</annotation>
|
|
162
|
+
<sequence minOccurs="0">
|
|
163
|
+
<element ref="gml:TimePeriod"/>
|
|
164
|
+
</sequence>
|
|
165
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
166
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
167
|
+
</complexType>
|
|
168
|
+
<complexType name="TimePositionType" final="#all">
|
|
169
|
+
<annotation>
|
|
170
|
+
<documentation>The method for identifying a temporal position is specific to each temporal reference system. gml:TimePositionType supports the description of temporal position according to the subtypes described in ISO 19108.
|
|
171
|
+
Values based on calendars and clocks use lexical formats that are based on ISO 8601, as described in XML Schema Part 2:2001. A decimal value may be used with coordinate systems such as GPS time or UNIX time. A URI may be used to provide a reference to some era in an ordinal reference system .
|
|
172
|
+
In common with many of the components modelled as data types in the ISO 19100 series of International Standards, the corresponding GML component has simple content. However, the content model gml:TimePositionType is defined in several steps.
|
|
173
|
+
Three XML attributes appear on gml:TimePositionType:
|
|
174
|
+
A time value shall be associated with a temporal reference system through the frame attribute that provides a URI reference that identifies a description of the reference system. Following ISO 19108, the Gregorian calendar with UTC is the default reference system, but others may also be used. Components for describing temporal reference systems are described in 14.4, but it is not required that the reference system be described in this, as the reference may refer to anything that may be indentified with a URI.
|
|
175
|
+
For time values using a calendar containing more than one era, the (optional) calendarEraName attribute provides the name of the calendar era.
|
|
176
|
+
Inexact temporal positions may be expressed using the optional indeterminatePosition attribute. This takes a value from an enumeration.</documentation>
|
|
177
|
+
</annotation>
|
|
178
|
+
<simpleContent>
|
|
179
|
+
<extension base="gml:TimePositionUnion">
|
|
180
|
+
<attribute name="frame" type="anyURI" default="#ISO-8601"/>
|
|
181
|
+
<attribute name="calendarEraName" type="string"/>
|
|
182
|
+
<attribute name="indeterminatePosition" type="gml:TimeIndeterminateValueType"/>
|
|
183
|
+
</extension>
|
|
184
|
+
</simpleContent>
|
|
185
|
+
</complexType>
|
|
186
|
+
<simpleType name="TimeIndeterminateValueType">
|
|
187
|
+
<annotation>
|
|
188
|
+
<documentation>These values are interpreted as follows:
|
|
189
|
+
- "unknown" indicates that no specific value for temporal position is provided.
|
|
190
|
+
- "now" indicates that the specified value shall be replaced with the current temporal position whenever the value is accessed.
|
|
191
|
+
- "before" indicates that the actual temporal position is unknown, but it is known to be before the specified value.
|
|
192
|
+
- "after" indicates that the actual temporal position is unknown, but it is known to be after the specified value.
|
|
193
|
+
A value for indeterminatePosition may
|
|
194
|
+
- be used either alone, or
|
|
195
|
+
- qualify a specific value for temporal position.</documentation>
|
|
196
|
+
</annotation>
|
|
197
|
+
<restriction base="string">
|
|
198
|
+
<enumeration value="after"/>
|
|
199
|
+
<enumeration value="before"/>
|
|
200
|
+
<enumeration value="now"/>
|
|
201
|
+
<enumeration value="unknown"/>
|
|
202
|
+
</restriction>
|
|
203
|
+
</simpleType>
|
|
204
|
+
<simpleType name="TimePositionUnion">
|
|
205
|
+
<annotation>
|
|
206
|
+
<documentation>The simple type gml:TimePositionUnion is a union of XML Schema simple types which instantiate the subtypes for temporal position described in ISO 19108.
|
|
207
|
+
An ordinal era may be referenced via URI. A decimal value may be used to indicate the distance from the scale origin . time is used for a position that recurs daily (see ISO 19108:2002 5.4.4.2).
|
|
208
|
+
Finally, calendar and clock forms that support the representation of time in systems based on years, months, days, hours, minutes and seconds, in a notation following ISO 8601, are assembled by gml:CalDate</documentation>
|
|
209
|
+
</annotation>
|
|
210
|
+
<union memberTypes="gml:CalDate time dateTime anyURI decimal"/>
|
|
211
|
+
</simpleType>
|
|
212
|
+
<simpleType name="CalDate">
|
|
213
|
+
<union memberTypes="date gYearMonth gYear"/>
|
|
214
|
+
</simpleType>
|
|
215
|
+
<element name="timePosition" type="gml:TimePositionType">
|
|
216
|
+
<annotation>
|
|
217
|
+
<documentation>This element is used directly as a property of gml:TimeInstant (see 15.2.2.3), and may also be used in application schemas.</documentation>
|
|
218
|
+
</annotation>
|
|
219
|
+
</element>
|
|
220
|
+
<group name="timeLength">
|
|
221
|
+
<annotation>
|
|
222
|
+
<documentation>The length of a time period.</documentation>
|
|
223
|
+
</annotation>
|
|
224
|
+
<choice>
|
|
225
|
+
<element ref="gml:duration"/>
|
|
226
|
+
<element ref="gml:timeInterval"/>
|
|
227
|
+
</choice>
|
|
228
|
+
</group>
|
|
229
|
+
<element name="duration" type="duration">
|
|
230
|
+
<annotation>
|
|
231
|
+
<documentation>gml:duration conforms to the ISO 8601 syntax for temporal length as implemented by the XML Schema duration type.</documentation>
|
|
232
|
+
</annotation>
|
|
233
|
+
</element>
|
|
234
|
+
<element name="timeInterval" type="gml:TimeIntervalLengthType">
|
|
235
|
+
<annotation>
|
|
236
|
+
<documentation> gml:timeInterval conforms to ISO 11404 which is based on floating point values for temporal length.
|
|
237
|
+
ISO 11404 syntax specifies the use of a positiveInteger together with appropriate values for radix and factor. The resolution of the time interval is to one radix ^(-factor) of the specified time unit.
|
|
238
|
+
The value of the unit is either selected from the units for time intervals from ISO 31-1:1992, or is another suitable unit. The encoding is defined for GML in gml:TimeUnitType. The second component of this union type provides a method for indicating time units other than the six standard units given in the enumeration.</documentation>
|
|
239
|
+
</annotation>
|
|
240
|
+
</element>
|
|
241
|
+
<complexType name="TimeIntervalLengthType" final="#all">
|
|
242
|
+
<simpleContent>
|
|
243
|
+
<extension base="decimal">
|
|
244
|
+
<attribute name="unit" type="gml:TimeUnitType" use="required"/>
|
|
245
|
+
<attribute name="radix" type="positiveInteger"/>
|
|
246
|
+
<attribute name="factor" type="integer"/>
|
|
247
|
+
</extension>
|
|
248
|
+
</simpleContent>
|
|
249
|
+
</complexType>
|
|
250
|
+
<simpleType name="TimeUnitType">
|
|
251
|
+
<union>
|
|
252
|
+
<simpleType>
|
|
253
|
+
<restriction base="string">
|
|
254
|
+
<enumeration value="year"/>
|
|
255
|
+
<enumeration value="month"/>
|
|
256
|
+
<enumeration value="day"/>
|
|
257
|
+
<enumeration value="hour"/>
|
|
258
|
+
<enumeration value="minute"/>
|
|
259
|
+
<enumeration value="second"/>
|
|
260
|
+
</restriction>
|
|
261
|
+
</simpleType>
|
|
262
|
+
<simpleType>
|
|
263
|
+
<restriction base="string">
|
|
264
|
+
<pattern value="other:\w{2,}"/>
|
|
265
|
+
</restriction>
|
|
266
|
+
</simpleType>
|
|
267
|
+
</union>
|
|
268
|
+
</simpleType>
|
|
269
|
+
</schema>
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema targetNamespace="http://www.opengis.net/gml/3.2" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="3.2.1.2">
|
|
3
|
+
<annotation>
|
|
4
|
+
<appinfo source="urn:x-ogc:specification:gml:schema-xsd:temporalReferenceSystems:3.2.1">temporalReferenceSystems.xsd</appinfo>
|
|
5
|
+
<documentation>See ISO/DIS 19136 15.5.
|
|
6
|
+
A value in the time domain is measured relative to a temporal reference system. Common types of reference systems include calendars, ordinal temporal reference systems, and temporal coordinate systems (time elapsed since some epoch). The primary temporal reference system for use with geographic information is the Gregorian Calendar and 24 hour local or Coordinated Universal Time (UTC), but special applications may entail the use of alternative reference systems. The Julian day numbering system is a temporal coordinate system that has an origin earlier than any known calendar, at noon on 1 January 4713 BC in the Julian proleptic calendar, and is useful in transformations between dates in different calendars.
|
|
7
|
+
In GML seven concrete elements are used to describe temporal reference systems: gml:TimeReferenceSystem, gml:TimeCoordinateSystem, gml:TimeCalendar, gml:TimeCalendarEra, gml:TimeClock, gml:TimeOrdinalReferenceSystem, and gml:TimeOrdinalEra.
|
|
8
|
+
|
|
9
|
+
GML is an OGC Standard.
|
|
10
|
+
Copyright (c) 2007,2010 Open Geospatial Consortium.
|
|
11
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
|
12
|
+
</documentation>
|
|
13
|
+
</annotation>
|
|
14
|
+
<include schemaLocation="gml.xsd"/>
|
|
15
|
+
<include schemaLocation="temporalTopology.xsd"/>
|
|
16
|
+
<include schemaLocation="dictionary.xsd"/>
|
|
17
|
+
<element name="TimeReferenceSystem" type="gml:TimeReferenceSystemType" substitutionGroup="gml:Definition">
|
|
18
|
+
<annotation>
|
|
19
|
+
<documentation>A reference system is characterized in terms of its domain of validity: the spatial and temporal extent over which it is applicable. The basic GML element for temporal reference systems is gml:TimeReferenceSystem. Its content model extends gml:DefinitionType with one additional property, gml:domainOfValidity.</documentation>
|
|
20
|
+
</annotation>
|
|
21
|
+
</element>
|
|
22
|
+
<complexType name="TimeReferenceSystemType">
|
|
23
|
+
<complexContent>
|
|
24
|
+
<extension base="gml:DefinitionType">
|
|
25
|
+
<sequence>
|
|
26
|
+
<element name="domainOfValidity" type="string"/>
|
|
27
|
+
</sequence>
|
|
28
|
+
</extension>
|
|
29
|
+
</complexContent>
|
|
30
|
+
</complexType>
|
|
31
|
+
<element name="TimeCoordinateSystem" type="gml:TimeCoordinateSystemType" substitutionGroup="gml:TimeReferenceSystem">
|
|
32
|
+
<annotation>
|
|
33
|
+
<documentation>A temporal coordinate system shall be based on a continuous interval scale defined in terms of a single time interval.
|
|
34
|
+
The differences to ISO 19108 TM_CoordinateSystem are:
|
|
35
|
+
- the origin is specified either using the property gml:originPosition whose value is a direct time position, or using the property gml:origin whose model is gml:TimeInstantPropertyType; this permits more flexibility in representation and also supports referring to a value fixed elsewhere;
|
|
36
|
+
- the interval uses gml:TimeIntervalLengthType.
|
|
37
|
+
</documentation>
|
|
38
|
+
</annotation>
|
|
39
|
+
</element>
|
|
40
|
+
<complexType name="TimeCoordinateSystemType">
|
|
41
|
+
<complexContent>
|
|
42
|
+
<extension base="gml:TimeReferenceSystemType">
|
|
43
|
+
<sequence>
|
|
44
|
+
<choice>
|
|
45
|
+
<element name="originPosition" type="gml:TimePositionType"/>
|
|
46
|
+
<element name="origin" type="gml:TimeInstantPropertyType"/>
|
|
47
|
+
</choice>
|
|
48
|
+
<element name="interval" type="gml:TimeIntervalLengthType"/>
|
|
49
|
+
</sequence>
|
|
50
|
+
</extension>
|
|
51
|
+
</complexContent>
|
|
52
|
+
</complexType>
|
|
53
|
+
<element name="TimeCalendar" type="gml:TimeCalendarType" substitutionGroup="gml:TimeReferenceSystem">
|
|
54
|
+
<annotation>
|
|
55
|
+
<documentation>A calendar is a discrete temporal reference system that provides a basis for defining temporal position to a resolution of one day.
|
|
56
|
+
gml:TimeCalendar adds one property to those inherited from gml:TimeReferenceSystem. A gml:referenceFrame provides a link to a gml:TimeCalendarEra that it uses. A gml:TimeCalendar may reference more than one calendar era.
|
|
57
|
+
The referenceFrame element follows the standard GML property model, allowing the association to be instantiated either using an inline description using the gml:TimeCalendarEra element, or a link to a gml:TimeCalendarEra which is explicit elsewhere.</documentation>
|
|
58
|
+
</annotation>
|
|
59
|
+
</element>
|
|
60
|
+
<complexType name="TimeCalendarType">
|
|
61
|
+
<complexContent>
|
|
62
|
+
<extension base="gml:TimeReferenceSystemType">
|
|
63
|
+
<sequence>
|
|
64
|
+
<element name="referenceFrame" type="gml:TimeCalendarEraPropertyType" maxOccurs="unbounded"/>
|
|
65
|
+
</sequence>
|
|
66
|
+
</extension>
|
|
67
|
+
</complexContent>
|
|
68
|
+
</complexType>
|
|
69
|
+
<element name="TimeCalendarEra" type="gml:TimeCalendarEraType">
|
|
70
|
+
<annotation>
|
|
71
|
+
<documentation>gml:TimeCalendarEra inherits basic properties from gml:DefinitionType and has the following additional properties:
|
|
72
|
+
- gml:referenceEvent is the name or description of a mythical or historic event which fixes the position of the base scale of the calendar era. This is given as text or using a link to description held elsewhere.
|
|
73
|
+
- gml:referenceDate specifies the date of the referenceEvent expressed as a date in the given calendar. In most calendars, this date is the origin (i.e., the first day) of the scale, but this is not always true.
|
|
74
|
+
- gml:julianReference specifies the Julian date that corresponds to the reference date. The Julian day number is an integer value; the Julian date is a decimal value that allows greater resolution. Transforming calendar dates to and from Julian dates provides a relatively simple basis for transforming dates from one calendar to another.
|
|
75
|
+
- gml:epochOfUse is the period for which the calendar era was used as a basis for dating.</documentation>
|
|
76
|
+
</annotation>
|
|
77
|
+
</element>
|
|
78
|
+
<complexType name="TimeCalendarEraType">
|
|
79
|
+
<complexContent>
|
|
80
|
+
<extension base="gml:DefinitionType">
|
|
81
|
+
<sequence>
|
|
82
|
+
<element name="referenceEvent" type="gml:StringOrRefType"/>
|
|
83
|
+
<element name="referenceDate" type="gml:CalDate"/>
|
|
84
|
+
<element name="julianReference" type="decimal"/>
|
|
85
|
+
<element name="epochOfUse" type="gml:TimePeriodPropertyType"/>
|
|
86
|
+
</sequence>
|
|
87
|
+
</extension>
|
|
88
|
+
</complexContent>
|
|
89
|
+
</complexType>
|
|
90
|
+
<complexType name="TimeCalendarPropertyType">
|
|
91
|
+
<annotation>
|
|
92
|
+
<documentation>gml:TimeCalendarPropertyType provides for associating a gml:TimeCalendar with an object.</documentation>
|
|
93
|
+
</annotation>
|
|
94
|
+
<sequence minOccurs="0">
|
|
95
|
+
<element ref="gml:TimeCalendar"/>
|
|
96
|
+
</sequence>
|
|
97
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
98
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
99
|
+
</complexType>
|
|
100
|
+
<complexType name="TimeCalendarEraPropertyType">
|
|
101
|
+
<annotation>
|
|
102
|
+
<documentation>gml:TimeCalendarEraPropertyType provides for associating a gml:TimeCalendarEra with an object.</documentation>
|
|
103
|
+
</annotation>
|
|
104
|
+
<sequence minOccurs="0">
|
|
105
|
+
<element ref="gml:TimeCalendarEra"/>
|
|
106
|
+
</sequence>
|
|
107
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
108
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
109
|
+
</complexType>
|
|
110
|
+
<element name="TimeClock" type="gml:TimeClockType" substitutionGroup="gml:TimeReferenceSystem">
|
|
111
|
+
<annotation>
|
|
112
|
+
<documentation>A clock provides a basis for defining temporal position within a day. A clock shall be used with a calendar in order to provide a complete description of a temporal position within a specific day.
|
|
113
|
+
gml:TimeClock adds the following properties to those inherited from gml:TimeReferenceSystemType:
|
|
114
|
+
- gml:referenceEvent is the name or description of an event, such as solar noon or sunrise, which fixes the position of the base scale of the clock.
|
|
115
|
+
- gml:referenceTime specifies the time of day associated with the reference event expressed as a time of day in the given clock. The reference time is usually the origin of the clock scale.
|
|
116
|
+
- gml:utcReference specifies the 24 hour local or UTC time that corresponds to the reference time.
|
|
117
|
+
- gml:dateBasis contains or references the calendars that use this clock.</documentation>
|
|
118
|
+
</annotation>
|
|
119
|
+
</element>
|
|
120
|
+
<complexType name="TimeClockType" final="#all">
|
|
121
|
+
<complexContent>
|
|
122
|
+
<extension base="gml:TimeReferenceSystemType">
|
|
123
|
+
<sequence>
|
|
124
|
+
<element name="referenceEvent" type="gml:StringOrRefType"/>
|
|
125
|
+
<element name="referenceTime" type="time"/>
|
|
126
|
+
<element name="utcReference" type="time"/>
|
|
127
|
+
<element name="dateBasis" type="gml:TimeCalendarPropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
128
|
+
</sequence>
|
|
129
|
+
</extension>
|
|
130
|
+
</complexContent>
|
|
131
|
+
</complexType>
|
|
132
|
+
<complexType name="TimeClockPropertyType">
|
|
133
|
+
<annotation>
|
|
134
|
+
<documentation>gml:TimeClockPropertyType provides for associating a gml:TimeClock with an object.</documentation>
|
|
135
|
+
</annotation>
|
|
136
|
+
<sequence minOccurs="0">
|
|
137
|
+
<element ref="gml:TimeClock"/>
|
|
138
|
+
</sequence>
|
|
139
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
140
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
141
|
+
</complexType>
|
|
142
|
+
<element name="TimeOrdinalReferenceSystem" type="gml:TimeOrdinalReferenceSystemType" substitutionGroup="gml:TimeReferenceSystem">
|
|
143
|
+
<annotation>
|
|
144
|
+
<documentation>In some applications of geographic information — such as geology and archaeology — relative position in time is known more precisely than absolute time or duration. The order of events in time can be well established, but the magnitude of the intervals between them cannot be accurately determined; in such cases, the use of an ordinal temporal reference system is appropriate. An ordinal temporal reference system is composed of a sequence of named coterminous eras, which may in turn be composed of sequences of member eras at a finer scale, giving the whole a hierarchical structure of eras of verying resolution.
|
|
145
|
+
An ordinal temporal reference system whose component eras are not further subdivided is effectively a temporal topological complex constrained to be a linear graph. An ordinal temporal reference system some or all of whose component eras are subdivided is effectively a temporal topological complex with the constraint that parallel branches may only be constructed in pairs where one is a single temporal ordinal era and the other is a sequence of temporal ordinal eras that are called "members" of the "group". This constraint means that within a single temporal ordinal reference system, the relative position of all temporal ordinal eras is unambiguous.
|
|
146
|
+
The positions of the beginning and end of a given era may calibrate the relative time scale.
|
|
147
|
+
gml:TimeOrdinalReferenceSystem adds one or more gml:component properties to the generic temporal reference system model.</documentation>
|
|
148
|
+
</annotation>
|
|
149
|
+
</element>
|
|
150
|
+
<complexType name="TimeOrdinalReferenceSystemType">
|
|
151
|
+
<complexContent>
|
|
152
|
+
<extension base="gml:TimeReferenceSystemType">
|
|
153
|
+
<sequence>
|
|
154
|
+
<element name="component" type="gml:TimeOrdinalEraPropertyType" maxOccurs="unbounded"/>
|
|
155
|
+
</sequence>
|
|
156
|
+
</extension>
|
|
157
|
+
</complexContent>
|
|
158
|
+
</complexType>
|
|
159
|
+
<element name="TimeOrdinalEra" type="gml:TimeOrdinalEraType">
|
|
160
|
+
<annotation>
|
|
161
|
+
<documentation>Its content model follows the pattern of gml:TimeEdge, inheriting standard properties from gml:DefinitionType, and adding gml:start, gml:end and gml:extent properties, a set of gml:member properties which indicate ordered gml:TimeOrdinalEra elements, and a gml:group property which points to the parent era.
|
|
162
|
+
The recursive inclusion of gml:TimeOrdinalEra elements allow the construction of an arbitrary depth hierarchical ordinal reference schema, such that an ordinal era at a given level of the hierarchy includes a sequence of shorter, coterminous ordinal eras.</documentation>
|
|
163
|
+
</annotation>
|
|
164
|
+
</element>
|
|
165
|
+
<complexType name="TimeOrdinalEraType">
|
|
166
|
+
<complexContent>
|
|
167
|
+
<extension base="gml:DefinitionType">
|
|
168
|
+
<sequence>
|
|
169
|
+
<element name="relatedTime" type="gml:RelatedTimeType" minOccurs="0" maxOccurs="unbounded"/>
|
|
170
|
+
<element name="start" type="gml:TimeNodePropertyType" minOccurs="0"/>
|
|
171
|
+
<element name="end" type="gml:TimeNodePropertyType" minOccurs="0"/>
|
|
172
|
+
<element name="extent" type="gml:TimePeriodPropertyType" minOccurs="0"/>
|
|
173
|
+
<element name="member" type="gml:TimeOrdinalEraPropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
174
|
+
<element name="group" type="gml:ReferenceType" minOccurs="0"/>
|
|
175
|
+
</sequence>
|
|
176
|
+
</extension>
|
|
177
|
+
</complexContent>
|
|
178
|
+
</complexType>
|
|
179
|
+
<complexType name="TimeOrdinalEraPropertyType">
|
|
180
|
+
<annotation>
|
|
181
|
+
<documentation>gml:TimeOrdinalEraPropertyType provides for associating a gml:TimeOrdinalEra with an object.</documentation>
|
|
182
|
+
</annotation>
|
|
183
|
+
<sequence minOccurs="0">
|
|
184
|
+
<element ref="gml:TimeOrdinalEra"/>
|
|
185
|
+
</sequence>
|
|
186
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
187
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
188
|
+
</complexType>
|
|
189
|
+
</schema>
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema targetNamespace="http://www.opengis.net/gml/3.2" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="3.2.1.2">
|
|
3
|
+
<annotation>
|
|
4
|
+
<appinfo source="urn:x-ogc:specification:gml:schema-xsd:temporalTopology:3.2.1">temporalTopology.xsd</appinfo>
|
|
5
|
+
<documentation>See ISO/DIS 19136 15.3.
|
|
6
|
+
Temporal topology is described in terms of time complexes, nodes, and edges, and the connectivity between these. Temporal topology does not directly provide information about temporal position. It is used in the case of describing a lineage or a history (e.g. a family tree expressing evolution of species, an ecological cycle, a lineage of lands or buildings, or a history of separation and merger of administrative boundaries). The following Subclauses specifies the temporal topology as temporal characteristics of features in compliance with ISO 19108.
|
|
7
|
+
|
|
8
|
+
GML is an OGC Standard.
|
|
9
|
+
Copyright (c) 2007,2010 Open Geospatial Consortium.
|
|
10
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
|
11
|
+
</documentation>
|
|
12
|
+
</annotation>
|
|
13
|
+
<include schemaLocation="gml.xsd"/>
|
|
14
|
+
<include schemaLocation="temporal.xsd"/>
|
|
15
|
+
<element name="AbstractTimeTopologyPrimitive" type="gml:AbstractTimeTopologyPrimitiveType" abstract="true" substitutionGroup="gml:AbstractTimePrimitive">
|
|
16
|
+
<annotation>
|
|
17
|
+
<documentation>gml:TimeTopologyPrimitive acts as the head of a substitution group for topological temporal primitives.
|
|
18
|
+
Temporal topology primitives shall imply the ordering information between features or feature properties. The temporal connection of features can be examined if they have temporal topology primitives as values of their properties. Usually, an instantaneous feature associates with a time node, and a static feature associates with a time edge. A feature with both modes associates with the temporal topology primitive: a supertype of time nodes and time edges.
|
|
19
|
+
A topological primitive is always connected to one or more other topological primitives, and is, therefore, always a member of a topological complex. In a GML instance, this will often be indicated by the primitives being described by elements that are descendents of an element describing a complex. However, in order to support the case where a temporal topological primitive is described in another context, the optional complex property is provided, which carries a reference to the parent temporal topological complex.</documentation>
|
|
20
|
+
</annotation>
|
|
21
|
+
</element>
|
|
22
|
+
<complexType name="AbstractTimeTopologyPrimitiveType" abstract="true">
|
|
23
|
+
<complexContent>
|
|
24
|
+
<extension base="gml:AbstractTimePrimitiveType">
|
|
25
|
+
<sequence>
|
|
26
|
+
<element name="complex" type="gml:ReferenceType" minOccurs="0"/>
|
|
27
|
+
</sequence>
|
|
28
|
+
</extension>
|
|
29
|
+
</complexContent>
|
|
30
|
+
</complexType>
|
|
31
|
+
<complexType name="TimeTopologyPrimitivePropertyType">
|
|
32
|
+
<annotation>
|
|
33
|
+
<documentation>gml:TimeTopologyPrimitivePropertyType provides for associating a gml:AbstractTimeTopologyPrimitive with an object.</documentation>
|
|
34
|
+
</annotation>
|
|
35
|
+
<sequence minOccurs="0">
|
|
36
|
+
<element ref="gml:AbstractTimeTopologyPrimitive"/>
|
|
37
|
+
</sequence>
|
|
38
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
39
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
40
|
+
</complexType>
|
|
41
|
+
<element name="TimeTopologyComplex" type="gml:TimeTopologyComplexType" substitutionGroup="gml:AbstractTimeComplex">
|
|
42
|
+
<annotation>
|
|
43
|
+
<documentation>A temporal topology complex shall be the connected acyclic directed graph composed of temporal topological primitives, i.e. time nodes and time edges. Because a time edge may not exist without two time nodes on its boundaries, static features have time edges from a temporal topology complex as the values of their temporal properties, regardless of explicit declarations.
|
|
44
|
+
A temporal topology complex expresses a linear or a non-linear graph. A temporal linear graph, composed of a sequence of time edges, provides a lineage described only by "substitution" of feature instances or feature element values. A time node as the start or the end of the graph connects with at least one time edge. A time node other than the start and the end shall connect to at least two time edges: one of starting from the node, and another ending at the node.
|
|
45
|
+
A temporal topological complex is a set of connected temporal topological primitives. The member primtives are indicated, either by reference or by value, using the primitive property.</documentation>
|
|
46
|
+
</annotation>
|
|
47
|
+
</element>
|
|
48
|
+
<complexType name="TimeTopologyComplexType" abstract="true">
|
|
49
|
+
<complexContent>
|
|
50
|
+
<extension base="gml:AbstractTimeComplexType">
|
|
51
|
+
<sequence>
|
|
52
|
+
<element name="primitive" type="gml:TimeTopologyPrimitivePropertyType" maxOccurs="unbounded"/>
|
|
53
|
+
</sequence>
|
|
54
|
+
</extension>
|
|
55
|
+
</complexContent>
|
|
56
|
+
</complexType>
|
|
57
|
+
<complexType name="TimeTopologyComplexPropertyType">
|
|
58
|
+
<annotation>
|
|
59
|
+
<documentation>gml:TimeTopologyComplexPropertyType provides for associating a gml:TimeTopologyComplex with an object.</documentation>
|
|
60
|
+
</annotation>
|
|
61
|
+
<sequence minOccurs="0">
|
|
62
|
+
<element ref="gml:TimeTopologyComplex"/>
|
|
63
|
+
</sequence>
|
|
64
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
65
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
66
|
+
</complexType>
|
|
67
|
+
<element name="TimeNode" type="gml:TimeNodeType" substitutionGroup="gml:AbstractTimeTopologyPrimitive">
|
|
68
|
+
<annotation>
|
|
69
|
+
<documentation>A time node is a zero-dimensional topological primitive that represents an identifiable node in time (it is equivalent to a point in space). A node may act as the termination or initiation of any number of time edges. A time node may be realised as a geometry, its position, whose value is a time instant.</documentation>
|
|
70
|
+
</annotation>
|
|
71
|
+
</element>
|
|
72
|
+
<complexType name="TimeNodeType">
|
|
73
|
+
<complexContent>
|
|
74
|
+
<extension base="gml:AbstractTimeTopologyPrimitiveType">
|
|
75
|
+
<sequence>
|
|
76
|
+
<element name="previousEdge" type="gml:TimeEdgePropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
77
|
+
<element name="nextEdge" type="gml:TimeEdgePropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
78
|
+
<element name="position" type="gml:TimeInstantPropertyType" minOccurs="0"/>
|
|
79
|
+
</sequence>
|
|
80
|
+
</extension>
|
|
81
|
+
</complexContent>
|
|
82
|
+
</complexType>
|
|
83
|
+
<complexType name="TimeNodePropertyType">
|
|
84
|
+
<annotation>
|
|
85
|
+
<documentation>gml:TimeNodePropertyType provides for associating a gml:TimeNode with an object</documentation>
|
|
86
|
+
</annotation>
|
|
87
|
+
<sequence minOccurs="0">
|
|
88
|
+
<element ref="gml:TimeNode"/>
|
|
89
|
+
</sequence>
|
|
90
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
91
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
92
|
+
</complexType>
|
|
93
|
+
<element name="TimeEdge" type="gml:TimeEdgeType" substitutionGroup="gml:AbstractTimeTopologyPrimitive">
|
|
94
|
+
<annotation>
|
|
95
|
+
<documentation>A time edge is a one-dimensional topological primitive. It is an open interval that starts and ends at a node. The edge may be realised as a geometry whose value is a time period.</documentation>
|
|
96
|
+
</annotation>
|
|
97
|
+
</element>
|
|
98
|
+
<complexType name="TimeEdgeType">
|
|
99
|
+
<complexContent>
|
|
100
|
+
<extension base="gml:AbstractTimeTopologyPrimitiveType">
|
|
101
|
+
<sequence>
|
|
102
|
+
<element name="start" type="gml:TimeNodePropertyType"/>
|
|
103
|
+
<element name="end" type="gml:TimeNodePropertyType"/>
|
|
104
|
+
<element name="extent" type="gml:TimePeriodPropertyType" minOccurs="0"/>
|
|
105
|
+
</sequence>
|
|
106
|
+
</extension>
|
|
107
|
+
</complexContent>
|
|
108
|
+
</complexType>
|
|
109
|
+
<complexType name="TimeEdgePropertyType">
|
|
110
|
+
<annotation>
|
|
111
|
+
<documentation>gml:TimeEdgePropertyType provides for associating a gml:TimeEdge with an object.</documentation>
|
|
112
|
+
</annotation>
|
|
113
|
+
<sequence minOccurs="0">
|
|
114
|
+
<element ref="gml:TimeEdge"/>
|
|
115
|
+
</sequence>
|
|
116
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
117
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
118
|
+
</complexType>
|
|
119
|
+
</schema>
|