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,71 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmd="http://www.isotc211.org/2005/gmd" targetNamespace="http://www.isotc211.org/2005/gmd" elementFormDefault="qualified" version="2012-07-13">
|
|
3
|
+
<!-- ================================= Annotation ================================ -->
|
|
4
|
+
<xs:annotation>
|
|
5
|
+
<xs:documentation>Geographic MetaData (GMD) extensible markup language is a component of the XML Schema Implementation of Geographic Information Metadata documented in ISO/TS 19139:2007. GMD includes all the definitions of http://www.isotc211.org/2005/gmd namespace. The root document of this namespace is the file gmd.xsd. This metadataEntity.xsd schema implements the UML conceptual schema defined in A.2.1 of ISO 19115:2003. It contains the implementation of the class MD_Metadata.</xs:documentation>
|
|
6
|
+
</xs:annotation>
|
|
7
|
+
<!-- ================================== Imports ================================== -->
|
|
8
|
+
<xs:import namespace="http://www.isotc211.org/2005/gco" schemaLocation="../gco/gco.xsd"/>
|
|
9
|
+
<xs:include schemaLocation="gmd.xsd"/>
|
|
10
|
+
<xs:include schemaLocation="spatialRepresentation.xsd"/>
|
|
11
|
+
<xs:include schemaLocation="metadataExtension.xsd"/>
|
|
12
|
+
<xs:include schemaLocation="content.xsd"/>
|
|
13
|
+
<xs:include schemaLocation="metadataApplication.xsd"/>
|
|
14
|
+
<xs:include schemaLocation="applicationSchema.xsd"/>
|
|
15
|
+
<xs:include schemaLocation="portrayalCatalogue.xsd"/>
|
|
16
|
+
<xs:include schemaLocation="dataQuality.xsd"/>
|
|
17
|
+
<xs:include schemaLocation="freeText.xsd"/>
|
|
18
|
+
<!-- ########################################################################### -->
|
|
19
|
+
<!-- ########################################################################### -->
|
|
20
|
+
<!-- ================================== Classes ================================= -->
|
|
21
|
+
<xs:complexType name="MD_Metadata_Type">
|
|
22
|
+
<xs:annotation>
|
|
23
|
+
<xs:documentation>Information about the metadata</xs:documentation>
|
|
24
|
+
</xs:annotation>
|
|
25
|
+
<xs:complexContent>
|
|
26
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
27
|
+
<xs:sequence>
|
|
28
|
+
<xs:element name="fileIdentifier" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
29
|
+
<xs:element name="language" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
30
|
+
<xs:element name="characterSet" type="gmd:MD_CharacterSetCode_PropertyType" minOccurs="0"/>
|
|
31
|
+
<xs:element name="parentIdentifier" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
32
|
+
<xs:element name="hierarchyLevel" type="gmd:MD_ScopeCode_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
33
|
+
<xs:element name="hierarchyLevelName" type="gco:CharacterString_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
34
|
+
<xs:element name="contact" type="gmd:CI_ResponsibleParty_PropertyType" maxOccurs="unbounded"/>
|
|
35
|
+
<xs:element name="dateStamp" type="gco:Date_PropertyType"/>
|
|
36
|
+
<xs:element name="metadataStandardName" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
37
|
+
<xs:element name="metadataStandardVersion" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
38
|
+
<xs:element name="dataSetURI" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
39
|
+
<xs:element name="locale" type="gmd:PT_Locale_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
40
|
+
<xs:element name="spatialRepresentationInfo" type="gmd:MD_SpatialRepresentation_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
41
|
+
<xs:element name="referenceSystemInfo" type="gmd:MD_ReferenceSystem_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
42
|
+
<xs:element name="metadataExtensionInfo" type="gmd:MD_MetadataExtensionInformation_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
43
|
+
<xs:element name="identificationInfo" type="gmd:MD_Identification_PropertyType" maxOccurs="unbounded"/>
|
|
44
|
+
<xs:element name="contentInfo" type="gmd:MD_ContentInformation_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
45
|
+
<xs:element name="distributionInfo" type="gmd:MD_Distribution_PropertyType" minOccurs="0"/>
|
|
46
|
+
<xs:element name="dataQualityInfo" type="gmd:DQ_DataQuality_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
47
|
+
<xs:element name="portrayalCatalogueInfo" type="gmd:MD_PortrayalCatalogueReference_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
48
|
+
<xs:element name="metadataConstraints" type="gmd:MD_Constraints_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
49
|
+
<xs:element name="applicationSchemaInfo" type="gmd:MD_ApplicationSchemaInformation_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
50
|
+
<xs:element name="metadataMaintenance" type="gmd:MD_MaintenanceInformation_PropertyType" minOccurs="0"/>
|
|
51
|
+
<xs:element name="series" type="gmd:DS_Aggregate_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
52
|
+
<xs:element name="describes" type="gmd:DS_DataSet_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
53
|
+
<xs:element name="propertyType" type="gco:ObjectReference_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
54
|
+
<xs:element name="featureType" type="gco:ObjectReference_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
55
|
+
<xs:element name="featureAttribute" type="gco:ObjectReference_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
56
|
+
</xs:sequence>
|
|
57
|
+
</xs:extension>
|
|
58
|
+
</xs:complexContent>
|
|
59
|
+
</xs:complexType>
|
|
60
|
+
<!-- ........................................................................ -->
|
|
61
|
+
<xs:element name="MD_Metadata" type="gmd:MD_Metadata_Type"/>
|
|
62
|
+
<!-- ........................................................................ -->
|
|
63
|
+
<xs:complexType name="MD_Metadata_PropertyType">
|
|
64
|
+
<xs:sequence minOccurs="0">
|
|
65
|
+
<xs:element ref="gmd:MD_Metadata"/>
|
|
66
|
+
</xs:sequence>
|
|
67
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
68
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
69
|
+
</xs:complexType>
|
|
70
|
+
<!-- =========================================================================== -->
|
|
71
|
+
</xs:schema>
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmd="http://www.isotc211.org/2005/gmd" targetNamespace="http://www.isotc211.org/2005/gmd" elementFormDefault="qualified" version="2012-07-13">
|
|
3
|
+
<!-- ================================= Annotation ================================ -->
|
|
4
|
+
<xs:annotation>
|
|
5
|
+
<xs:documentation>Geographic MetaData (GMD) extensible markup language is a component of the XML Schema Implementation of Geographic Information Metadata documented in ISO/TS 19139:2007. GMD includes all the definitions of http://www.isotc211.org/2005/gmd namespace. The root document of this namespace is the file gmd.xsd. This metadataExtension.xsd schema implements the UML conceptual schema defined in A.2.11 of ISO 19115:2003. It contains the implementation of the following classes: MD_ExtendedElementInformation, MD_MetadataExtensionInformation, MD_ObligationCode, MD_DatatypeCode.</xs:documentation>
|
|
6
|
+
</xs:annotation>
|
|
7
|
+
<!-- ================================== Imports ================================== -->
|
|
8
|
+
<xs:import namespace="http://www.isotc211.org/2005/gco" schemaLocation="../gco/gco.xsd"/>
|
|
9
|
+
<xs:include schemaLocation="gmd.xsd"/>
|
|
10
|
+
<xs:include schemaLocation="citation.xsd"/>
|
|
11
|
+
<!-- ########################################################################### -->
|
|
12
|
+
<!-- ########################################################################### -->
|
|
13
|
+
<!-- ================================== Classes ================================= -->
|
|
14
|
+
<xs:complexType name="MD_ExtendedElementInformation_Type">
|
|
15
|
+
<xs:annotation>
|
|
16
|
+
<xs:documentation>New metadata element, not found in ISO 19115, which is required to describe geographic data</xs:documentation>
|
|
17
|
+
</xs:annotation>
|
|
18
|
+
<xs:complexContent>
|
|
19
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
20
|
+
<xs:sequence>
|
|
21
|
+
<xs:element name="name" type="gco:CharacterString_PropertyType"/>
|
|
22
|
+
<xs:element name="shortName" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
23
|
+
<xs:element name="domainCode" type="gco:Integer_PropertyType" minOccurs="0"/>
|
|
24
|
+
<xs:element name="definition" type="gco:CharacterString_PropertyType"/>
|
|
25
|
+
<xs:element name="obligation" type="gmd:MD_ObligationCode_PropertyType" minOccurs="0"/>
|
|
26
|
+
<xs:element name="condition" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
27
|
+
<xs:element name="dataType" type="gmd:MD_DatatypeCode_PropertyType"/>
|
|
28
|
+
<xs:element name="maximumOccurrence" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
29
|
+
<xs:element name="domainValue" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
30
|
+
<xs:element name="parentEntity" type="gco:CharacterString_PropertyType" maxOccurs="unbounded"/>
|
|
31
|
+
<xs:element name="rule" type="gco:CharacterString_PropertyType"/>
|
|
32
|
+
<xs:element name="rationale" type="gco:CharacterString_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
33
|
+
<xs:element name="source" type="gmd:CI_ResponsibleParty_PropertyType" maxOccurs="unbounded"/>
|
|
34
|
+
</xs:sequence>
|
|
35
|
+
</xs:extension>
|
|
36
|
+
</xs:complexContent>
|
|
37
|
+
</xs:complexType>
|
|
38
|
+
<!-- ........................................................................ -->
|
|
39
|
+
<xs:element name="MD_ExtendedElementInformation" type="gmd:MD_ExtendedElementInformation_Type"/>
|
|
40
|
+
<!-- ........................................................................ -->
|
|
41
|
+
<xs:complexType name="MD_ExtendedElementInformation_PropertyType">
|
|
42
|
+
<xs:sequence minOccurs="0">
|
|
43
|
+
<xs:element ref="gmd:MD_ExtendedElementInformation"/>
|
|
44
|
+
</xs:sequence>
|
|
45
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
46
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
47
|
+
</xs:complexType>
|
|
48
|
+
<!-- =========================================================================== -->
|
|
49
|
+
<xs:complexType name="MD_MetadataExtensionInformation_Type">
|
|
50
|
+
<xs:annotation>
|
|
51
|
+
<xs:documentation>Information describing metadata extensions.</xs:documentation>
|
|
52
|
+
</xs:annotation>
|
|
53
|
+
<xs:complexContent>
|
|
54
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
55
|
+
<xs:sequence>
|
|
56
|
+
<xs:element name="extensionOnLineResource" type="gmd:CI_OnlineResource_PropertyType" minOccurs="0"/>
|
|
57
|
+
<xs:element name="extendedElementInformation" type="gmd:MD_ExtendedElementInformation_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
58
|
+
</xs:sequence>
|
|
59
|
+
</xs:extension>
|
|
60
|
+
</xs:complexContent>
|
|
61
|
+
</xs:complexType>
|
|
62
|
+
<!-- ........................................................................ -->
|
|
63
|
+
<xs:element name="MD_MetadataExtensionInformation" type="gmd:MD_MetadataExtensionInformation_Type"/>
|
|
64
|
+
<!-- ........................................................................ -->
|
|
65
|
+
<xs:complexType name="MD_MetadataExtensionInformation_PropertyType">
|
|
66
|
+
<xs:sequence minOccurs="0">
|
|
67
|
+
<xs:element ref="gmd:MD_MetadataExtensionInformation"/>
|
|
68
|
+
</xs:sequence>
|
|
69
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
70
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
71
|
+
</xs:complexType>
|
|
72
|
+
<!-- =========================================================================== -->
|
|
73
|
+
<xs:simpleType name="MD_ObligationCode_Type">
|
|
74
|
+
<xs:restriction base="xs:string">
|
|
75
|
+
<xs:enumeration value="mandatory"/>
|
|
76
|
+
<xs:enumeration value="optional"/>
|
|
77
|
+
<xs:enumeration value="conditional"/>
|
|
78
|
+
</xs:restriction>
|
|
79
|
+
</xs:simpleType>
|
|
80
|
+
<!-- ........................................................................ -->
|
|
81
|
+
<xs:element name="MD_ObligationCode" type="gmd:MD_ObligationCode_Type" substitutionGroup="gco:CharacterString"/>
|
|
82
|
+
<!-- ........................................................................ -->
|
|
83
|
+
<xs:complexType name="MD_ObligationCode_PropertyType">
|
|
84
|
+
<xs:sequence minOccurs="0">
|
|
85
|
+
<xs:element ref="gmd:MD_ObligationCode"/>
|
|
86
|
+
</xs:sequence>
|
|
87
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
88
|
+
</xs:complexType>
|
|
89
|
+
<!-- =========================================================================== -->
|
|
90
|
+
<!-- ........................................................................ -->
|
|
91
|
+
<xs:element name="MD_DatatypeCode" type="gco:CodeListValue_Type" substitutionGroup="gco:CharacterString"/>
|
|
92
|
+
<!-- ........................................................................ -->
|
|
93
|
+
<xs:complexType name="MD_DatatypeCode_PropertyType">
|
|
94
|
+
<xs:sequence minOccurs="0">
|
|
95
|
+
<xs:element ref="gmd:MD_DatatypeCode"/>
|
|
96
|
+
</xs:sequence>
|
|
97
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
98
|
+
</xs:complexType>
|
|
99
|
+
<!-- =========================================================================== -->
|
|
100
|
+
</xs:schema>
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmd="http://www.isotc211.org/2005/gmd" targetNamespace="http://www.isotc211.org/2005/gmd" elementFormDefault="qualified" version="2012-07-13">
|
|
3
|
+
<!-- ================================= Annotation ================================ -->
|
|
4
|
+
<xs:annotation>
|
|
5
|
+
<xs:documentation>Geographic MetaData (GMD) extensible markup language is a component of the XML Schema Implementation of Geographic Information Metadata documented in ISO/TS 19139:2007. GMD includes all the definitions of http://www.isotc211.org/2005/gmd namespace. The root document of this namespace is the file gmd.xsd. This portrayalCatalogue.xsd schema implements the UML conceptual schema defined in A.2.9 of ISO 19115:2003. It contains the implementation of the class MD_PortrayalCatalogueReference.</xs:documentation>
|
|
6
|
+
</xs:annotation>
|
|
7
|
+
<!-- ================================== Imports ================================== -->
|
|
8
|
+
<xs:import namespace="http://www.isotc211.org/2005/gco" schemaLocation="../gco/gco.xsd"/>
|
|
9
|
+
<xs:include schemaLocation="gmd.xsd"/>
|
|
10
|
+
<xs:include schemaLocation="citation.xsd"/>
|
|
11
|
+
<!-- ########################################################################### -->
|
|
12
|
+
<!-- ########################################################################### -->
|
|
13
|
+
<!-- ================================== Classes ================================= -->
|
|
14
|
+
<xs:complexType name="MD_PortrayalCatalogueReference_Type">
|
|
15
|
+
<xs:annotation>
|
|
16
|
+
<xs:documentation>Information identifing the portrayal catalogue used</xs:documentation>
|
|
17
|
+
</xs:annotation>
|
|
18
|
+
<xs:complexContent>
|
|
19
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
20
|
+
<xs:sequence>
|
|
21
|
+
<xs:element name="portrayalCatalogueCitation" type="gmd:CI_Citation_PropertyType" maxOccurs="unbounded"/>
|
|
22
|
+
</xs:sequence>
|
|
23
|
+
</xs:extension>
|
|
24
|
+
</xs:complexContent>
|
|
25
|
+
</xs:complexType>
|
|
26
|
+
<!-- ........................................................................ -->
|
|
27
|
+
<xs:element name="MD_PortrayalCatalogueReference" type="gmd:MD_PortrayalCatalogueReference_Type"/>
|
|
28
|
+
<!-- ........................................................................ -->
|
|
29
|
+
<xs:complexType name="MD_PortrayalCatalogueReference_PropertyType">
|
|
30
|
+
<xs:sequence minOccurs="0">
|
|
31
|
+
<xs:element ref="gmd:MD_PortrayalCatalogueReference"/>
|
|
32
|
+
</xs:sequence>
|
|
33
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
34
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
35
|
+
</xs:complexType>
|
|
36
|
+
<!-- =========================================================================== -->
|
|
37
|
+
</xs:schema>
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gmd="http://www.isotc211.org/2005/gmd" targetNamespace="http://www.isotc211.org/2005/gmd" elementFormDefault="qualified" version="2012-07-13">
|
|
3
|
+
<!-- ================================= Annotation ================================ -->
|
|
4
|
+
<xs:annotation>
|
|
5
|
+
<xs:documentation>Geographic MetaData (GMD) extensible markup language is a component of the XML Schema Implementation of Geographic Information Metadata documented in ISO/TS 19139:2007. GMD includes all the definitions of http://www.isotc211.org/2005/gmd namespace. The root document of this namespace is the file gmd.xsd. This referenceSystem.xsd schema implements the UML conceptual schema defined in A.2.7 of ISO 19115:2003 and ISO 19115:2003/Cor. 1:2006. It contains the implementation of the following classes: RS_Identifier, MD_ReferenceSystem, MD_Identifier and RS_Reference System.</xs:documentation>
|
|
6
|
+
</xs:annotation>
|
|
7
|
+
<!-- ================================== Imports ================================== -->
|
|
8
|
+
<xs:import namespace="http://www.isotc211.org/2005/gco" schemaLocation="../gco/gco.xsd"/>
|
|
9
|
+
<xs:include schemaLocation="gmd.xsd"/>
|
|
10
|
+
<xs:include schemaLocation="citation.xsd"/>
|
|
11
|
+
<xs:include schemaLocation="extent.xsd"/>
|
|
12
|
+
<!-- ########################################################################### -->
|
|
13
|
+
<!-- ########################################################################### -->
|
|
14
|
+
<!-- ================================== Classes ================================= -->
|
|
15
|
+
<xs:complexType name="RS_Identifier_Type">
|
|
16
|
+
<xs:complexContent>
|
|
17
|
+
<xs:extension base="gmd:MD_Identifier_Type">
|
|
18
|
+
<xs:sequence>
|
|
19
|
+
<xs:element name="codeSpace" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
20
|
+
<xs:element name="version" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
21
|
+
</xs:sequence>
|
|
22
|
+
</xs:extension>
|
|
23
|
+
</xs:complexContent>
|
|
24
|
+
</xs:complexType>
|
|
25
|
+
<!-- ........................................................................ -->
|
|
26
|
+
<xs:element name="RS_Identifier" type="gmd:RS_Identifier_Type" substitutionGroup="gmd:MD_Identifier"/>
|
|
27
|
+
<!-- ........................................................................ -->
|
|
28
|
+
<xs:complexType name="RS_Identifier_PropertyType">
|
|
29
|
+
<xs:sequence minOccurs="0">
|
|
30
|
+
<xs:element ref="gmd:RS_Identifier"/>
|
|
31
|
+
</xs:sequence>
|
|
32
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
33
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
34
|
+
</xs:complexType>
|
|
35
|
+
<!-- =========================================================================== -->
|
|
36
|
+
<xs:complexType name="MD_ReferenceSystem_Type">
|
|
37
|
+
<xs:complexContent>
|
|
38
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
39
|
+
<xs:sequence>
|
|
40
|
+
<xs:element name="referenceSystemIdentifier" type="gmd:RS_Identifier_PropertyType" minOccurs="0"/>
|
|
41
|
+
</xs:sequence>
|
|
42
|
+
</xs:extension>
|
|
43
|
+
</xs:complexContent>
|
|
44
|
+
</xs:complexType>
|
|
45
|
+
<!-- ........................................................................ -->
|
|
46
|
+
<xs:element name="MD_ReferenceSystem" type="gmd:MD_ReferenceSystem_Type"/>
|
|
47
|
+
<!-- ........................................................................ -->
|
|
48
|
+
<xs:complexType name="MD_ReferenceSystem_PropertyType">
|
|
49
|
+
<xs:sequence minOccurs="0">
|
|
50
|
+
<xs:element ref="gmd:MD_ReferenceSystem"/>
|
|
51
|
+
</xs:sequence>
|
|
52
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
53
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
54
|
+
</xs:complexType>
|
|
55
|
+
<!-- =========================================================================== -->
|
|
56
|
+
<xs:complexType name="MD_Identifier_Type">
|
|
57
|
+
<xs:complexContent>
|
|
58
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
59
|
+
<xs:sequence>
|
|
60
|
+
<xs:element name="authority" type="gmd:CI_Citation_PropertyType" minOccurs="0"/>
|
|
61
|
+
<xs:element name="code" type="gco:CharacterString_PropertyType"/>
|
|
62
|
+
</xs:sequence>
|
|
63
|
+
</xs:extension>
|
|
64
|
+
</xs:complexContent>
|
|
65
|
+
</xs:complexType>
|
|
66
|
+
<!-- ........................................................................ -->
|
|
67
|
+
<xs:element name="MD_Identifier" type="gmd:MD_Identifier_Type"/>
|
|
68
|
+
<!-- ........................................................................ -->
|
|
69
|
+
<xs:complexType name="MD_Identifier_PropertyType">
|
|
70
|
+
<xs:sequence minOccurs="0">
|
|
71
|
+
<xs:element ref="gmd:MD_Identifier"/>
|
|
72
|
+
</xs:sequence>
|
|
73
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
74
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
75
|
+
</xs:complexType>
|
|
76
|
+
<!-- =========================================================================== -->
|
|
77
|
+
<xs:complexType name="AbstractRS_ReferenceSystem_Type" abstract="true">
|
|
78
|
+
<xs:annotation>
|
|
79
|
+
<xs:documentation>Description of the spatial and temporal reference systems used in the dataset</xs:documentation>
|
|
80
|
+
</xs:annotation>
|
|
81
|
+
<xs:complexContent>
|
|
82
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
83
|
+
<xs:sequence>
|
|
84
|
+
<xs:element name="name" type="gmd:RS_Identifier_PropertyType"/>
|
|
85
|
+
<xs:element name="domainOfValidity" type="gmd:EX_Extent_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
86
|
+
</xs:sequence>
|
|
87
|
+
</xs:extension>
|
|
88
|
+
</xs:complexContent>
|
|
89
|
+
</xs:complexType>
|
|
90
|
+
<!-- ........................................................................ -->
|
|
91
|
+
<xs:element name="AbstractRS_ReferenceSystem" type="gmd:AbstractRS_ReferenceSystem_Type" abstract="true"/>
|
|
92
|
+
<!-- ........................................................................ -->
|
|
93
|
+
<xs:complexType name="RS_ReferenceSystem_PropertyType">
|
|
94
|
+
<xs:sequence minOccurs="0">
|
|
95
|
+
<xs:element ref="gmd:AbstractRS_ReferenceSystem"/>
|
|
96
|
+
</xs:sequence>
|
|
97
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
98
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
99
|
+
</xs:complexType>
|
|
100
|
+
<!-- =========================================================================== -->
|
|
101
|
+
</xs:schema>
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:gss="http://www.isotc211.org/2005/gss" xmlns:gmd="http://www.isotc211.org/2005/gmd" targetNamespace="http://www.isotc211.org/2005/gmd" elementFormDefault="qualified" version="2012-07-13">
|
|
3
|
+
<!-- ================================= Annotation ================================ -->
|
|
4
|
+
<xs:annotation>
|
|
5
|
+
<xs:documentation>Geographic MetaData (GMD) extensible markup language is a component of the XML Schema Implementation of Geographic Information Metadata documented in ISO/TS 19139:2007. GMD includes all the definitions of http://www.isotc211.org/2005/gmd namespace. The root document of this namespace is the file gmd.xsd. This portrayalCatalogue.xsd schema implements the UML conceptual schema defined in A.2.6 of ISO 19115:2003. It contains the implementation of the following classes: MD_GridSpatialRepresentation, MD_VectorSpatialRepresentation, MD_SpatialRepresentation, MD_Georeferenceable, MD_Dimension, MD_Georectified, MD_GeometricObjects, MD_TopologyLevelCode, MD_GeometricObjectTypeCode, MD_CellGeometryCode, MD_DimensionNameTypeCode, MD_PixelOrientationCode.</xs:documentation>
|
|
6
|
+
</xs:annotation>
|
|
7
|
+
<!-- ================================== Imports ================================== -->
|
|
8
|
+
<xs:import namespace="http://www.isotc211.org/2005/gss" schemaLocation="../gss/gss.xsd"/>
|
|
9
|
+
<xs:import namespace="http://www.isotc211.org/2005/gco" schemaLocation="../gco/gco.xsd"/>
|
|
10
|
+
<xs:include schemaLocation="gmd.xsd"/>
|
|
11
|
+
<xs:include schemaLocation="citation.xsd"/>
|
|
12
|
+
<!-- ########################################################################### -->
|
|
13
|
+
<!-- ########################################################################### -->
|
|
14
|
+
<!-- ================================== Classes ================================= -->
|
|
15
|
+
<xs:complexType name="MD_GridSpatialRepresentation_Type">
|
|
16
|
+
<xs:annotation>
|
|
17
|
+
<xs:documentation>Types and numbers of raster spatial objects in the dataset</xs:documentation>
|
|
18
|
+
</xs:annotation>
|
|
19
|
+
<xs:complexContent>
|
|
20
|
+
<xs:extension base="gmd:AbstractMD_SpatialRepresentation_Type">
|
|
21
|
+
<xs:sequence>
|
|
22
|
+
<xs:element name="numberOfDimensions" type="gco:Integer_PropertyType"/>
|
|
23
|
+
<xs:element name="axisDimensionProperties" type="gmd:MD_Dimension_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
24
|
+
<xs:element name="cellGeometry" type="gmd:MD_CellGeometryCode_PropertyType"/>
|
|
25
|
+
<xs:element name="transformationParameterAvailability" type="gco:Boolean_PropertyType"/>
|
|
26
|
+
</xs:sequence>
|
|
27
|
+
</xs:extension>
|
|
28
|
+
</xs:complexContent>
|
|
29
|
+
</xs:complexType>
|
|
30
|
+
<!-- ........................................................................ -->
|
|
31
|
+
<xs:element name="MD_GridSpatialRepresentation" type="gmd:MD_GridSpatialRepresentation_Type" substitutionGroup="gmd:AbstractMD_SpatialRepresentation"/>
|
|
32
|
+
<!-- ........................................................................ -->
|
|
33
|
+
<xs:complexType name="MD_GridSpatialRepresentation_PropertyType">
|
|
34
|
+
<xs:sequence minOccurs="0">
|
|
35
|
+
<xs:element ref="gmd:MD_GridSpatialRepresentation"/>
|
|
36
|
+
</xs:sequence>
|
|
37
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
38
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
39
|
+
</xs:complexType>
|
|
40
|
+
<!-- =========================================================================== -->
|
|
41
|
+
<xs:complexType name="MD_VectorSpatialRepresentation_Type">
|
|
42
|
+
<xs:annotation>
|
|
43
|
+
<xs:documentation>Information about the vector spatial objects in the dataset</xs:documentation>
|
|
44
|
+
</xs:annotation>
|
|
45
|
+
<xs:complexContent>
|
|
46
|
+
<xs:extension base="gmd:AbstractMD_SpatialRepresentation_Type">
|
|
47
|
+
<xs:sequence>
|
|
48
|
+
<xs:element name="topologyLevel" type="gmd:MD_TopologyLevelCode_PropertyType" minOccurs="0"/>
|
|
49
|
+
<xs:element name="geometricObjects" type="gmd:MD_GeometricObjects_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
50
|
+
</xs:sequence>
|
|
51
|
+
</xs:extension>
|
|
52
|
+
</xs:complexContent>
|
|
53
|
+
</xs:complexType>
|
|
54
|
+
<!-- ........................................................................ -->
|
|
55
|
+
<xs:element name="MD_VectorSpatialRepresentation" type="gmd:MD_VectorSpatialRepresentation_Type" substitutionGroup="gmd:AbstractMD_SpatialRepresentation"/>
|
|
56
|
+
<!-- ........................................................................ -->
|
|
57
|
+
<xs:complexType name="MD_VectorSpatialRepresentation_PropertyType">
|
|
58
|
+
<xs:sequence minOccurs="0">
|
|
59
|
+
<xs:element ref="gmd:MD_VectorSpatialRepresentation"/>
|
|
60
|
+
</xs:sequence>
|
|
61
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
62
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
63
|
+
</xs:complexType>
|
|
64
|
+
<!-- =========================================================================== -->
|
|
65
|
+
<xs:complexType name="AbstractMD_SpatialRepresentation_Type" abstract="true">
|
|
66
|
+
<xs:annotation>
|
|
67
|
+
<xs:documentation>Digital mechanism used to represent spatial information</xs:documentation>
|
|
68
|
+
</xs:annotation>
|
|
69
|
+
<xs:complexContent>
|
|
70
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
71
|
+
<xs:sequence/>
|
|
72
|
+
</xs:extension>
|
|
73
|
+
</xs:complexContent>
|
|
74
|
+
</xs:complexType>
|
|
75
|
+
<!-- ........................................................................ -->
|
|
76
|
+
<xs:element name="AbstractMD_SpatialRepresentation" type="gmd:AbstractMD_SpatialRepresentation_Type" abstract="true"/>
|
|
77
|
+
<!-- ........................................................................ -->
|
|
78
|
+
<xs:complexType name="MD_SpatialRepresentation_PropertyType">
|
|
79
|
+
<xs:sequence minOccurs="0">
|
|
80
|
+
<xs:element ref="gmd:AbstractMD_SpatialRepresentation"/>
|
|
81
|
+
</xs:sequence>
|
|
82
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
83
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
84
|
+
</xs:complexType>
|
|
85
|
+
<!-- =========================================================================== -->
|
|
86
|
+
<xs:complexType name="MD_Georeferenceable_Type">
|
|
87
|
+
<xs:complexContent>
|
|
88
|
+
<xs:extension base="gmd:MD_GridSpatialRepresentation_Type">
|
|
89
|
+
<xs:sequence>
|
|
90
|
+
<xs:element name="controlPointAvailability" type="gco:Boolean_PropertyType"/>
|
|
91
|
+
<xs:element name="orientationParameterAvailability" type="gco:Boolean_PropertyType"/>
|
|
92
|
+
<xs:element name="orientationParameterDescription" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
93
|
+
<xs:element name="georeferencedParameters" type="gco:Record_PropertyType"/>
|
|
94
|
+
<xs:element name="parameterCitation" type="gmd:CI_Citation_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
95
|
+
</xs:sequence>
|
|
96
|
+
</xs:extension>
|
|
97
|
+
</xs:complexContent>
|
|
98
|
+
</xs:complexType>
|
|
99
|
+
<!-- ........................................................................ -->
|
|
100
|
+
<xs:element name="MD_Georeferenceable" type="gmd:MD_Georeferenceable_Type" substitutionGroup="gmd:MD_GridSpatialRepresentation"/>
|
|
101
|
+
<!-- ........................................................................ -->
|
|
102
|
+
<xs:complexType name="MD_Georeferenceable_PropertyType">
|
|
103
|
+
<xs:sequence minOccurs="0">
|
|
104
|
+
<xs:element ref="gmd:MD_Georeferenceable"/>
|
|
105
|
+
</xs:sequence>
|
|
106
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
107
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
108
|
+
</xs:complexType>
|
|
109
|
+
<!-- =========================================================================== -->
|
|
110
|
+
<xs:complexType name="MD_Dimension_Type">
|
|
111
|
+
<xs:complexContent>
|
|
112
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
113
|
+
<xs:sequence>
|
|
114
|
+
<xs:element name="dimensionName" type="gmd:MD_DimensionNameTypeCode_PropertyType"/>
|
|
115
|
+
<xs:element name="dimensionSize" type="gco:Integer_PropertyType"/>
|
|
116
|
+
<xs:element name="resolution" type="gco:Measure_PropertyType" minOccurs="0"/>
|
|
117
|
+
</xs:sequence>
|
|
118
|
+
</xs:extension>
|
|
119
|
+
</xs:complexContent>
|
|
120
|
+
</xs:complexType>
|
|
121
|
+
<!-- ........................................................................ -->
|
|
122
|
+
<xs:element name="MD_Dimension" type="gmd:MD_Dimension_Type"/>
|
|
123
|
+
<!-- ........................................................................ -->
|
|
124
|
+
<xs:complexType name="MD_Dimension_PropertyType">
|
|
125
|
+
<xs:sequence minOccurs="0">
|
|
126
|
+
<xs:element ref="gmd:MD_Dimension"/>
|
|
127
|
+
</xs:sequence>
|
|
128
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
129
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
130
|
+
</xs:complexType>
|
|
131
|
+
<!-- =========================================================================== -->
|
|
132
|
+
<xs:complexType name="MD_Georectified_Type">
|
|
133
|
+
<xs:complexContent>
|
|
134
|
+
<xs:extension base="gmd:MD_GridSpatialRepresentation_Type">
|
|
135
|
+
<xs:sequence>
|
|
136
|
+
<xs:element name="checkPointAvailability" type="gco:Boolean_PropertyType"/>
|
|
137
|
+
<xs:element name="checkPointDescription" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
138
|
+
<xs:element name="cornerPoints" type="gss:GM_Point_PropertyType" minOccurs="0" maxOccurs="unbounded"/>
|
|
139
|
+
<xs:element name="centerPoint" type="gss:GM_Point_PropertyType" minOccurs="0"/>
|
|
140
|
+
<xs:element name="pointInPixel" type="gmd:MD_PixelOrientationCode_PropertyType"/>
|
|
141
|
+
<xs:element name="transformationDimensionDescription" type="gco:CharacterString_PropertyType" minOccurs="0"/>
|
|
142
|
+
<xs:element name="transformationDimensionMapping" type="gco:CharacterString_PropertyType" minOccurs="0" maxOccurs="2"/>
|
|
143
|
+
</xs:sequence>
|
|
144
|
+
</xs:extension>
|
|
145
|
+
</xs:complexContent>
|
|
146
|
+
</xs:complexType>
|
|
147
|
+
<!-- ........................................................................ -->
|
|
148
|
+
<xs:element name="MD_Georectified" type="gmd:MD_Georectified_Type" substitutionGroup="gmd:MD_GridSpatialRepresentation"/>
|
|
149
|
+
<!-- ........................................................................ -->
|
|
150
|
+
<xs:complexType name="MD_Georectified_PropertyType">
|
|
151
|
+
<xs:sequence minOccurs="0">
|
|
152
|
+
<xs:element ref="gmd:MD_Georectified"/>
|
|
153
|
+
</xs:sequence>
|
|
154
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
155
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
156
|
+
</xs:complexType>
|
|
157
|
+
<!-- =========================================================================== -->
|
|
158
|
+
<xs:complexType name="MD_GeometricObjects_Type">
|
|
159
|
+
<xs:complexContent>
|
|
160
|
+
<xs:extension base="gco:AbstractObject_Type">
|
|
161
|
+
<xs:sequence>
|
|
162
|
+
<xs:element name="geometricObjectType" type="gmd:MD_GeometricObjectTypeCode_PropertyType"/>
|
|
163
|
+
<xs:element name="geometricObjectCount" type="gco:Integer_PropertyType" minOccurs="0"/>
|
|
164
|
+
</xs:sequence>
|
|
165
|
+
</xs:extension>
|
|
166
|
+
</xs:complexContent>
|
|
167
|
+
</xs:complexType>
|
|
168
|
+
<!-- ........................................................................ -->
|
|
169
|
+
<xs:element name="MD_GeometricObjects" type="gmd:MD_GeometricObjects_Type"/>
|
|
170
|
+
<!-- ........................................................................ -->
|
|
171
|
+
<xs:complexType name="MD_GeometricObjects_PropertyType">
|
|
172
|
+
<xs:sequence minOccurs="0">
|
|
173
|
+
<xs:element ref="gmd:MD_GeometricObjects"/>
|
|
174
|
+
</xs:sequence>
|
|
175
|
+
<xs:attributeGroup ref="gco:ObjectReference"/>
|
|
176
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
177
|
+
</xs:complexType>
|
|
178
|
+
<!-- =========================================================================== -->
|
|
179
|
+
<xs:simpleType name="MD_PixelOrientationCode_Type">
|
|
180
|
+
<xs:restriction base="xs:string">
|
|
181
|
+
<xs:enumeration value="center"/>
|
|
182
|
+
<xs:enumeration value="lowerLeft"/>
|
|
183
|
+
<xs:enumeration value="lowerRight"/>
|
|
184
|
+
<xs:enumeration value="upperRight"/>
|
|
185
|
+
<xs:enumeration value="upperLeft"/>
|
|
186
|
+
</xs:restriction>
|
|
187
|
+
</xs:simpleType>
|
|
188
|
+
<!-- ........................................................................ -->
|
|
189
|
+
<xs:element name="MD_PixelOrientationCode" type="gmd:MD_PixelOrientationCode_Type" substitutionGroup="gco:CharacterString"/>
|
|
190
|
+
<!-- ........................................................................ -->
|
|
191
|
+
<xs:complexType name="MD_PixelOrientationCode_PropertyType">
|
|
192
|
+
<xs:sequence minOccurs="0">
|
|
193
|
+
<xs:element ref="gmd:MD_PixelOrientationCode"/>
|
|
194
|
+
</xs:sequence>
|
|
195
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
196
|
+
</xs:complexType>
|
|
197
|
+
<!-- =========================================================================== -->
|
|
198
|
+
<!-- ........................................................................ -->
|
|
199
|
+
<xs:element name="MD_TopologyLevelCode" type="gco:CodeListValue_Type" substitutionGroup="gco:CharacterString"/>
|
|
200
|
+
<!-- ........................................................................ -->
|
|
201
|
+
<xs:complexType name="MD_TopologyLevelCode_PropertyType">
|
|
202
|
+
<xs:sequence minOccurs="0">
|
|
203
|
+
<xs:element ref="gmd:MD_TopologyLevelCode"/>
|
|
204
|
+
</xs:sequence>
|
|
205
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
206
|
+
</xs:complexType>
|
|
207
|
+
<!-- =========================================================================== -->
|
|
208
|
+
<!-- ........................................................................ -->
|
|
209
|
+
<xs:element name="MD_GeometricObjectTypeCode" type="gco:CodeListValue_Type" substitutionGroup="gco:CharacterString"/>
|
|
210
|
+
<!-- ........................................................................ -->
|
|
211
|
+
<xs:complexType name="MD_GeometricObjectTypeCode_PropertyType">
|
|
212
|
+
<xs:sequence minOccurs="0">
|
|
213
|
+
<xs:element ref="gmd:MD_GeometricObjectTypeCode"/>
|
|
214
|
+
</xs:sequence>
|
|
215
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
216
|
+
</xs:complexType>
|
|
217
|
+
<!-- =========================================================================== -->
|
|
218
|
+
<!-- ........................................................................ -->
|
|
219
|
+
<xs:element name="MD_CellGeometryCode" type="gco:CodeListValue_Type" substitutionGroup="gco:CharacterString"/>
|
|
220
|
+
<!-- ........................................................................ -->
|
|
221
|
+
<xs:complexType name="MD_CellGeometryCode_PropertyType">
|
|
222
|
+
<xs:sequence minOccurs="0">
|
|
223
|
+
<xs:element ref="gmd:MD_CellGeometryCode"/>
|
|
224
|
+
</xs:sequence>
|
|
225
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
226
|
+
</xs:complexType>
|
|
227
|
+
<!-- =========================================================================== -->
|
|
228
|
+
<!-- ........................................................................ -->
|
|
229
|
+
<xs:element name="MD_DimensionNameTypeCode" type="gco:CodeListValue_Type" substitutionGroup="gco:CharacterString"/>
|
|
230
|
+
<!-- ........................................................................ -->
|
|
231
|
+
<xs:complexType name="MD_DimensionNameTypeCode_PropertyType">
|
|
232
|
+
<xs:sequence minOccurs="0">
|
|
233
|
+
<xs:element ref="gmd:MD_DimensionNameTypeCode"/>
|
|
234
|
+
</xs:sequence>
|
|
235
|
+
<xs:attribute ref="gco:nilReason"/>
|
|
236
|
+
</xs:complexType>
|
|
237
|
+
<!-- =========================================================================== -->
|
|
238
|
+
</xs:schema>
|