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,200 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:gco="http://standards.iso.org/iso/19115/-3/gco/1.0" xmlns:mda="http://standards.iso.org/iso/19115/-3/mda/1.0" xmlns:mdb="http://standards.iso.org/iso/19115/-3/mdb/1.0" elementFormDefault="qualified" targetNamespace="http://standards.iso.org/iso/19115/-3/mda/1.0" version="1.0">
|
|
2
|
+
<include schemaLocation="mda.xsd"/>
|
|
3
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/gco/1.0" schemaLocation="../../../../19115/-3/gco/1.0/gco.xsd"/>
|
|
4
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mdb/1.0" schemaLocation="../../../../19115/-3/mdb/1.0/mdb.xsd"/>
|
|
5
|
+
<!--XML Schema document created by ShapeChange - http://shapechange.net/-->
|
|
6
|
+
<element abstract="true" name="AbstractDS_Aggregate" substitutionGroup="mda:AbstractDS_Resource" type="mda:AbstractDS_Aggregate_Type">
|
|
7
|
+
<annotation>
|
|
8
|
+
<documentation>collection of resources</documentation>
|
|
9
|
+
</annotation>
|
|
10
|
+
</element>
|
|
11
|
+
<complexType abstract="true" name="AbstractDS_Aggregate_Type">
|
|
12
|
+
<complexContent>
|
|
13
|
+
<extension base="mda:AbstractDS_Resource_Type">
|
|
14
|
+
<sequence>
|
|
15
|
+
<element maxOccurs="unbounded" name="composedOf" type="mda:AbstractDS_Resource_PropertyType"/>
|
|
16
|
+
</sequence>
|
|
17
|
+
</extension>
|
|
18
|
+
</complexContent>
|
|
19
|
+
</complexType>
|
|
20
|
+
<complexType name="AbstractDS_Aggregate_PropertyType">
|
|
21
|
+
<sequence minOccurs="0">
|
|
22
|
+
<element ref="mda:AbstractDS_Aggregate"/>
|
|
23
|
+
</sequence>
|
|
24
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
25
|
+
<attribute ref="gco:nilReason"/>
|
|
26
|
+
</complexType>
|
|
27
|
+
<element name="DS_DataSet" substitutionGroup="mda:AbstractDS_Resource" type="mda:DS_DataSet_Type">
|
|
28
|
+
<annotation>
|
|
29
|
+
<documentation>identifiable collection of data</documentation>
|
|
30
|
+
</annotation>
|
|
31
|
+
</element>
|
|
32
|
+
<complexType name="DS_DataSet_Type">
|
|
33
|
+
<complexContent>
|
|
34
|
+
<extension base="mda:AbstractDS_Resource_Type">
|
|
35
|
+
<sequence/>
|
|
36
|
+
</extension>
|
|
37
|
+
</complexContent>
|
|
38
|
+
</complexType>
|
|
39
|
+
<complexType name="DS_DataSet_PropertyType">
|
|
40
|
+
<sequence minOccurs="0">
|
|
41
|
+
<element ref="mda:DS_DataSet"/>
|
|
42
|
+
</sequence>
|
|
43
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
44
|
+
<attribute ref="gco:nilReason"/>
|
|
45
|
+
</complexType>
|
|
46
|
+
<element name="DS_Initiative" substitutionGroup="mda:AbstractDS_Aggregate" type="mda:DS_Initiative_Type">
|
|
47
|
+
<annotation>
|
|
48
|
+
<documentation>collection of associated resources related by their participation in a common initiative</documentation>
|
|
49
|
+
</annotation>
|
|
50
|
+
</element>
|
|
51
|
+
<complexType name="DS_Initiative_Type">
|
|
52
|
+
<complexContent>
|
|
53
|
+
<extension base="mda:AbstractDS_Aggregate_Type">
|
|
54
|
+
<sequence/>
|
|
55
|
+
</extension>
|
|
56
|
+
</complexContent>
|
|
57
|
+
</complexType>
|
|
58
|
+
<complexType name="DS_Initiative_PropertyType">
|
|
59
|
+
<sequence minOccurs="0">
|
|
60
|
+
<element ref="mda:DS_Initiative"/>
|
|
61
|
+
</sequence>
|
|
62
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
63
|
+
<attribute ref="gco:nilReason"/>
|
|
64
|
+
</complexType>
|
|
65
|
+
<element name="DS_OtherAggregate" substitutionGroup="mda:AbstractDS_Aggregate" type="mda:DS_OtherAggregate_Type">
|
|
66
|
+
<annotation>
|
|
67
|
+
<documentation>collection of resource associated through inspecified means</documentation>
|
|
68
|
+
</annotation>
|
|
69
|
+
</element>
|
|
70
|
+
<complexType name="DS_OtherAggregate_Type">
|
|
71
|
+
<complexContent>
|
|
72
|
+
<extension base="mda:AbstractDS_Aggregate_Type">
|
|
73
|
+
<sequence/>
|
|
74
|
+
</extension>
|
|
75
|
+
</complexContent>
|
|
76
|
+
</complexType>
|
|
77
|
+
<complexType name="DS_OtherAggregate_PropertyType">
|
|
78
|
+
<sequence minOccurs="0">
|
|
79
|
+
<element ref="mda:DS_OtherAggregate"/>
|
|
80
|
+
</sequence>
|
|
81
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
82
|
+
<attribute ref="gco:nilReason"/>
|
|
83
|
+
</complexType>
|
|
84
|
+
<element name="DS_Platform" substitutionGroup="mda:DS_Series" type="mda:DS_Platform_Type">
|
|
85
|
+
<annotation>
|
|
86
|
+
<documentation>collection of associated resources produced from the same sensor platform</documentation>
|
|
87
|
+
</annotation>
|
|
88
|
+
</element>
|
|
89
|
+
<complexType name="DS_Platform_Type">
|
|
90
|
+
<complexContent>
|
|
91
|
+
<extension base="mda:DS_Series_Type">
|
|
92
|
+
<sequence/>
|
|
93
|
+
</extension>
|
|
94
|
+
</complexContent>
|
|
95
|
+
</complexType>
|
|
96
|
+
<complexType name="DS_Platform_PropertyType">
|
|
97
|
+
<sequence minOccurs="0">
|
|
98
|
+
<element ref="mda:DS_Platform"/>
|
|
99
|
+
</sequence>
|
|
100
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
101
|
+
<attribute ref="gco:nilReason"/>
|
|
102
|
+
</complexType>
|
|
103
|
+
<element name="DS_ProductionSeries" substitutionGroup="mda:DS_Series" type="mda:DS_ProductionSeries_Type">
|
|
104
|
+
<annotation>
|
|
105
|
+
<documentation>collection of associated resources produced to the same production specification</documentation>
|
|
106
|
+
</annotation>
|
|
107
|
+
</element>
|
|
108
|
+
<complexType name="DS_ProductionSeries_Type">
|
|
109
|
+
<complexContent>
|
|
110
|
+
<extension base="mda:DS_Series_Type">
|
|
111
|
+
<sequence/>
|
|
112
|
+
</extension>
|
|
113
|
+
</complexContent>
|
|
114
|
+
</complexType>
|
|
115
|
+
<complexType name="DS_ProductionSeries_PropertyType">
|
|
116
|
+
<sequence minOccurs="0">
|
|
117
|
+
<element ref="mda:DS_ProductionSeries"/>
|
|
118
|
+
</sequence>
|
|
119
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
120
|
+
<attribute ref="gco:nilReason"/>
|
|
121
|
+
</complexType>
|
|
122
|
+
<element abstract="true" name="AbstractDS_Resource" substitutionGroup="gco:AbstractObject" type="mda:AbstractDS_Resource_Type">
|
|
123
|
+
<annotation>
|
|
124
|
+
<documentation>an identifiable asset or means that fulfils a requirement</documentation>
|
|
125
|
+
</annotation>
|
|
126
|
+
</element>
|
|
127
|
+
<complexType abstract="true" name="AbstractDS_Resource_Type">
|
|
128
|
+
<complexContent>
|
|
129
|
+
<extension base="gco:AbstractObject_Type">
|
|
130
|
+
<sequence>
|
|
131
|
+
<element maxOccurs="unbounded" name="has" type="mdb:MD_Metadata_PropertyType"/>
|
|
132
|
+
</sequence>
|
|
133
|
+
</extension>
|
|
134
|
+
</complexContent>
|
|
135
|
+
</complexType>
|
|
136
|
+
<complexType name="AbstractDS_Resource_PropertyType">
|
|
137
|
+
<sequence minOccurs="0">
|
|
138
|
+
<element ref="mda:AbstractDS_Resource"/>
|
|
139
|
+
</sequence>
|
|
140
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
141
|
+
<attribute ref="gco:nilReason"/>
|
|
142
|
+
</complexType>
|
|
143
|
+
<element name="DS_Sensor" substitutionGroup="mda:DS_Series" type="mda:DS_Sensor_Type">
|
|
144
|
+
<annotation>
|
|
145
|
+
<documentation>collection of associated resources produced by the same sensor</documentation>
|
|
146
|
+
</annotation>
|
|
147
|
+
</element>
|
|
148
|
+
<complexType name="DS_Sensor_Type">
|
|
149
|
+
<complexContent>
|
|
150
|
+
<extension base="mda:DS_Series_Type">
|
|
151
|
+
<sequence/>
|
|
152
|
+
</extension>
|
|
153
|
+
</complexContent>
|
|
154
|
+
</complexType>
|
|
155
|
+
<complexType name="DS_Sensor_PropertyType">
|
|
156
|
+
<sequence minOccurs="0">
|
|
157
|
+
<element ref="mda:DS_Sensor"/>
|
|
158
|
+
</sequence>
|
|
159
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
160
|
+
<attribute ref="gco:nilReason"/>
|
|
161
|
+
</complexType>
|
|
162
|
+
<element name="DS_Series" substitutionGroup="mda:AbstractDS_Aggregate" type="mda:DS_Series_Type">
|
|
163
|
+
<annotation>
|
|
164
|
+
<documentation>collection of resource related by a common heritage adhering to a common specification</documentation>
|
|
165
|
+
</annotation>
|
|
166
|
+
</element>
|
|
167
|
+
<complexType name="DS_Series_Type">
|
|
168
|
+
<complexContent>
|
|
169
|
+
<extension base="mda:AbstractDS_Aggregate_Type">
|
|
170
|
+
<sequence/>
|
|
171
|
+
</extension>
|
|
172
|
+
</complexContent>
|
|
173
|
+
</complexType>
|
|
174
|
+
<complexType name="DS_Series_PropertyType">
|
|
175
|
+
<sequence minOccurs="0">
|
|
176
|
+
<element ref="mda:DS_Series"/>
|
|
177
|
+
</sequence>
|
|
178
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
179
|
+
<attribute ref="gco:nilReason"/>
|
|
180
|
+
</complexType>
|
|
181
|
+
<element name="SV_Service" substitutionGroup="mda:AbstractDS_Resource" type="mda:SV_Service_Type">
|
|
182
|
+
<annotation>
|
|
183
|
+
<documentation>resource is a service</documentation>
|
|
184
|
+
</annotation>
|
|
185
|
+
</element>
|
|
186
|
+
<complexType name="SV_Service_Type">
|
|
187
|
+
<complexContent>
|
|
188
|
+
<extension base="mda:AbstractDS_Resource_Type">
|
|
189
|
+
<sequence/>
|
|
190
|
+
</extension>
|
|
191
|
+
</complexContent>
|
|
192
|
+
</complexType>
|
|
193
|
+
<complexType name="SV_Service_PropertyType">
|
|
194
|
+
<sequence minOccurs="0">
|
|
195
|
+
<element ref="mda:SV_Service"/>
|
|
196
|
+
</sequence>
|
|
197
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
198
|
+
<attribute ref="gco:nilReason"/>
|
|
199
|
+
</complexType>
|
|
200
|
+
</schema>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:cit="http://standards.iso.org/iso/19115/-3/cit/1.0" xmlns:dqc="http://standards.iso.org/iso/19157/-2/dqc/1.0" xmlns:lan="http://standards.iso.org/iso/19115/-3/lan/1.0" xmlns:mcc="http://standards.iso.org/iso/19115/-3/mcc/1.0" xmlns:mdb="http://standards.iso.org/iso/19115/-3/mdb/1.0" xmlns:mri="http://standards.iso.org/iso/19115/-3/mri/1.0" elementFormDefault="qualified" targetNamespace="http://standards.iso.org/iso/19115/-3/mdb/1.0" version="1.0">
|
|
2
|
+
<annotation>
|
|
3
|
+
<documentation>Wrapper namespace to support Catalog Service implementations</documentation>
|
|
4
|
+
</annotation>
|
|
5
|
+
<include schemaLocation="metadataBase.xsd"/>
|
|
6
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/cit/1.0" schemaLocation="../../../../19115/-3/cit/1.0/cit.xsd"/>
|
|
7
|
+
<import namespace="http://standards.iso.org/iso/19157/-2/dqc/1.0" schemaLocation="../../../../19157/-2/dqc/1.0/dqc.xsd"/>
|
|
8
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/lan/1.0" schemaLocation="../../../../19115/-3/lan/1.0/lan.xsd"/>
|
|
9
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mcc/1.0" schemaLocation="../../../../19115/-3/mcc/1.0/mcc.xsd"/>
|
|
10
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mri/1.0" schemaLocation="../../../../19115/-3/mri/1.0/mri.xsd"/>
|
|
11
|
+
<!-- need to import gex because bounding box is mandatory if metadataScope is dataset -->
|
|
12
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/gex/1.0" schemaLocation="../../../../19115/-3/gex/1.0/gex.xsd"/>
|
|
13
|
+
<!--XML Schema document created by ShapeChange - http://shapechange.net/-->
|
|
14
|
+
</schema>
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:dqc="http://standards.iso.org/iso/19157/-2/dqc/1.0" xmlns:gco="http://standards.iso.org/iso/19115/-3/gco/1.0" xmlns:lan="http://standards.iso.org/iso/19115/-3/lan/1.0" xmlns:mcc="http://standards.iso.org/iso/19115/-3/mcc/1.0" xmlns:mdb="http://standards.iso.org/iso/19115/-3/mdb/1.0" elementFormDefault="qualified" targetNamespace="http://standards.iso.org/iso/19115/-3/mdb/1.0" version="1.0">
|
|
2
|
+
<include schemaLocation="mdb.xsd"/>
|
|
3
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/gco/1.0" schemaLocation="../../../../19115/-3/gco/1.0/gco.xsd"/>
|
|
4
|
+
<import namespace="http://standards.iso.org/iso/19157/-2/dqc/1.0" schemaLocation="../../../../19157/-2/dqc/1.0/dqc.xsd"/>
|
|
5
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/lan/1.0" schemaLocation="../../../../19115/-3/lan/1.0/lan.xsd"/>
|
|
6
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mcc/1.0" schemaLocation="../../../../19115/-3/mcc/1.0/mcc.xsd"/>
|
|
7
|
+
<!--XML Schema document created by ShapeChange - http://shapechange.net/-->
|
|
8
|
+
<element name="MD_Metadata" substitutionGroup="mcc:Abstract_Metadata" type="mdb:MD_Metadata_Type">
|
|
9
|
+
<annotation>
|
|
10
|
+
<documentation>root entity which defines metadata about a resource or resources</documentation>
|
|
11
|
+
</annotation>
|
|
12
|
+
</element>
|
|
13
|
+
<complexType name="MD_Metadata_Type">
|
|
14
|
+
<complexContent>
|
|
15
|
+
<extension base="mcc:Abstract_Metadata_Type">
|
|
16
|
+
<sequence>
|
|
17
|
+
<element minOccurs="0" name="metadataIdentifier" type="mcc:MD_Identifier_PropertyType"/>
|
|
18
|
+
<element minOccurs="0" name="defaultLocale" type="lan:PT_Locale_PropertyType">
|
|
19
|
+
<annotation>
|
|
20
|
+
<documentation>Provides information about an alternatively used localized character string for a linguistic extension</documentation>
|
|
21
|
+
</annotation>
|
|
22
|
+
</element>
|
|
23
|
+
<element minOccurs="0" name="parentMetadata" type="mcc:Abstract_Citation_PropertyType">
|
|
24
|
+
<annotation>
|
|
25
|
+
<documentation>Identifier and onlineResource for a parent metadata record</documentation>
|
|
26
|
+
</annotation>
|
|
27
|
+
</element>
|
|
28
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataScope" type="mdb:MD_MetadataScope_PropertyType"/>
|
|
29
|
+
<element maxOccurs="unbounded" name="contact" type="mcc:Abstract_Responsibility_PropertyType">
|
|
30
|
+
<annotation>
|
|
31
|
+
<documentation>party responsible for the metadata information</documentation>
|
|
32
|
+
</annotation>
|
|
33
|
+
</element>
|
|
34
|
+
<element maxOccurs="unbounded" name="dateInfo" type="mcc:Abstract_TypedDate_PropertyType">
|
|
35
|
+
<annotation>
|
|
36
|
+
<documentation>Date(s) other than creation dateEG: expiry date</documentation>
|
|
37
|
+
</annotation>
|
|
38
|
+
</element>
|
|
39
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataStandard" type="mcc:Abstract_Citation_PropertyType">
|
|
40
|
+
<annotation>
|
|
41
|
+
<documentation>Citation for the standards to which the metadata conforms</documentation>
|
|
42
|
+
</annotation>
|
|
43
|
+
</element>
|
|
44
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataProfile" type="mcc:Abstract_Citation_PropertyType"/>
|
|
45
|
+
<element maxOccurs="unbounded" minOccurs="0" name="alternativeMetadataReference" type="mcc:Abstract_Citation_PropertyType">
|
|
46
|
+
<annotation>
|
|
47
|
+
<documentation>unique Identifier and onlineResource for alternative metadata</documentation>
|
|
48
|
+
</annotation>
|
|
49
|
+
</element>
|
|
50
|
+
<element maxOccurs="unbounded" minOccurs="0" name="otherLocale" type="lan:PT_Locale_PropertyType"/>
|
|
51
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataLinkage" type="mcc:Abstract_OnlineResource_PropertyType">
|
|
52
|
+
<annotation>
|
|
53
|
+
<documentation>online location where the metadata is available</documentation>
|
|
54
|
+
</annotation>
|
|
55
|
+
</element>
|
|
56
|
+
<element maxOccurs="unbounded" minOccurs="0" name="spatialRepresentationInfo" type="mcc:Abstract_SpatialRepresentation_PropertyType"/>
|
|
57
|
+
<element maxOccurs="unbounded" minOccurs="0" name="referenceSystemInfo" type="mcc:Abstract_ReferenceSystem_PropertyType"/>
|
|
58
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataExtensionInfo" type="mcc:Abstract_MetadataExtension_PropertyType"/>
|
|
59
|
+
<element maxOccurs="unbounded" name="identificationInfo" type="mcc:Abstract_ResourceDescription_PropertyType"/>
|
|
60
|
+
<element maxOccurs="unbounded" minOccurs="0" name="contentInfo" type="mcc:Abstract_ContentInformation_PropertyType"/>
|
|
61
|
+
<element maxOccurs="unbounded" minOccurs="0" name="distributionInfo" type="mcc:Abstract_Distribution_PropertyType"/>
|
|
62
|
+
<element maxOccurs="unbounded" minOccurs="0" name="dataQualityInfo" type="dqc:Abstract_DataQuality_PropertyType"/>
|
|
63
|
+
<element maxOccurs="unbounded" minOccurs="0" name="resourceLineage" type="mcc:Abstract_LineageInformation_PropertyType"/>
|
|
64
|
+
<element maxOccurs="unbounded" minOccurs="0" name="portrayalCatalogueInfo" type="mcc:Abstract_PortrayalCatalogueInformation_PropertyType"/>
|
|
65
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataConstraints" type="mcc:Abstract_Constraints_PropertyType"/>
|
|
66
|
+
<element maxOccurs="unbounded" minOccurs="0" name="applicationSchemaInfo" type="mcc:Abstract_ApplicationSchemaInformation_PropertyType"/>
|
|
67
|
+
<element minOccurs="0" name="metadataMaintenance" type="mcc:Abstract_MaintenanceInformation_PropertyType"/>
|
|
68
|
+
<element maxOccurs="unbounded" minOccurs="0" name="acquisitionInformation" type="mcc:Abstract_AcquisitionInformation_PropertyType"/>
|
|
69
|
+
</sequence>
|
|
70
|
+
</extension>
|
|
71
|
+
</complexContent>
|
|
72
|
+
</complexType>
|
|
73
|
+
<complexType name="MD_Metadata_PropertyType">
|
|
74
|
+
<sequence minOccurs="0">
|
|
75
|
+
<element ref="mdb:MD_Metadata"/>
|
|
76
|
+
</sequence>
|
|
77
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
78
|
+
<attribute ref="gco:nilReason"/>
|
|
79
|
+
</complexType>
|
|
80
|
+
<element name="MD_MetadataScope" substitutionGroup="gco:AbstractObject" type="mdb:MD_MetadataScope_Type"/>
|
|
81
|
+
<complexType name="MD_MetadataScope_Type">
|
|
82
|
+
<complexContent>
|
|
83
|
+
<extension base="gco:AbstractObject_Type">
|
|
84
|
+
<sequence>
|
|
85
|
+
<element name="resourceScope" type="mcc:MD_ScopeCode_PropertyType"/>
|
|
86
|
+
<element minOccurs="0" name="name" type="gco:CharacterString_PropertyType"/>
|
|
87
|
+
</sequence>
|
|
88
|
+
</extension>
|
|
89
|
+
</complexContent>
|
|
90
|
+
</complexType>
|
|
91
|
+
<complexType name="MD_MetadataScope_PropertyType">
|
|
92
|
+
<sequence minOccurs="0">
|
|
93
|
+
<element ref="mdb:MD_MetadataScope"/>
|
|
94
|
+
</sequence>
|
|
95
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
96
|
+
<attribute ref="gco:nilReason"/>
|
|
97
|
+
</complexType>
|
|
98
|
+
</schema>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema"
|
|
3
|
+
xmlns:cit="http://standards.iso.org/iso/19115/-3/cit/1.0" xmlns:dqc="http://standards.iso.org/iso/19157/-2/dqc/1.0"
|
|
4
|
+
xmlns:lan="http://standards.iso.org/iso/19115/-3/lan/1.0" xmlns:mcc="http://standards.iso.org/iso/19115/-3/mcc/1.0"
|
|
5
|
+
xmlns:mdb="http://standards.iso.org/iso/19115/-3/mdb/2.0" xmlns:mri="http://standards.iso.org/iso/19115/-3/mri/1.0"
|
|
6
|
+
elementFormDefault="qualified" targetNamespace="http://standards.iso.org/iso/19115/-3/mdb/2.0"
|
|
7
|
+
version="1.0">
|
|
8
|
+
<annotation>
|
|
9
|
+
<documentation>Wrapper namespace to support Catalog Service implementations</documentation>
|
|
10
|
+
</annotation>
|
|
11
|
+
<include schemaLocation="metadataBase.xsd"/>
|
|
12
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/cit/2.0" schemaLocation="../../../../19115/-3/cit/2.0/cit.xsd"/>
|
|
13
|
+
<import namespace="http://standards.iso.org/iso/19157/-2/dqc/1.0" schemaLocation="../../../../19157/-2/dqc/1.0/dqc.xsd"/>
|
|
14
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/lan/1.0" schemaLocation="../../../../19115/-3/lan/1.0/lan.xsd"/>
|
|
15
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mcc/1.0" schemaLocation="../../../../19115/-3/mcc/1.0/mcc.xsd"/>
|
|
16
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mri/1.0" schemaLocation="../../../../19115/-3/mri/1.0/mri.xsd"/>
|
|
17
|
+
<!-- need to import gex because bounding box is mandatory if metadataScope is dataset -->
|
|
18
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/gex/1.0" schemaLocation="../../../../19115/-3/gex/1.0/gex.xsd"/>
|
|
19
|
+
<!--XML Schema document created by ShapeChange - http://shapechange.net/-->
|
|
20
|
+
</schema>
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:dqc="http://standards.iso.org/iso/19157/-2/dqc/1.0" xmlns:gco="http://standards.iso.org/iso/19115/-3/gco/1.0"
|
|
3
|
+
xmlns:lan="http://standards.iso.org/iso/19115/-3/lan/1.0" xmlns:mcc="http://standards.iso.org/iso/19115/-3/mcc/1.0"
|
|
4
|
+
xmlns:mdb="http://standards.iso.org/iso/19115/-3/mdb/2.0" elementFormDefault="qualified"
|
|
5
|
+
targetNamespace="http://standards.iso.org/iso/19115/-3/mdb/2.0" version="1.0">
|
|
6
|
+
<include schemaLocation="mdb.xsd"/>
|
|
7
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/gco/1.0" schemaLocation="../../../../19115/-3/gco/1.0/gco.xsd"/>
|
|
8
|
+
<import namespace="http://standards.iso.org/iso/19157/-2/dqc/1.0" schemaLocation="../../../../19157/-2/dqc/1.0/dqc.xsd"/>
|
|
9
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/lan/1.0" schemaLocation="../../../../19115/-3/lan/1.0/lan.xsd"/>
|
|
10
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mcc/1.0" schemaLocation="../../../../19115/-3/mcc/1.0/mcc.xsd"/>
|
|
11
|
+
<!--XML Schema document created by ShapeChange - http://shapechange.net/-->
|
|
12
|
+
<element name="MD_Metadata" substitutionGroup="mcc:Abstract_Metadata" type="mdb:MD_Metadata_Type">
|
|
13
|
+
<annotation>
|
|
14
|
+
<documentation>root entity which defines metadata about a resource or resources</documentation>
|
|
15
|
+
</annotation>
|
|
16
|
+
</element>
|
|
17
|
+
<complexType name="MD_Metadata_Type">
|
|
18
|
+
<complexContent>
|
|
19
|
+
<extension base="mcc:Abstract_Metadata_Type">
|
|
20
|
+
<sequence>
|
|
21
|
+
<element minOccurs="0" name="metadataIdentifier" type="mcc:MD_Identifier_PropertyType"/>
|
|
22
|
+
<element minOccurs="0" name="defaultLocale" type="lan:PT_Locale_PropertyType">
|
|
23
|
+
<annotation>
|
|
24
|
+
<documentation>Provides information about an alternatively used localized character string for a linguistic extension</documentation>
|
|
25
|
+
</annotation>
|
|
26
|
+
</element>
|
|
27
|
+
<element minOccurs="0" name="parentMetadata" type="mcc:Abstract_Citation_PropertyType">
|
|
28
|
+
<annotation>
|
|
29
|
+
<documentation>Identifier and onlineResource for a parent metadata record</documentation>
|
|
30
|
+
</annotation>
|
|
31
|
+
</element>
|
|
32
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataScope" type="mdb:MD_MetadataScope_PropertyType"/>
|
|
33
|
+
<element maxOccurs="unbounded" name="contact" type="mcc:Abstract_Responsibility_PropertyType">
|
|
34
|
+
<annotation>
|
|
35
|
+
<documentation>party responsible for the metadata information</documentation>
|
|
36
|
+
</annotation>
|
|
37
|
+
</element>
|
|
38
|
+
<element maxOccurs="unbounded" name="dateInfo" type="mcc:Abstract_TypedDate_PropertyType">
|
|
39
|
+
<annotation>
|
|
40
|
+
<documentation>Date(s) other than creation dateEG: expiry date</documentation>
|
|
41
|
+
</annotation>
|
|
42
|
+
</element>
|
|
43
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataStandard" type="mcc:Abstract_Citation_PropertyType">
|
|
44
|
+
<annotation>
|
|
45
|
+
<documentation>Citation for the standards to which the metadata conforms</documentation>
|
|
46
|
+
</annotation>
|
|
47
|
+
</element>
|
|
48
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataProfile" type="mcc:Abstract_Citation_PropertyType"/>
|
|
49
|
+
<element maxOccurs="unbounded" minOccurs="0" name="alternativeMetadataReference" type="mcc:Abstract_Citation_PropertyType">
|
|
50
|
+
<annotation>
|
|
51
|
+
<documentation>unique Identifier and onlineResource for alternative metadata</documentation>
|
|
52
|
+
</annotation>
|
|
53
|
+
</element>
|
|
54
|
+
<element maxOccurs="unbounded" minOccurs="0" name="otherLocale" type="lan:PT_Locale_PropertyType"/>
|
|
55
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataLinkage" type="mcc:Abstract_OnlineResource_PropertyType">
|
|
56
|
+
<annotation>
|
|
57
|
+
<documentation>online location where the metadata is available</documentation>
|
|
58
|
+
</annotation>
|
|
59
|
+
</element>
|
|
60
|
+
<element maxOccurs="unbounded" minOccurs="0" name="spatialRepresentationInfo" type="mcc:Abstract_SpatialRepresentation_PropertyType"/>
|
|
61
|
+
<element maxOccurs="unbounded" minOccurs="0" name="referenceSystemInfo" type="mcc:Abstract_ReferenceSystem_PropertyType"/>
|
|
62
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataExtensionInfo" type="mcc:Abstract_MetadataExtension_PropertyType"/>
|
|
63
|
+
<element maxOccurs="unbounded" name="identificationInfo" type="mcc:Abstract_ResourceDescription_PropertyType"/>
|
|
64
|
+
<element maxOccurs="unbounded" minOccurs="0" name="contentInfo" type="mcc:Abstract_ContentInformation_PropertyType"/>
|
|
65
|
+
<element maxOccurs="unbounded" minOccurs="0" name="distributionInfo" type="mcc:Abstract_Distribution_PropertyType"/>
|
|
66
|
+
<element maxOccurs="unbounded" minOccurs="0" name="dataQualityInfo" type="dqc:Abstract_DataQuality_PropertyType"/>
|
|
67
|
+
<element maxOccurs="unbounded" minOccurs="0" name="resourceLineage" type="mcc:Abstract_LineageInformation_PropertyType"/>
|
|
68
|
+
<element maxOccurs="unbounded" minOccurs="0" name="portrayalCatalogueInfo" type="mcc:Abstract_PortrayalCatalogueInformation_PropertyType"/>
|
|
69
|
+
<element maxOccurs="unbounded" minOccurs="0" name="metadataConstraints" type="mcc:Abstract_Constraints_PropertyType"/>
|
|
70
|
+
<element maxOccurs="unbounded" minOccurs="0" name="applicationSchemaInfo" type="mcc:Abstract_ApplicationSchemaInformation_PropertyType"/>
|
|
71
|
+
<element minOccurs="0" name="metadataMaintenance" type="mcc:Abstract_MaintenanceInformation_PropertyType"/>
|
|
72
|
+
<element maxOccurs="unbounded" minOccurs="0" name="acquisitionInformation" type="mcc:Abstract_AcquisitionInformation_PropertyType"/>
|
|
73
|
+
</sequence>
|
|
74
|
+
</extension>
|
|
75
|
+
</complexContent>
|
|
76
|
+
</complexType>
|
|
77
|
+
<complexType name="MD_Metadata_PropertyType">
|
|
78
|
+
<sequence minOccurs="0">
|
|
79
|
+
<element ref="mdb:MD_Metadata"/>
|
|
80
|
+
</sequence>
|
|
81
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
82
|
+
<attribute ref="gco:nilReason"/>
|
|
83
|
+
</complexType>
|
|
84
|
+
<element name="MD_MetadataScope" substitutionGroup="gco:AbstractObject" type="mdb:MD_MetadataScope_Type"/>
|
|
85
|
+
<complexType name="MD_MetadataScope_Type">
|
|
86
|
+
<complexContent>
|
|
87
|
+
<extension base="gco:AbstractObject_Type">
|
|
88
|
+
<sequence>
|
|
89
|
+
<element name="resourceScope" type="mcc:MD_ScopeCode_PropertyType"/>
|
|
90
|
+
<element minOccurs="0" name="name" type="gco:CharacterString_PropertyType"/>
|
|
91
|
+
</sequence>
|
|
92
|
+
</extension>
|
|
93
|
+
</complexContent>
|
|
94
|
+
</complexType>
|
|
95
|
+
<complexType name="MD_MetadataScope_PropertyType">
|
|
96
|
+
<sequence minOccurs="0">
|
|
97
|
+
<element ref="mdb:MD_MetadataScope"/>
|
|
98
|
+
</sequence>
|
|
99
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
100
|
+
<attribute ref="gco:nilReason"/>
|
|
101
|
+
</complexType>
|
|
102
|
+
</schema>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:fcc="http://standards.iso.org/iso/19110/fcc/1.0" xmlns:gex="http://standards.iso.org/iso/19115/-3/gex/1.0" xmlns:mac="http://standards.iso.org/iso/19115/-3/mac/1.0" xmlns:mas="http://standards.iso.org/iso/19115/-3/mas/1.0" xmlns:mco="http://standards.iso.org/iso/19115/-3/mco/1.0" xmlns:mdb="http://standards.iso.org/iso/19115/-3/mdb/1.0" xmlns:mdq="http://standards.iso.org/iso/19157/-2/mdq/1.0" xmlns:mds="http://standards.iso.org/iso/19115/-3/mds/1.0" xmlns:mmi="http://standards.iso.org/iso/19115/-3/mmi/1.0" xmlns:mpc="http://standards.iso.org/iso/19115/-3/mpc/1.0" xmlns:mrc="http://standards.iso.org/iso/19115/-3/mrc/1.0" xmlns:mrd="http://standards.iso.org/iso/19115/-3/mrd/1.0" xmlns:mrl="http://standards.iso.org/iso/19115/-3/mrl/1.0" xmlns:mrs="http://standards.iso.org/iso/19115/-3/mrs/1.0" xmlns:msr="http://standards.iso.org/iso/19115/-3/msr/1.0" xmlns:srv="http://standards.iso.org/iso/19115/-3/srv/2.0" elementFormDefault="qualified" targetNamespace="http://standards.iso.org/iso/19115/-3/mds/1.0" version="1.0">
|
|
2
|
+
<annotation>
|
|
3
|
+
<documentation>Namespace <font color="#1f497d">that imports all necessary namespaces to implement a complete metadata record for a dataset or service, not including extended data types or user-defined extensions. </font>Wrapper namespace to support Catalog Service implementations.</documentation>
|
|
4
|
+
</annotation>
|
|
5
|
+
<include schemaLocation="metadataDataServices.xsd"/>
|
|
6
|
+
<import namespace="http://standards.iso.org/iso/19110/fcc/1.0" schemaLocation="../../../../19110/fcc/1.0/fcc.xsd"/>
|
|
7
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/gex/1.0" schemaLocation="../../../../19115/-3/gex/1.0/gex.xsd"/>
|
|
8
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mac/1.0" schemaLocation="../../../../19115/-3/mac/1.0/mac.xsd"/>
|
|
9
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mas/1.0" schemaLocation="../../../../19115/-3/mas/1.0/mas.xsd"/>
|
|
10
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mco/1.0" schemaLocation="../../../../19115/-3/mco/1.0/mco.xsd"/>
|
|
11
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mdb/1.0" schemaLocation="../../../../19115/-3/mdb/1.0/mdb.xsd"/>
|
|
12
|
+
<import namespace="http://standards.iso.org/iso/19157/-2/mdq/1.0" schemaLocation="../../../../19157/-2/mdq/1.0/mdq.xsd"/>
|
|
13
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mmi/1.0" schemaLocation="../../../../19115/-3/mmi/1.0/mmi.xsd"/>
|
|
14
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mpc/1.0" schemaLocation="../../../../19115/-3/mpc/1.0/mpc.xsd"/>
|
|
15
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mrc/1.0" schemaLocation="../../../../19115/-3/mrc/1.0/mrc.xsd"/>
|
|
16
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mrd/1.0" schemaLocation="../../../../19115/-3/mrd/1.0/mrd.xsd"/>
|
|
17
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mrl/1.0" schemaLocation="../../../../19115/-3/mrl/1.0/mrl.xsd"/>
|
|
18
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mrs/1.0" schemaLocation="../../../../19115/-3/mrs/1.0/mrs.xsd"/>
|
|
19
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/msr/1.0" schemaLocation="../../../../19115/-3/msr/1.0/msr.xsd"/>
|
|
20
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/srv/2.0" schemaLocation="../../../../19115/-3/srv/2.0/srv.xsd"/>
|
|
21
|
+
<!--XML Schema document created by ShapeChange - http://shapechange.net/-->
|
|
22
|
+
</schema>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:mds="http://standards.iso.org/iso/19115/-3/mds/1.0" elementFormDefault="qualified" targetNamespace="http://standards.iso.org/iso/19115/-3/mds/1.0" version="1.0">
|
|
2
|
+
<include schemaLocation="mds.xsd"/>
|
|
3
|
+
<!--XML Schema document created by ShapeChange - http://shapechange.net/-->
|
|
4
|
+
</schema>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:cat="http://standards.iso.org/iso/19115/-3/cat/1.0"
|
|
3
|
+
xmlns:gcx="http://standards.iso.org/iso/19115/-3/gcx/1.0" xmlns:mda="http://standards.iso.org/iso/19115/-3/mda/1.0"
|
|
4
|
+
xmlns:mdt="http://standards.iso.org/iso/19115/-3/mdt/1.0" elementFormDefault="qualified" targetNamespace="http://standards.iso.org/iso/19115/-3/mdt/1.0" version="1.0">
|
|
5
|
+
<annotation>
|
|
6
|
+
<documentation>Namespace for XML elements <font color="#1f497d">required to implement data transfer packages with bundled metadata, data files, and registries defining package content</font>.</documentation>
|
|
7
|
+
</annotation>
|
|
8
|
+
<include schemaLocation="metadataTransfer.xsd"/>
|
|
9
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/cat/1.0" schemaLocation="../../../../19115/-3/cat/1.0/cat.xsd"/>
|
|
10
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/gcx/1.0" schemaLocation="../../../../19115/-3/gcx/1.0/gcx.xsd"/>
|
|
11
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mda/1.0" schemaLocation="../../../../19115/-3/mda/1.0/mda.xsd"/>
|
|
12
|
+
<!--XML Schema document created by ShapeChange - http://shapechange.net/-->
|
|
13
|
+
</schema>
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:cat="http://standards.iso.org/iso/19115/-3/cat/1.0" xmlns:gco="http://standards.iso.org/iso/19115/-3/gco/1.0" xmlns:gcx="http://standards.iso.org/iso/19115/-3/gcx/1.0" xmlns:mda="http://standards.iso.org/iso/19115/-3/mda/1.0" xmlns:mdt="http://standards.iso.org/iso/19115/-3/mdt/1.0" elementFormDefault="qualified" targetNamespace="http://standards.iso.org/iso/19115/-3/mdt/1.0" version="1.0">
|
|
2
|
+
<include schemaLocation="mdt.xsd"/>
|
|
3
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/gco/1.0" schemaLocation="../../../../19115/-3/gco/1.0/gco.xsd"/>
|
|
4
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/cat/1.0" schemaLocation="../../../../19115/-3/cat/1.0/cat.xsd"/>
|
|
5
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/gcx/1.0" schemaLocation="../../../../19115/-3/gcx/1.0/gcx.xsd"/>
|
|
6
|
+
<import namespace="http://standards.iso.org/iso/19115/-3/mda/1.0" schemaLocation="../../../../19115/-3/mda/1.0/mda.xsd"/>
|
|
7
|
+
<!--XML Schema document created by ShapeChange - http://shapechange.net/-->
|
|
8
|
+
<element name="MX_Aggregate" substitutionGroup="mda:AbstractDS_Aggregate" type="mdt:MX_Aggregate_Type"/>
|
|
9
|
+
<complexType name="MX_Aggregate_Type">
|
|
10
|
+
<complexContent>
|
|
11
|
+
<extension base="mda:AbstractDS_Aggregate_Type">
|
|
12
|
+
<sequence>
|
|
13
|
+
<element maxOccurs="unbounded" minOccurs="0" name="aggregateCatalogue" type="cat:AbstractCT_Catalogue_PropertyType"/>
|
|
14
|
+
<element maxOccurs="unbounded" minOccurs="0" name="aggregateFile" type="mdt:MX_SupportFile_PropertyType"/>
|
|
15
|
+
</sequence>
|
|
16
|
+
</extension>
|
|
17
|
+
</complexContent>
|
|
18
|
+
</complexType>
|
|
19
|
+
<complexType name="MX_Aggregate_PropertyType">
|
|
20
|
+
<sequence minOccurs="0">
|
|
21
|
+
<element ref="mdt:MX_Aggregate"/>
|
|
22
|
+
</sequence>
|
|
23
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
24
|
+
<attribute ref="gco:nilReason"/>
|
|
25
|
+
</complexType>
|
|
26
|
+
<element name="MX_DataFile" substitutionGroup="mdt:AbstractMX_File" type="mdt:MX_DataFile_Type"/>
|
|
27
|
+
<complexType name="MX_DataFile_Type">
|
|
28
|
+
<complexContent>
|
|
29
|
+
<extension base="mdt:AbstractMX_File_Type">
|
|
30
|
+
<sequence>
|
|
31
|
+
<element maxOccurs="unbounded" minOccurs="0" name="featureTypes" type="gco:GenericName_PropertyType"/>
|
|
32
|
+
</sequence>
|
|
33
|
+
</extension>
|
|
34
|
+
</complexContent>
|
|
35
|
+
</complexType>
|
|
36
|
+
<complexType name="MX_DataFile_PropertyType">
|
|
37
|
+
<sequence minOccurs="0">
|
|
38
|
+
<element ref="mdt:MX_DataFile"/>
|
|
39
|
+
</sequence>
|
|
40
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
41
|
+
<attribute ref="gco:nilReason"/>
|
|
42
|
+
</complexType>
|
|
43
|
+
<!--
|
|
44
|
+
Fix made by Ted Habermann - 20151123
|
|
45
|
+
<element name="MX_DataSet" substitutionGroup="gco:AbstractObject" type="mdt:MX_DataSet_Type"/>
|
|
46
|
+
-->
|
|
47
|
+
<element name="MX_DataSet" substitutionGroup="mda:AbstractDS_Resource" type="mdt:MX_DataSet_Type"/>
|
|
48
|
+
<complexType name="MX_DataSet_Type">
|
|
49
|
+
<complexContent>
|
|
50
|
+
<!--
|
|
51
|
+
Fix made by Ted Habermann - 20151123
|
|
52
|
+
<extension base="gco:AbstractObject_Type">
|
|
53
|
+
-->
|
|
54
|
+
<extension base="mda:AbstractDS_Resource_Type">
|
|
55
|
+
<sequence>
|
|
56
|
+
<element maxOccurs="unbounded" minOccurs="0" name="datasetCatalogue" type="cat:AbstractCT_Catalogue_PropertyType"/>
|
|
57
|
+
<element maxOccurs="unbounded" minOccurs="0" name="supportFile" type="mdt:MX_SupportFile_PropertyType"/>
|
|
58
|
+
<element maxOccurs="unbounded" name="dataFile" type="mdt:MX_DataFile_PropertyType"/>
|
|
59
|
+
</sequence>
|
|
60
|
+
</extension>
|
|
61
|
+
</complexContent>
|
|
62
|
+
</complexType>
|
|
63
|
+
<complexType name="MX_DataSet_PropertyType">
|
|
64
|
+
<sequence minOccurs="0">
|
|
65
|
+
<element ref="mdt:MX_DataSet"/>
|
|
66
|
+
</sequence>
|
|
67
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
68
|
+
<attribute ref="gco:nilReason"/>
|
|
69
|
+
</complexType>
|
|
70
|
+
<element abstract="true" name="AbstractMX_File" substitutionGroup="gco:AbstractObject" type="mdt:AbstractMX_File_Type"/>
|
|
71
|
+
<complexType abstract="true" name="AbstractMX_File_Type">
|
|
72
|
+
<complexContent>
|
|
73
|
+
<extension base="gco:AbstractObject_Type">
|
|
74
|
+
<sequence>
|
|
75
|
+
<element name="fileName" type="gcx:FileName_PropertyType"/>
|
|
76
|
+
<element name="fileDescription" type="gco:CharacterString_PropertyType"/>
|
|
77
|
+
<element name="fileType" type="gcx:MimeFileType_PropertyType"/>
|
|
78
|
+
</sequence>
|
|
79
|
+
</extension>
|
|
80
|
+
</complexContent>
|
|
81
|
+
</complexType>
|
|
82
|
+
<complexType name="AbstractMX_File_PropertyType">
|
|
83
|
+
<sequence minOccurs="0">
|
|
84
|
+
<element ref="mdt:AbstractMX_File"/>
|
|
85
|
+
</sequence>
|
|
86
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
87
|
+
<attribute ref="gco:nilReason"/>
|
|
88
|
+
</complexType>
|
|
89
|
+
<element name="MX_ScopeCode" substitutionGroup="gco:CharacterString" type="gco:CodeListValue_Type"/>
|
|
90
|
+
<complexType name="MX_ScopeCode_PropertyType">
|
|
91
|
+
<sequence minOccurs="0">
|
|
92
|
+
<element ref="mdt:MX_ScopeCode"/>
|
|
93
|
+
</sequence>
|
|
94
|
+
<attribute ref="gco:nilReason"/>
|
|
95
|
+
</complexType>
|
|
96
|
+
<element name="MX_SupportFile" substitutionGroup="mdt:AbstractMX_File" type="mdt:MX_SupportFile_Type"/>
|
|
97
|
+
<complexType name="MX_SupportFile_Type">
|
|
98
|
+
<complexContent>
|
|
99
|
+
<extension base="mdt:AbstractMX_File_Type">
|
|
100
|
+
<sequence/>
|
|
101
|
+
</extension>
|
|
102
|
+
</complexContent>
|
|
103
|
+
</complexType>
|
|
104
|
+
<complexType name="MX_SupportFile_PropertyType">
|
|
105
|
+
<sequence minOccurs="0">
|
|
106
|
+
<element ref="mdt:MX_SupportFile"/>
|
|
107
|
+
</sequence>
|
|
108
|
+
<attributeGroup ref="gco:ObjectReference"/>
|
|
109
|
+
<attribute ref="gco:nilReason"/>
|
|
110
|
+
</complexType>
|
|
111
|
+
</schema>
|