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,342 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- edited with XMLSPY v5 rel. 2 U (http://www.xmlspy.com) by Clemens Portele (interactive instruments) -->
|
|
3
|
+
<schema targetNamespace="http://www.opengis.net/gml" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml" elementFormDefault="qualified" version="3.2.0" xml:lang="en">
|
|
4
|
+
<annotation>
|
|
5
|
+
<appinfo source="urn:ogc:specification:gml:schema-xsd:datums:3.2.0">datums.xsd</appinfo>
|
|
6
|
+
<documentation>See ISO/DIS 19136 13.5
|
|
7
|
+
The datums schema components can be divided into three logical parts, which define elements and types for XML encoding of the definitions of:
|
|
8
|
+
- Abstract datum
|
|
9
|
+
- Geodetic datums, including ellipsoid and prime meridian
|
|
10
|
+
- Multiple other concrete types of spatial or temporal datums
|
|
11
|
+
These schema components encode the Datum packages of the UML Models of ISO 19111 Clause 10 and ISO/DIS 19136 D.3.10.</documentation>
|
|
12
|
+
</annotation>
|
|
13
|
+
<include schemaLocation="referenceSystems.xsd"/>
|
|
14
|
+
<include schemaLocation="measures.xsd"/>
|
|
15
|
+
<element name="AbstractDatum" type="gml:AbstractDatumType" abstract="true" substitutionGroup="gml:Definition">
|
|
16
|
+
<annotation>
|
|
17
|
+
<documentation>A gml:AbstractDatum specifies the relationship of a coordinate system to the earth, thus creating a coordinate reference system. A datum uses a parameter or set of parameters that determine the location of the origin of the coordinate reference system. Each datum subtype may be associated with only specific types of coordinate systems. This abstract complex type shall not be used, extended, or restricted, in a GML Application Schema, to define a concrete subtype with a meaning equivalent to a concrete subtype specified in this document.</documentation>
|
|
18
|
+
</annotation>
|
|
19
|
+
</element>
|
|
20
|
+
<complexType name="AbstractDatumType" abstract="true">
|
|
21
|
+
<complexContent>
|
|
22
|
+
<extension base="gml:IdentifiedObjectType">
|
|
23
|
+
<sequence>
|
|
24
|
+
<element ref="gml:domainOfValidity" minOccurs="0"/>
|
|
25
|
+
<element ref="gml:scope" maxOccurs="unbounded"/>
|
|
26
|
+
<element ref="gml:anchorDefinition" minOccurs="0"/>
|
|
27
|
+
<element ref="gml:realizationEpoch" minOccurs="0"/>
|
|
28
|
+
</sequence>
|
|
29
|
+
</extension>
|
|
30
|
+
</complexContent>
|
|
31
|
+
</complexType>
|
|
32
|
+
<element name="anchorDefinition" type="gml:CodeType">
|
|
33
|
+
<annotation>
|
|
34
|
+
<documentation>gml:anchorDefinition is a description, possibly including coordinates, of the definition used to anchor the datum to the Earth. Also known as the "origin", especially for engineering and image datums. The codeSpace attribute may be used to reference a source of more detailed on this point or surface, or on a set of such descriptions.
|
|
35
|
+
- For a geodetic datum, this point is also known as the fundamental point, which is traditionally the point where the relationship between geoid and ellipsoid is defined. In some cases, the "fundamental point" may consist of a number of points. In those cases, the parameters defining the geoid/ellipsoid relationship have been averaged for these points, and the averages adopted as the datum definition.
|
|
36
|
+
- For an engineering datum, the anchor definition may be a physical point, or it may be a point with defined coordinates in another CRS.may
|
|
37
|
+
- For an image datum, the anchor definition is usually either the centre of the image or the corner of the image.
|
|
38
|
+
- For a temporal datum, this attribute is not defined. Instead of the anchor definition, a temporal datum carries a separate time origin of type DateTime.</documentation>
|
|
39
|
+
</annotation>
|
|
40
|
+
</element>
|
|
41
|
+
<element name="anchorPoint" type="gml:CodeType" substitutionGroup="gml:anchorDefinition">
|
|
42
|
+
<annotation>
|
|
43
|
+
<appinfo>deprecated</appinfo>
|
|
44
|
+
</annotation>
|
|
45
|
+
</element>
|
|
46
|
+
<element name="realizationEpoch" type="date">
|
|
47
|
+
<annotation>
|
|
48
|
+
<documentation>gml:realizationEpoch is the time after which this datum definition is valid. See ISO 19111 Table 32 for details.</documentation>
|
|
49
|
+
</annotation>
|
|
50
|
+
</element>
|
|
51
|
+
<complexType name="DatumPropertyType">
|
|
52
|
+
<annotation>
|
|
53
|
+
<documentation>gml:DatumPropertyType is a property type for association roles to a datum, either referencing or containing the definition of that datum.</documentation>
|
|
54
|
+
</annotation>
|
|
55
|
+
<sequence minOccurs="0">
|
|
56
|
+
<element ref="gml:AbstractDatum"/>
|
|
57
|
+
</sequence>
|
|
58
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
59
|
+
</complexType>
|
|
60
|
+
<element name="datumRef" type="gml:DatumPropertyType">
|
|
61
|
+
<annotation>
|
|
62
|
+
<appinfo>deprecated</appinfo>
|
|
63
|
+
</annotation>
|
|
64
|
+
</element>
|
|
65
|
+
<element name="GeodeticDatum" type="gml:GeodeticDatumType" substitutionGroup="gml:AbstractDatum">
|
|
66
|
+
<annotation>
|
|
67
|
+
<documentation>gml:GeodeticDatum is a geodetic datum defines the precise location and orientation in 3-dimensional space of a defined ellipsoid (or sphere), or of a Cartesian coordinate system centered in this ellipsoid (or sphere).</documentation>
|
|
68
|
+
</annotation>
|
|
69
|
+
</element>
|
|
70
|
+
<complexType name="GeodeticDatumType">
|
|
71
|
+
<complexContent>
|
|
72
|
+
<extension base="gml:AbstractDatumType">
|
|
73
|
+
<sequence>
|
|
74
|
+
<element ref="gml:primeMeridian"/>
|
|
75
|
+
<element ref="gml:ellipsoid"/>
|
|
76
|
+
</sequence>
|
|
77
|
+
</extension>
|
|
78
|
+
</complexContent>
|
|
79
|
+
</complexType>
|
|
80
|
+
<element name="primeMeridian" type="gml:PrimeMeridianPropertyType">
|
|
81
|
+
<annotation>
|
|
82
|
+
<documentation>gml:primeMeridian is an association role to the prime meridian used by this geodetic datum.</documentation>
|
|
83
|
+
</annotation>
|
|
84
|
+
</element>
|
|
85
|
+
<element name="usesPrimeMeridian" type="gml:PrimeMeridianPropertyType" substitutionGroup="gml:primeMeridian">
|
|
86
|
+
<annotation>
|
|
87
|
+
<appinfo>deprecated</appinfo>
|
|
88
|
+
</annotation>
|
|
89
|
+
</element>
|
|
90
|
+
<element name="ellipsoid" type="gml:EllipsoidPropertyType">
|
|
91
|
+
<annotation>
|
|
92
|
+
<documentation>gml:ellipsoid is an association role to the ellipsoid used by this geodetic datum.</documentation>
|
|
93
|
+
</annotation>
|
|
94
|
+
</element>
|
|
95
|
+
<element name="usesEllipsoid" type="gml:EllipsoidPropertyType" substitutionGroup="gml:ellipsoid">
|
|
96
|
+
<annotation>
|
|
97
|
+
<appinfo>deprecated</appinfo>
|
|
98
|
+
</annotation>
|
|
99
|
+
</element>
|
|
100
|
+
<complexType name="GeodeticDatumPropertyType">
|
|
101
|
+
<annotation>
|
|
102
|
+
<documentation>gml:GeodeticDatumPropertyType is a property type for association roles to a geodetic datum, either referencing or containing the definition of that datum.</documentation>
|
|
103
|
+
</annotation>
|
|
104
|
+
<sequence minOccurs="0">
|
|
105
|
+
<element ref="gml:GeodeticDatum"/>
|
|
106
|
+
</sequence>
|
|
107
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
108
|
+
</complexType>
|
|
109
|
+
<element name="geodeticDatumRef" type="gml:GeodeticDatumPropertyType">
|
|
110
|
+
<annotation>
|
|
111
|
+
<appinfo>deprecated</appinfo>
|
|
112
|
+
</annotation>
|
|
113
|
+
</element>
|
|
114
|
+
<element name="Ellipsoid" type="gml:EllipsoidType" substitutionGroup="gml:Definition">
|
|
115
|
+
<annotation>
|
|
116
|
+
<documentation>A gml:Ellipsoid is a geometric figure that may be used to describe the approximate shape of the earth. In mathematical terms, it is a surface formed by the rotation of an ellipse about its minor axis.</documentation>
|
|
117
|
+
</annotation>
|
|
118
|
+
</element>
|
|
119
|
+
<complexType name="EllipsoidType">
|
|
120
|
+
<complexContent>
|
|
121
|
+
<extension base="gml:IdentifiedObjectType">
|
|
122
|
+
<sequence>
|
|
123
|
+
<element ref="gml:semiMajorAxis"/>
|
|
124
|
+
<element ref="gml:secondDefiningParameter"/>
|
|
125
|
+
</sequence>
|
|
126
|
+
</extension>
|
|
127
|
+
</complexContent>
|
|
128
|
+
</complexType>
|
|
129
|
+
<element name="semiMajorAxis" type="gml:MeasureType">
|
|
130
|
+
<annotation>
|
|
131
|
+
<documentation>gml:semiMajorAxis specifies the length of the semi-major axis of the ellipsoid, with its units. Uses the MeasureType with the restriction that the unit of measure referenced by uom must be suitable for a length, such as metres or feet.</documentation>
|
|
132
|
+
</annotation>
|
|
133
|
+
</element>
|
|
134
|
+
<element name="secondDefiningParameter">
|
|
135
|
+
<annotation>
|
|
136
|
+
<documentation>gml:secondDefiningParameter is a property containing the definition of the second parameter that defines the shape of an ellipsoid. An ellipsoid requires two defining parameters: semi-major axis and inverse flattening or semi-major axis and semi-minor axis. When the reference body is a sphere rather than an ellipsoid, only a single defining parameter is required, namely the radius of the sphere; in that case, the semi-major axis "degenerates" into the radius of the sphere.
|
|
137
|
+
The inverseFlattening element contains the inverse flattening value of the ellipsoid. This value is a scale factor (or ratio). It uses gml:LengthType with the restriction that the unit of measure referenced by the uom attribute must be suitable for a scale factor, such as percent, permil, or parts-per-million.
|
|
138
|
+
The semiMinorAxis element contains the length of the semi-minor axis of the ellipsoid. When the isSphere element is included, the ellipsoid is degenerate and is actually a sphere. The sphere is completely defined by the semi-major axis, which is the radius of the sphere.</documentation>
|
|
139
|
+
</annotation>
|
|
140
|
+
<complexType>
|
|
141
|
+
<sequence>
|
|
142
|
+
<element ref="gml:SecondDefiningParameter"/>
|
|
143
|
+
</sequence>
|
|
144
|
+
</complexType>
|
|
145
|
+
</element>
|
|
146
|
+
<element name="SecondDefiningParameter">
|
|
147
|
+
<complexType>
|
|
148
|
+
<choice>
|
|
149
|
+
<element name="inverseFlattening" type="gml:MeasureType"/>
|
|
150
|
+
<element name="semiMinorAxis" type="gml:LengthType"/>
|
|
151
|
+
<element name="isSphere">
|
|
152
|
+
<simpleType>
|
|
153
|
+
<restriction base="string">
|
|
154
|
+
<enumeration value="sphere"/>
|
|
155
|
+
</restriction>
|
|
156
|
+
</simpleType>
|
|
157
|
+
</element>
|
|
158
|
+
</choice>
|
|
159
|
+
</complexType>
|
|
160
|
+
</element>
|
|
161
|
+
<complexType name="EllipsoidPropertyType">
|
|
162
|
+
<annotation>
|
|
163
|
+
<documentation>gml:EllipsoidPropertyType is a property type for association roles to an ellipsoid, either referencing or containing the definition of that ellipsoid.</documentation>
|
|
164
|
+
</annotation>
|
|
165
|
+
<sequence minOccurs="0">
|
|
166
|
+
<element ref="gml:Ellipsoid"/>
|
|
167
|
+
</sequence>
|
|
168
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
169
|
+
</complexType>
|
|
170
|
+
<element name="ellipsoidRef" type="gml:EllipsoidPropertyType">
|
|
171
|
+
<annotation>
|
|
172
|
+
<appinfo>deprecated</appinfo>
|
|
173
|
+
</annotation>
|
|
174
|
+
</element>
|
|
175
|
+
<element name="PrimeMeridian" type="gml:PrimeMeridianType" substitutionGroup="gml:Definition">
|
|
176
|
+
<annotation>
|
|
177
|
+
<documentation>A gml:PrimeMeridian defines the origin from which longitude values are determined. The default value for the prime meridian gml:identifier value is "Greenwich".</documentation>
|
|
178
|
+
</annotation>
|
|
179
|
+
</element>
|
|
180
|
+
<complexType name="PrimeMeridianType">
|
|
181
|
+
<complexContent>
|
|
182
|
+
<extension base="gml:IdentifiedObjectType">
|
|
183
|
+
<sequence>
|
|
184
|
+
<element ref="gml:greenwichLongitude"/>
|
|
185
|
+
</sequence>
|
|
186
|
+
</extension>
|
|
187
|
+
</complexContent>
|
|
188
|
+
</complexType>
|
|
189
|
+
<element name="greenwichLongitude" type="gml:AngleType">
|
|
190
|
+
<annotation>
|
|
191
|
+
<documentation>gml:greenwichLongitude is the longitude of the prime meridian measured from the Greenwich meridian, positive eastward. If the value of the prime meridian “name” is "Greenwich" then the value of greenwichLongitude shall be 0 degrees.</documentation>
|
|
192
|
+
</annotation>
|
|
193
|
+
</element>
|
|
194
|
+
<complexType name="PrimeMeridianPropertyType">
|
|
195
|
+
<annotation>
|
|
196
|
+
<documentation>gml:PrimeMeridianPropertyType is a property type for association roles to a prime meridian, either referencing or containing the definition of that meridian.</documentation>
|
|
197
|
+
</annotation>
|
|
198
|
+
<sequence minOccurs="0">
|
|
199
|
+
<element ref="gml:PrimeMeridian"/>
|
|
200
|
+
</sequence>
|
|
201
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
202
|
+
</complexType>
|
|
203
|
+
<element name="primeMeridianRef" type="gml:PrimeMeridianPropertyType">
|
|
204
|
+
<annotation>
|
|
205
|
+
<appinfo>deprecated</appinfo>
|
|
206
|
+
</annotation>
|
|
207
|
+
</element>
|
|
208
|
+
<element name="EngineeringDatum" type="gml:EngineeringDatumType" substitutionGroup="gml:AbstractDatum">
|
|
209
|
+
<annotation>
|
|
210
|
+
<documentation>gml:EngineeringDatum defines the origin of an engineering coordinate reference system, and is used in a region around that origin. This origin may be fixed with respect to the earth (such as a defined point at a construction site), or be a defined point on a moving vehicle (such as on a ship or satellite).</documentation>
|
|
211
|
+
</annotation>
|
|
212
|
+
</element>
|
|
213
|
+
<complexType name="EngineeringDatumType">
|
|
214
|
+
<complexContent>
|
|
215
|
+
<extension base="gml:AbstractDatumType"/>
|
|
216
|
+
</complexContent>
|
|
217
|
+
</complexType>
|
|
218
|
+
<complexType name="EngineeringDatumPropertyType">
|
|
219
|
+
<annotation>
|
|
220
|
+
<documentation>gml:EngineeringDatumPropertyType is a property type for association roles to an engineering datum, either referencing or containing the definition of that datum.</documentation>
|
|
221
|
+
</annotation>
|
|
222
|
+
<sequence minOccurs="0">
|
|
223
|
+
<element ref="gml:EngineeringDatum"/>
|
|
224
|
+
</sequence>
|
|
225
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
226
|
+
</complexType>
|
|
227
|
+
<element name="engineeringDatumRef" type="gml:EngineeringDatumPropertyType">
|
|
228
|
+
<annotation>
|
|
229
|
+
<appinfo>deprecated</appinfo>
|
|
230
|
+
</annotation>
|
|
231
|
+
</element>
|
|
232
|
+
<element name="ImageDatum" type="gml:ImageDatumType" substitutionGroup="gml:AbstractDatum">
|
|
233
|
+
<annotation>
|
|
234
|
+
<documentation>gml:ImageDatum defines the origin of an image coordinate reference system, and is used in a local context only. For an image datum, the anchor definition is usually either the centre of the image or the corner of the image. For more information, see ISO 19111 B.3.5.</documentation>
|
|
235
|
+
</annotation>
|
|
236
|
+
</element>
|
|
237
|
+
<complexType name="ImageDatumType">
|
|
238
|
+
<complexContent>
|
|
239
|
+
<extension base="gml:AbstractDatumType">
|
|
240
|
+
<sequence>
|
|
241
|
+
<element ref="gml:pixelInCell"/>
|
|
242
|
+
</sequence>
|
|
243
|
+
</extension>
|
|
244
|
+
</complexContent>
|
|
245
|
+
</complexType>
|
|
246
|
+
<element name="pixelInCell" type="gml:CodeWithAuthorityType">
|
|
247
|
+
<annotation>
|
|
248
|
+
<documentation>gml:pixelInCell is a specification of the way an image grid is associated with the image data attributes. The required codeSpace attribute shall reference a source of information specifying the values and meanings of all the allowed string values for this property.</documentation>
|
|
249
|
+
</annotation>
|
|
250
|
+
</element>
|
|
251
|
+
<complexType name="ImageDatumPropertyType">
|
|
252
|
+
<annotation>
|
|
253
|
+
<documentation>gml:ImageDatumPropertyType is a property type for association roles to an image datum, either referencing or containing the definition of that datum.</documentation>
|
|
254
|
+
</annotation>
|
|
255
|
+
<sequence minOccurs="0">
|
|
256
|
+
<element ref="gml:ImageDatum"/>
|
|
257
|
+
</sequence>
|
|
258
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
259
|
+
</complexType>
|
|
260
|
+
<element name="imageDatumRef" type="gml:ImageDatumPropertyType">
|
|
261
|
+
<annotation>
|
|
262
|
+
<appinfo>deprecated</appinfo>
|
|
263
|
+
</annotation>
|
|
264
|
+
</element>
|
|
265
|
+
<element name="VerticalDatum" type="gml:VerticalDatumType" substitutionGroup="gml:AbstractDatum">
|
|
266
|
+
<annotation>
|
|
267
|
+
<documentation>gml:VerticalDatum is a textual description and/or a set of parameters identifying a particular reference level surface used as a zero-height surface, including its position with respect to the Earth for any of the height types recognized by this International Standard.</documentation>
|
|
268
|
+
</annotation>
|
|
269
|
+
</element>
|
|
270
|
+
<complexType name="VerticalDatumType">
|
|
271
|
+
<complexContent>
|
|
272
|
+
<extension base="gml:AbstractDatumType"/>
|
|
273
|
+
</complexContent>
|
|
274
|
+
</complexType>
|
|
275
|
+
<complexType name="VerticalDatumPropertyType">
|
|
276
|
+
<annotation>
|
|
277
|
+
<documentation>gml:VerticalDatumPropertyType is property type for association roles to a vertical datum, either referencing or containing the definition of that datum.</documentation>
|
|
278
|
+
</annotation>
|
|
279
|
+
<sequence minOccurs="0">
|
|
280
|
+
<element ref="gml:VerticalDatum"/>
|
|
281
|
+
</sequence>
|
|
282
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
283
|
+
</complexType>
|
|
284
|
+
<element name="verticalDatumRef" type="gml:VerticalDatumPropertyType">
|
|
285
|
+
<annotation>
|
|
286
|
+
<appinfo>deprecated</appinfo>
|
|
287
|
+
</annotation>
|
|
288
|
+
</element>
|
|
289
|
+
<element name="TemporalDatum" type="gml:TemporalDatumType" substitutionGroup="gml:AbstractDatum">
|
|
290
|
+
<annotation>
|
|
291
|
+
<documentation>A gml:TemporalDatum defines the origin of a Temporal Reference System. This type omits the "anchorDefinition" and "realizationEpoch" elements and adds the "origin" element with the dateTime type.</documentation>
|
|
292
|
+
</annotation>
|
|
293
|
+
</element>
|
|
294
|
+
<complexType name="TemporalDatumType">
|
|
295
|
+
<complexContent>
|
|
296
|
+
<extension base="gml:TemporalDatumBaseType">
|
|
297
|
+
<sequence>
|
|
298
|
+
<element ref="gml:origin"/>
|
|
299
|
+
</sequence>
|
|
300
|
+
</extension>
|
|
301
|
+
</complexContent>
|
|
302
|
+
</complexType>
|
|
303
|
+
<complexType name="TemporalDatumBaseType" abstract="true">
|
|
304
|
+
<annotation>
|
|
305
|
+
<documentation>The TemporalDatumBaseType partially defines the origin of a temporal coordinate reference system. This type restricts the AbstractDatumType to remove the "anchorDefinition" and "realizationEpoch" elements.</documentation>
|
|
306
|
+
</annotation>
|
|
307
|
+
<complexContent>
|
|
308
|
+
<restriction base="gml:AbstractDatumType">
|
|
309
|
+
<sequence>
|
|
310
|
+
<element ref="gml:metaDataProperty" minOccurs="0" maxOccurs="unbounded"/>
|
|
311
|
+
<element ref="gml:description" minOccurs="0"/>
|
|
312
|
+
<element ref="gml:descriptionReference" minOccurs="0"/>
|
|
313
|
+
<element ref="gml:identifier"/>
|
|
314
|
+
<element ref="gml:name" minOccurs="0" maxOccurs="unbounded"/>
|
|
315
|
+
<element ref="gml:remarks" minOccurs="0"/>
|
|
316
|
+
<element ref="gml:domainOfValidity" minOccurs="0"/>
|
|
317
|
+
<element ref="gml:scope" maxOccurs="unbounded"/>
|
|
318
|
+
</sequence>
|
|
319
|
+
<attribute ref="gml:id" use="required"/>
|
|
320
|
+
</restriction>
|
|
321
|
+
</complexContent>
|
|
322
|
+
</complexType>
|
|
323
|
+
<element name="origin" type="dateTime">
|
|
324
|
+
<annotation>
|
|
325
|
+
<documentation>gml:origin is the date and time origin of this temporal datum.</documentation>
|
|
326
|
+
</annotation>
|
|
327
|
+
</element>
|
|
328
|
+
<complexType name="TemporalDatumPropertyType">
|
|
329
|
+
<annotation>
|
|
330
|
+
<documentation>gml:TemporalDatumPropertyType is a property type for association roles to a temporal datum, either referencing or containing the definition of that datum.</documentation>
|
|
331
|
+
</annotation>
|
|
332
|
+
<sequence minOccurs="0">
|
|
333
|
+
<element ref="gml:TemporalDatum"/>
|
|
334
|
+
</sequence>
|
|
335
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
336
|
+
</complexType>
|
|
337
|
+
<element name="temporalDatumRef" type="gml:TemporalDatumPropertyType">
|
|
338
|
+
<annotation>
|
|
339
|
+
<appinfo>deprecated</appinfo>
|
|
340
|
+
</annotation>
|
|
341
|
+
</element>
|
|
342
|
+
</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.2.0">
|
|
3
|
+
<annotation>
|
|
4
|
+
<appinfo source="urn:opengis:specification:gml:schema-xsd:dictionary:v3.2.0">dictionary.xsd</appinfo>
|
|
5
|
+
<documentation>See ISO/DIS 19136 Clause 16.
|
|
6
|
+
Many applications require definitions of terms which are used within instance documents as the values of certain properties or as reference information to tie properties to standard information values in some way. Units of measure and descriptions of measurable phenomena are two particular examples.
|
|
7
|
+
It will often be convenient to use definitions provided by external authorities. These may already be packaged for delivery in various ways, both online and offline. In order that they may be referred to from GML documents it is generally necessary that a URI be available for each definition. Where this is the case then it is usually preferable to refer to these directly.
|
|
8
|
+
Alternatively, it may be convenient or necessary to capture definitions in XML, either embedded within an instance document containing features or as a separate document. The definitions may be transcriptions from an external source, or may be new definitions for a local purpose. In order to support this case, some simple components are provided in GML in the form of
|
|
9
|
+
- a generic gml:Definition, which may serve as the basis for more specialized definitions
|
|
10
|
+
- a generic gml:Dictionary, which allows a set of definitions or references to definitions to be collected
|
|
11
|
+
These components may be used directly, but also serve as the basis for more specialised definition elements in GML, in particular: coordinate operations, coordinate reference systems, datums, temporal reference systems, and units of measure.
|
|
12
|
+
Note that the GML definition and dictionary components implement a simple nested hierarchy of definitions with identifiers. The latter provide handles which may be used in the description of more complex relationships between terms. However, the GML dictionary components are not intended to provide direct support for complex taxonomies, ontologies or thesauri. Specialised XML tools are available to satisfy the more sophisticated requirements. </documentation>
|
|
13
|
+
</annotation>
|
|
14
|
+
<include schemaLocation="gmlBase.xsd"/>
|
|
15
|
+
<element name="Definition" type="gml:DefinitionType" substitutionGroup="gml:AbstractGML">
|
|
16
|
+
<annotation>
|
|
17
|
+
<documentation>The basic gml:Definition element specifies a definition, which can be included in or referenced by a dictionary.
|
|
18
|
+
The content model for a generic definition is a derivation from gml:AbstractGMLType.
|
|
19
|
+
The gml:description property element shall hold the definition if this can be captured in a simple text string, or the gml:descriptionReference property element may carry a link to a description elsewhere.
|
|
20
|
+
The gml:identifier element shall provide one identifier identifying this definition. The identifier shall be unique within the dictionaries using this definition.
|
|
21
|
+
The gml:name elements shall provide zero or more terms and synonyms for which this is the definition.
|
|
22
|
+
The gml:remarks element shall be used to hold additional textual information that is not conceptually part of the definition but is useful in understanding the definition.</documentation>
|
|
23
|
+
</annotation>
|
|
24
|
+
</element>
|
|
25
|
+
<complexType name="DefinitionBaseType">
|
|
26
|
+
<complexContent>
|
|
27
|
+
<restriction base="gml:AbstractGMLType">
|
|
28
|
+
<sequence>
|
|
29
|
+
<element ref="gml:metaDataProperty" minOccurs="0" maxOccurs="unbounded"/>
|
|
30
|
+
<element ref="gml:description" minOccurs="0"/>
|
|
31
|
+
<element ref="gml:descriptionReference" minOccurs="0"/>
|
|
32
|
+
<element ref="gml:identifier"/>
|
|
33
|
+
<element ref="gml:name" minOccurs="0" maxOccurs="unbounded"/>
|
|
34
|
+
</sequence>
|
|
35
|
+
<attribute ref="gml:id" use="required"/>
|
|
36
|
+
</restriction>
|
|
37
|
+
</complexContent>
|
|
38
|
+
</complexType>
|
|
39
|
+
<complexType name="DefinitionType">
|
|
40
|
+
<complexContent>
|
|
41
|
+
<extension base="gml:DefinitionBaseType">
|
|
42
|
+
<sequence>
|
|
43
|
+
<element ref="gml:remarks" minOccurs="0"/>
|
|
44
|
+
</sequence>
|
|
45
|
+
</extension>
|
|
46
|
+
</complexContent>
|
|
47
|
+
</complexType>
|
|
48
|
+
<element name="remarks" type="string"/>
|
|
49
|
+
<element name="Dictionary" type="gml:DictionaryType" substitutionGroup="gml:Definition">
|
|
50
|
+
<annotation>
|
|
51
|
+
<documentation>Sets of definitions may be collected into dictionaries or collections.
|
|
52
|
+
A gml:Dictionary is a non-abstract collection of definitions.
|
|
53
|
+
The gml:Dictionary content model adds a list of gml:dictionaryEntry properties that contain or reference gml:Definition objects. A database handle (gml:id attribute) is required, in order that this collection may be referred to. The standard gml:identifier, gml:description, gml:descriptionReference and gml:name properties are available to reference or contain more information about this dictionary. The gml:description and gml:descriptionReference property elements may be used for a description of this dictionary. The derived gml:name element may be used for the name(s) of this dictionary. for remote definiton references gml:dictionaryEntry shall be used. If a Definition object contained within a Dictionary uses the descriptionReference property to refer to a remote definition, then this enables the inclusion of a remote definition in a local dictionary, giving a handle and identifier in the context of the local dictionary.</documentation>
|
|
54
|
+
</annotation>
|
|
55
|
+
</element>
|
|
56
|
+
<element name="DefinitionCollection" type="gml:DictionaryType" substitutionGroup="gml:Definition">
|
|
57
|
+
<annotation>
|
|
58
|
+
<appinfo>deprecated</appinfo>
|
|
59
|
+
</annotation>
|
|
60
|
+
</element>
|
|
61
|
+
<complexType name="DictionaryType">
|
|
62
|
+
<complexContent>
|
|
63
|
+
<extension base="gml:DefinitionType">
|
|
64
|
+
<choice minOccurs="0" maxOccurs="unbounded">
|
|
65
|
+
<element ref="gml:dictionaryEntry"/>
|
|
66
|
+
<element ref="gml:indirectEntry"/>
|
|
67
|
+
</choice>
|
|
68
|
+
<attributeGroup ref="gml:AggregationAttributeGroup"/>
|
|
69
|
+
</extension>
|
|
70
|
+
</complexContent>
|
|
71
|
+
</complexType>
|
|
72
|
+
<element name="dictionaryEntry" type="gml:DictionaryEntryType">
|
|
73
|
+
<annotation>
|
|
74
|
+
<documentation>This property element contains or refers to the definitions which are members of a dictionary.
|
|
75
|
+
The content model follows the standard GML property pattern, so a gml:dictionaryEntry may either contain or refer to a single gml:Definition. Since gml:Dictionary is substitutable for gml:Definition, the content of an entry may itself be a lower level dictionary.
|
|
76
|
+
Note that if the value is provided by reference, this definition does not carry a handle (gml:id) in this context, so does not allow external references to this specific definition in this context. When used in this way the referenced definition will usually be in a dictionary in the same XML document.</documentation>
|
|
77
|
+
</annotation>
|
|
78
|
+
</element>
|
|
79
|
+
<element name="definitionMember" type="gml:DictionaryEntryType" substitutionGroup="gml:dictionaryEntry">
|
|
80
|
+
<annotation>
|
|
81
|
+
<appinfo>deprecated</appinfo>
|
|
82
|
+
</annotation>
|
|
83
|
+
</element>
|
|
84
|
+
<complexType name="DictionaryEntryType">
|
|
85
|
+
<complexContent>
|
|
86
|
+
<extension base="gml:AbstractMemberType">
|
|
87
|
+
<sequence minOccurs="0">
|
|
88
|
+
<element ref="gml:Definition"/>
|
|
89
|
+
</sequence>
|
|
90
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
91
|
+
</extension>
|
|
92
|
+
</complexContent>
|
|
93
|
+
</complexType>
|
|
94
|
+
<element name="indirectEntry" type="gml:IndirectEntryType">
|
|
95
|
+
<annotation>
|
|
96
|
+
<appinfo>deprecated</appinfo>
|
|
97
|
+
</annotation>
|
|
98
|
+
</element>
|
|
99
|
+
<complexType name="IndirectEntryType">
|
|
100
|
+
<annotation>
|
|
101
|
+
<appinfo>deprecated</appinfo>
|
|
102
|
+
</annotation>
|
|
103
|
+
<sequence>
|
|
104
|
+
<element ref="gml:DefinitionProxy"/>
|
|
105
|
+
</sequence>
|
|
106
|
+
</complexType>
|
|
107
|
+
<element name="DefinitionProxy" type="gml:DefinitionProxyType" substitutionGroup="gml:Definition">
|
|
108
|
+
<annotation>
|
|
109
|
+
<appinfo>deprecated</appinfo>
|
|
110
|
+
</annotation>
|
|
111
|
+
</element>
|
|
112
|
+
<complexType name="DefinitionProxyType">
|
|
113
|
+
<annotation>
|
|
114
|
+
<appinfo>deprecated</appinfo>
|
|
115
|
+
</annotation>
|
|
116
|
+
<complexContent>
|
|
117
|
+
<extension base="gml:DefinitionType">
|
|
118
|
+
<sequence>
|
|
119
|
+
<element ref="gml:definitionRef"/>
|
|
120
|
+
</sequence>
|
|
121
|
+
</extension>
|
|
122
|
+
</complexContent>
|
|
123
|
+
</complexType>
|
|
124
|
+
<element name="definitionRef" type="gml:ReferenceType">
|
|
125
|
+
<annotation>
|
|
126
|
+
<appinfo>deprecated</appinfo>
|
|
127
|
+
</annotation>
|
|
128
|
+
</element>
|
|
129
|
+
</schema>
|
|
@@ -0,0 +1,80 @@
|
|
|
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" attributeFormDefault="unqualified" version="3.2.0">
|
|
3
|
+
<annotation>
|
|
4
|
+
<appinfo source="urn:ogc:specification:gml:schema-xsd:direction:3.2.0">direction.xsd</appinfo>
|
|
5
|
+
<documentation>See ISO/DIS 19136 Clause 18.
|
|
6
|
+
The direction schema components provide the GML Application Schema developer with a standard property element to describe direction, and associated objects that may be used to express orientation, direction, heading, bearing or other directional aspects of geographic features. </documentation>
|
|
7
|
+
</annotation>
|
|
8
|
+
<include schemaLocation="geometryBasic0d1d.xsd"/>
|
|
9
|
+
<element name="direction" type="gml:DirectionPropertyType">
|
|
10
|
+
<annotation>
|
|
11
|
+
<documentation>The property gml:direction is intended as a pre-defined property expressing a direction to be assigned to features defined in a GML application schema.</documentation>
|
|
12
|
+
</annotation>
|
|
13
|
+
</element>
|
|
14
|
+
<complexType name="DirectionPropertyType">
|
|
15
|
+
<sequence minOccurs="0">
|
|
16
|
+
<choice>
|
|
17
|
+
<element name="DirectionVector" type="gml:DirectionVectorType"/>
|
|
18
|
+
<element name="DirectionDescription" type="gml:DirectionDescriptionType"/>
|
|
19
|
+
<element name="CompassPoint" type="gml:CompassPointEnumeration"/>
|
|
20
|
+
<element name="DirectionKeyword" type="gml:CodeType"/>
|
|
21
|
+
<element name="DirectionString" type="gml:StringOrRefType"/>
|
|
22
|
+
</choice>
|
|
23
|
+
</sequence>
|
|
24
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
25
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
26
|
+
</complexType>
|
|
27
|
+
<complexType name="DirectionVectorType">
|
|
28
|
+
<annotation>
|
|
29
|
+
<documentation>Direction vectors are specified by providing components of a vector.</documentation>
|
|
30
|
+
</annotation>
|
|
31
|
+
<choice>
|
|
32
|
+
<element ref="gml:vector"/>
|
|
33
|
+
<sequence>
|
|
34
|
+
<annotation>
|
|
35
|
+
<appinfo>deprecated</appinfo>
|
|
36
|
+
</annotation>
|
|
37
|
+
<element name="horizontalAngle" type="gml:AngleType"/>
|
|
38
|
+
<element name="verticalAngle" type="gml:AngleType"/>
|
|
39
|
+
</sequence>
|
|
40
|
+
</choice>
|
|
41
|
+
</complexType>
|
|
42
|
+
<complexType name="DirectionDescriptionType">
|
|
43
|
+
<annotation>
|
|
44
|
+
<documentation>direction descriptions are specified by a compass point code, a keyword, a textual description or a reference to a description.
|
|
45
|
+
A gml:compassPoint is specified by a simple enumeration.
|
|
46
|
+
In addition, thre elements to contain text-based descriptions of direction are provided.
|
|
47
|
+
If the direction is specified using a term from a list, gml:keyword should be used, and the list indicated using the value of the codeSpace attribute.
|
|
48
|
+
if the direction is decribed in prose, gml:direction or gml:reference should be used, allowing the value to be included inline or by reference.</documentation>
|
|
49
|
+
</annotation>
|
|
50
|
+
<choice>
|
|
51
|
+
<element name="compassPoint" type="gml:CompassPointEnumeration"/>
|
|
52
|
+
<element name="keyword" type="gml:CodeType"/>
|
|
53
|
+
<element name="description" type="string"/>
|
|
54
|
+
<element name="reference" type="gml:ReferenceType"/>
|
|
55
|
+
</choice>
|
|
56
|
+
</complexType>
|
|
57
|
+
<simpleType name="CompassPointEnumeration">
|
|
58
|
+
<annotation>
|
|
59
|
+
<documentation>These directions are necessarily approximate, giving direction with a precision of 22.5°. It is thus generally unnecessary to specify the reference frame, though this may be detailed in the definition of a GML application language.</documentation>
|
|
60
|
+
</annotation>
|
|
61
|
+
<restriction base="string">
|
|
62
|
+
<enumeration value="N"/>
|
|
63
|
+
<enumeration value="NNE"/>
|
|
64
|
+
<enumeration value="NE"/>
|
|
65
|
+
<enumeration value="ENE"/>
|
|
66
|
+
<enumeration value="E"/>
|
|
67
|
+
<enumeration value="ESE"/>
|
|
68
|
+
<enumeration value="SE"/>
|
|
69
|
+
<enumeration value="SSE"/>
|
|
70
|
+
<enumeration value="S"/>
|
|
71
|
+
<enumeration value="SSW"/>
|
|
72
|
+
<enumeration value="SW"/>
|
|
73
|
+
<enumeration value="WSW"/>
|
|
74
|
+
<enumeration value="W"/>
|
|
75
|
+
<enumeration value="WNW"/>
|
|
76
|
+
<enumeration value="NW"/>
|
|
77
|
+
<enumeration value="NNW"/>
|
|
78
|
+
</restriction>
|
|
79
|
+
</simpleType>
|
|
80
|
+
</schema>
|