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,1133 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<schema targetNamespace="http://www.opengis.net/gml/3.2" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="3.2.1.2">
|
|
3
|
+
<annotation>
|
|
4
|
+
<appinfo source="urn:x-ogc:specification:gml:schema-xsd:deprecatedTypes:3.2.1">deprecatedTypes.xsd</appinfo>
|
|
5
|
+
<documentation>All global schema components that are part of the GML schema, but were deprecated. See Annex I.
|
|
6
|
+
|
|
7
|
+
GML is an OGC Standard.
|
|
8
|
+
Copyright (c) 2007,2010 Open Geospatial Consortium.
|
|
9
|
+
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
|
|
10
|
+
</documentation>
|
|
11
|
+
</annotation>
|
|
12
|
+
<include schemaLocation="gml.xsd"/>
|
|
13
|
+
<element name="Null" type="gml:NilReasonType">
|
|
14
|
+
<annotation>
|
|
15
|
+
<appinfo>deprecated</appinfo>
|
|
16
|
+
</annotation>
|
|
17
|
+
</element>
|
|
18
|
+
<element name="anchorPoint" type="gml:CodeType" substitutionGroup="gml:anchorDefinition">
|
|
19
|
+
<annotation>
|
|
20
|
+
<appinfo>deprecated</appinfo>
|
|
21
|
+
</annotation>
|
|
22
|
+
</element>
|
|
23
|
+
<element name="datumRef" type="gml:DatumPropertyType">
|
|
24
|
+
<annotation>
|
|
25
|
+
<appinfo>deprecated</appinfo>
|
|
26
|
+
</annotation>
|
|
27
|
+
</element>
|
|
28
|
+
<element name="usesPrimeMeridian" type="gml:PrimeMeridianPropertyType" substitutionGroup="gml:primeMeridian">
|
|
29
|
+
<annotation>
|
|
30
|
+
<appinfo>deprecated</appinfo>
|
|
31
|
+
</annotation>
|
|
32
|
+
</element>
|
|
33
|
+
<element name="usesEllipsoid" type="gml:EllipsoidPropertyType" substitutionGroup="gml:ellipsoid">
|
|
34
|
+
<annotation>
|
|
35
|
+
<appinfo>deprecated</appinfo>
|
|
36
|
+
</annotation>
|
|
37
|
+
</element>
|
|
38
|
+
<element name="geodeticDatumRef" type="gml:GeodeticDatumPropertyType">
|
|
39
|
+
<annotation>
|
|
40
|
+
<appinfo>deprecated</appinfo>
|
|
41
|
+
</annotation>
|
|
42
|
+
</element>
|
|
43
|
+
<element name="ellipsoidRef" type="gml:EllipsoidPropertyType">
|
|
44
|
+
<annotation>
|
|
45
|
+
<appinfo>deprecated</appinfo>
|
|
46
|
+
</annotation>
|
|
47
|
+
</element>
|
|
48
|
+
<element name="primeMeridianRef" type="gml:PrimeMeridianPropertyType">
|
|
49
|
+
<annotation>
|
|
50
|
+
<appinfo>deprecated</appinfo>
|
|
51
|
+
</annotation>
|
|
52
|
+
</element>
|
|
53
|
+
<element name="engineeringDatumRef" type="gml:EngineeringDatumPropertyType">
|
|
54
|
+
<annotation>
|
|
55
|
+
<appinfo>deprecated</appinfo>
|
|
56
|
+
</annotation>
|
|
57
|
+
</element>
|
|
58
|
+
<element name="imageDatumRef" type="gml:ImageDatumPropertyType">
|
|
59
|
+
<annotation>
|
|
60
|
+
<appinfo>deprecated</appinfo>
|
|
61
|
+
</annotation>
|
|
62
|
+
</element>
|
|
63
|
+
<element name="verticalDatumRef" type="gml:VerticalDatumPropertyType">
|
|
64
|
+
<annotation>
|
|
65
|
+
<appinfo>deprecated</appinfo>
|
|
66
|
+
</annotation>
|
|
67
|
+
</element>
|
|
68
|
+
<element name="temporalDatumRef" type="gml:TemporalDatumPropertyType">
|
|
69
|
+
<annotation>
|
|
70
|
+
<appinfo>deprecated</appinfo>
|
|
71
|
+
</annotation>
|
|
72
|
+
</element>
|
|
73
|
+
<element name="coordinateOperationRef" type="gml:CoordinateOperationPropertyType">
|
|
74
|
+
<annotation>
|
|
75
|
+
<appinfo>deprecated</appinfo>
|
|
76
|
+
</annotation>
|
|
77
|
+
</element>
|
|
78
|
+
<element name="singleOperationRef" type="gml:SingleOperationPropertyType">
|
|
79
|
+
<annotation>
|
|
80
|
+
<appinfo>deprecated</appinfo>
|
|
81
|
+
</annotation>
|
|
82
|
+
</element>
|
|
83
|
+
<element name="AbstractOperation" type="gml:AbstractCoordinateOperationType" abstract="true" substitutionGroup="gml:AbstractSingleOperation">
|
|
84
|
+
<annotation>
|
|
85
|
+
<appinfo>deprecated</appinfo>
|
|
86
|
+
</annotation>
|
|
87
|
+
</element>
|
|
88
|
+
<complexType name="OperationPropertyType">
|
|
89
|
+
<annotation>
|
|
90
|
+
<appinfo>deprecated</appinfo>
|
|
91
|
+
</annotation>
|
|
92
|
+
<sequence minOccurs="0">
|
|
93
|
+
<element ref="gml:AbstractOperation"/>
|
|
94
|
+
</sequence>
|
|
95
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
96
|
+
</complexType>
|
|
97
|
+
<element name="operationRef" type="gml:OperationPropertyType">
|
|
98
|
+
<annotation>
|
|
99
|
+
<appinfo>deprecated</appinfo>
|
|
100
|
+
</annotation>
|
|
101
|
+
</element>
|
|
102
|
+
<element name="generalConversionRef" type="gml:GeneralConversionPropertyType">
|
|
103
|
+
<annotation>
|
|
104
|
+
<appinfo>deprecated</appinfo>
|
|
105
|
+
</annotation>
|
|
106
|
+
</element>
|
|
107
|
+
<element name="generalTransformationRef" type="gml:GeneralTransformationPropertyType">
|
|
108
|
+
<annotation>
|
|
109
|
+
<appinfo>deprecated</appinfo>
|
|
110
|
+
</annotation>
|
|
111
|
+
</element>
|
|
112
|
+
<element name="usesSingleOperation" type="gml:CoordinateOperationPropertyType" substitutionGroup="gml:coordOperation">
|
|
113
|
+
<annotation>
|
|
114
|
+
<appinfo>deprecated</appinfo>
|
|
115
|
+
</annotation>
|
|
116
|
+
</element>
|
|
117
|
+
<element name="concatenatedOperationRef" type="gml:ConcatenatedOperationPropertyType">
|
|
118
|
+
<annotation>
|
|
119
|
+
<appinfo>deprecated</appinfo>
|
|
120
|
+
</annotation>
|
|
121
|
+
</element>
|
|
122
|
+
<element name="usesOperation" type="gml:CoordinateOperationPropertyType" substitutionGroup="gml:coordOperation">
|
|
123
|
+
<annotation>
|
|
124
|
+
<appinfo>deprecated</appinfo>
|
|
125
|
+
</annotation>
|
|
126
|
+
</element>
|
|
127
|
+
<element name="passThroughOperationRef" type="gml:PassThroughOperationPropertyType">
|
|
128
|
+
<annotation>
|
|
129
|
+
<appinfo>deprecated</appinfo>
|
|
130
|
+
</annotation>
|
|
131
|
+
</element>
|
|
132
|
+
<element name="usesMethod" type="gml:OperationMethodPropertyType" substitutionGroup="gml:method">
|
|
133
|
+
<annotation>
|
|
134
|
+
<appinfo>deprecated</appinfo>
|
|
135
|
+
</annotation>
|
|
136
|
+
</element>
|
|
137
|
+
<element name="usesValue" type="gml:AbstractGeneralParameterValuePropertyType" substitutionGroup="gml:parameterValue">
|
|
138
|
+
<annotation>
|
|
139
|
+
<appinfo>deprecated</appinfo>
|
|
140
|
+
</annotation>
|
|
141
|
+
</element>
|
|
142
|
+
<element name="conversionRef" type="gml:ConversionPropertyType">
|
|
143
|
+
<annotation>
|
|
144
|
+
<appinfo>deprecated</appinfo>
|
|
145
|
+
</annotation>
|
|
146
|
+
</element>
|
|
147
|
+
<element name="transformationRef" type="gml:TransformationPropertyType">
|
|
148
|
+
<annotation>
|
|
149
|
+
<appinfo>deprecated</appinfo>
|
|
150
|
+
</annotation>
|
|
151
|
+
</element>
|
|
152
|
+
<element name="dmsAngleValue" type="gml:DMSAngleType">
|
|
153
|
+
<annotation>
|
|
154
|
+
<appinfo>deprecated</appinfo>
|
|
155
|
+
</annotation>
|
|
156
|
+
</element>
|
|
157
|
+
<element name="valueOfParameter" type="gml:OperationParameterPropertyType" substitutionGroup="gml:operationParameter">
|
|
158
|
+
<annotation>
|
|
159
|
+
<appinfo>deprecated</appinfo>
|
|
160
|
+
</annotation>
|
|
161
|
+
</element>
|
|
162
|
+
<element name="includesValue" type="gml:AbstractGeneralParameterValuePropertyType" substitutionGroup="gml:parameterValue">
|
|
163
|
+
<annotation>
|
|
164
|
+
<appinfo>deprecated</appinfo>
|
|
165
|
+
</annotation>
|
|
166
|
+
</element>
|
|
167
|
+
<element name="valuesOfGroup" type="gml:OperationParameterGroupPropertyType" substitutionGroup="gml:group">
|
|
168
|
+
<annotation>
|
|
169
|
+
<appinfo>deprecated</appinfo>
|
|
170
|
+
</annotation>
|
|
171
|
+
</element>
|
|
172
|
+
<element name="methodFormula" type="gml:CodeType" substitutionGroup="gml:formula">
|
|
173
|
+
<annotation>
|
|
174
|
+
<appinfo>deprecated</appinfo>
|
|
175
|
+
</annotation>
|
|
176
|
+
</element>
|
|
177
|
+
<element name="usesParameter" type="gml:AbstractGeneralOperationParameterPropertyType" substitutionGroup="gml:generalOperationParameter">
|
|
178
|
+
<annotation>
|
|
179
|
+
<appinfo>deprecated</appinfo>
|
|
180
|
+
</annotation>
|
|
181
|
+
</element>
|
|
182
|
+
<element name="operationMethodRef" type="gml:OperationMethodPropertyType">
|
|
183
|
+
<annotation>
|
|
184
|
+
<appinfo>deprecated</appinfo>
|
|
185
|
+
</annotation>
|
|
186
|
+
</element>
|
|
187
|
+
<element name="abstractGeneralOperationParameterRef" type="gml:AbstractGeneralOperationParameterPropertyType">
|
|
188
|
+
<annotation>
|
|
189
|
+
<appinfo>deprecated</appinfo>
|
|
190
|
+
</annotation>
|
|
191
|
+
</element>
|
|
192
|
+
<element name="operationParameterRef" type="gml:OperationParameterPropertyType">
|
|
193
|
+
<annotation>
|
|
194
|
+
<appinfo>deprecated</appinfo>
|
|
195
|
+
</annotation>
|
|
196
|
+
</element>
|
|
197
|
+
<element name="includesParameter" type="gml:AbstractGeneralOperationParameterPropertyType" substitutionGroup="gml:parameter">
|
|
198
|
+
<annotation>
|
|
199
|
+
<appinfo>deprecated</appinfo>
|
|
200
|
+
</annotation>
|
|
201
|
+
</element>
|
|
202
|
+
<element name="operationParameterGroupRef" type="gml:OperationParameterPropertyType">
|
|
203
|
+
<annotation>
|
|
204
|
+
<appinfo>deprecated</appinfo>
|
|
205
|
+
</annotation>
|
|
206
|
+
</element>
|
|
207
|
+
<element name="referenceSystemRef" type="gml:CRSPropertyType">
|
|
208
|
+
<annotation>
|
|
209
|
+
<appinfo>deprecated</appinfo>
|
|
210
|
+
</annotation>
|
|
211
|
+
</element>
|
|
212
|
+
<element name="crsRef" type="gml:CRSPropertyType">
|
|
213
|
+
<annotation>
|
|
214
|
+
<appinfo>deprecated</appinfo>
|
|
215
|
+
</annotation>
|
|
216
|
+
</element>
|
|
217
|
+
<element name="coordinateSystemAxisRef" type="gml:CoordinateSystemAxisPropertyType">
|
|
218
|
+
<annotation>
|
|
219
|
+
<appinfo>deprecated</appinfo>
|
|
220
|
+
</annotation>
|
|
221
|
+
</element>
|
|
222
|
+
<element name="usesAxis" type="gml:CoordinateSystemAxisPropertyType" substitutionGroup="gml:axis">
|
|
223
|
+
<annotation>
|
|
224
|
+
<appinfo>deprecated</appinfo>
|
|
225
|
+
</annotation>
|
|
226
|
+
</element>
|
|
227
|
+
<element name="coordinateSystemRef" type="gml:CoordinateSystemPropertyType">
|
|
228
|
+
<annotation>
|
|
229
|
+
<appinfo>deprecated</appinfo>
|
|
230
|
+
</annotation>
|
|
231
|
+
</element>
|
|
232
|
+
<element name="ellipsoidalCSRef" type="gml:EllipsoidalCSPropertyType">
|
|
233
|
+
<annotation>
|
|
234
|
+
<appinfo>deprecated</appinfo>
|
|
235
|
+
</annotation>
|
|
236
|
+
</element>
|
|
237
|
+
<element name="cartesianCSRef" type="gml:CartesianCSPropertyType">
|
|
238
|
+
<annotation>
|
|
239
|
+
<appinfo>deprecated</appinfo>
|
|
240
|
+
</annotation>
|
|
241
|
+
</element>
|
|
242
|
+
<element name="verticalCSRef" type="gml:VerticalCSPropertyType">
|
|
243
|
+
<annotation>
|
|
244
|
+
<appinfo>deprecated</appinfo>
|
|
245
|
+
</annotation>
|
|
246
|
+
</element>
|
|
247
|
+
<element name="TemporalCS" type="gml:TemporalCSType" substitutionGroup="gml:AbstractCoordinateSystem">
|
|
248
|
+
<annotation>
|
|
249
|
+
<appinfo>deprecated</appinfo>
|
|
250
|
+
</annotation>
|
|
251
|
+
</element>
|
|
252
|
+
<complexType name="TemporalCSType">
|
|
253
|
+
<annotation>
|
|
254
|
+
<appinfo>deprecated</appinfo>
|
|
255
|
+
</annotation>
|
|
256
|
+
<complexContent>
|
|
257
|
+
<extension base="gml:AbstractCoordinateSystemType"/>
|
|
258
|
+
</complexContent>
|
|
259
|
+
</complexType>
|
|
260
|
+
<complexType name="TemporalCSPropertyType">
|
|
261
|
+
<annotation>
|
|
262
|
+
<appinfo>deprecated</appinfo>
|
|
263
|
+
</annotation>
|
|
264
|
+
<sequence minOccurs="0">
|
|
265
|
+
<element ref="gml:TemporalCS"/>
|
|
266
|
+
</sequence>
|
|
267
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
268
|
+
</complexType>
|
|
269
|
+
<element name="temporalCSRef" type="gml:TemporalCSPropertyType">
|
|
270
|
+
<annotation>
|
|
271
|
+
<appinfo>deprecated</appinfo>
|
|
272
|
+
</annotation>
|
|
273
|
+
</element>
|
|
274
|
+
<element name="linearCSRef" type="gml:LinearCSPropertyType">
|
|
275
|
+
<annotation>
|
|
276
|
+
<appinfo>deprecated</appinfo>
|
|
277
|
+
</annotation>
|
|
278
|
+
</element>
|
|
279
|
+
<element name="userDefinedCSRef" type="gml:UserDefinedCSPropertyType">
|
|
280
|
+
<annotation>
|
|
281
|
+
<appinfo>deprecated</appinfo>
|
|
282
|
+
</annotation>
|
|
283
|
+
</element>
|
|
284
|
+
<element name="sphericalCSRef" type="gml:SphericalCSPropertyType">
|
|
285
|
+
<annotation>
|
|
286
|
+
<appinfo>deprecated</appinfo>
|
|
287
|
+
</annotation>
|
|
288
|
+
</element>
|
|
289
|
+
<element name="polarCSRef" type="gml:PolarCSPropertyType">
|
|
290
|
+
<annotation>
|
|
291
|
+
<appinfo>deprecated</appinfo>
|
|
292
|
+
</annotation>
|
|
293
|
+
</element>
|
|
294
|
+
<element name="cylindricalCSRef" type="gml:CylindricalCSPropertyType">
|
|
295
|
+
<annotation>
|
|
296
|
+
<appinfo>deprecated</appinfo>
|
|
297
|
+
</annotation>
|
|
298
|
+
</element>
|
|
299
|
+
<element name="ObliqueCartesianCS" type="gml:ObliqueCartesianCSType" substitutionGroup="gml:AbstractCoordinateSystem">
|
|
300
|
+
<annotation>
|
|
301
|
+
<appinfo>deprecated</appinfo>
|
|
302
|
+
</annotation>
|
|
303
|
+
</element>
|
|
304
|
+
<complexType name="ObliqueCartesianCSType">
|
|
305
|
+
<annotation>
|
|
306
|
+
<appinfo>deprecated</appinfo>
|
|
307
|
+
</annotation>
|
|
308
|
+
<complexContent>
|
|
309
|
+
<extension base="gml:AbstractCoordinateSystemType"/>
|
|
310
|
+
</complexContent>
|
|
311
|
+
</complexType>
|
|
312
|
+
<complexType name="ObliqueCartesianCSPropertyType">
|
|
313
|
+
<annotation>
|
|
314
|
+
<appinfo>deprecated</appinfo>
|
|
315
|
+
</annotation>
|
|
316
|
+
<sequence minOccurs="0">
|
|
317
|
+
<element ref="gml:ObliqueCartesianCS"/>
|
|
318
|
+
</sequence>
|
|
319
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
320
|
+
</complexType>
|
|
321
|
+
<element name="obliqueCartesianCSRef" type="gml:ObliqueCartesianCSPropertyType">
|
|
322
|
+
<annotation>
|
|
323
|
+
<appinfo>deprecated</appinfo>
|
|
324
|
+
</annotation>
|
|
325
|
+
</element>
|
|
326
|
+
<element name="singleCRSRef" type="gml:SingleCRSPropertyType">
|
|
327
|
+
<annotation>
|
|
328
|
+
<appinfo>deprecated</appinfo>
|
|
329
|
+
</annotation>
|
|
330
|
+
</element>
|
|
331
|
+
<element name="definedByConversion" type="gml:GeneralConversionPropertyType" substitutionGroup="gml:conversion">
|
|
332
|
+
<annotation>
|
|
333
|
+
<appinfo>deprecated</appinfo>
|
|
334
|
+
</annotation>
|
|
335
|
+
</element>
|
|
336
|
+
<element name="includesSingleCRS" type="gml:SingleCRSPropertyType" substitutionGroup="gml:componentReferenceSystem">
|
|
337
|
+
<annotation>
|
|
338
|
+
<appinfo>deprecated</appinfo>
|
|
339
|
+
</annotation>
|
|
340
|
+
</element>
|
|
341
|
+
<element name="compoundCRSRef" type="gml:CompoundCRSPropertyType">
|
|
342
|
+
<annotation>
|
|
343
|
+
<appinfo>deprecated</appinfo>
|
|
344
|
+
</annotation>
|
|
345
|
+
</element>
|
|
346
|
+
<element name="usesEllipsoidalCS" type="gml:EllipsoidalCSPropertyType" substitutionGroup="gml:ellipsoidalCS">
|
|
347
|
+
<annotation>
|
|
348
|
+
<appinfo>deprecated</appinfo>
|
|
349
|
+
</annotation>
|
|
350
|
+
</element>
|
|
351
|
+
<element name="usesCartesianCS" type="gml:CartesianCSPropertyType" substitutionGroup="gml:cartesianCS">
|
|
352
|
+
<annotation>
|
|
353
|
+
<appinfo>deprecated</appinfo>
|
|
354
|
+
</annotation>
|
|
355
|
+
</element>
|
|
356
|
+
<element name="usesSphericalCS" type="gml:SphericalCSPropertyType" substitutionGroup="gml:sphericalCS">
|
|
357
|
+
<annotation>
|
|
358
|
+
<appinfo>deprecated</appinfo>
|
|
359
|
+
</annotation>
|
|
360
|
+
</element>
|
|
361
|
+
<element name="usesGeodeticDatum" type="gml:GeodeticDatumPropertyType" substitutionGroup="gml:geodeticDatum">
|
|
362
|
+
<annotation>
|
|
363
|
+
<appinfo>deprecated</appinfo>
|
|
364
|
+
</annotation>
|
|
365
|
+
</element>
|
|
366
|
+
<element name="usesVerticalCS" type="gml:VerticalCSPropertyType" substitutionGroup="gml:verticalCS">
|
|
367
|
+
<annotation>
|
|
368
|
+
<appinfo>deprecated</appinfo>
|
|
369
|
+
</annotation>
|
|
370
|
+
</element>
|
|
371
|
+
<element name="usesVerticalDatum" type="gml:VerticalDatumPropertyType" substitutionGroup="gml:verticalDatum">
|
|
372
|
+
<annotation>
|
|
373
|
+
<appinfo>deprecated</appinfo>
|
|
374
|
+
</annotation>
|
|
375
|
+
</element>
|
|
376
|
+
<element name="verticalCRSRef" type="gml:VerticalCRSPropertyType">
|
|
377
|
+
<annotation>
|
|
378
|
+
<appinfo>deprecated</appinfo>
|
|
379
|
+
</annotation>
|
|
380
|
+
</element>
|
|
381
|
+
<element name="baseGeographicCRS" type="gml:GeographicCRSPropertyType">
|
|
382
|
+
<annotation>
|
|
383
|
+
<appinfo>deprecated</appinfo>
|
|
384
|
+
</annotation>
|
|
385
|
+
</element>
|
|
386
|
+
<element name="projectedCRSRef" type="gml:ProjectedCRSPropertyType">
|
|
387
|
+
<annotation>
|
|
388
|
+
<appinfo>deprecated</appinfo>
|
|
389
|
+
</annotation>
|
|
390
|
+
</element>
|
|
391
|
+
<element name="usesCS" type="gml:CoordinateSystemPropertyType" substitutionGroup="gml:coordinateSystem">
|
|
392
|
+
<annotation>
|
|
393
|
+
<appinfo>deprecated</appinfo>
|
|
394
|
+
</annotation>
|
|
395
|
+
</element>
|
|
396
|
+
<element name="derivedCRSRef" type="gml:DerivedCRSPropertyType">
|
|
397
|
+
<annotation>
|
|
398
|
+
<appinfo>deprecated</appinfo>
|
|
399
|
+
</annotation>
|
|
400
|
+
</element>
|
|
401
|
+
<element name="usesEngineeringDatum" type="gml:EngineeringDatumPropertyType" substitutionGroup="gml:engineeringDatum">
|
|
402
|
+
<annotation>
|
|
403
|
+
<appinfo>deprecated</appinfo>
|
|
404
|
+
</annotation>
|
|
405
|
+
</element>
|
|
406
|
+
<element name="engineeringCRSRef" type="gml:EngineeringCRSPropertyType">
|
|
407
|
+
<annotation>
|
|
408
|
+
<appinfo>deprecated</appinfo>
|
|
409
|
+
</annotation>
|
|
410
|
+
</element>
|
|
411
|
+
<element name="usesAffineCS" type="gml:AffineCSPropertyType" substitutionGroup="gml:affineCS">
|
|
412
|
+
<annotation>
|
|
413
|
+
<appinfo>deprecated</appinfo>
|
|
414
|
+
</annotation>
|
|
415
|
+
</element>
|
|
416
|
+
<element name="usesImageDatum" type="gml:ImageDatumPropertyType" substitutionGroup="gml:imageDatum">
|
|
417
|
+
<annotation>
|
|
418
|
+
<appinfo>deprecated</appinfo>
|
|
419
|
+
</annotation>
|
|
420
|
+
</element>
|
|
421
|
+
<element name="usesObliqueCartesianCS" type="gml:ObliqueCartesianCSPropertyType">
|
|
422
|
+
<annotation>
|
|
423
|
+
<appinfo>deprecated</appinfo>
|
|
424
|
+
</annotation>
|
|
425
|
+
</element>
|
|
426
|
+
<element name="imageCRSRef" type="gml:ImageCRSPropertyType">
|
|
427
|
+
<annotation>
|
|
428
|
+
<appinfo>deprecated</appinfo>
|
|
429
|
+
</annotation>
|
|
430
|
+
</element>
|
|
431
|
+
<element name="usesTimeCS" type="gml:TimeCSPropertyType" substitutionGroup="gml:timeCS">
|
|
432
|
+
<annotation>
|
|
433
|
+
<appinfo>deprecated</appinfo>
|
|
434
|
+
</annotation>
|
|
435
|
+
</element>
|
|
436
|
+
<element name="usesTemporalCS" type="gml:TemporalCSPropertyType">
|
|
437
|
+
<annotation>
|
|
438
|
+
<appinfo>deprecated</appinfo>
|
|
439
|
+
</annotation>
|
|
440
|
+
</element>
|
|
441
|
+
<element name="usesTemporalDatum" type="gml:TemporalDatumPropertyType" substitutionGroup="gml:temporalDatum">
|
|
442
|
+
<annotation>
|
|
443
|
+
<appinfo>deprecated</appinfo>
|
|
444
|
+
</annotation>
|
|
445
|
+
</element>
|
|
446
|
+
<element name="temporalCRSRef" type="gml:TemporalCRSPropertyType">
|
|
447
|
+
<annotation>
|
|
448
|
+
<appinfo>deprecated</appinfo>
|
|
449
|
+
</annotation>
|
|
450
|
+
</element>
|
|
451
|
+
<element name="GeographicCRS" type="gml:GeographicCRSType" substitutionGroup="gml:AbstractSingleCRS">
|
|
452
|
+
<annotation>
|
|
453
|
+
<appinfo>deprecated</appinfo>
|
|
454
|
+
</annotation>
|
|
455
|
+
</element>
|
|
456
|
+
<complexType name="GeographicCRSType">
|
|
457
|
+
<annotation>
|
|
458
|
+
<appinfo>deprecated</appinfo>
|
|
459
|
+
</annotation>
|
|
460
|
+
<complexContent>
|
|
461
|
+
<extension base="gml:AbstractCRSType">
|
|
462
|
+
<sequence>
|
|
463
|
+
<element ref="gml:usesEllipsoidalCS"/>
|
|
464
|
+
<element ref="gml:usesGeodeticDatum"/>
|
|
465
|
+
</sequence>
|
|
466
|
+
</extension>
|
|
467
|
+
</complexContent>
|
|
468
|
+
</complexType>
|
|
469
|
+
<complexType name="GeographicCRSPropertyType">
|
|
470
|
+
<annotation>
|
|
471
|
+
<appinfo>deprecated</appinfo>
|
|
472
|
+
</annotation>
|
|
473
|
+
<sequence minOccurs="0">
|
|
474
|
+
<element ref="gml:GeographicCRS"/>
|
|
475
|
+
</sequence>
|
|
476
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
477
|
+
</complexType>
|
|
478
|
+
<element name="geographicCRSRef" type="gml:GeographicCRSPropertyType">
|
|
479
|
+
<annotation>
|
|
480
|
+
<appinfo>deprecated</appinfo>
|
|
481
|
+
</annotation>
|
|
482
|
+
</element>
|
|
483
|
+
<element name="GeocentricCRS" type="gml:GeocentricCRSType" substitutionGroup="gml:AbstractSingleCRS">
|
|
484
|
+
<annotation>
|
|
485
|
+
<appinfo>deprecated</appinfo>
|
|
486
|
+
</annotation>
|
|
487
|
+
</element>
|
|
488
|
+
<complexType name="GeocentricCRSType">
|
|
489
|
+
<annotation>
|
|
490
|
+
<appinfo>deprecated</appinfo>
|
|
491
|
+
</annotation>
|
|
492
|
+
<complexContent>
|
|
493
|
+
<extension base="gml:AbstractCRSType">
|
|
494
|
+
<sequence>
|
|
495
|
+
<choice>
|
|
496
|
+
<element ref="gml:usesCartesianCS"/>
|
|
497
|
+
<element ref="gml:usesSphericalCS"/>
|
|
498
|
+
</choice>
|
|
499
|
+
<element ref="gml:usesGeodeticDatum"/>
|
|
500
|
+
</sequence>
|
|
501
|
+
</extension>
|
|
502
|
+
</complexContent>
|
|
503
|
+
</complexType>
|
|
504
|
+
<complexType name="GeocentricCRSPropertyType">
|
|
505
|
+
<annotation>
|
|
506
|
+
<appinfo>deprecated</appinfo>
|
|
507
|
+
</annotation>
|
|
508
|
+
<sequence minOccurs="0">
|
|
509
|
+
<element ref="gml:GeocentricCRS"/>
|
|
510
|
+
</sequence>
|
|
511
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
512
|
+
</complexType>
|
|
513
|
+
<element name="geocentricCRSRef" type="gml:GeocentricCRSPropertyType">
|
|
514
|
+
<annotation>
|
|
515
|
+
<appinfo>deprecated</appinfo>
|
|
516
|
+
</annotation>
|
|
517
|
+
</element>
|
|
518
|
+
<attribute name="uom" type="anyURI">
|
|
519
|
+
<annotation>
|
|
520
|
+
<appinfo>deprecated</appinfo>
|
|
521
|
+
</annotation>
|
|
522
|
+
</attribute>
|
|
523
|
+
<simpleType name="SuccessionType">
|
|
524
|
+
<annotation>
|
|
525
|
+
<appinfo>deprecated</appinfo>
|
|
526
|
+
</annotation>
|
|
527
|
+
<restriction base="string">
|
|
528
|
+
<enumeration value="substitution"/>
|
|
529
|
+
<enumeration value="division"/>
|
|
530
|
+
<enumeration value="fusion"/>
|
|
531
|
+
<enumeration value="initiation"/>
|
|
532
|
+
</restriction>
|
|
533
|
+
</simpleType>
|
|
534
|
+
<element name="dmsAngle" type="gml:DMSAngleType">
|
|
535
|
+
<annotation>
|
|
536
|
+
<appinfo>deprecated</appinfo>
|
|
537
|
+
</annotation>
|
|
538
|
+
</element>
|
|
539
|
+
<complexType name="DMSAngleType">
|
|
540
|
+
<annotation>
|
|
541
|
+
<appinfo>deprecated</appinfo>
|
|
542
|
+
</annotation>
|
|
543
|
+
<sequence>
|
|
544
|
+
<element ref="gml:degrees"/>
|
|
545
|
+
<choice minOccurs="0">
|
|
546
|
+
<element ref="gml:decimalMinutes"/>
|
|
547
|
+
<sequence>
|
|
548
|
+
<element ref="gml:minutes"/>
|
|
549
|
+
<element ref="gml:seconds" minOccurs="0"/>
|
|
550
|
+
</sequence>
|
|
551
|
+
</choice>
|
|
552
|
+
</sequence>
|
|
553
|
+
</complexType>
|
|
554
|
+
<element name="degrees" type="gml:DegreesType">
|
|
555
|
+
<annotation>
|
|
556
|
+
<appinfo>deprecated</appinfo>
|
|
557
|
+
</annotation>
|
|
558
|
+
</element>
|
|
559
|
+
<complexType name="DegreesType">
|
|
560
|
+
<annotation>
|
|
561
|
+
<appinfo>deprecated</appinfo>
|
|
562
|
+
</annotation>
|
|
563
|
+
<simpleContent>
|
|
564
|
+
<extension base="gml:DegreeValueType">
|
|
565
|
+
<attribute name="direction">
|
|
566
|
+
<simpleType>
|
|
567
|
+
<restriction base="string">
|
|
568
|
+
<enumeration value="N"/>
|
|
569
|
+
<enumeration value="E"/>
|
|
570
|
+
<enumeration value="S"/>
|
|
571
|
+
<enumeration value="W"/>
|
|
572
|
+
<enumeration value="+"/>
|
|
573
|
+
<enumeration value="-"/>
|
|
574
|
+
</restriction>
|
|
575
|
+
</simpleType>
|
|
576
|
+
</attribute>
|
|
577
|
+
</extension>
|
|
578
|
+
</simpleContent>
|
|
579
|
+
</complexType>
|
|
580
|
+
<simpleType name="DegreeValueType">
|
|
581
|
+
<annotation>
|
|
582
|
+
<appinfo>deprecated</appinfo>
|
|
583
|
+
</annotation>
|
|
584
|
+
<restriction base="nonNegativeInteger">
|
|
585
|
+
<maxInclusive value="359"/>
|
|
586
|
+
</restriction>
|
|
587
|
+
</simpleType>
|
|
588
|
+
<element name="decimalMinutes" type="gml:DecimalMinutesType">
|
|
589
|
+
<annotation>
|
|
590
|
+
<appinfo>deprecated</appinfo>
|
|
591
|
+
</annotation>
|
|
592
|
+
</element>
|
|
593
|
+
<simpleType name="DecimalMinutesType">
|
|
594
|
+
<annotation>
|
|
595
|
+
<appinfo>deprecated</appinfo>
|
|
596
|
+
</annotation>
|
|
597
|
+
<restriction base="decimal">
|
|
598
|
+
<minInclusive value="0.00"/>
|
|
599
|
+
<maxExclusive value="60.00"/>
|
|
600
|
+
</restriction>
|
|
601
|
+
</simpleType>
|
|
602
|
+
<element name="minutes" type="gml:ArcMinutesType">
|
|
603
|
+
<annotation>
|
|
604
|
+
<appinfo>deprecated</appinfo>
|
|
605
|
+
</annotation>
|
|
606
|
+
</element>
|
|
607
|
+
<simpleType name="ArcMinutesType">
|
|
608
|
+
<annotation>
|
|
609
|
+
<appinfo>deprecated</appinfo>
|
|
610
|
+
</annotation>
|
|
611
|
+
<restriction base="nonNegativeInteger">
|
|
612
|
+
<maxInclusive value="59"/>
|
|
613
|
+
</restriction>
|
|
614
|
+
</simpleType>
|
|
615
|
+
<element name="seconds" type="gml:ArcSecondsType">
|
|
616
|
+
<annotation>
|
|
617
|
+
<appinfo>deprecated</appinfo>
|
|
618
|
+
</annotation>
|
|
619
|
+
</element>
|
|
620
|
+
<simpleType name="ArcSecondsType">
|
|
621
|
+
<annotation>
|
|
622
|
+
<appinfo>deprecated</appinfo>
|
|
623
|
+
</annotation>
|
|
624
|
+
<restriction base="decimal">
|
|
625
|
+
<minInclusive value="0.00"/>
|
|
626
|
+
<maxExclusive value="60.00"/>
|
|
627
|
+
</restriction>
|
|
628
|
+
</simpleType>
|
|
629
|
+
<complexType name="AngleChoiceType">
|
|
630
|
+
<annotation>
|
|
631
|
+
<appinfo>deprecated</appinfo>
|
|
632
|
+
</annotation>
|
|
633
|
+
<choice>
|
|
634
|
+
<element ref="gml:angle"/>
|
|
635
|
+
<element ref="gml:dmsAngle"/>
|
|
636
|
+
</choice>
|
|
637
|
+
</complexType>
|
|
638
|
+
<attribute name="remoteSchema" type="anyURI">
|
|
639
|
+
<annotation>
|
|
640
|
+
<appinfo>deprecated</appinfo>
|
|
641
|
+
</annotation>
|
|
642
|
+
</attribute>
|
|
643
|
+
<element name="member" type="gml:AssociationRoleType">
|
|
644
|
+
<annotation>
|
|
645
|
+
<appinfo>deprecated</appinfo>
|
|
646
|
+
</annotation>
|
|
647
|
+
</element>
|
|
648
|
+
<complexType name="ArrayAssociationType">
|
|
649
|
+
<annotation>
|
|
650
|
+
<appinfo>deprecated</appinfo>
|
|
651
|
+
</annotation>
|
|
652
|
+
<sequence>
|
|
653
|
+
<element ref="gml:AbstractObject" minOccurs="0" maxOccurs="unbounded"/>
|
|
654
|
+
</sequence>
|
|
655
|
+
<attributeGroup ref="gml:OwnershipAttributeGroup"/>
|
|
656
|
+
</complexType>
|
|
657
|
+
<element name="members" type="gml:ArrayAssociationType">
|
|
658
|
+
<annotation>
|
|
659
|
+
<appinfo>deprecated</appinfo>
|
|
660
|
+
</annotation>
|
|
661
|
+
</element>
|
|
662
|
+
<complexType name="StringOrRefType">
|
|
663
|
+
<annotation>
|
|
664
|
+
<appinfo>deprecated</appinfo>
|
|
665
|
+
</annotation>
|
|
666
|
+
<simpleContent>
|
|
667
|
+
<extension base="string">
|
|
668
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
669
|
+
</extension>
|
|
670
|
+
</simpleContent>
|
|
671
|
+
</complexType>
|
|
672
|
+
<element name="metaDataProperty" type="gml:MetaDataPropertyType">
|
|
673
|
+
<annotation>
|
|
674
|
+
<appinfo>deprecated</appinfo>
|
|
675
|
+
</annotation>
|
|
676
|
+
</element>
|
|
677
|
+
<element name="Bag" type="gml:BagType" substitutionGroup="gml:AbstractGML">
|
|
678
|
+
<annotation>
|
|
679
|
+
<appinfo>deprecated</appinfo>
|
|
680
|
+
</annotation>
|
|
681
|
+
</element>
|
|
682
|
+
<complexType name="BagType">
|
|
683
|
+
<annotation>
|
|
684
|
+
<appinfo>deprecated</appinfo>
|
|
685
|
+
</annotation>
|
|
686
|
+
<complexContent>
|
|
687
|
+
<extension base="gml:AbstractGMLType">
|
|
688
|
+
<sequence>
|
|
689
|
+
<element ref="gml:member" minOccurs="0" maxOccurs="unbounded"/>
|
|
690
|
+
<element ref="gml:members" minOccurs="0"/>
|
|
691
|
+
</sequence>
|
|
692
|
+
</extension>
|
|
693
|
+
</complexContent>
|
|
694
|
+
</complexType>
|
|
695
|
+
<element name="Array" type="gml:ArrayType" substitutionGroup="gml:AbstractGML">
|
|
696
|
+
<annotation>
|
|
697
|
+
<appinfo>deprecated</appinfo>
|
|
698
|
+
</annotation>
|
|
699
|
+
</element>
|
|
700
|
+
<complexType name="ArrayType">
|
|
701
|
+
<annotation>
|
|
702
|
+
<appinfo>deprecated</appinfo>
|
|
703
|
+
</annotation>
|
|
704
|
+
<complexContent>
|
|
705
|
+
<extension base="gml:AbstractGMLType">
|
|
706
|
+
<sequence>
|
|
707
|
+
<element ref="gml:members" minOccurs="0"/>
|
|
708
|
+
</sequence>
|
|
709
|
+
</extension>
|
|
710
|
+
</complexContent>
|
|
711
|
+
</complexType>
|
|
712
|
+
<complexType name="MetaDataPropertyType">
|
|
713
|
+
<annotation>
|
|
714
|
+
<appinfo>deprecated</appinfo>
|
|
715
|
+
</annotation>
|
|
716
|
+
<sequence minOccurs="0">
|
|
717
|
+
<element ref="gml:AbstractMetaData"/>
|
|
718
|
+
</sequence>
|
|
719
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
720
|
+
<attribute name="about" type="anyURI"/>
|
|
721
|
+
</complexType>
|
|
722
|
+
<element name="AbstractMetaData" type="gml:AbstractMetaDataType" abstract="true" substitutionGroup="gml:AbstractObject">
|
|
723
|
+
<annotation>
|
|
724
|
+
<appinfo>deprecated</appinfo>
|
|
725
|
+
</annotation>
|
|
726
|
+
</element>
|
|
727
|
+
<complexType name="AbstractMetaDataType" abstract="true" mixed="true">
|
|
728
|
+
<annotation>
|
|
729
|
+
<appinfo>deprecated</appinfo>
|
|
730
|
+
</annotation>
|
|
731
|
+
<sequence/>
|
|
732
|
+
<attribute ref="gml:id"/>
|
|
733
|
+
</complexType>
|
|
734
|
+
<element name="GenericMetaData" type="gml:GenericMetaDataType" substitutionGroup="gml:AbstractMetaData">
|
|
735
|
+
<annotation>
|
|
736
|
+
<appinfo>deprecated</appinfo>
|
|
737
|
+
</annotation>
|
|
738
|
+
</element>
|
|
739
|
+
<complexType name="GenericMetaDataType" mixed="true">
|
|
740
|
+
<annotation>
|
|
741
|
+
<appinfo>deprecated</appinfo>
|
|
742
|
+
</annotation>
|
|
743
|
+
<complexContent mixed="true">
|
|
744
|
+
<extension base="gml:AbstractMetaDataType">
|
|
745
|
+
<sequence>
|
|
746
|
+
<any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
|
747
|
+
</sequence>
|
|
748
|
+
</extension>
|
|
749
|
+
</complexContent>
|
|
750
|
+
</complexType>
|
|
751
|
+
<element name="coordinates" type="gml:CoordinatesType">
|
|
752
|
+
<annotation>
|
|
753
|
+
<appinfo>deprecated</appinfo>
|
|
754
|
+
</annotation>
|
|
755
|
+
</element>
|
|
756
|
+
<element name="pointRep" type="gml:PointPropertyType">
|
|
757
|
+
<annotation>
|
|
758
|
+
<appinfo>deprecated</appinfo>
|
|
759
|
+
</annotation>
|
|
760
|
+
</element>
|
|
761
|
+
<element name="location" type="gml:LocationPropertyType">
|
|
762
|
+
<annotation>
|
|
763
|
+
<appinfo>deprecated</appinfo>
|
|
764
|
+
</annotation>
|
|
765
|
+
</element>
|
|
766
|
+
<complexType name="LocationPropertyType">
|
|
767
|
+
<annotation>
|
|
768
|
+
<appinfo>deprecated</appinfo>
|
|
769
|
+
</annotation>
|
|
770
|
+
<sequence>
|
|
771
|
+
<choice>
|
|
772
|
+
<element ref="gml:AbstractGeometry"/>
|
|
773
|
+
<element ref="gml:LocationKeyWord"/>
|
|
774
|
+
<element ref="gml:LocationString"/>
|
|
775
|
+
<element ref="gml:Null"/>
|
|
776
|
+
</choice>
|
|
777
|
+
</sequence>
|
|
778
|
+
<attributeGroup ref="gml:AssociationAttributeGroup"/>
|
|
779
|
+
</complexType>
|
|
780
|
+
<element name="LocationString" type="gml:StringOrRefType">
|
|
781
|
+
<annotation>
|
|
782
|
+
<appinfo>deprecated</appinfo>
|
|
783
|
+
</annotation>
|
|
784
|
+
</element>
|
|
785
|
+
<element name="LocationKeyWord" type="gml:CodeType">
|
|
786
|
+
<annotation>
|
|
787
|
+
<appinfo>deprecated</appinfo>
|
|
788
|
+
</annotation>
|
|
789
|
+
</element>
|
|
790
|
+
<element name="priorityLocation" type="gml:PriorityLocationPropertyType" substitutionGroup="gml:location">
|
|
791
|
+
<annotation>
|
|
792
|
+
<appinfo>deprecated</appinfo>
|
|
793
|
+
</annotation>
|
|
794
|
+
</element>
|
|
795
|
+
<complexType name="PriorityLocationPropertyType">
|
|
796
|
+
<annotation>
|
|
797
|
+
<appinfo>deprecated</appinfo>
|
|
798
|
+
</annotation>
|
|
799
|
+
<complexContent>
|
|
800
|
+
<extension base="gml:LocationPropertyType">
|
|
801
|
+
<attribute name="priority" type="string"/>
|
|
802
|
+
</extension>
|
|
803
|
+
</complexContent>
|
|
804
|
+
</complexType>
|
|
805
|
+
<element name="featureMember" type="gml:FeaturePropertyType">
|
|
806
|
+
<annotation>
|
|
807
|
+
<appinfo>deprecated</appinfo>
|
|
808
|
+
</annotation>
|
|
809
|
+
</element>
|
|
810
|
+
<element name="featureProperty" type="gml:FeaturePropertyType">
|
|
811
|
+
<annotation>
|
|
812
|
+
<appinfo>deprecated</appinfo>
|
|
813
|
+
</annotation>
|
|
814
|
+
</element>
|
|
815
|
+
<complexType name="FeatureArrayPropertyType">
|
|
816
|
+
<annotation>
|
|
817
|
+
<appinfo>deprecated</appinfo>
|
|
818
|
+
</annotation>
|
|
819
|
+
<sequence minOccurs="0" maxOccurs="unbounded">
|
|
820
|
+
<element ref="gml:AbstractFeature"/>
|
|
821
|
+
</sequence>
|
|
822
|
+
</complexType>
|
|
823
|
+
<element name="featureMembers" type="gml:FeatureArrayPropertyType">
|
|
824
|
+
<annotation>
|
|
825
|
+
<appinfo>deprecated</appinfo>
|
|
826
|
+
</annotation>
|
|
827
|
+
</element>
|
|
828
|
+
<complexType name="BoundedFeatureType" abstract="true">
|
|
829
|
+
<annotation>
|
|
830
|
+
<appinfo>deprecated</appinfo>
|
|
831
|
+
</annotation>
|
|
832
|
+
<complexContent>
|
|
833
|
+
<restriction base="gml:AbstractFeatureType">
|
|
834
|
+
<sequence>
|
|
835
|
+
<group ref="gml:StandardObjectProperties"/>
|
|
836
|
+
<element ref="gml:boundedBy"/>
|
|
837
|
+
<element ref="gml:location" minOccurs="0"/>
|
|
838
|
+
</sequence>
|
|
839
|
+
</restriction>
|
|
840
|
+
</complexContent>
|
|
841
|
+
</complexType>
|
|
842
|
+
<complexType name="AbstractFeatureCollectionType" abstract="true">
|
|
843
|
+
<annotation>
|
|
844
|
+
<appinfo>deprecated</appinfo>
|
|
845
|
+
</annotation>
|
|
846
|
+
<complexContent>
|
|
847
|
+
<extension base="gml:AbstractFeatureType">
|
|
848
|
+
<sequence>
|
|
849
|
+
<element ref="gml:featureMember" minOccurs="0" maxOccurs="unbounded"/>
|
|
850
|
+
<element ref="gml:featureMembers" minOccurs="0"/>
|
|
851
|
+
</sequence>
|
|
852
|
+
</extension>
|
|
853
|
+
</complexContent>
|
|
854
|
+
</complexType>
|
|
855
|
+
<element name="AbstractFeatureCollection" type="gml:AbstractFeatureCollectionType" abstract="true" substitutionGroup="gml:AbstractFeature">
|
|
856
|
+
<annotation>
|
|
857
|
+
<appinfo>deprecated</appinfo>
|
|
858
|
+
</annotation>
|
|
859
|
+
</element>
|
|
860
|
+
<element name="FeatureCollection" type="gml:FeatureCollectionType" substitutionGroup="gml:AbstractFeature">
|
|
861
|
+
<annotation>
|
|
862
|
+
<appinfo>deprecated</appinfo>
|
|
863
|
+
</annotation>
|
|
864
|
+
</element>
|
|
865
|
+
<complexType name="FeatureCollectionType">
|
|
866
|
+
<annotation>
|
|
867
|
+
<appinfo>deprecated</appinfo>
|
|
868
|
+
</annotation>
|
|
869
|
+
<complexContent>
|
|
870
|
+
<extension base="gml:AbstractFeatureCollectionType"/>
|
|
871
|
+
</complexContent>
|
|
872
|
+
</complexType>
|
|
873
|
+
<element name="track" type="gml:HistoryPropertyType" substitutionGroup="gml:history">
|
|
874
|
+
<annotation>
|
|
875
|
+
<appinfo>deprecated</appinfo>
|
|
876
|
+
</annotation>
|
|
877
|
+
</element>
|
|
878
|
+
<element name="DefinitionCollection" type="gml:DictionaryType" substitutionGroup="gml:Definition">
|
|
879
|
+
<annotation>
|
|
880
|
+
<appinfo>deprecated</appinfo>
|
|
881
|
+
</annotation>
|
|
882
|
+
</element>
|
|
883
|
+
<element name="definitionMember" type="gml:DictionaryEntryType" substitutionGroup="gml:dictionaryEntry">
|
|
884
|
+
<annotation>
|
|
885
|
+
<appinfo>deprecated</appinfo>
|
|
886
|
+
</annotation>
|
|
887
|
+
</element>
|
|
888
|
+
<element name="indirectEntry" type="gml:IndirectEntryType">
|
|
889
|
+
<annotation>
|
|
890
|
+
<appinfo>deprecated</appinfo>
|
|
891
|
+
</annotation>
|
|
892
|
+
</element>
|
|
893
|
+
<complexType name="IndirectEntryType">
|
|
894
|
+
<annotation>
|
|
895
|
+
<appinfo>deprecated</appinfo>
|
|
896
|
+
</annotation>
|
|
897
|
+
<sequence>
|
|
898
|
+
<element ref="gml:DefinitionProxy"/>
|
|
899
|
+
</sequence>
|
|
900
|
+
</complexType>
|
|
901
|
+
<element name="DefinitionProxy" type="gml:DefinitionProxyType" substitutionGroup="gml:Definition">
|
|
902
|
+
<annotation>
|
|
903
|
+
<appinfo>deprecated</appinfo>
|
|
904
|
+
</annotation>
|
|
905
|
+
</element>
|
|
906
|
+
<complexType name="DefinitionProxyType">
|
|
907
|
+
<annotation>
|
|
908
|
+
<appinfo>deprecated</appinfo>
|
|
909
|
+
</annotation>
|
|
910
|
+
<complexContent>
|
|
911
|
+
<extension base="gml:DefinitionType">
|
|
912
|
+
<sequence>
|
|
913
|
+
<element ref="gml:definitionRef"/>
|
|
914
|
+
</sequence>
|
|
915
|
+
</extension>
|
|
916
|
+
</complexContent>
|
|
917
|
+
</complexType>
|
|
918
|
+
<element name="definitionRef" type="gml:ReferenceType">
|
|
919
|
+
<annotation>
|
|
920
|
+
<appinfo>deprecated</appinfo>
|
|
921
|
+
</annotation>
|
|
922
|
+
</element>
|
|
923
|
+
<element name="MappingRule" type="gml:StringOrRefType">
|
|
924
|
+
<annotation>
|
|
925
|
+
<appinfo>deprecated</appinfo>
|
|
926
|
+
</annotation>
|
|
927
|
+
</element>
|
|
928
|
+
<simpleType name="IncrementOrder">
|
|
929
|
+
<annotation>
|
|
930
|
+
<appinfo>deprecated</appinfo>
|
|
931
|
+
</annotation>
|
|
932
|
+
<restriction base="string">
|
|
933
|
+
<enumeration value="+x+y"/>
|
|
934
|
+
<enumeration value="+y+x"/>
|
|
935
|
+
<enumeration value="+x-y"/>
|
|
936
|
+
<enumeration value="-x-y"/>
|
|
937
|
+
</restriction>
|
|
938
|
+
</simpleType>
|
|
939
|
+
<element name="centerOf" type="gml:PointPropertyType">
|
|
940
|
+
<annotation>
|
|
941
|
+
<appinfo>deprecated</appinfo>
|
|
942
|
+
</annotation>
|
|
943
|
+
</element>
|
|
944
|
+
<element name="position" type="gml:PointPropertyType">
|
|
945
|
+
<annotation>
|
|
946
|
+
<appinfo>deprecated</appinfo>
|
|
947
|
+
</annotation>
|
|
948
|
+
</element>
|
|
949
|
+
<element name="extentOf" type="gml:SurfacePropertyType">
|
|
950
|
+
<annotation>
|
|
951
|
+
<appinfo>deprecated</appinfo>
|
|
952
|
+
</annotation>
|
|
953
|
+
</element>
|
|
954
|
+
<element name="edgeOf" type="gml:CurvePropertyType">
|
|
955
|
+
<annotation>
|
|
956
|
+
<appinfo>deprecated</appinfo>
|
|
957
|
+
</annotation>
|
|
958
|
+
</element>
|
|
959
|
+
<element name="centerLineOf" type="gml:CurvePropertyType">
|
|
960
|
+
<annotation>
|
|
961
|
+
<appinfo>deprecated</appinfo>
|
|
962
|
+
</annotation>
|
|
963
|
+
</element>
|
|
964
|
+
<element name="multiLocation" type="gml:MultiPointPropertyType">
|
|
965
|
+
<annotation>
|
|
966
|
+
<appinfo>deprecated</appinfo>
|
|
967
|
+
</annotation>
|
|
968
|
+
</element>
|
|
969
|
+
<element name="multiCenterOf" type="gml:MultiPointPropertyType">
|
|
970
|
+
<annotation>
|
|
971
|
+
<appinfo>deprecated</appinfo>
|
|
972
|
+
</annotation>
|
|
973
|
+
</element>
|
|
974
|
+
<element name="multiPosition" type="gml:MultiPointPropertyType">
|
|
975
|
+
<annotation>
|
|
976
|
+
<appinfo>deprecated</appinfo>
|
|
977
|
+
</annotation>
|
|
978
|
+
</element>
|
|
979
|
+
<element name="multiCenterLineOf" type="gml:MultiCurvePropertyType">
|
|
980
|
+
<annotation>
|
|
981
|
+
<appinfo>deprecated</appinfo>
|
|
982
|
+
</annotation>
|
|
983
|
+
</element>
|
|
984
|
+
<element name="multiEdgeOf" type="gml:MultiCurvePropertyType">
|
|
985
|
+
<annotation>
|
|
986
|
+
<appinfo>deprecated</appinfo>
|
|
987
|
+
</annotation>
|
|
988
|
+
</element>
|
|
989
|
+
<element name="multiCoverage" type="gml:MultiSurfacePropertyType">
|
|
990
|
+
<annotation>
|
|
991
|
+
<appinfo>deprecated</appinfo>
|
|
992
|
+
</annotation>
|
|
993
|
+
</element>
|
|
994
|
+
<element name="multiExtentOf" type="gml:MultiSurfacePropertyType">
|
|
995
|
+
<annotation>
|
|
996
|
+
<appinfo>deprecated</appinfo>
|
|
997
|
+
</annotation>
|
|
998
|
+
</element>
|
|
999
|
+
<element name="polygonPatches" type="gml:SurfacePatchArrayPropertyType" substitutionGroup="gml:patches">
|
|
1000
|
+
<annotation>
|
|
1001
|
+
<appinfo>deprecated</appinfo>
|
|
1002
|
+
</annotation>
|
|
1003
|
+
</element>
|
|
1004
|
+
<element name="trianglePatches" type="gml:SurfacePatchArrayPropertyType" substitutionGroup="gml:patches">
|
|
1005
|
+
<annotation>
|
|
1006
|
+
<appinfo>deprecated</appinfo>
|
|
1007
|
+
</annotation>
|
|
1008
|
+
</element>
|
|
1009
|
+
<element name="multiPointDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
|
1010
|
+
<annotation>
|
|
1011
|
+
<appinfo>deprecated</appinfo>
|
|
1012
|
+
</annotation>
|
|
1013
|
+
</element>
|
|
1014
|
+
<element name="multiCurveDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
|
1015
|
+
<annotation>
|
|
1016
|
+
<appinfo>deprecated</appinfo>
|
|
1017
|
+
</annotation>
|
|
1018
|
+
</element>
|
|
1019
|
+
<element name="multiSurfaceDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
|
1020
|
+
<annotation>
|
|
1021
|
+
<appinfo>deprecated</appinfo>
|
|
1022
|
+
</annotation>
|
|
1023
|
+
</element>
|
|
1024
|
+
<element name="multiSolidDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
|
1025
|
+
<annotation>
|
|
1026
|
+
<appinfo>deprecated</appinfo>
|
|
1027
|
+
</annotation>
|
|
1028
|
+
</element>
|
|
1029
|
+
<element name="gridDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
|
1030
|
+
<annotation>
|
|
1031
|
+
<appinfo>deprecated</appinfo>
|
|
1032
|
+
</annotation>
|
|
1033
|
+
</element>
|
|
1034
|
+
<element name="rectifiedGridDomain" type="gml:DomainSetType" substitutionGroup="gml:domainSet">
|
|
1035
|
+
<annotation>
|
|
1036
|
+
<appinfo>deprecated</appinfo>
|
|
1037
|
+
</annotation>
|
|
1038
|
+
</element>
|
|
1039
|
+
<element name="generalOperationParameter" type="gml:AbstractGeneralOperationParameterPropertyType" substitutionGroup="gml:parameter">
|
|
1040
|
+
<annotation>
|
|
1041
|
+
<appinfo>deprecated</appinfo>
|
|
1042
|
+
</annotation>
|
|
1043
|
+
</element>
|
|
1044
|
+
<element name="MovingObjectStatus" type="gml:MovingObjectStatusType" substitutionGroup="gml:AbstractTimeSlice">
|
|
1045
|
+
<annotation>
|
|
1046
|
+
<appinfo>deprecated</appinfo>
|
|
1047
|
+
</annotation>
|
|
1048
|
+
</element>
|
|
1049
|
+
<complexType name="MovingObjectStatusType">
|
|
1050
|
+
<annotation>
|
|
1051
|
+
<appinfo>deprecated</appinfo>
|
|
1052
|
+
</annotation>
|
|
1053
|
+
<complexContent>
|
|
1054
|
+
<extension base="gml:AbstractTimeSliceType">
|
|
1055
|
+
<sequence>
|
|
1056
|
+
<choice>
|
|
1057
|
+
<element name="position" type="gml:GeometryPropertyType"/>
|
|
1058
|
+
<element ref="gml:pos"/>
|
|
1059
|
+
<element ref="gml:locationName"/>
|
|
1060
|
+
<element ref="gml:locationReference"/>
|
|
1061
|
+
<element ref="gml:location"/>
|
|
1062
|
+
</choice>
|
|
1063
|
+
<element name="speed" type="gml:MeasureType" minOccurs="0"/>
|
|
1064
|
+
<element name="bearing" type="gml:DirectionPropertyType" minOccurs="0"/>
|
|
1065
|
+
<element name="acceleration" type="gml:MeasureType" minOccurs="0"/>
|
|
1066
|
+
<element name="elevation" type="gml:MeasureType" minOccurs="0"/>
|
|
1067
|
+
<element ref="gml:status" minOccurs="0"/>
|
|
1068
|
+
<element ref="gml:statusReference" minOccurs="0"/>
|
|
1069
|
+
</sequence>
|
|
1070
|
+
</extension>
|
|
1071
|
+
</complexContent>
|
|
1072
|
+
</complexType>
|
|
1073
|
+
<element name="status" type="gml:StringOrRefType">
|
|
1074
|
+
<annotation>
|
|
1075
|
+
<appinfo>deprecated</appinfo>
|
|
1076
|
+
</annotation>
|
|
1077
|
+
</element>
|
|
1078
|
+
<element name="statusReference" type="gml:ReferenceType">
|
|
1079
|
+
<annotation>
|
|
1080
|
+
<appinfo>deprecated</appinfo>
|
|
1081
|
+
</annotation>
|
|
1082
|
+
</element>
|
|
1083
|
+
<element name="topoComplexProperty" type="gml:TopoComplexPropertyType">
|
|
1084
|
+
<annotation>
|
|
1085
|
+
<appinfo>deprecated</appinfo>
|
|
1086
|
+
</annotation>
|
|
1087
|
+
</element>
|
|
1088
|
+
<element name="multiPointProperty" type="gml:MultiPointPropertyType">
|
|
1089
|
+
<annotation>
|
|
1090
|
+
<appinfo>deprecated</appinfo>
|
|
1091
|
+
</annotation>
|
|
1092
|
+
</element>
|
|
1093
|
+
<element name="multiCurveProperty" type="gml:MultiCurvePropertyType">
|
|
1094
|
+
<annotation>
|
|
1095
|
+
<appinfo>deprecated</appinfo>
|
|
1096
|
+
</annotation>
|
|
1097
|
+
</element>
|
|
1098
|
+
<element name="multiSurfaceProperty" type="gml:MultiSurfacePropertyType">
|
|
1099
|
+
<annotation>
|
|
1100
|
+
<appinfo>deprecated</appinfo>
|
|
1101
|
+
</annotation>
|
|
1102
|
+
</element>
|
|
1103
|
+
<element name="multiSolidProperty" type="gml:MultiSolidPropertyType">
|
|
1104
|
+
<annotation>
|
|
1105
|
+
<appinfo>deprecated</appinfo>
|
|
1106
|
+
</annotation>
|
|
1107
|
+
</element>
|
|
1108
|
+
<element name="multiGeometryProperty" type="gml:MultiGeometryPropertyType">
|
|
1109
|
+
<annotation>
|
|
1110
|
+
<appinfo>deprecated</appinfo>
|
|
1111
|
+
</annotation>
|
|
1112
|
+
</element>
|
|
1113
|
+
<element name="pointArrayProperty" type="gml:PointArrayPropertyType">
|
|
1114
|
+
<annotation>
|
|
1115
|
+
<appinfo>deprecated</appinfo>
|
|
1116
|
+
</annotation>
|
|
1117
|
+
</element>
|
|
1118
|
+
<element name="curveArrayProperty" type="gml:CurveArrayPropertyType">
|
|
1119
|
+
<annotation>
|
|
1120
|
+
<appinfo>deprecated</appinfo>
|
|
1121
|
+
</annotation>
|
|
1122
|
+
</element>
|
|
1123
|
+
<element name="surfaceArrayProperty" type="gml:SurfaceArrayPropertyType">
|
|
1124
|
+
<annotation>
|
|
1125
|
+
<appinfo>deprecated</appinfo>
|
|
1126
|
+
</annotation>
|
|
1127
|
+
</element>
|
|
1128
|
+
<element name="solidArrayProperty" type="gml:SolidArrayPropertyType">
|
|
1129
|
+
<annotation>
|
|
1130
|
+
<appinfo>deprecated</appinfo>
|
|
1131
|
+
</annotation>
|
|
1132
|
+
</element>
|
|
1133
|
+
</schema>
|