MapProxy 1.16.1__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.
- mapproxy/__init__.py +0 -0
- mapproxy/cache/__init__.py +36 -0
- mapproxy/cache/azureblob.py +145 -0
- mapproxy/cache/base.py +111 -0
- mapproxy/cache/compact.py +664 -0
- mapproxy/cache/couchdb.py +295 -0
- mapproxy/cache/dummy.py +34 -0
- mapproxy/cache/file.py +185 -0
- mapproxy/cache/geopackage.py +609 -0
- mapproxy/cache/legend.py +83 -0
- mapproxy/cache/mbtiles.py +392 -0
- mapproxy/cache/meta.py +78 -0
- mapproxy/cache/path.py +250 -0
- mapproxy/cache/redis.py +88 -0
- mapproxy/cache/renderd.py +95 -0
- mapproxy/cache/riak.py +202 -0
- mapproxy/cache/s3.py +177 -0
- mapproxy/cache/tile.py +699 -0
- mapproxy/client/__init__.py +0 -0
- mapproxy/client/arcgis.py +79 -0
- mapproxy/client/cgi.py +139 -0
- mapproxy/client/http.py +315 -0
- mapproxy/client/log.py +33 -0
- mapproxy/client/tile.py +150 -0
- mapproxy/client/wms.py +254 -0
- mapproxy/compat/__init__.py +46 -0
- mapproxy/compat/image.py +79 -0
- mapproxy/compat/itertools.py +29 -0
- mapproxy/compat/modules.py +13 -0
- mapproxy/config/__init__.py +22 -0
- mapproxy/config/config.py +201 -0
- mapproxy/config/coverage.py +107 -0
- mapproxy/config/defaults.py +98 -0
- mapproxy/config/loader.py +2286 -0
- mapproxy/config/spec.py +644 -0
- mapproxy/config/validator.py +239 -0
- mapproxy/config_template/__init__.py +0 -0
- mapproxy/config_template/base_config/config.wsgi +10 -0
- mapproxy/config_template/base_config/full_example.yaml +593 -0
- mapproxy/config_template/base_config/full_seed_example.yaml +79 -0
- mapproxy/config_template/base_config/log.ini +35 -0
- mapproxy/config_template/base_config/mapproxy.yaml +60 -0
- mapproxy/config_template/base_config/seed.yaml +27 -0
- mapproxy/exception.py +142 -0
- mapproxy/featureinfo.py +252 -0
- mapproxy/grid.py +1170 -0
- mapproxy/image/__init__.py +536 -0
- mapproxy/image/fonts/DejaVuSans.ttf +0 -0
- mapproxy/image/fonts/DejaVuSansMono.ttf +0 -0
- mapproxy/image/fonts/LICENSE +99 -0
- mapproxy/image/fonts/__init__.py +0 -0
- mapproxy/image/mask.py +75 -0
- mapproxy/image/merge.py +316 -0
- mapproxy/image/message.py +347 -0
- mapproxy/image/opts.py +182 -0
- mapproxy/image/tile.py +167 -0
- mapproxy/image/transform.py +350 -0
- mapproxy/layer.py +470 -0
- mapproxy/multiapp.py +231 -0
- mapproxy/proj.py +302 -0
- mapproxy/request/__init__.py +18 -0
- mapproxy/request/arcgis.py +259 -0
- mapproxy/request/base.py +476 -0
- mapproxy/request/tile.py +128 -0
- mapproxy/request/wms/__init__.py +793 -0
- mapproxy/request/wms/exception.py +99 -0
- mapproxy/request/wmts.py +436 -0
- mapproxy/response.py +237 -0
- mapproxy/script/__init__.py +0 -0
- mapproxy/script/conf/__init__.py +0 -0
- mapproxy/script/conf/app.py +195 -0
- mapproxy/script/conf/caches.py +45 -0
- mapproxy/script/conf/layers.py +54 -0
- mapproxy/script/conf/seeds.py +37 -0
- mapproxy/script/conf/sources.py +86 -0
- mapproxy/script/conf/utils.py +143 -0
- mapproxy/script/defrag.py +184 -0
- mapproxy/script/export.py +333 -0
- mapproxy/script/grids.py +188 -0
- mapproxy/script/scales.py +126 -0
- mapproxy/script/util.py +406 -0
- mapproxy/script/wms_capabilities.py +152 -0
- mapproxy/seed/__init__.py +0 -0
- mapproxy/seed/cachelock.py +121 -0
- mapproxy/seed/cleanup.py +187 -0
- mapproxy/seed/config.py +469 -0
- mapproxy/seed/script.py +388 -0
- mapproxy/seed/seeder.py +538 -0
- mapproxy/seed/spec.py +64 -0
- mapproxy/seed/util.py +254 -0
- mapproxy/service/__init__.py +14 -0
- mapproxy/service/base.py +46 -0
- mapproxy/service/demo.py +356 -0
- mapproxy/service/kml.py +331 -0
- mapproxy/service/ows.py +38 -0
- mapproxy/service/template_helper.py +53 -0
- mapproxy/service/templates/demo/capabilities_demo.html +16 -0
- mapproxy/service/templates/demo/demo.html +181 -0
- mapproxy/service/templates/demo/openlayers-demo.cfg +16 -0
- mapproxy/service/templates/demo/static/img/blank.gif +0 -0
- mapproxy/service/templates/demo/static/img/east-mini.png +0 -0
- mapproxy/service/templates/demo/static/img/north-mini.png +0 -0
- mapproxy/service/templates/demo/static/img/south-mini.png +0 -0
- mapproxy/service/templates/demo/static/img/west-mini.png +0 -0
- mapproxy/service/templates/demo/static/img/zoom-minus-mini.png +0 -0
- mapproxy/service/templates/demo/static/img/zoom-plus-mini.png +0 -0
- mapproxy/service/templates/demo/static/img/zoom-world-mini.png +0 -0
- mapproxy/service/templates/demo/static/logo.png +0 -0
- mapproxy/service/templates/demo/static/ol.css +345 -0
- mapproxy/service/templates/demo/static/ol.js +4 -0
- mapproxy/service/templates/demo/static/proj4.min.js +1 -0
- mapproxy/service/templates/demo/static/proj4defs.js +1 -0
- mapproxy/service/templates/demo/static/site.css +137 -0
- mapproxy/service/templates/demo/static/theme/default/framedCloud.css +0 -0
- mapproxy/service/templates/demo/static/theme/default/google.css +17 -0
- mapproxy/service/templates/demo/static/theme/default/ie6-style.css +10 -0
- mapproxy/service/templates/demo/static/theme/default/style.css +482 -0
- mapproxy/service/templates/demo/static.html +34 -0
- mapproxy/service/templates/demo/tms_demo.html +103 -0
- mapproxy/service/templates/demo/wms_demo.html +140 -0
- mapproxy/service/templates/demo/wmts_demo.html +110 -0
- mapproxy/service/templates/tms_capabilities.xml +13 -0
- mapproxy/service/templates/tms_exception.xml +4 -0
- mapproxy/service/templates/tms_root_resource.xml +7 -0
- mapproxy/service/templates/tms_tilemap_capabilities.xml +14 -0
- mapproxy/service/templates/wms100capabilities.xml +112 -0
- mapproxy/service/templates/wms100exception.xml +4 -0
- mapproxy/service/templates/wms110capabilities.xml +152 -0
- mapproxy/service/templates/wms110exception.xml +5 -0
- mapproxy/service/templates/wms111capabilities.xml +183 -0
- mapproxy/service/templates/wms111exception.xml +5 -0
- mapproxy/service/templates/wms130capabilities.xml +326 -0
- mapproxy/service/templates/wms130exception.xml +8 -0
- mapproxy/service/templates/wmts100capabilities.xml +155 -0
- mapproxy/service/templates/wmts100exception.xml +9 -0
- mapproxy/service/tile.py +536 -0
- mapproxy/service/wms.py +851 -0
- mapproxy/service/wmts.py +381 -0
- mapproxy/source/__init__.py +75 -0
- mapproxy/source/arcgis.py +39 -0
- mapproxy/source/error.py +39 -0
- mapproxy/source/mapnik.py +259 -0
- mapproxy/source/tile.py +96 -0
- mapproxy/source/wms.py +270 -0
- mapproxy/srs.py +726 -0
- mapproxy/template.py +54 -0
- mapproxy/test/__init__.py +0 -0
- mapproxy/test/conftest.py +7 -0
- mapproxy/test/helper.py +247 -0
- mapproxy/test/http.py +494 -0
- mapproxy/test/image.py +210 -0
- mapproxy/test/mocker.py +2268 -0
- mapproxy/test/schemas/inspire/common/1.0/common.xsd +1461 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_bul.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_cze.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_dan.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_dut.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_eng.xsd +155 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_est.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_fin.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_fre.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_ger.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_gle.xsd +109 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_gre.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_hun.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_ita.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_lav.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_lit.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_mlt.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_pol.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_por.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_rum.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_slo.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_slv.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_spa.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/enums/enum_swe.xsd +108 -0
- mapproxy/test/schemas/inspire/common/1.0/network.xsd +521 -0
- mapproxy/test/schemas/inspire/inspire_vs/1.0/inspire_vs.xsd +19 -0
- mapproxy/test/schemas/kml/2.2.0/ReadMe.txt +14 -0
- mapproxy/test/schemas/kml/2.2.0/atom-author-link.xsd +66 -0
- mapproxy/test/schemas/kml/2.2.0/ogckml22.xsd +1646 -0
- mapproxy/test/schemas/kml/2.2.0/xAL.xsd +1680 -0
- mapproxy/test/schemas/ows/1.1.0/ReadMe.txt +87 -0
- mapproxy/test/schemas/ows/1.1.0/ows19115subset.xsd +235 -0
- mapproxy/test/schemas/ows/1.1.0/owsAll.xsd +23 -0
- mapproxy/test/schemas/ows/1.1.0/owsCommon.xsd +157 -0
- mapproxy/test/schemas/ows/1.1.0/owsContents.xsd +86 -0
- mapproxy/test/schemas/ows/1.1.0/owsDataIdentification.xsd +127 -0
- mapproxy/test/schemas/ows/1.1.0/owsDomainType.xsd +279 -0
- mapproxy/test/schemas/ows/1.1.0/owsExceptionReport.xsd +76 -0
- mapproxy/test/schemas/ows/1.1.0/owsGetCapabilities.xsd +112 -0
- mapproxy/test/schemas/ows/1.1.0/owsGetResourceByID.xsd +51 -0
- mapproxy/test/schemas/ows/1.1.0/owsInputOutputData.xsd +59 -0
- mapproxy/test/schemas/ows/1.1.0/owsManifest.xsd +125 -0
- mapproxy/test/schemas/ows/1.1.0/owsOperationsMetadata.xsd +140 -0
- mapproxy/test/schemas/ows/1.1.0/owsServiceIdentification.xsd +60 -0
- mapproxy/test/schemas/ows/1.1.0/owsServiceProvider.xsd +47 -0
- mapproxy/test/schemas/sld/1.1.0/sld_capabilities.xsd +27 -0
- mapproxy/test/schemas/wms/1.0.0/capabilities_1_0_0.dtd +353 -0
- mapproxy/test/schemas/wms/1.0.0/capabilities_1_0_0.xml +188 -0
- mapproxy/test/schemas/wms/1.0.7/capabilities_1_0_7.dtd +524 -0
- mapproxy/test/schemas/wms/1.0.7/capabilities_1_0_7.xml +260 -0
- mapproxy/test/schemas/wms/1.1.0/capabilities_1_1_0.dtd +273 -0
- mapproxy/test/schemas/wms/1.1.0/capabilities_1_1_0.xml +303 -0
- mapproxy/test/schemas/wms/1.1.0/exception_1_1_0.dtd +6 -0
- mapproxy/test/schemas/wms/1.1.0/exception_1_1_0.xml +33 -0
- mapproxy/test/schemas/wms/1.1.1/OGC-exception.xsd +68 -0
- mapproxy/test/schemas/wms/1.1.1/WMS_DescribeLayerResponse.dtd +22 -0
- mapproxy/test/schemas/wms/1.1.1/WMS_MS_Capabilities.dtd +274 -0
- mapproxy/test/schemas/wms/1.1.1/WMS_exception_1_1_1.dtd +5 -0
- mapproxy/test/schemas/wms/1.1.1/capabilities_1_1_1.dtd +276 -0
- mapproxy/test/schemas/wms/1.1.1/capabilities_1_1_1.xml +303 -0
- mapproxy/test/schemas/wms/1.1.1/exception_1_1_1.dtd +6 -0
- mapproxy/test/schemas/wms/1.1.1/exception_1_1_1.xml +33 -0
- mapproxy/test/schemas/wms/1.3.0/ReadMe.txt +8 -0
- mapproxy/test/schemas/wms/1.3.0/capabilities_1_3_0.xml +277 -0
- mapproxy/test/schemas/wms/1.3.0/capabilities_1_3_0.xsd +611 -0
- mapproxy/test/schemas/wms/1.3.0/exceptions_1_3_0.xml +34 -0
- mapproxy/test/schemas/wms/1.3.0/exceptions_1_3_0.xsd +28 -0
- mapproxy/test/schemas/wmsc/1.1.1/OGC-exception.xsd +68 -0
- mapproxy/test/schemas/wmsc/1.1.1/WMS_DescribeLayerResponse.dtd +22 -0
- mapproxy/test/schemas/wmsc/1.1.1/WMS_MS_Capabilities.dtd +283 -0
- mapproxy/test/schemas/wmsc/1.1.1/WMS_exception_1_1_1.dtd +5 -0
- mapproxy/test/schemas/wmsc/1.1.1/capabilities_1_1_1.dtd +276 -0
- mapproxy/test/schemas/wmsc/1.1.1/capabilities_1_1_1.xml +303 -0
- mapproxy/test/schemas/wmsc/1.1.1/exception_1_1_1.dtd +6 -0
- mapproxy/test/schemas/wmsc/1.1.1/exception_1_1_1.xml +33 -0
- mapproxy/test/schemas/wmts/1.0/ReadMe.txt +32 -0
- mapproxy/test/schemas/wmts/1.0/wmts.xsd +28 -0
- mapproxy/test/schemas/wmts/1.0/wmtsAbstract.wsdl +151 -0
- mapproxy/test/schemas/wmts/1.0/wmtsGetCapabilities_request.xsd +38 -0
- mapproxy/test/schemas/wmts/1.0/wmtsGetCapabilities_response.xsd +564 -0
- mapproxy/test/schemas/wmts/1.0/wmtsGetFeatureInfo_request.xsd +57 -0
- mapproxy/test/schemas/wmts/1.0/wmtsGetFeatureInfo_response.xsd +72 -0
- mapproxy/test/schemas/wmts/1.0/wmtsGetTile_request.xsd +91 -0
- mapproxy/test/schemas/wmts/1.0/wmtsKVP.xsd +76 -0
- mapproxy/test/schemas/wmts/1.0/wmtsPayload_response.xsd +70 -0
- mapproxy/test/schemas/xlink/1.0.0/ReadMe.txt +6 -0
- mapproxy/test/schemas/xlink/1.0.0/xlinks.xsd +122 -0
- mapproxy/test/schemas/xml.xsd +287 -0
- mapproxy/test/system/__init__.py +98 -0
- mapproxy/test/system/fixture/arcgis.yaml +57 -0
- mapproxy/test/system/fixture/auth.yaml +70 -0
- mapproxy/test/system/fixture/cache.mbtiles +0 -0
- mapproxy/test/system/fixture/cache_azureblob.yaml +59 -0
- mapproxy/test/system/fixture/cache_band_merge.yaml +73 -0
- mapproxy/test/system/fixture/cache_bulk_meta_tiles.yaml +24 -0
- mapproxy/test/system/fixture/cache_data/dop_cache_EPSG3857/00/000/000/000/000/000/000.png +0 -0
- mapproxy/test/system/fixture/cache_data/wms_cache_EPSG900913/01/000/000/000/000/000/001.jpeg +0 -0
- mapproxy/test/system/fixture/cache_data/wms_cache_transparent_EPSG900913/01/000/000/000/000/000/001.png +0 -0
- mapproxy/test/system/fixture/cache_geopackage.yaml +56 -0
- mapproxy/test/system/fixture/cache_grid_names.yaml +50 -0
- mapproxy/test/system/fixture/cache_mbtiles.yaml +28 -0
- mapproxy/test/system/fixture/cache_s3.yaml +58 -0
- mapproxy/test/system/fixture/cache_source.yaml +81 -0
- mapproxy/test/system/fixture/combined_sources.yaml +130 -0
- mapproxy/test/system/fixture/coverage.yaml +77 -0
- mapproxy/test/system/fixture/demo.yaml +135 -0
- mapproxy/test/system/fixture/dimension.yaml +59 -0
- mapproxy/test/system/fixture/disable_storage.yaml +25 -0
- mapproxy/test/system/fixture/empty_ogrdata.geojson +1 -0
- mapproxy/test/system/fixture/formats.yaml +72 -0
- mapproxy/test/system/fixture/inspire.yaml +101 -0
- mapproxy/test/system/fixture/inspire_full.yaml +124 -0
- mapproxy/test/system/fixture/kml_layer.yaml +66 -0
- mapproxy/test/system/fixture/layer.yaml +260 -0
- mapproxy/test/system/fixture/layergroups.yaml +57 -0
- mapproxy/test/system/fixture/layergroups_root.yaml +106 -0
- mapproxy/test/system/fixture/legendgraphic.yaml +93 -0
- mapproxy/test/system/fixture/mapnik_source.yaml +66 -0
- mapproxy/test/system/fixture/mapproxy_export.yaml +12 -0
- mapproxy/test/system/fixture/mapserver.yaml +23 -0
- mapproxy/test/system/fixture/minimal_cgi.py +16 -0
- mapproxy/test/system/fixture/mixed_mode.yaml +49 -0
- mapproxy/test/system/fixture/multi_cache_layers.yaml +100 -0
- mapproxy/test/system/fixture/multiapp1.yaml +20 -0
- mapproxy/test/system/fixture/multiapp2.yaml +19 -0
- mapproxy/test/system/fixture/renderd_client.yaml +55 -0
- mapproxy/test/system/fixture/scalehints.yaml +70 -0
- mapproxy/test/system/fixture/seed.yaml +94 -0
- mapproxy/test/system/fixture/seed_mapproxy.yaml +39 -0
- mapproxy/test/system/fixture/seed_old.yaml +12 -0
- mapproxy/test/system/fixture/seed_timeouts.yaml +12 -0
- mapproxy/test/system/fixture/seed_timeouts_mapproxy.yaml +27 -0
- mapproxy/test/system/fixture/seedonly.yaml +51 -0
- mapproxy/test/system/fixture/sld.yaml +35 -0
- mapproxy/test/system/fixture/source_errors.yaml +84 -0
- mapproxy/test/system/fixture/source_errors_raise.yaml +82 -0
- mapproxy/test/system/fixture/tileservice_origin.yaml +26 -0
- mapproxy/test/system/fixture/tileservice_refresh.yaml +59 -0
- mapproxy/test/system/fixture/tilesource_minmax_res.yaml +22 -0
- mapproxy/test/system/fixture/util-conf-base-grids.yaml +5 -0
- mapproxy/test/system/fixture/util-conf-overwrite.yaml +13 -0
- mapproxy/test/system/fixture/util-conf-wms-111-cap.xml +90 -0
- mapproxy/test/system/fixture/util_grids.yaml +30 -0
- mapproxy/test/system/fixture/util_wms_capabilities111.xml +130 -0
- mapproxy/test/system/fixture/util_wms_capabilities130.xml +100 -0
- mapproxy/test/system/fixture/util_wms_capabilities_service_exception.xml +5 -0
- mapproxy/test/system/fixture/watermark.yaml +50 -0
- mapproxy/test/system/fixture/wms_srs_extent.yaml +39 -0
- mapproxy/test/system/fixture/wms_versions.yaml +38 -0
- mapproxy/test/system/fixture/wmts.yaml +134 -0
- mapproxy/test/system/fixture/wmts_dimensions.yaml +57 -0
- mapproxy/test/system/fixture/xslt_featureinfo.yaml +54 -0
- mapproxy/test/system/fixture/xslt_featureinfo_input.yaml +51 -0
- mapproxy/test/system/test_arcgis.py +156 -0
- mapproxy/test/system/test_auth.py +1134 -0
- mapproxy/test/system/test_behind_proxy.py +75 -0
- mapproxy/test/system/test_bulk_meta_tiles.py +106 -0
- mapproxy/test/system/test_cache_azureblob.py +127 -0
- mapproxy/test/system/test_cache_band_merge.py +103 -0
- mapproxy/test/system/test_cache_geopackage.py +144 -0
- mapproxy/test/system/test_cache_grid_names.py +89 -0
- mapproxy/test/system/test_cache_mbtiles.py +85 -0
- mapproxy/test/system/test_cache_s3.py +115 -0
- mapproxy/test/system/test_cache_source.py +146 -0
- mapproxy/test/system/test_combined_sources.py +335 -0
- mapproxy/test/system/test_coverage.py +140 -0
- mapproxy/test/system/test_decorate_img.py +214 -0
- mapproxy/test/system/test_demo.py +106 -0
- mapproxy/test/system/test_demo_with_extra_service.py +53 -0
- mapproxy/test/system/test_dimensions.py +278 -0
- mapproxy/test/system/test_disable_storage.py +42 -0
- mapproxy/test/system/test_formats.py +219 -0
- mapproxy/test/system/test_inspire_vs.py +173 -0
- mapproxy/test/system/test_kml.py +262 -0
- mapproxy/test/system/test_layergroups.py +160 -0
- mapproxy/test/system/test_legendgraphic.py +308 -0
- mapproxy/test/system/test_mapnik.py +161 -0
- mapproxy/test/system/test_mapserver.py +81 -0
- mapproxy/test/system/test_mixed_mode_format.py +195 -0
- mapproxy/test/system/test_multi_cache_layers.py +167 -0
- mapproxy/test/system/test_multiapp.py +92 -0
- mapproxy/test/system/test_refresh.py +207 -0
- mapproxy/test/system/test_renderd_client.py +304 -0
- mapproxy/test/system/test_response_headers.py +54 -0
- mapproxy/test/system/test_scalehints.py +140 -0
- mapproxy/test/system/test_seed.py +422 -0
- mapproxy/test/system/test_seed_only.py +93 -0
- mapproxy/test/system/test_sld.py +120 -0
- mapproxy/test/system/test_source_errors.py +377 -0
- mapproxy/test/system/test_tilesource_minmax_res.py +54 -0
- mapproxy/test/system/test_tms.py +276 -0
- mapproxy/test/system/test_tms_origin.py +46 -0
- mapproxy/test/system/test_util_conf.py +304 -0
- mapproxy/test/system/test_util_export.py +210 -0
- mapproxy/test/system/test_util_grids.py +88 -0
- mapproxy/test/system/test_util_wms_capabilities.py +182 -0
- mapproxy/test/system/test_watermark.py +91 -0
- mapproxy/test/system/test_wms.py +1611 -0
- mapproxy/test/system/test_wms_srs_extent.py +165 -0
- mapproxy/test/system/test_wms_version.py +85 -0
- mapproxy/test/system/test_wmsc.py +116 -0
- mapproxy/test/system/test_wmts.py +334 -0
- mapproxy/test/system/test_wmts_dimensions.py +206 -0
- mapproxy/test/system/test_wmts_restful.py +198 -0
- mapproxy/test/system/test_xslt_featureinfo.py +425 -0
- mapproxy/test/test_http_helper.py +219 -0
- mapproxy/test/unit/__init__.py +0 -0
- mapproxy/test/unit/epsg +2 -0
- mapproxy/test/unit/polygons/polygons.dbf +0 -0
- mapproxy/test/unit/polygons/polygons.shp +0 -0
- mapproxy/test/unit/polygons/polygons.shx +0 -0
- mapproxy/test/unit/test_async.py +245 -0
- mapproxy/test/unit/test_auth.py +419 -0
- mapproxy/test/unit/test_cache.py +1193 -0
- mapproxy/test/unit/test_cache_azureblob.py +94 -0
- mapproxy/test/unit/test_cache_compact.py +319 -0
- mapproxy/test/unit/test_cache_couchdb.py +114 -0
- mapproxy/test/unit/test_cache_geopackage.py +221 -0
- mapproxy/test/unit/test_cache_redis.py +67 -0
- mapproxy/test/unit/test_cache_riak.py +76 -0
- mapproxy/test/unit/test_cache_s3.py +84 -0
- mapproxy/test/unit/test_cache_tile.py +427 -0
- mapproxy/test/unit/test_client.py +479 -0
- mapproxy/test/unit/test_client_arcgis.py +73 -0
- mapproxy/test/unit/test_client_cgi.py +136 -0
- mapproxy/test/unit/test_collections.py +116 -0
- mapproxy/test/unit/test_concat_legends.py +37 -0
- mapproxy/test/unit/test_conf_loader.py +1061 -0
- mapproxy/test/unit/test_conf_validator.py +416 -0
- mapproxy/test/unit/test_config.py +117 -0
- mapproxy/test/unit/test_decorate_img.py +185 -0
- mapproxy/test/unit/test_exceptions.py +258 -0
- mapproxy/test/unit/test_featureinfo.py +291 -0
- mapproxy/test/unit/test_file_lock_load.py +49 -0
- mapproxy/test/unit/test_geom.py +503 -0
- mapproxy/test/unit/test_grid.py +1258 -0
- mapproxy/test/unit/test_image.py +1053 -0
- mapproxy/test/unit/test_image_mask.py +181 -0
- mapproxy/test/unit/test_image_messages.py +197 -0
- mapproxy/test/unit/test_image_options.py +160 -0
- mapproxy/test/unit/test_isodate.py +122 -0
- mapproxy/test/unit/test_multiapp.py +163 -0
- mapproxy/test/unit/test_ogr_reader.py +50 -0
- mapproxy/test/unit/test_request.py +745 -0
- mapproxy/test/unit/test_request_wmts.py +178 -0
- mapproxy/test/unit/test_response.py +79 -0
- mapproxy/test/unit/test_seed.py +365 -0
- mapproxy/test/unit/test_seed_cachelock.py +90 -0
- mapproxy/test/unit/test_srs.py +215 -0
- mapproxy/test/unit/test_tiled_source.py +122 -0
- mapproxy/test/unit/test_tilefilter.py +31 -0
- mapproxy/test/unit/test_times.py +25 -0
- mapproxy/test/unit/test_timeutils.py +50 -0
- mapproxy/test/unit/test_util_conf_utils.py +75 -0
- mapproxy/test/unit/test_utils.py +476 -0
- mapproxy/test/unit/test_wms_capabilities.py +44 -0
- mapproxy/test/unit/test_wms_layer.py +113 -0
- mapproxy/test/unit/test_yaml.py +69 -0
- mapproxy/tilefilter.py +59 -0
- mapproxy/util/__init__.py +0 -0
- mapproxy/util/async_.py +227 -0
- mapproxy/util/collections.py +132 -0
- mapproxy/util/coverage.py +329 -0
- mapproxy/util/escape.py +10 -0
- mapproxy/util/ext/__init__.py +14 -0
- mapproxy/util/ext/dictspec/__init__.py +1 -0
- mapproxy/util/ext/dictspec/spec.py +124 -0
- mapproxy/util/ext/dictspec/test/__init__.py +0 -0
- mapproxy/util/ext/dictspec/test/test_validator.py +274 -0
- mapproxy/util/ext/dictspec/validator.py +189 -0
- mapproxy/util/ext/local.py +196 -0
- mapproxy/util/ext/lockfile.py +138 -0
- mapproxy/util/ext/odict.py +330 -0
- mapproxy/util/ext/serving.py +508 -0
- mapproxy/util/ext/tempita/__init__.py +1174 -0
- mapproxy/util/ext/tempita/_looper.py +163 -0
- mapproxy/util/ext/tempita/compat3.py +46 -0
- mapproxy/util/ext/wmsparse/__init__.py +3 -0
- mapproxy/util/ext/wmsparse/duration.py +597 -0
- mapproxy/util/ext/wmsparse/parse.py +305 -0
- mapproxy/util/ext/wmsparse/test/__init__.py +0 -0
- mapproxy/util/ext/wmsparse/test/test_parse.py +162 -0
- mapproxy/util/ext/wmsparse/test/test_util.py +23 -0
- mapproxy/util/ext/wmsparse/test/wms-large-111.xml +2114 -0
- mapproxy/util/ext/wmsparse/test/wms-omniscale-111.xml +90 -0
- mapproxy/util/ext/wmsparse/test/wms-omniscale-130.xml +120 -0
- mapproxy/util/ext/wmsparse/test/wms_nasa_cap.xml +386 -0
- mapproxy/util/ext/wmsparse/util.py +187 -0
- mapproxy/util/fs.py +156 -0
- mapproxy/util/geom.py +295 -0
- mapproxy/util/lib.py +115 -0
- mapproxy/util/lock.py +163 -0
- mapproxy/util/ogr.py +231 -0
- mapproxy/util/py.py +81 -0
- mapproxy/util/times.py +75 -0
- mapproxy/util/yaml.py +56 -0
- mapproxy/version.py +31 -0
- mapproxy/wsgiapp.py +164 -0
- mapproxy-1.16.1.dist-info/METADATA +151 -0
- mapproxy-1.16.1.dist-info/RECORD +458 -0
- mapproxy-1.16.1.dist-info/WHEEL +5 -0
- mapproxy-1.16.1.dist-info/entry_points.txt +3 -0
- mapproxy-1.16.1.dist-info/licenses/AUTHORS.txt +33 -0
- mapproxy-1.16.1.dist-info/licenses/COPYING.txt +60 -0
- mapproxy-1.16.1.dist-info/licenses/LICENSE.txt +202 -0
- mapproxy-1.16.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,1461 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://inspire.ec.europa.eu/schemas/common/1.0" xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" targetNamespace="http://inspire.ec.europa.eu/schemas/common/1.0" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0.1" jaxb:version="2.0">
|
|
3
|
+
<!--
|
|
4
|
+
26-APR-2011 1.0.1 Conformity element:
|
|
5
|
+
Restricted allowed citations to "INSPIRE interoperability of spatial data sets and services", according to the MD regulation,
|
|
6
|
+
requirements for the conformity element (page 17 of the MD regulation).
|
|
7
|
+
Inspire Themes:
|
|
8
|
+
Removed leading blank for German, Bulgarian, Czech and Danish translations
|
|
9
|
+
18-FEB-2011 Added types for encoding for Language Elements in Network Services
|
|
10
|
+
05-FEB-2011 Added comment to classificationOfSpatialDataService
|
|
11
|
+
04-FEB-2011 Renamed codelists as enumerations. No change required in exsiting xml documents.
|
|
12
|
+
02-FEB-2011 Refactored originating controlled vocabulary to derive from citation. No change required in exsiting xml documents.
|
|
13
|
+
31-JAN-2011 Removed language dependent schema implementations. This is now the top schema file.
|
|
14
|
+
-->
|
|
15
|
+
<xs:annotation>
|
|
16
|
+
<xs:appinfo>
|
|
17
|
+
<jaxb:globalBindings typesafeEnumMaxMembers="1000"/>
|
|
18
|
+
</xs:appinfo>
|
|
19
|
+
</xs:annotation>
|
|
20
|
+
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="../../../xml.xsd"/>
|
|
21
|
+
<xs:include schemaLocation="network.xsd"/>
|
|
22
|
+
<!--Load language dependent types-->
|
|
23
|
+
<xs:include schemaLocation="enums/enum_bul.xsd"/>
|
|
24
|
+
<xs:include schemaLocation="enums/enum_cze.xsd"/>
|
|
25
|
+
<xs:include schemaLocation="enums/enum_dan.xsd"/>
|
|
26
|
+
<xs:include schemaLocation="enums/enum_dut.xsd"/>
|
|
27
|
+
<xs:include schemaLocation="enums/enum_eng.xsd"/>
|
|
28
|
+
<xs:include schemaLocation="enums/enum_est.xsd"/>
|
|
29
|
+
<xs:include schemaLocation="enums/enum_fin.xsd"/>
|
|
30
|
+
<xs:include schemaLocation="enums/enum_fre.xsd"/>
|
|
31
|
+
<xs:include schemaLocation="enums/enum_ger.xsd"/>
|
|
32
|
+
<xs:include schemaLocation="enums/enum_gle.xsd"/>
|
|
33
|
+
<xs:include schemaLocation="enums/enum_gre.xsd"/>
|
|
34
|
+
<xs:include schemaLocation="enums/enum_hun.xsd"/>
|
|
35
|
+
<xs:include schemaLocation="enums/enum_ita.xsd"/>
|
|
36
|
+
<xs:include schemaLocation="enums/enum_lav.xsd"/>
|
|
37
|
+
<xs:include schemaLocation="enums/enum_lit.xsd"/>
|
|
38
|
+
<xs:include schemaLocation="enums/enum_mlt.xsd"/>
|
|
39
|
+
<xs:include schemaLocation="enums/enum_pol.xsd"/>
|
|
40
|
+
<xs:include schemaLocation="enums/enum_por.xsd"/>
|
|
41
|
+
<xs:include schemaLocation="enums/enum_rum.xsd"/>
|
|
42
|
+
<xs:include schemaLocation="enums/enum_slo.xsd"/>
|
|
43
|
+
<xs:include schemaLocation="enums/enum_slv.xsd"/>
|
|
44
|
+
<xs:include schemaLocation="enums/enum_spa.xsd"/>
|
|
45
|
+
<xs:include schemaLocation="enums/enum_swe.xsd"/>
|
|
46
|
+
<xs:element name="SpatialDataService" type="service"/>
|
|
47
|
+
<xs:element name="SpatialDataSet" type="dataset"/>
|
|
48
|
+
<xs:element name="SpatialDataSetSeries" type="series"/>
|
|
49
|
+
<!--TBD
|
|
50
|
+
<xs:element name="INSPIREResource" type="resource">
|
|
51
|
+
</xs:element>
|
|
52
|
+
-->
|
|
53
|
+
<!--Types-->
|
|
54
|
+
<xs:complexType name="resource" abstract="true">
|
|
55
|
+
<xs:sequence>
|
|
56
|
+
<xs:element name="ResourceTitle" type="notEmptyString"/>
|
|
57
|
+
<xs:element name="ResourceAbstract" type="notEmptyString"/>
|
|
58
|
+
<xs:element name="ResourceType" type="resourceType"/>
|
|
59
|
+
<xs:element name="ResourceLocator" type="resourceLocatorType" minOccurs="0" maxOccurs="unbounded">
|
|
60
|
+
<xs:annotation>
|
|
61
|
+
<xs:documentation xml:lang="en">Mandatory if a URL is available to obtain more information on
|
|
62
|
+
the resource, and/or access related services.</xs:documentation>
|
|
63
|
+
</xs:annotation>
|
|
64
|
+
</xs:element>
|
|
65
|
+
<xs:element name="MandatoryKeyword" type="keyword" minOccurs="1" maxOccurs="unbounded"/>
|
|
66
|
+
<xs:element name="Keyword" type="keyword" minOccurs="0" maxOccurs="unbounded">
|
|
67
|
+
<xs:annotation>
|
|
68
|
+
<xs:documentation xml:lang="en">If a resource is a spatial data set or spatial data set series, at least one keyword shall be provided from the general environmental multilingual thesaurus (GEMET) describing the relevant spatial data theme as defined in Annex I, II or III to Directive 2007/2/EC.</xs:documentation>
|
|
69
|
+
</xs:annotation>
|
|
70
|
+
</xs:element>
|
|
71
|
+
<xs:element name="GeographicBoundingBox" type="geographicBoundingBox" minOccurs="0" maxOccurs="unbounded"/>
|
|
72
|
+
<xs:element name="TemporalReference" type="temporalReference" maxOccurs="unbounded"/>
|
|
73
|
+
<xs:element name="SpatialResolution" type="spatialResolution" minOccurs="0" maxOccurs="unbounded">
|
|
74
|
+
<xs:annotation>
|
|
75
|
+
<xs:documentation xml:lang="en">Mandatory when there is a restriction on the spatial resolution for this service.</xs:documentation>
|
|
76
|
+
</xs:annotation>
|
|
77
|
+
</xs:element>
|
|
78
|
+
<xs:element name="Conformity" type="conformity" maxOccurs="unbounded"/>
|
|
79
|
+
<xs:element name="ConditionsForAccessAndUse" type="notEmptyString" maxOccurs="unbounded"/>
|
|
80
|
+
<xs:element name="LimitationsOnPublicAccess" type="notEmptyString" maxOccurs="unbounded"/>
|
|
81
|
+
<xs:element name="ResponsibleOrganisation" type="responsibleOrganisation" maxOccurs="unbounded"/>
|
|
82
|
+
<xs:element name="MetadataPointOfContact" type="metadataPointOfContact" maxOccurs="unbounded"/>
|
|
83
|
+
<xs:element name="MetadataDate" type="iso8601Date"/>
|
|
84
|
+
<xs:element name="MetadataLanguage" type="euLanguageISO6392B"/>
|
|
85
|
+
</xs:sequence>
|
|
86
|
+
<xs:attribute ref="xml:lang"/>
|
|
87
|
+
</xs:complexType>
|
|
88
|
+
<xs:complexType name="data" abstract="true">
|
|
89
|
+
<xs:complexContent>
|
|
90
|
+
<xs:extension base="resource">
|
|
91
|
+
<xs:sequence>
|
|
92
|
+
<xs:element name="UniqueResourceIdentifier" type="uniqueResourceIdentifier" minOccurs="1" maxOccurs="unbounded"/>
|
|
93
|
+
<xs:element name="ResourceLanguage" type="languageISO6392B" minOccurs="0" maxOccurs="unbounded">
|
|
94
|
+
<xs:annotation>
|
|
95
|
+
<xs:documentation xml:lang="en">Mandatory if the resource includes textual information.</xs:documentation>
|
|
96
|
+
</xs:annotation>
|
|
97
|
+
</xs:element>
|
|
98
|
+
<xs:element name="TopicCategory" type="topicCategory" maxOccurs="unbounded"/>
|
|
99
|
+
<xs:element name="Lineage" type="notEmptyString"/>
|
|
100
|
+
</xs:sequence>
|
|
101
|
+
</xs:extension>
|
|
102
|
+
</xs:complexContent>
|
|
103
|
+
</xs:complexType>
|
|
104
|
+
<xs:complexType name="dataset">
|
|
105
|
+
<xs:complexContent>
|
|
106
|
+
<xs:restriction base="data">
|
|
107
|
+
<xs:sequence>
|
|
108
|
+
<xs:element name="ResourceTitle" type="notEmptyString"/>
|
|
109
|
+
<xs:element name="ResourceAbstract" type="notEmptyString"/>
|
|
110
|
+
<xs:element name="ResourceType">
|
|
111
|
+
<xs:simpleType>
|
|
112
|
+
<xs:restriction base="resourceType">
|
|
113
|
+
<xs:enumeration value="dataset"/>
|
|
114
|
+
</xs:restriction>
|
|
115
|
+
</xs:simpleType>
|
|
116
|
+
</xs:element>
|
|
117
|
+
<xs:element name="ResourceLocator" type="resourceLocatorType" minOccurs="0" maxOccurs="unbounded">
|
|
118
|
+
<xs:annotation>
|
|
119
|
+
<xs:documentation xml:lang="en">Mandatory if a URL is available to obtain more information on
|
|
120
|
+
the resource, and/or access related services.</xs:documentation>
|
|
121
|
+
</xs:annotation>
|
|
122
|
+
</xs:element>
|
|
123
|
+
<xs:element name="MandatoryKeyword" type="inspireTheme" minOccurs="1" maxOccurs="unbounded"/>
|
|
124
|
+
<xs:element name="Keyword" type="keyword" minOccurs="0" maxOccurs="unbounded">
|
|
125
|
+
<xs:annotation>
|
|
126
|
+
<xs:documentation xml:lang="en">If a resource is a spatial data set or spatial data set series, at least one keyword shall be provided from the general environmental multilingual thesaurus (GEMET) describing the relevant spatial data theme as defined in Annex I, II or III to Directive 2007/2/EC.</xs:documentation>
|
|
127
|
+
</xs:annotation>
|
|
128
|
+
</xs:element>
|
|
129
|
+
<xs:element name="GeographicBoundingBox" type="geographicBoundingBox" maxOccurs="unbounded"/>
|
|
130
|
+
<xs:element name="TemporalReference" type="temporalReference" maxOccurs="unbounded"/>
|
|
131
|
+
<xs:element name="SpatialResolution" type="spatialResolution" minOccurs="0" maxOccurs="unbounded">
|
|
132
|
+
<xs:annotation>
|
|
133
|
+
<xs:documentation xml:lang="en">Mandatory when there is a restriction on the spatial resolution for this service.</xs:documentation>
|
|
134
|
+
</xs:annotation>
|
|
135
|
+
</xs:element>
|
|
136
|
+
<xs:element name="Conformity" type="conformity" maxOccurs="unbounded"/>
|
|
137
|
+
<xs:element name="ConditionsForAccessAndUse" type="notEmptyString" maxOccurs="unbounded"/>
|
|
138
|
+
<xs:element name="LimitationsOnPublicAccess" type="notEmptyString" maxOccurs="unbounded"/>
|
|
139
|
+
<xs:element name="ResponsibleOrganisation" type="responsibleOrganisation" maxOccurs="unbounded"/>
|
|
140
|
+
<xs:element name="MetadataPointOfContact" type="metadataPointOfContact" maxOccurs="unbounded"/>
|
|
141
|
+
<xs:element name="MetadataDate" type="iso8601Date"/>
|
|
142
|
+
<xs:element name="MetadataLanguage" type="euLanguageISO6392B"/>
|
|
143
|
+
<xs:element name="UniqueResourceIdentifier" type="uniqueResourceIdentifier" minOccurs="1" maxOccurs="unbounded"/>
|
|
144
|
+
<xs:element name="ResourceLanguage" type="languageISO6392B" minOccurs="0" maxOccurs="unbounded">
|
|
145
|
+
<xs:annotation>
|
|
146
|
+
<xs:documentation xml:lang="en">Mandatory if the resource includes textual information.</xs:documentation>
|
|
147
|
+
</xs:annotation>
|
|
148
|
+
</xs:element>
|
|
149
|
+
<xs:element name="TopicCategory" type="topicCategory" maxOccurs="unbounded"/>
|
|
150
|
+
<xs:element name="Lineage" type="notEmptyString"/>
|
|
151
|
+
</xs:sequence>
|
|
152
|
+
</xs:restriction>
|
|
153
|
+
</xs:complexContent>
|
|
154
|
+
</xs:complexType>
|
|
155
|
+
<xs:complexType name="series">
|
|
156
|
+
<xs:complexContent>
|
|
157
|
+
<xs:restriction base="data">
|
|
158
|
+
<xs:sequence>
|
|
159
|
+
<xs:element name="ResourceTitle" type="notEmptyString"/>
|
|
160
|
+
<xs:element name="ResourceAbstract" type="notEmptyString"/>
|
|
161
|
+
<xs:element name="ResourceType">
|
|
162
|
+
<xs:simpleType>
|
|
163
|
+
<xs:restriction base="resourceType">
|
|
164
|
+
<xs:enumeration value="series"/>
|
|
165
|
+
</xs:restriction>
|
|
166
|
+
</xs:simpleType>
|
|
167
|
+
</xs:element>
|
|
168
|
+
<xs:element name="ResourceLocator" type="resourceLocatorType" minOccurs="0" maxOccurs="unbounded">
|
|
169
|
+
<xs:annotation>
|
|
170
|
+
<xs:documentation xml:lang="en">Mandatory if a URL is available to obtain more information on
|
|
171
|
+
the resource, and/or access related services.</xs:documentation>
|
|
172
|
+
</xs:annotation>
|
|
173
|
+
</xs:element>
|
|
174
|
+
<xs:element name="MandatoryKeyword" type="inspireTheme" minOccurs="1" maxOccurs="unbounded"/>
|
|
175
|
+
<xs:element name="Keyword" type="keyword" minOccurs="0" maxOccurs="unbounded">
|
|
176
|
+
<xs:annotation>
|
|
177
|
+
<xs:documentation xml:lang="en">If a resource is a spatial data set or spatial data set series, at least one keyword shall be provided from the general environmental multilingual thesaurus (GEMET) describing the relevant spatial data theme as defined in Annex I, II or III to Directive 2007/2/EC.</xs:documentation>
|
|
178
|
+
</xs:annotation>
|
|
179
|
+
</xs:element>
|
|
180
|
+
<xs:element name="GeographicBoundingBox" type="geographicBoundingBox" maxOccurs="unbounded"/>
|
|
181
|
+
<xs:element name="TemporalReference" type="temporalReference" maxOccurs="unbounded"/>
|
|
182
|
+
<xs:element name="SpatialResolution" type="spatialResolution" minOccurs="0" maxOccurs="unbounded">
|
|
183
|
+
<xs:annotation>
|
|
184
|
+
<xs:documentation xml:lang="en">Mandatory when there is a restriction on the spatial resolution for this service.</xs:documentation>
|
|
185
|
+
</xs:annotation>
|
|
186
|
+
</xs:element>
|
|
187
|
+
<xs:element name="Conformity" type="conformity" maxOccurs="unbounded"/>
|
|
188
|
+
<xs:element name="ConditionsForAccessAndUse" type="notEmptyString" maxOccurs="unbounded"/>
|
|
189
|
+
<xs:element name="LimitationsOnPublicAccess" type="notEmptyString" maxOccurs="unbounded"/>
|
|
190
|
+
<xs:element name="ResponsibleOrganisation" type="responsibleOrganisation" maxOccurs="unbounded"/>
|
|
191
|
+
<xs:element name="MetadataPointOfContact" type="metadataPointOfContact" maxOccurs="unbounded"/>
|
|
192
|
+
<xs:element name="MetadataDate" type="iso8601Date"/>
|
|
193
|
+
<xs:element name="MetadataLanguage" type="euLanguageISO6392B"/>
|
|
194
|
+
<xs:element name="UniqueResourceIdentifier" type="uniqueResourceIdentifier" minOccurs="1" maxOccurs="unbounded"/>
|
|
195
|
+
<xs:element name="ResourceLanguage" type="languageISO6392B" minOccurs="0" maxOccurs="unbounded">
|
|
196
|
+
<xs:annotation>
|
|
197
|
+
<xs:documentation xml:lang="en">Mandatory if the resource includes textual information.</xs:documentation>
|
|
198
|
+
</xs:annotation>
|
|
199
|
+
</xs:element>
|
|
200
|
+
<xs:element name="TopicCategory" type="topicCategory" maxOccurs="unbounded"/>
|
|
201
|
+
<xs:element name="Lineage" type="notEmptyString"/>
|
|
202
|
+
</xs:sequence>
|
|
203
|
+
</xs:restriction>
|
|
204
|
+
</xs:complexContent>
|
|
205
|
+
</xs:complexType>
|
|
206
|
+
<!--Service-->
|
|
207
|
+
<xs:complexType name="service_ext" abstract="true">
|
|
208
|
+
<xs:complexContent>
|
|
209
|
+
<xs:extension base="resource">
|
|
210
|
+
<xs:sequence>
|
|
211
|
+
<xs:element name="CoupledResource" type="uniqueResourceIdentifier" minOccurs="0" maxOccurs="unbounded">
|
|
212
|
+
<xs:annotation>
|
|
213
|
+
<xs:documentation xml:lang="en">Mandatory if linkage to data sets on which the service operates are available.</xs:documentation>
|
|
214
|
+
</xs:annotation>
|
|
215
|
+
</xs:element>
|
|
216
|
+
<xs:element name="SpatialDataServiceType" type="spatialDataServiceType"/>
|
|
217
|
+
</xs:sequence>
|
|
218
|
+
</xs:extension>
|
|
219
|
+
</xs:complexContent>
|
|
220
|
+
</xs:complexType>
|
|
221
|
+
<xs:complexType name="service">
|
|
222
|
+
<xs:complexContent>
|
|
223
|
+
<xs:restriction base="service_ext">
|
|
224
|
+
<xs:sequence>
|
|
225
|
+
<xs:element name="ResourceTitle" type="notEmptyString"/>
|
|
226
|
+
<xs:element name="ResourceAbstract" type="notEmptyString"/>
|
|
227
|
+
<xs:element name="ResourceType" type="serviceSpatialDataResourceType"/>
|
|
228
|
+
<xs:element name="ResourceLocator" type="resourceLocatorType" minOccurs="0" maxOccurs="unbounded">
|
|
229
|
+
<xs:annotation>
|
|
230
|
+
<xs:documentation xml:lang="en">Mandatory if linkage to the service is available</xs:documentation>
|
|
231
|
+
</xs:annotation>
|
|
232
|
+
</xs:element>
|
|
233
|
+
<xs:element name="MandatoryKeyword" type="classificationOfSpatialDataService" minOccurs="1" maxOccurs="unbounded"/>
|
|
234
|
+
<xs:element name="Keyword" type="keyword" minOccurs="0" maxOccurs="unbounded">
|
|
235
|
+
<xs:annotation>
|
|
236
|
+
<xs:documentation xml:lang="en">If the resource is a spatial data service, at least one keyword from Part D.4 shall be provided.</xs:documentation>
|
|
237
|
+
</xs:annotation>
|
|
238
|
+
</xs:element>
|
|
239
|
+
<xs:element name="GeographicBoundingBox" type="geographicBoundingBox" minOccurs="0" maxOccurs="unbounded">
|
|
240
|
+
<xs:annotation>
|
|
241
|
+
<xs:documentation xml:lang="en">Mandatory for services with an explicit geographic extent.</xs:documentation>
|
|
242
|
+
</xs:annotation>
|
|
243
|
+
</xs:element>
|
|
244
|
+
<xs:element name="TemporalReference" type="temporalReference" maxOccurs="unbounded"/>
|
|
245
|
+
<xs:element name="SpatialResolution" type="spatialResolution" minOccurs="0" maxOccurs="unbounded">
|
|
246
|
+
<xs:annotation>
|
|
247
|
+
<xs:documentation xml:lang="en">Mandatory when there is a restriction on the spatial resolution for this service.</xs:documentation>
|
|
248
|
+
</xs:annotation>
|
|
249
|
+
</xs:element>
|
|
250
|
+
<xs:element name="Conformity" type="conformity" maxOccurs="unbounded"/>
|
|
251
|
+
<xs:element name="ConditionsForAccessAndUse" type="notEmptyString" maxOccurs="unbounded">
|
|
252
|
+
<xs:annotation>
|
|
253
|
+
<xs:documentation>The element must have values. If no conditions apply to the access and use of the resource, ‘no conditions apply’
|
|
254
|
+
shall be used. If conditions are unknown, ‘conditions unknown’ shall be used.
|
|
255
|
+
</xs:documentation>
|
|
256
|
+
</xs:annotation>
|
|
257
|
+
</xs:element>
|
|
258
|
+
<xs:element name="LimitationsOnPublicAccess" type="notEmptyString" maxOccurs="unbounded"/>
|
|
259
|
+
<xs:element name="ResponsibleOrganisation" type="responsibleOrganisation" maxOccurs="unbounded"/>
|
|
260
|
+
<xs:element name="MetadataPointOfContact" type="metadataPointOfContact" maxOccurs="unbounded"/>
|
|
261
|
+
<xs:element name="MetadataDate" type="iso8601Date"/>
|
|
262
|
+
<xs:element name="MetadataLanguage" type="euLanguageISO6392B"/>
|
|
263
|
+
<xs:element name="CoupledResource" type="uniqueResourceIdentifier" minOccurs="0" maxOccurs="unbounded">
|
|
264
|
+
<xs:annotation>
|
|
265
|
+
<xs:documentation xml:lang="en">Mandatory if linkage to data sets on which the service operates are available.</xs:documentation>
|
|
266
|
+
</xs:annotation>
|
|
267
|
+
</xs:element>
|
|
268
|
+
<xs:element name="SpatialDataServiceType" type="spatialDataServiceType"/>
|
|
269
|
+
</xs:sequence>
|
|
270
|
+
</xs:restriction>
|
|
271
|
+
</xs:complexContent>
|
|
272
|
+
</xs:complexType>
|
|
273
|
+
<!--Shared types-->
|
|
274
|
+
<xs:element name="SpatialDataServiceType" type="spatialDataServiceType"/>
|
|
275
|
+
<xs:simpleType name="serviceSpatialDataResourceType">
|
|
276
|
+
<xs:restriction base="resourceType">
|
|
277
|
+
<xs:enumeration value="service"/>
|
|
278
|
+
</xs:restriction>
|
|
279
|
+
</xs:simpleType>
|
|
280
|
+
<xs:simpleType name="viewSpatialDataServiceType">
|
|
281
|
+
<xs:restriction base="spatialDataServiceType">
|
|
282
|
+
<xs:enumeration value="view"/>
|
|
283
|
+
</xs:restriction>
|
|
284
|
+
</xs:simpleType>
|
|
285
|
+
<xs:simpleType name="discoverySpatialDataServiceType">
|
|
286
|
+
<xs:restriction base="spatialDataServiceType">
|
|
287
|
+
<xs:enumeration value="discovery"/>
|
|
288
|
+
</xs:restriction>
|
|
289
|
+
</xs:simpleType>
|
|
290
|
+
<xs:simpleType name="transformationSpatialDataServiceType">
|
|
291
|
+
<xs:restriction base="spatialDataServiceType">
|
|
292
|
+
<xs:enumeration value="transformation"/>
|
|
293
|
+
</xs:restriction>
|
|
294
|
+
</xs:simpleType>
|
|
295
|
+
<xs:simpleType name="invokeSpatialDataServiceType">
|
|
296
|
+
<xs:restriction base="spatialDataServiceType">
|
|
297
|
+
<xs:enumeration value="invoke"/>
|
|
298
|
+
</xs:restriction>
|
|
299
|
+
</xs:simpleType>
|
|
300
|
+
<xs:simpleType name="otherSpatialDataServiceType">
|
|
301
|
+
<xs:restriction base="spatialDataServiceType">
|
|
302
|
+
<xs:enumeration value="other"/>
|
|
303
|
+
</xs:restriction>
|
|
304
|
+
</xs:simpleType>
|
|
305
|
+
<xs:complexType name="metadataPointOfContact">
|
|
306
|
+
<xs:sequence>
|
|
307
|
+
<xs:element name="OrganisationName" type="xs:string"/>
|
|
308
|
+
<xs:element name="EmailAddress" type="emailType"/>
|
|
309
|
+
</xs:sequence>
|
|
310
|
+
</xs:complexType>
|
|
311
|
+
<xs:complexType name="responsibleOrganisation">
|
|
312
|
+
<xs:sequence>
|
|
313
|
+
<xs:element name="ResponsibleParty">
|
|
314
|
+
<xs:complexType>
|
|
315
|
+
<xs:sequence>
|
|
316
|
+
<xs:element name="OrganisationName" type="notEmptyString"/>
|
|
317
|
+
<xs:element name="EmailAddress" type="emailType"/>
|
|
318
|
+
</xs:sequence>
|
|
319
|
+
</xs:complexType>
|
|
320
|
+
</xs:element>
|
|
321
|
+
<xs:element name="ResponsiblePartyRole" type="responsiblePartyRole"/>
|
|
322
|
+
</xs:sequence>
|
|
323
|
+
</xs:complexType>
|
|
324
|
+
<xs:complexType name="citation">
|
|
325
|
+
<xs:sequence>
|
|
326
|
+
<xs:element name="Title" type="notEmptyString"/>
|
|
327
|
+
<xs:choice>
|
|
328
|
+
<xs:element name="DateOfPublication" type="iso8601Date"/>
|
|
329
|
+
<xs:element name="DateOfCreation" type="iso8601Date"/>
|
|
330
|
+
<xs:element name="DateOfLastRevision" type="iso8601Date"/>
|
|
331
|
+
</xs:choice>
|
|
332
|
+
<xs:element name="URI" type="xs:anyURI" minOccurs="0" maxOccurs="unbounded">
|
|
333
|
+
<xs:annotation>
|
|
334
|
+
<xs:documentation>One or more Documentation URIs if available</xs:documentation>
|
|
335
|
+
</xs:annotation>
|
|
336
|
+
</xs:element>
|
|
337
|
+
<xs:element name="ResourceLocator" type="resourceLocatorType" minOccurs="0" maxOccurs="unbounded">
|
|
338
|
+
<xs:annotation>
|
|
339
|
+
<xs:documentation>One or more URLs if available</xs:documentation>
|
|
340
|
+
</xs:annotation>
|
|
341
|
+
</xs:element>
|
|
342
|
+
</xs:sequence>
|
|
343
|
+
</xs:complexType>
|
|
344
|
+
<xs:complexType name="citationConformity">
|
|
345
|
+
<xs:complexContent>
|
|
346
|
+
<xs:restriction base="citation">
|
|
347
|
+
<xs:sequence>
|
|
348
|
+
<xs:element name="Title" type="notEmptyString"/>
|
|
349
|
+
<xs:choice>
|
|
350
|
+
<xs:element name="DateOfPublication" type="iso8601Date"/>
|
|
351
|
+
<xs:element name="DateOfCreation" type="iso8601Date"/>
|
|
352
|
+
<xs:element name="DateOfLastRevision" type="iso8601Date"/>
|
|
353
|
+
</xs:choice>
|
|
354
|
+
<xs:element name="URI" type="xs:anyURI" minOccurs="0" maxOccurs="unbounded">
|
|
355
|
+
<xs:annotation>
|
|
356
|
+
<xs:documentation>One or more Documentation URIs if available</xs:documentation>
|
|
357
|
+
</xs:annotation>
|
|
358
|
+
</xs:element>
|
|
359
|
+
<xs:element name="ResourceLocator" type="resourceLocatorType" minOccurs="0" maxOccurs="unbounded">
|
|
360
|
+
<xs:annotation>
|
|
361
|
+
<xs:documentation>One or more URLs if available</xs:documentation>
|
|
362
|
+
</xs:annotation>
|
|
363
|
+
</xs:element>
|
|
364
|
+
</xs:sequence>
|
|
365
|
+
</xs:restriction>
|
|
366
|
+
</xs:complexContent>
|
|
367
|
+
</xs:complexType>
|
|
368
|
+
<xs:complexType name="conformity">
|
|
369
|
+
<xs:sequence>
|
|
370
|
+
<xs:element name="Specification" type="citationConformity"/>
|
|
371
|
+
<xs:element name="Degree" type="degreeOfConformity"/>
|
|
372
|
+
</xs:sequence>
|
|
373
|
+
</xs:complexType>
|
|
374
|
+
<xs:complexType name="originatingControlledVocabulary">
|
|
375
|
+
<xs:complexContent>
|
|
376
|
+
<xs:restriction base="citation">
|
|
377
|
+
<xs:sequence>
|
|
378
|
+
<xs:element name="Title" type="notEmptyString"/>
|
|
379
|
+
<xs:choice>
|
|
380
|
+
<xs:element name="DateOfPublication" type="iso8601Date"/>
|
|
381
|
+
<xs:element name="DateOfCreation" type="iso8601Date"/>
|
|
382
|
+
<xs:element name="DateOfLastRevision" type="iso8601Date"/>
|
|
383
|
+
</xs:choice>
|
|
384
|
+
<xs:element name="URI" type="xs:anyURI" minOccurs="0" maxOccurs="unbounded">
|
|
385
|
+
<xs:annotation>
|
|
386
|
+
<xs:documentation>One or more Documentation URIs if available</xs:documentation>
|
|
387
|
+
</xs:annotation>
|
|
388
|
+
</xs:element>
|
|
389
|
+
<xs:element name="ResourceLocator" type="resourceLocatorType" minOccurs="0" maxOccurs="unbounded">
|
|
390
|
+
<xs:annotation>
|
|
391
|
+
<xs:documentation>One or more URLs if available</xs:documentation>
|
|
392
|
+
</xs:annotation>
|
|
393
|
+
</xs:element>
|
|
394
|
+
</xs:sequence>
|
|
395
|
+
</xs:restriction>
|
|
396
|
+
</xs:complexContent>
|
|
397
|
+
</xs:complexType>
|
|
398
|
+
<xs:complexType name="originatingControlledVocabularyGemetInspireThemes">
|
|
399
|
+
<xs:complexContent>
|
|
400
|
+
<xs:restriction base="originatingControlledVocabulary">
|
|
401
|
+
<xs:sequence>
|
|
402
|
+
<xs:element name="Title">
|
|
403
|
+
<xs:simpleType>
|
|
404
|
+
<xs:restriction base="notEmptyString">
|
|
405
|
+
<xs:enumeration value="GEMET - INSPIRE themes"/>
|
|
406
|
+
</xs:restriction>
|
|
407
|
+
</xs:simpleType>
|
|
408
|
+
</xs:element>
|
|
409
|
+
<xs:choice>
|
|
410
|
+
<xs:element name="DateOfPublication">
|
|
411
|
+
<xs:simpleType>
|
|
412
|
+
<xs:restriction base="iso8601Date">
|
|
413
|
+
<xs:enumeration value="2008-06-01"/>
|
|
414
|
+
</xs:restriction>
|
|
415
|
+
</xs:simpleType>
|
|
416
|
+
</xs:element>
|
|
417
|
+
</xs:choice>
|
|
418
|
+
</xs:sequence>
|
|
419
|
+
</xs:restriction>
|
|
420
|
+
</xs:complexContent>
|
|
421
|
+
</xs:complexType>
|
|
422
|
+
<xs:complexType name="originatingControlledVocabularyMD">
|
|
423
|
+
<xs:complexContent>
|
|
424
|
+
<xs:restriction base="originatingControlledVocabulary">
|
|
425
|
+
<xs:sequence>
|
|
426
|
+
<xs:element name="Title">
|
|
427
|
+
<xs:simpleType>
|
|
428
|
+
<xs:restriction base="notEmptyString">
|
|
429
|
+
<xs:enumeration value="GEMET - INSPIRE themes"/>
|
|
430
|
+
</xs:restriction>
|
|
431
|
+
</xs:simpleType>
|
|
432
|
+
</xs:element>
|
|
433
|
+
<xs:choice>
|
|
434
|
+
<xs:element name="DateOfPublication">
|
|
435
|
+
<xs:simpleType>
|
|
436
|
+
<xs:restriction base="iso8601Date">
|
|
437
|
+
<xs:enumeration value="2008-06-01"/>
|
|
438
|
+
</xs:restriction>
|
|
439
|
+
</xs:simpleType>
|
|
440
|
+
</xs:element>
|
|
441
|
+
</xs:choice>
|
|
442
|
+
</xs:sequence>
|
|
443
|
+
</xs:restriction>
|
|
444
|
+
</xs:complexContent>
|
|
445
|
+
</xs:complexType>
|
|
446
|
+
<xs:complexType name="temporalReference">
|
|
447
|
+
<xs:sequence>
|
|
448
|
+
<xs:element name="DateOfCreation" type="iso8601Date" minOccurs="0"/>
|
|
449
|
+
<xs:element name="DateOfLastRevision" type="iso8601Date" minOccurs="0"/>
|
|
450
|
+
<xs:element name="DateOfPublication" type="iso8601Date" minOccurs="0" maxOccurs="unbounded"/>
|
|
451
|
+
<xs:element name="TemporalExtent" type="temporalExtent" minOccurs="0" maxOccurs="unbounded"/>
|
|
452
|
+
</xs:sequence>
|
|
453
|
+
</xs:complexType>
|
|
454
|
+
<xs:element name="TemporalExtentElement" abstract="true"/>
|
|
455
|
+
<xs:element name="IndividualDate" type="iso8601Date" substitutionGroup="TemporalExtentElement"/>
|
|
456
|
+
<xs:element name="IntervalOfDates" substitutionGroup="TemporalExtentElement">
|
|
457
|
+
<xs:complexType>
|
|
458
|
+
<xs:sequence>
|
|
459
|
+
<xs:element name="StartingDate" type="iso8601Date"/>
|
|
460
|
+
<xs:element name="EndDate" type="iso8601Date"/>
|
|
461
|
+
</xs:sequence>
|
|
462
|
+
</xs:complexType>
|
|
463
|
+
</xs:element>
|
|
464
|
+
<xs:complexType name="temporalExtent">
|
|
465
|
+
<xs:sequence>
|
|
466
|
+
<xs:element ref="TemporalExtentElement" maxOccurs="unbounded"/>
|
|
467
|
+
</xs:sequence>
|
|
468
|
+
</xs:complexType>
|
|
469
|
+
<xs:simpleType name="keywordValue">
|
|
470
|
+
<xs:restriction base="notEmptyString"/>
|
|
471
|
+
</xs:simpleType>
|
|
472
|
+
<xs:complexType name="keyword">
|
|
473
|
+
<xs:sequence>
|
|
474
|
+
<xs:element name="OriginatingControlledVocabulary" type="originatingControlledVocabulary" minOccurs="0"/>
|
|
475
|
+
<xs:element name="KeywordValue" type="xs:string"/>
|
|
476
|
+
</xs:sequence>
|
|
477
|
+
</xs:complexType>
|
|
478
|
+
<xs:simpleType name="topicCategory">
|
|
479
|
+
<xs:restriction base="xs:string">
|
|
480
|
+
<xs:enumeration value="farming"/>
|
|
481
|
+
<xs:enumeration value="biota"/>
|
|
482
|
+
<xs:enumeration value="boundaries"/>
|
|
483
|
+
<xs:enumeration value="climatologyMeteorologyAtmosphere"/>
|
|
484
|
+
<xs:enumeration value="economy"/>
|
|
485
|
+
<xs:enumeration value="elevation"/>
|
|
486
|
+
<xs:enumeration value="environment"/>
|
|
487
|
+
<xs:enumeration value="geoscientificInformation"/>
|
|
488
|
+
<xs:enumeration value="health"/>
|
|
489
|
+
<xs:enumeration value="imageryBaseMapsEarthCover"/>
|
|
490
|
+
<xs:enumeration value="intelligenceMilitary"/>
|
|
491
|
+
<xs:enumeration value="inlandWaters"/>
|
|
492
|
+
<xs:enumeration value="location"/>
|
|
493
|
+
<xs:enumeration value="oceans"/>
|
|
494
|
+
<xs:enumeration value="planningCadastre"/>
|
|
495
|
+
<xs:enumeration value="society"/>
|
|
496
|
+
<xs:enumeration value="structure"/>
|
|
497
|
+
<xs:enumeration value="transportation"/>
|
|
498
|
+
<xs:enumeration value="utilitiesCommunication"/>
|
|
499
|
+
</xs:restriction>
|
|
500
|
+
</xs:simpleType>
|
|
501
|
+
<xs:complexType name="classificationOfSpatialDataService">
|
|
502
|
+
<xs:complexContent>
|
|
503
|
+
<xs:restriction base="keyword">
|
|
504
|
+
<xs:sequence>
|
|
505
|
+
<xs:element name="OriginatingControlledVocabulary" type="originatingControlledVocabulary" minOccurs="0" maxOccurs="0">
|
|
506
|
+
<xs:annotation>
|
|
507
|
+
<xs:documentation>The INSPIRE Metadata Regulation for spatial data services requires that a mandatory keyword which comes from a list and not an originating controlled vocabulary. This is also what the INSPIRE Metadata Technical Guidelines implement</xs:documentation>
|
|
508
|
+
</xs:annotation>
|
|
509
|
+
</xs:element>
|
|
510
|
+
<xs:element name="KeywordValue">
|
|
511
|
+
<xs:simpleType>
|
|
512
|
+
<xs:restriction base="keywordValue">
|
|
513
|
+
<xs:enumeration value="chainDefinitionService"/>
|
|
514
|
+
<xs:enumeration value="comEncodingService"/>
|
|
515
|
+
<xs:enumeration value="comGeographicCompressionService"/>
|
|
516
|
+
<xs:enumeration value="comGeographicFormatConversionService"/>
|
|
517
|
+
<xs:enumeration value="comMessagingService"/>
|
|
518
|
+
<xs:enumeration value="comRemoteFileAndExecutableManagement"/>
|
|
519
|
+
<xs:enumeration value="comService"/>
|
|
520
|
+
<xs:enumeration value="comTransferService"/>
|
|
521
|
+
<xs:enumeration value="humanCatalogueViewer"/>
|
|
522
|
+
<xs:enumeration value="humanChainDefinitionEditor"/>
|
|
523
|
+
<xs:enumeration value="humanFeatureGeneralizationEditor"/>
|
|
524
|
+
<xs:enumeration value="humanGeographicDataStructureViewer"/>
|
|
525
|
+
<xs:enumeration value="humanGeographicFeatureEditor"/>
|
|
526
|
+
<xs:enumeration value="humanGeographicSpreadsheetViewer"/>
|
|
527
|
+
<xs:enumeration value="humanGeographicSymbolEditor"/>
|
|
528
|
+
<xs:enumeration value="humanGeographicViewer"/>
|
|
529
|
+
<xs:enumeration value="humanInteractionService"/>
|
|
530
|
+
<xs:enumeration value="humanServiceEditor"/>
|
|
531
|
+
<xs:enumeration value="humanWorkflowEnactmentManager"/>
|
|
532
|
+
<xs:enumeration value="infoCatalogueService"/>
|
|
533
|
+
<xs:enumeration value="infoCoverageAccessService"/>
|
|
534
|
+
<xs:enumeration value="infoFeatureAccessService"/>
|
|
535
|
+
<xs:enumeration value="infoFeatureTypeService"/>
|
|
536
|
+
<xs:enumeration value="infoGazetteerService"/>
|
|
537
|
+
<xs:enumeration value="infoManagementService"/>
|
|
538
|
+
<xs:enumeration value="infoMapAccessService"/>
|
|
539
|
+
<xs:enumeration value="infoOrderHandlingService"/>
|
|
540
|
+
<xs:enumeration value="infoProductAccessService"/>
|
|
541
|
+
<xs:enumeration value="infoRegistryService"/>
|
|
542
|
+
<xs:enumeration value="infoSensorDescriptionService"/>
|
|
543
|
+
<xs:enumeration value="infoStandingOrderService"/>
|
|
544
|
+
<xs:enumeration value="metadataGeographicAnnotationService"/>
|
|
545
|
+
<xs:enumeration value="metadataProcessingService"/>
|
|
546
|
+
<xs:enumeration value="metadataStatisticalCalculationService"/>
|
|
547
|
+
<xs:enumeration value="spatialCoordinateConversionService"/>
|
|
548
|
+
<xs:enumeration value="spatialCoordinateTransformationService"/>
|
|
549
|
+
<xs:enumeration value="spatialCoverageVectorConversionService"/>
|
|
550
|
+
<xs:enumeration value="spatialDimensionMeasurementService"/>
|
|
551
|
+
<xs:enumeration value="spatialFeatureGeneralizationService"/>
|
|
552
|
+
<xs:enumeration value="spatialFeatureManipulationService"/>
|
|
553
|
+
<xs:enumeration value="spatialFeatureMatchingService"/>
|
|
554
|
+
<xs:enumeration value="spatialImageCoordinateConversionService"/>
|
|
555
|
+
<xs:enumeration value="spatialImageGeometryModelConversionService"/>
|
|
556
|
+
<xs:enumeration value="spatialOrthorectificationService"/>
|
|
557
|
+
<xs:enumeration value="spatialPositioningService"/>
|
|
558
|
+
<xs:enumeration value="spatialProcessingService"/>
|
|
559
|
+
<xs:enumeration value="spatialProximityAnalysisService"/>
|
|
560
|
+
<xs:enumeration value="spatialRectificationService"/>
|
|
561
|
+
<xs:enumeration value="spatialRouteDeterminationService"/>
|
|
562
|
+
<xs:enumeration value="spatialSamplingService"/>
|
|
563
|
+
<xs:enumeration value="spatialSensorGeometryModelAdjustmentService"/>
|
|
564
|
+
<xs:enumeration value="spatialSubsettingService"/>
|
|
565
|
+
<xs:enumeration value="spatialTilingChangeService"/>
|
|
566
|
+
<xs:enumeration value="subscriptionService"/>
|
|
567
|
+
<xs:enumeration value="taskManagementService"/>
|
|
568
|
+
<xs:enumeration value="temporalProcessingService"/>
|
|
569
|
+
<xs:enumeration value="temporalProximityAnalysisService"/>
|
|
570
|
+
<xs:enumeration value="temporalReferenceSystemTransformationService"/>
|
|
571
|
+
<xs:enumeration value="temporalSamplingService"/>
|
|
572
|
+
<xs:enumeration value="temporalSubsettingService"/>
|
|
573
|
+
<xs:enumeration value="thematicChangeDetectionService"/>
|
|
574
|
+
<xs:enumeration value="thematicClassificationService"/>
|
|
575
|
+
<xs:enumeration value="thematicFeatureGeneralizationService"/>
|
|
576
|
+
<xs:enumeration value="thematicGeocodingService"/>
|
|
577
|
+
<xs:enumeration value="thematicGeographicInformationExtractionService"/>
|
|
578
|
+
<xs:enumeration value="thematicGeoparsingService"/>
|
|
579
|
+
<xs:enumeration value="thematicGoparameterCalculationService"/>
|
|
580
|
+
<xs:enumeration value="thematicImageManipulationService"/>
|
|
581
|
+
<xs:enumeration value="thematicImageProcessingService"/>
|
|
582
|
+
<xs:enumeration value="thematicImageSynthesisService"/>
|
|
583
|
+
<xs:enumeration value="thematicImageUnderstandingService"/>
|
|
584
|
+
<xs:enumeration value="thematicMultibandImageManipulationService"/>
|
|
585
|
+
<xs:enumeration value="thematicObjectDetectionService"/>
|
|
586
|
+
<xs:enumeration value="thematicProcessingService"/>
|
|
587
|
+
<xs:enumeration value="thematicReducedResolutionGenerationService"/>
|
|
588
|
+
<xs:enumeration value="thematicSpatialCountingService"/>
|
|
589
|
+
<xs:enumeration value="thematicSubsettingService"/>
|
|
590
|
+
<xs:enumeration value="workflowEnactmentService"/>
|
|
591
|
+
</xs:restriction>
|
|
592
|
+
</xs:simpleType>
|
|
593
|
+
</xs:element>
|
|
594
|
+
</xs:sequence>
|
|
595
|
+
</xs:restriction>
|
|
596
|
+
</xs:complexContent>
|
|
597
|
+
</xs:complexType>
|
|
598
|
+
<xs:simpleType name="notEmptyString">
|
|
599
|
+
<xs:restriction base="xs:string">
|
|
600
|
+
<xs:minLength value="1"/>
|
|
601
|
+
</xs:restriction>
|
|
602
|
+
</xs:simpleType>
|
|
603
|
+
<xs:simpleType name="mediaType">
|
|
604
|
+
<xs:annotation>
|
|
605
|
+
<xs:documentation>
|
|
606
|
+
Draft implementation to be refined
|
|
607
|
+
</xs:documentation>
|
|
608
|
+
</xs:annotation>
|
|
609
|
+
<xs:restriction base="xs:string">
|
|
610
|
+
<xs:enumeration value="text/plain"/>
|
|
611
|
+
<xs:enumeration value="text/html"/>
|
|
612
|
+
<xs:enumeration value="text/xml"/>
|
|
613
|
+
<xs:enumeration value="application/xml"/>
|
|
614
|
+
<xs:enumeration value="application/json"/>
|
|
615
|
+
<xs:enumeration value="application/pdf"/>
|
|
616
|
+
<xs:enumeration value="application/rdf+xml"/>
|
|
617
|
+
<xs:enumeration value="application/json"/>
|
|
618
|
+
<xs:enumeration value="application/soap+xml"/>
|
|
619
|
+
<xs:enumeration value="application/vnd.eu.europa.ec.inspire.resource+xml">
|
|
620
|
+
<xs:annotation>
|
|
621
|
+
<xs:documentation>Official mime type for INSPIRE Resources</xs:documentation>
|
|
622
|
+
</xs:annotation>
|
|
623
|
+
</xs:enumeration>
|
|
624
|
+
<xs:enumeration value="application/vnd.google-earth.kml+xml"/>
|
|
625
|
+
<xs:enumeration value="application/vnd.google-earth.kml"/>
|
|
626
|
+
<xs:enumeration value="application/vnd.google-earth.kmx"/>
|
|
627
|
+
<xs:enumeration value="application/vnd.msword"/>
|
|
628
|
+
<xs:enumeration value="application/vnd.ms-excel"/>
|
|
629
|
+
<xs:enumeration value="application/vnd.ms-powerpoint"/>
|
|
630
|
+
<xs:enumeration value="application/vnd.oasis.opendocument.text"/>
|
|
631
|
+
<xs:enumeration value="application/vnd.oasis.opendocument.spreadsheet"/>
|
|
632
|
+
<xs:enumeration value="application/vnd.oasis.opendocument.presentation"/>
|
|
633
|
+
<xs:enumeration value="application/vnd.oasis.opendocument.graphics"/>
|
|
634
|
+
<xs:enumeration value="application/gml+xml">
|
|
635
|
+
<xs:annotation>
|
|
636
|
+
<xs:documentation>Official mime type for OGC GML currently in the registration process of IANA</xs:documentation>
|
|
637
|
+
</xs:annotation>
|
|
638
|
+
</xs:enumeration>
|
|
639
|
+
<xs:enumeration value="application/vnd.ogc.wms_xml">
|
|
640
|
+
<xs:annotation>
|
|
641
|
+
<xs:documentation>Unofficial mime type for OGC WMS</xs:documentation>
|
|
642
|
+
</xs:annotation>
|
|
643
|
+
</xs:enumeration>
|
|
644
|
+
<xs:enumeration value="application/vnd.ogc.csw_xml">
|
|
645
|
+
<xs:annotation>
|
|
646
|
+
<xs:documentation>Unofficial mime type for OGC CSW</xs:documentation>
|
|
647
|
+
</xs:annotation>
|
|
648
|
+
</xs:enumeration>
|
|
649
|
+
<xs:enumeration value="application/vnd.ogc.csw.capabilities.response_xml">
|
|
650
|
+
<xs:annotation>
|
|
651
|
+
<xs:documentation>Unofficial mime type for OGC CSW Capabilities response document</xs:documentation>
|
|
652
|
+
</xs:annotation>
|
|
653
|
+
</xs:enumeration>
|
|
654
|
+
<xs:enumeration value="application/vnd.ogc.csw.GetRecordByIdResponse_xml">
|
|
655
|
+
<xs:annotation>
|
|
656
|
+
<xs:documentation>Unofficial mime type for OGC CSW Capabilities response document</xs:documentation>
|
|
657
|
+
</xs:annotation>
|
|
658
|
+
</xs:enumeration>
|
|
659
|
+
<xs:enumeration value="application/vnd.ogc.csw.GetRecordsResponse_xml">
|
|
660
|
+
<xs:annotation>
|
|
661
|
+
<xs:documentation>Unofficial mime type for OGC CSW Capabilities response document</xs:documentation>
|
|
662
|
+
</xs:annotation>
|
|
663
|
+
</xs:enumeration>
|
|
664
|
+
<xs:enumeration value="application/vnd.ogc.wfs_xml">
|
|
665
|
+
<xs:annotation>
|
|
666
|
+
<xs:documentation>Unofficial mime type for OGC WFS</xs:documentation>
|
|
667
|
+
</xs:annotation>
|
|
668
|
+
</xs:enumeration>
|
|
669
|
+
<xs:enumeration value="application/vnd.ogc.se_xml">
|
|
670
|
+
<xs:annotation>
|
|
671
|
+
<xs:documentation>Unofficial mime type for OGC Service Exception</xs:documentation>
|
|
672
|
+
</xs:annotation>
|
|
673
|
+
</xs:enumeration>
|
|
674
|
+
<xs:enumeration value="application/vnd.iso.19139+xml">
|
|
675
|
+
<xs:annotation>
|
|
676
|
+
<xs:documentation>Unofficial mime type for ISO 19139 metadata</xs:documentation>
|
|
677
|
+
</xs:annotation>
|
|
678
|
+
</xs:enumeration>
|
|
679
|
+
</xs:restriction>
|
|
680
|
+
</xs:simpleType>
|
|
681
|
+
<xs:complexType name="resourceLocatorType">
|
|
682
|
+
<xs:annotation>
|
|
683
|
+
<xs:documentation xml:lang="en">Mandatory if a URL is available to obtain more information on
|
|
684
|
+
the resource, and/or access related services.</xs:documentation>
|
|
685
|
+
</xs:annotation>
|
|
686
|
+
<xs:sequence>
|
|
687
|
+
<xs:element name="URL" type="xs:anyURI"/>
|
|
688
|
+
<xs:element name="MediaType" type="mediaType" minOccurs="0" maxOccurs="unbounded"/>
|
|
689
|
+
</xs:sequence>
|
|
690
|
+
</xs:complexType>
|
|
691
|
+
<xs:simpleType name="emailType">
|
|
692
|
+
<xs:restriction base="xs:string">
|
|
693
|
+
<xs:pattern value="[^@]+@[^\.]+\..+"/>
|
|
694
|
+
</xs:restriction>
|
|
695
|
+
</xs:simpleType>
|
|
696
|
+
<xs:simpleType name="iso8601Date">
|
|
697
|
+
<xs:restriction base="xs:string">
|
|
698
|
+
<xs:annotation>
|
|
699
|
+
<xs:documentation>Simplified ISO 8601 implementation</xs:documentation>
|
|
700
|
+
</xs:annotation>
|
|
701
|
+
<xs:pattern value="\d{4}-(1[0-2]|0[1-9])-(3[0-1]|0[1-9]|[1-2][0-9])(T(2[0-3]|[0-1][0-9]):([0-5][0-9]):([0-5][0-9])(\.[0-9]+)?)?(Z|([+|-](2[0-3]|[0-1][0-9]):([0-5][0-9]):([0-5][0-9])(\.[0-9])?)?)?">
|
|
702
|
+
<xs:annotation>
|
|
703
|
+
<xs:documentation>YEAR MONTH DAY-----------------------TIME--------------------FRACTIONAL SECONDS---------TIME ZONE</xs:documentation>
|
|
704
|
+
</xs:annotation>
|
|
705
|
+
</xs:pattern>
|
|
706
|
+
</xs:restriction>
|
|
707
|
+
</xs:simpleType>
|
|
708
|
+
<xs:simpleType name="resourceType">
|
|
709
|
+
<xs:restriction base="xs:string">
|
|
710
|
+
<xs:enumeration value="dataset"/>
|
|
711
|
+
<xs:enumeration value="series"/>
|
|
712
|
+
<xs:enumeration value="service"/>
|
|
713
|
+
</xs:restriction>
|
|
714
|
+
</xs:simpleType>
|
|
715
|
+
<xs:simpleType name="spatialDataServiceType">
|
|
716
|
+
<xs:restriction base="xs:string">
|
|
717
|
+
<xs:enumeration value="discovery"/>
|
|
718
|
+
<xs:enumeration value="view"/>
|
|
719
|
+
<xs:enumeration value="download"/>
|
|
720
|
+
<xs:enumeration value="transformation"/>
|
|
721
|
+
<xs:enumeration value="invoke"/>
|
|
722
|
+
<xs:enumeration value="other"/>
|
|
723
|
+
</xs:restriction>
|
|
724
|
+
</xs:simpleType>
|
|
725
|
+
<xs:simpleType name="degreeOfConformity">
|
|
726
|
+
<xs:restriction base="xs:string">
|
|
727
|
+
<xs:enumeration value="conformant"/>
|
|
728
|
+
<xs:enumeration value="notConformant"/>
|
|
729
|
+
<xs:enumeration value="notEvaluated"/>
|
|
730
|
+
</xs:restriction>
|
|
731
|
+
</xs:simpleType>
|
|
732
|
+
<xs:simpleType name="euLanguageISO6392B">
|
|
733
|
+
<xs:restriction base="languageISO6392B">
|
|
734
|
+
<xs:enumeration value="bul"/>
|
|
735
|
+
<xs:enumeration value="cze"/>
|
|
736
|
+
<xs:enumeration value="dan"/>
|
|
737
|
+
<xs:enumeration value="dut"/>
|
|
738
|
+
<xs:enumeration value="eng"/>
|
|
739
|
+
<xs:enumeration value="est"/>
|
|
740
|
+
<xs:enumeration value="fin"/>
|
|
741
|
+
<xs:enumeration value="fre"/>
|
|
742
|
+
<xs:enumeration value="ger"/>
|
|
743
|
+
<xs:enumeration value="gre"/>
|
|
744
|
+
<xs:enumeration value="hun"/>
|
|
745
|
+
<xs:enumeration value="gle"/>
|
|
746
|
+
<xs:enumeration value="ita"/>
|
|
747
|
+
<xs:enumeration value="lav"/>
|
|
748
|
+
<xs:enumeration value="lit"/>
|
|
749
|
+
<xs:enumeration value="mlt"/>
|
|
750
|
+
<xs:enumeration value="pol"/>
|
|
751
|
+
<xs:enumeration value="por"/>
|
|
752
|
+
<xs:enumeration value="rum"/>
|
|
753
|
+
<xs:enumeration value="slo"/>
|
|
754
|
+
<xs:enumeration value="slv"/>
|
|
755
|
+
<xs:enumeration value="spa"/>
|
|
756
|
+
<xs:enumeration value="swe"/>
|
|
757
|
+
</xs:restriction>
|
|
758
|
+
</xs:simpleType>
|
|
759
|
+
<xs:simpleType name="languageISO6392B">
|
|
760
|
+
<xs:restriction base="xs:string">
|
|
761
|
+
<xs:enumeration value="aar"/>
|
|
762
|
+
<xs:enumeration value="abk"/>
|
|
763
|
+
<xs:enumeration value="ace"/>
|
|
764
|
+
<xs:enumeration value="ach"/>
|
|
765
|
+
<xs:enumeration value="ada"/>
|
|
766
|
+
<xs:enumeration value="ady"/>
|
|
767
|
+
<xs:enumeration value="afa"/>
|
|
768
|
+
<xs:enumeration value="afh"/>
|
|
769
|
+
<xs:enumeration value="afr"/>
|
|
770
|
+
<xs:enumeration value="ain"/>
|
|
771
|
+
<xs:enumeration value="aka"/>
|
|
772
|
+
<xs:enumeration value="akk"/>
|
|
773
|
+
<xs:enumeration value="alb"/>
|
|
774
|
+
<xs:enumeration value="ale"/>
|
|
775
|
+
<xs:enumeration value="alg"/>
|
|
776
|
+
<xs:enumeration value="alt"/>
|
|
777
|
+
<xs:enumeration value="amh"/>
|
|
778
|
+
<xs:enumeration value="ang"/>
|
|
779
|
+
<xs:enumeration value="anp"/>
|
|
780
|
+
<xs:enumeration value="apa"/>
|
|
781
|
+
<xs:enumeration value="ara"/>
|
|
782
|
+
<xs:enumeration value="arc"/>
|
|
783
|
+
<xs:enumeration value="arg"/>
|
|
784
|
+
<xs:enumeration value="arm"/>
|
|
785
|
+
<xs:enumeration value="arn"/>
|
|
786
|
+
<xs:enumeration value="arp"/>
|
|
787
|
+
<xs:enumeration value="art"/>
|
|
788
|
+
<xs:enumeration value="arw"/>
|
|
789
|
+
<xs:enumeration value="asm"/>
|
|
790
|
+
<xs:enumeration value="ast"/>
|
|
791
|
+
<xs:enumeration value="ath"/>
|
|
792
|
+
<xs:enumeration value="aus"/>
|
|
793
|
+
<xs:enumeration value="ava"/>
|
|
794
|
+
<xs:enumeration value="ave"/>
|
|
795
|
+
<xs:enumeration value="awa"/>
|
|
796
|
+
<xs:enumeration value="aym"/>
|
|
797
|
+
<xs:enumeration value="aze"/>
|
|
798
|
+
<xs:enumeration value="bad"/>
|
|
799
|
+
<xs:enumeration value="bai"/>
|
|
800
|
+
<xs:enumeration value="bak"/>
|
|
801
|
+
<xs:enumeration value="bal"/>
|
|
802
|
+
<xs:enumeration value="bam"/>
|
|
803
|
+
<xs:enumeration value="ban"/>
|
|
804
|
+
<xs:enumeration value="baq"/>
|
|
805
|
+
<xs:enumeration value="bas"/>
|
|
806
|
+
<xs:enumeration value="bat"/>
|
|
807
|
+
<xs:enumeration value="bej"/>
|
|
808
|
+
<xs:enumeration value="bel"/>
|
|
809
|
+
<xs:enumeration value="bem"/>
|
|
810
|
+
<xs:enumeration value="ben"/>
|
|
811
|
+
<xs:enumeration value="ber"/>
|
|
812
|
+
<xs:enumeration value="bho"/>
|
|
813
|
+
<xs:enumeration value="bih"/>
|
|
814
|
+
<xs:enumeration value="bik"/>
|
|
815
|
+
<xs:enumeration value="bin"/>
|
|
816
|
+
<xs:enumeration value="bis"/>
|
|
817
|
+
<xs:enumeration value="bla"/>
|
|
818
|
+
<xs:enumeration value="bnt"/>
|
|
819
|
+
<xs:enumeration value="bos"/>
|
|
820
|
+
<xs:enumeration value="bra"/>
|
|
821
|
+
<xs:enumeration value="bre"/>
|
|
822
|
+
<xs:enumeration value="btk"/>
|
|
823
|
+
<xs:enumeration value="bua"/>
|
|
824
|
+
<xs:enumeration value="bug"/>
|
|
825
|
+
<xs:enumeration value="bul"/>
|
|
826
|
+
<xs:enumeration value="bur"/>
|
|
827
|
+
<xs:enumeration value="byn"/>
|
|
828
|
+
<xs:enumeration value="cad"/>
|
|
829
|
+
<xs:enumeration value="cai"/>
|
|
830
|
+
<xs:enumeration value="car"/>
|
|
831
|
+
<xs:enumeration value="cat"/>
|
|
832
|
+
<xs:enumeration value="cau"/>
|
|
833
|
+
<xs:enumeration value="ceb"/>
|
|
834
|
+
<xs:enumeration value="cel"/>
|
|
835
|
+
<xs:enumeration value="cha"/>
|
|
836
|
+
<xs:enumeration value="chb"/>
|
|
837
|
+
<xs:enumeration value="che"/>
|
|
838
|
+
<xs:enumeration value="chg"/>
|
|
839
|
+
<xs:enumeration value="chi"/>
|
|
840
|
+
<xs:enumeration value="chk"/>
|
|
841
|
+
<xs:enumeration value="chm"/>
|
|
842
|
+
<xs:enumeration value="chn"/>
|
|
843
|
+
<xs:enumeration value="cho"/>
|
|
844
|
+
<xs:enumeration value="chp"/>
|
|
845
|
+
<xs:enumeration value="chr"/>
|
|
846
|
+
<xs:enumeration value="chu"/>
|
|
847
|
+
<xs:enumeration value="chv"/>
|
|
848
|
+
<xs:enumeration value="chy"/>
|
|
849
|
+
<xs:enumeration value="cmc"/>
|
|
850
|
+
<xs:enumeration value="cop"/>
|
|
851
|
+
<xs:enumeration value="cor"/>
|
|
852
|
+
<xs:enumeration value="cos"/>
|
|
853
|
+
<xs:enumeration value="cpe"/>
|
|
854
|
+
<xs:enumeration value="cpf"/>
|
|
855
|
+
<xs:enumeration value="cpp"/>
|
|
856
|
+
<xs:enumeration value="cre"/>
|
|
857
|
+
<xs:enumeration value="crh"/>
|
|
858
|
+
<xs:enumeration value="crp"/>
|
|
859
|
+
<xs:enumeration value="csb"/>
|
|
860
|
+
<xs:enumeration value="cus"/>
|
|
861
|
+
<xs:enumeration value="cze"/>
|
|
862
|
+
<xs:enumeration value="dak"/>
|
|
863
|
+
<xs:enumeration value="dan"/>
|
|
864
|
+
<xs:enumeration value="dar"/>
|
|
865
|
+
<xs:enumeration value="day"/>
|
|
866
|
+
<xs:enumeration value="del"/>
|
|
867
|
+
<xs:enumeration value="den"/>
|
|
868
|
+
<xs:enumeration value="dgr"/>
|
|
869
|
+
<xs:enumeration value="din"/>
|
|
870
|
+
<xs:enumeration value="div"/>
|
|
871
|
+
<xs:enumeration value="doi"/>
|
|
872
|
+
<xs:enumeration value="dra"/>
|
|
873
|
+
<xs:enumeration value="dsb"/>
|
|
874
|
+
<xs:enumeration value="dua"/>
|
|
875
|
+
<xs:enumeration value="dum"/>
|
|
876
|
+
<xs:enumeration value="dut"/>
|
|
877
|
+
<xs:enumeration value="dyu"/>
|
|
878
|
+
<xs:enumeration value="dzo"/>
|
|
879
|
+
<xs:enumeration value="efi"/>
|
|
880
|
+
<xs:enumeration value="egy"/>
|
|
881
|
+
<xs:enumeration value="eka"/>
|
|
882
|
+
<xs:enumeration value="elx"/>
|
|
883
|
+
<xs:enumeration value="eng"/>
|
|
884
|
+
<xs:enumeration value="enm"/>
|
|
885
|
+
<xs:enumeration value="epo"/>
|
|
886
|
+
<xs:enumeration value="est"/>
|
|
887
|
+
<xs:enumeration value="ewe"/>
|
|
888
|
+
<xs:enumeration value="ewo"/>
|
|
889
|
+
<xs:enumeration value="fan"/>
|
|
890
|
+
<xs:enumeration value="fao"/>
|
|
891
|
+
<xs:enumeration value="fat"/>
|
|
892
|
+
<xs:enumeration value="fij"/>
|
|
893
|
+
<xs:enumeration value="fil"/>
|
|
894
|
+
<xs:enumeration value="fin"/>
|
|
895
|
+
<xs:enumeration value="fiu"/>
|
|
896
|
+
<xs:enumeration value="fon"/>
|
|
897
|
+
<xs:enumeration value="fre"/>
|
|
898
|
+
<xs:enumeration value="frm"/>
|
|
899
|
+
<xs:enumeration value="fro"/>
|
|
900
|
+
<xs:enumeration value="frr"/>
|
|
901
|
+
<xs:enumeration value="frs"/>
|
|
902
|
+
<xs:enumeration value="fry"/>
|
|
903
|
+
<xs:enumeration value="ful"/>
|
|
904
|
+
<xs:enumeration value="fur"/>
|
|
905
|
+
<xs:enumeration value="gaa"/>
|
|
906
|
+
<xs:enumeration value="gay"/>
|
|
907
|
+
<xs:enumeration value="gba"/>
|
|
908
|
+
<xs:enumeration value="gem"/>
|
|
909
|
+
<xs:enumeration value="geo"/>
|
|
910
|
+
<xs:enumeration value="ger"/>
|
|
911
|
+
<xs:enumeration value="gez"/>
|
|
912
|
+
<xs:enumeration value="gil"/>
|
|
913
|
+
<xs:enumeration value="gla"/>
|
|
914
|
+
<xs:enumeration value="gle"/>
|
|
915
|
+
<xs:enumeration value="glg"/>
|
|
916
|
+
<xs:enumeration value="glv"/>
|
|
917
|
+
<xs:enumeration value="gmh"/>
|
|
918
|
+
<xs:enumeration value="goh"/>
|
|
919
|
+
<xs:enumeration value="gon"/>
|
|
920
|
+
<xs:enumeration value="gor"/>
|
|
921
|
+
<xs:enumeration value="got"/>
|
|
922
|
+
<xs:enumeration value="grb"/>
|
|
923
|
+
<xs:enumeration value="grc"/>
|
|
924
|
+
<xs:enumeration value="gre"/>
|
|
925
|
+
<xs:enumeration value="grn"/>
|
|
926
|
+
<xs:enumeration value="gsw"/>
|
|
927
|
+
<xs:enumeration value="guj"/>
|
|
928
|
+
<xs:enumeration value="gwi"/>
|
|
929
|
+
<xs:enumeration value="hai"/>
|
|
930
|
+
<xs:enumeration value="hat"/>
|
|
931
|
+
<xs:enumeration value="hau"/>
|
|
932
|
+
<xs:enumeration value="haw"/>
|
|
933
|
+
<xs:enumeration value="heb"/>
|
|
934
|
+
<xs:enumeration value="her"/>
|
|
935
|
+
<xs:enumeration value="hil"/>
|
|
936
|
+
<xs:enumeration value="him"/>
|
|
937
|
+
<xs:enumeration value="hin"/>
|
|
938
|
+
<xs:enumeration value="hit"/>
|
|
939
|
+
<xs:enumeration value="hmn"/>
|
|
940
|
+
<xs:enumeration value="hmo"/>
|
|
941
|
+
<xs:enumeration value="hrv"/>
|
|
942
|
+
<xs:enumeration value="hsb"/>
|
|
943
|
+
<xs:enumeration value="hun"/>
|
|
944
|
+
<xs:enumeration value="hup"/>
|
|
945
|
+
<xs:enumeration value="iba"/>
|
|
946
|
+
<xs:enumeration value="ibo"/>
|
|
947
|
+
<xs:enumeration value="ice"/>
|
|
948
|
+
<xs:enumeration value="ido"/>
|
|
949
|
+
<xs:enumeration value="iii"/>
|
|
950
|
+
<xs:enumeration value="ijo"/>
|
|
951
|
+
<xs:enumeration value="iku"/>
|
|
952
|
+
<xs:enumeration value="ile"/>
|
|
953
|
+
<xs:enumeration value="ilo"/>
|
|
954
|
+
<xs:enumeration value="ina"/>
|
|
955
|
+
<xs:enumeration value="inc"/>
|
|
956
|
+
<xs:enumeration value="ind"/>
|
|
957
|
+
<xs:enumeration value="ine"/>
|
|
958
|
+
<xs:enumeration value="inh"/>
|
|
959
|
+
<xs:enumeration value="ipk"/>
|
|
960
|
+
<xs:enumeration value="ira"/>
|
|
961
|
+
<xs:enumeration value="iro"/>
|
|
962
|
+
<xs:enumeration value="ita"/>
|
|
963
|
+
<xs:enumeration value="jav"/>
|
|
964
|
+
<xs:enumeration value="jbo"/>
|
|
965
|
+
<xs:enumeration value="jpn"/>
|
|
966
|
+
<xs:enumeration value="jpr"/>
|
|
967
|
+
<xs:enumeration value="jrb"/>
|
|
968
|
+
<xs:enumeration value="kaa"/>
|
|
969
|
+
<xs:enumeration value="kab"/>
|
|
970
|
+
<xs:enumeration value="kac"/>
|
|
971
|
+
<xs:enumeration value="kal"/>
|
|
972
|
+
<xs:enumeration value="kam"/>
|
|
973
|
+
<xs:enumeration value="kan"/>
|
|
974
|
+
<xs:enumeration value="kar"/>
|
|
975
|
+
<xs:enumeration value="kas"/>
|
|
976
|
+
<xs:enumeration value="kau"/>
|
|
977
|
+
<xs:enumeration value="kaw"/>
|
|
978
|
+
<xs:enumeration value="kaz"/>
|
|
979
|
+
<xs:enumeration value="kbd"/>
|
|
980
|
+
<xs:enumeration value="kha"/>
|
|
981
|
+
<xs:enumeration value="khi"/>
|
|
982
|
+
<xs:enumeration value="khm"/>
|
|
983
|
+
<xs:enumeration value="kho"/>
|
|
984
|
+
<xs:enumeration value="kik"/>
|
|
985
|
+
<xs:enumeration value="kin"/>
|
|
986
|
+
<xs:enumeration value="kir"/>
|
|
987
|
+
<xs:enumeration value="kmb"/>
|
|
988
|
+
<xs:enumeration value="kok"/>
|
|
989
|
+
<xs:enumeration value="kom"/>
|
|
990
|
+
<xs:enumeration value="kon"/>
|
|
991
|
+
<xs:enumeration value="kor"/>
|
|
992
|
+
<xs:enumeration value="kos"/>
|
|
993
|
+
<xs:enumeration value="kpe"/>
|
|
994
|
+
<xs:enumeration value="krc"/>
|
|
995
|
+
<xs:enumeration value="krl"/>
|
|
996
|
+
<xs:enumeration value="kro"/>
|
|
997
|
+
<xs:enumeration value="kru"/>
|
|
998
|
+
<xs:enumeration value="kua"/>
|
|
999
|
+
<xs:enumeration value="kum"/>
|
|
1000
|
+
<xs:enumeration value="kur"/>
|
|
1001
|
+
<xs:enumeration value="kut"/>
|
|
1002
|
+
<xs:enumeration value="lad"/>
|
|
1003
|
+
<xs:enumeration value="lah"/>
|
|
1004
|
+
<xs:enumeration value="lam"/>
|
|
1005
|
+
<xs:enumeration value="lao"/>
|
|
1006
|
+
<xs:enumeration value="lat"/>
|
|
1007
|
+
<xs:enumeration value="lav"/>
|
|
1008
|
+
<xs:enumeration value="lez"/>
|
|
1009
|
+
<xs:enumeration value="lim"/>
|
|
1010
|
+
<xs:enumeration value="lin"/>
|
|
1011
|
+
<xs:enumeration value="lit"/>
|
|
1012
|
+
<xs:enumeration value="lol"/>
|
|
1013
|
+
<xs:enumeration value="loz"/>
|
|
1014
|
+
<xs:enumeration value="ltz"/>
|
|
1015
|
+
<xs:enumeration value="lua"/>
|
|
1016
|
+
<xs:enumeration value="lub"/>
|
|
1017
|
+
<xs:enumeration value="lug"/>
|
|
1018
|
+
<xs:enumeration value="lui"/>
|
|
1019
|
+
<xs:enumeration value="lun"/>
|
|
1020
|
+
<xs:enumeration value="luo"/>
|
|
1021
|
+
<xs:enumeration value="lus"/>
|
|
1022
|
+
<xs:enumeration value="mac"/>
|
|
1023
|
+
<xs:enumeration value="mad"/>
|
|
1024
|
+
<xs:enumeration value="mag"/>
|
|
1025
|
+
<xs:enumeration value="mah"/>
|
|
1026
|
+
<xs:enumeration value="mai"/>
|
|
1027
|
+
<xs:enumeration value="mak"/>
|
|
1028
|
+
<xs:enumeration value="mal"/>
|
|
1029
|
+
<xs:enumeration value="man"/>
|
|
1030
|
+
<xs:enumeration value="mao"/>
|
|
1031
|
+
<xs:enumeration value="map"/>
|
|
1032
|
+
<xs:enumeration value="mar"/>
|
|
1033
|
+
<xs:enumeration value="mas"/>
|
|
1034
|
+
<xs:enumeration value="may"/>
|
|
1035
|
+
<xs:enumeration value="mdf"/>
|
|
1036
|
+
<xs:enumeration value="mdr"/>
|
|
1037
|
+
<xs:enumeration value="men"/>
|
|
1038
|
+
<xs:enumeration value="mga"/>
|
|
1039
|
+
<xs:enumeration value="mic"/>
|
|
1040
|
+
<xs:enumeration value="min"/>
|
|
1041
|
+
<xs:enumeration value="mis"/>
|
|
1042
|
+
<xs:enumeration value="mkh"/>
|
|
1043
|
+
<xs:enumeration value="mlg"/>
|
|
1044
|
+
<xs:enumeration value="mlt"/>
|
|
1045
|
+
<xs:enumeration value="mnc"/>
|
|
1046
|
+
<xs:enumeration value="mni"/>
|
|
1047
|
+
<xs:enumeration value="mno"/>
|
|
1048
|
+
<xs:enumeration value="moh"/>
|
|
1049
|
+
<xs:enumeration value="mon"/>
|
|
1050
|
+
<xs:enumeration value="mos"/>
|
|
1051
|
+
<xs:enumeration value="mul"/>
|
|
1052
|
+
<xs:enumeration value="mun"/>
|
|
1053
|
+
<xs:enumeration value="mus"/>
|
|
1054
|
+
<xs:enumeration value="mwl"/>
|
|
1055
|
+
<xs:enumeration value="mwr"/>
|
|
1056
|
+
<xs:enumeration value="myn"/>
|
|
1057
|
+
<xs:enumeration value="myv"/>
|
|
1058
|
+
<xs:enumeration value="nah"/>
|
|
1059
|
+
<xs:enumeration value="nai"/>
|
|
1060
|
+
<xs:enumeration value="nap"/>
|
|
1061
|
+
<xs:enumeration value="nau"/>
|
|
1062
|
+
<xs:enumeration value="nav"/>
|
|
1063
|
+
<xs:enumeration value="nbl"/>
|
|
1064
|
+
<xs:enumeration value="nde"/>
|
|
1065
|
+
<xs:enumeration value="ndo"/>
|
|
1066
|
+
<xs:enumeration value="nds"/>
|
|
1067
|
+
<xs:enumeration value="nep"/>
|
|
1068
|
+
<xs:enumeration value="new"/>
|
|
1069
|
+
<xs:enumeration value="nia"/>
|
|
1070
|
+
<xs:enumeration value="nia"/>
|
|
1071
|
+
<xs:enumeration value="nic"/>
|
|
1072
|
+
<xs:enumeration value="niu"/>
|
|
1073
|
+
<xs:enumeration value="nno"/>
|
|
1074
|
+
<xs:enumeration value="nob"/>
|
|
1075
|
+
<xs:enumeration value="nog"/>
|
|
1076
|
+
<xs:enumeration value="non"/>
|
|
1077
|
+
<xs:enumeration value="nor"/>
|
|
1078
|
+
<xs:enumeration value="nqo"/>
|
|
1079
|
+
<xs:enumeration value="nso"/>
|
|
1080
|
+
<xs:enumeration value="nub"/>
|
|
1081
|
+
<xs:enumeration value="nwc"/>
|
|
1082
|
+
<xs:enumeration value="nya"/>
|
|
1083
|
+
<xs:enumeration value="nym"/>
|
|
1084
|
+
<xs:enumeration value="nyn"/>
|
|
1085
|
+
<xs:enumeration value="nyo"/>
|
|
1086
|
+
<xs:enumeration value="nzi"/>
|
|
1087
|
+
<xs:enumeration value="oci"/>
|
|
1088
|
+
<xs:enumeration value="oji"/>
|
|
1089
|
+
<xs:enumeration value="ori"/>
|
|
1090
|
+
<xs:enumeration value="orm"/>
|
|
1091
|
+
<xs:enumeration value="osa"/>
|
|
1092
|
+
<xs:enumeration value="oss"/>
|
|
1093
|
+
<xs:enumeration value="ota"/>
|
|
1094
|
+
<xs:enumeration value="oto"/>
|
|
1095
|
+
<xs:enumeration value="paa"/>
|
|
1096
|
+
<xs:enumeration value="pag"/>
|
|
1097
|
+
<xs:enumeration value="pal"/>
|
|
1098
|
+
<xs:enumeration value="pam"/>
|
|
1099
|
+
<xs:enumeration value="pan"/>
|
|
1100
|
+
<xs:enumeration value="pap"/>
|
|
1101
|
+
<xs:enumeration value="pau"/>
|
|
1102
|
+
<xs:enumeration value="peo"/>
|
|
1103
|
+
<xs:enumeration value="per"/>
|
|
1104
|
+
<xs:enumeration value="phi"/>
|
|
1105
|
+
<xs:enumeration value="phn"/>
|
|
1106
|
+
<xs:enumeration value="pli"/>
|
|
1107
|
+
<xs:enumeration value="pol"/>
|
|
1108
|
+
<xs:enumeration value="pon"/>
|
|
1109
|
+
<xs:enumeration value="por"/>
|
|
1110
|
+
<xs:enumeration value="pra"/>
|
|
1111
|
+
<xs:enumeration value="pro"/>
|
|
1112
|
+
<xs:enumeration value="pus"/>
|
|
1113
|
+
<xs:enumeration value="qaa-qtz"/>
|
|
1114
|
+
<xs:enumeration value="que"/>
|
|
1115
|
+
<xs:enumeration value="raj"/>
|
|
1116
|
+
<xs:enumeration value="rap"/>
|
|
1117
|
+
<xs:enumeration value="rar"/>
|
|
1118
|
+
<xs:enumeration value="roa"/>
|
|
1119
|
+
<xs:enumeration value="roh"/>
|
|
1120
|
+
<xs:enumeration value="rom"/>
|
|
1121
|
+
<xs:enumeration value="rum"/>
|
|
1122
|
+
<xs:enumeration value="run"/>
|
|
1123
|
+
<xs:enumeration value="rup"/>
|
|
1124
|
+
<xs:enumeration value="rus"/>
|
|
1125
|
+
<xs:enumeration value="sad"/>
|
|
1126
|
+
<xs:enumeration value="sag"/>
|
|
1127
|
+
<xs:enumeration value="sah"/>
|
|
1128
|
+
<xs:enumeration value="sai"/>
|
|
1129
|
+
<xs:enumeration value="sal"/>
|
|
1130
|
+
<xs:enumeration value="sam"/>
|
|
1131
|
+
<xs:enumeration value="san"/>
|
|
1132
|
+
<xs:enumeration value="sas"/>
|
|
1133
|
+
<xs:enumeration value="sat"/>
|
|
1134
|
+
<xs:enumeration value="scn"/>
|
|
1135
|
+
<xs:enumeration value="sco"/>
|
|
1136
|
+
<xs:enumeration value="sel"/>
|
|
1137
|
+
<xs:enumeration value="sem"/>
|
|
1138
|
+
<xs:enumeration value="sga"/>
|
|
1139
|
+
<xs:enumeration value="sgn"/>
|
|
1140
|
+
<xs:enumeration value="shn"/>
|
|
1141
|
+
<xs:enumeration value="sid"/>
|
|
1142
|
+
<xs:enumeration value="sin"/>
|
|
1143
|
+
<xs:enumeration value="sio"/>
|
|
1144
|
+
<xs:enumeration value="sit"/>
|
|
1145
|
+
<xs:enumeration value="sla"/>
|
|
1146
|
+
<xs:enumeration value="slo"/>
|
|
1147
|
+
<xs:enumeration value="slv"/>
|
|
1148
|
+
<xs:enumeration value="sma"/>
|
|
1149
|
+
<xs:enumeration value="sme"/>
|
|
1150
|
+
<xs:enumeration value="smi"/>
|
|
1151
|
+
<xs:enumeration value="smj"/>
|
|
1152
|
+
<xs:enumeration value="smn"/>
|
|
1153
|
+
<xs:enumeration value="smo"/>
|
|
1154
|
+
<xs:enumeration value="sms"/>
|
|
1155
|
+
<xs:enumeration value="sna"/>
|
|
1156
|
+
<xs:enumeration value="snd"/>
|
|
1157
|
+
<xs:enumeration value="snk"/>
|
|
1158
|
+
<xs:enumeration value="sog"/>
|
|
1159
|
+
<xs:enumeration value="som"/>
|
|
1160
|
+
<xs:enumeration value="son"/>
|
|
1161
|
+
<xs:enumeration value="sot"/>
|
|
1162
|
+
<xs:enumeration value="spa"/>
|
|
1163
|
+
<xs:enumeration value="srd"/>
|
|
1164
|
+
<xs:enumeration value="srn"/>
|
|
1165
|
+
<xs:enumeration value="srp"/>
|
|
1166
|
+
<xs:enumeration value="srr"/>
|
|
1167
|
+
<xs:enumeration value="ssa"/>
|
|
1168
|
+
<xs:enumeration value="ssw"/>
|
|
1169
|
+
<xs:enumeration value="suk"/>
|
|
1170
|
+
<xs:enumeration value="sun"/>
|
|
1171
|
+
<xs:enumeration value="sus"/>
|
|
1172
|
+
<xs:enumeration value="sux"/>
|
|
1173
|
+
<xs:enumeration value="swa"/>
|
|
1174
|
+
<xs:enumeration value="swe"/>
|
|
1175
|
+
<xs:enumeration value="syc"/>
|
|
1176
|
+
<xs:enumeration value="syr"/>
|
|
1177
|
+
<xs:enumeration value="tah"/>
|
|
1178
|
+
<xs:enumeration value="tai"/>
|
|
1179
|
+
<xs:enumeration value="tam"/>
|
|
1180
|
+
<xs:enumeration value="tat"/>
|
|
1181
|
+
<xs:enumeration value="tel"/>
|
|
1182
|
+
<xs:enumeration value="tem"/>
|
|
1183
|
+
<xs:enumeration value="ter"/>
|
|
1184
|
+
<xs:enumeration value="tet"/>
|
|
1185
|
+
<xs:enumeration value="tgk"/>
|
|
1186
|
+
<xs:enumeration value="tgl"/>
|
|
1187
|
+
<xs:enumeration value="tha"/>
|
|
1188
|
+
<xs:enumeration value="tib"/>
|
|
1189
|
+
<xs:enumeration value="tig"/>
|
|
1190
|
+
<xs:enumeration value="tir"/>
|
|
1191
|
+
<xs:enumeration value="tiv"/>
|
|
1192
|
+
<xs:enumeration value="tkl"/>
|
|
1193
|
+
<xs:enumeration value="tlh"/>
|
|
1194
|
+
<xs:enumeration value="tli"/>
|
|
1195
|
+
<xs:enumeration value="tmh"/>
|
|
1196
|
+
<xs:enumeration value="tog"/>
|
|
1197
|
+
<xs:enumeration value="ton"/>
|
|
1198
|
+
<xs:enumeration value="tpi"/>
|
|
1199
|
+
<xs:enumeration value="tsi"/>
|
|
1200
|
+
<xs:enumeration value="tsn"/>
|
|
1201
|
+
<xs:enumeration value="tso"/>
|
|
1202
|
+
<xs:enumeration value="tuk"/>
|
|
1203
|
+
<xs:enumeration value="tum"/>
|
|
1204
|
+
<xs:enumeration value="tup"/>
|
|
1205
|
+
<xs:enumeration value="tur"/>
|
|
1206
|
+
<xs:enumeration value="tut"/>
|
|
1207
|
+
<xs:enumeration value="tvl"/>
|
|
1208
|
+
<xs:enumeration value="twi"/>
|
|
1209
|
+
<xs:enumeration value="tyv"/>
|
|
1210
|
+
<xs:enumeration value="udm"/>
|
|
1211
|
+
<xs:enumeration value="uga"/>
|
|
1212
|
+
<xs:enumeration value="uig"/>
|
|
1213
|
+
<xs:enumeration value="ukr"/>
|
|
1214
|
+
<xs:enumeration value="umb"/>
|
|
1215
|
+
<xs:enumeration value="und"/>
|
|
1216
|
+
<xs:enumeration value="urd"/>
|
|
1217
|
+
<xs:enumeration value="uzb"/>
|
|
1218
|
+
<xs:enumeration value="vai"/>
|
|
1219
|
+
<xs:enumeration value="ven"/>
|
|
1220
|
+
<xs:enumeration value="vie"/>
|
|
1221
|
+
<xs:enumeration value="vol"/>
|
|
1222
|
+
<xs:enumeration value="vot"/>
|
|
1223
|
+
<xs:enumeration value="wak"/>
|
|
1224
|
+
<xs:enumeration value="wal"/>
|
|
1225
|
+
<xs:enumeration value="war"/>
|
|
1226
|
+
<xs:enumeration value="was"/>
|
|
1227
|
+
<xs:enumeration value="wel"/>
|
|
1228
|
+
<xs:enumeration value="wen"/>
|
|
1229
|
+
<xs:enumeration value="wln"/>
|
|
1230
|
+
<xs:enumeration value="wol"/>
|
|
1231
|
+
<xs:enumeration value="xal"/>
|
|
1232
|
+
<xs:enumeration value="xho"/>
|
|
1233
|
+
<xs:enumeration value="yao"/>
|
|
1234
|
+
<xs:enumeration value="yap"/>
|
|
1235
|
+
<xs:enumeration value="yid"/>
|
|
1236
|
+
<xs:enumeration value="yor"/>
|
|
1237
|
+
<xs:enumeration value="ypk"/>
|
|
1238
|
+
<xs:enumeration value="zap"/>
|
|
1239
|
+
<xs:enumeration value="zbl"/>
|
|
1240
|
+
<xs:enumeration value="zen"/>
|
|
1241
|
+
<xs:enumeration value="zha"/>
|
|
1242
|
+
<xs:enumeration value="znd"/>
|
|
1243
|
+
<xs:enumeration value="zul"/>
|
|
1244
|
+
<xs:enumeration value="zun"/>
|
|
1245
|
+
<xs:enumeration value="zxx"/>
|
|
1246
|
+
<xs:enumeration value="zza"/>
|
|
1247
|
+
</xs:restriction>
|
|
1248
|
+
</xs:simpleType>
|
|
1249
|
+
<xs:simpleType name="languageIETF">
|
|
1250
|
+
<xs:restriction base="xs:language"/>
|
|
1251
|
+
</xs:simpleType>
|
|
1252
|
+
<xs:simpleType name="euLanguageIETF">
|
|
1253
|
+
<xs:restriction base="languageIETF">
|
|
1254
|
+
<xs:enumeration value="bg"/>
|
|
1255
|
+
<xs:enumeration value="bg-BG"/>
|
|
1256
|
+
<xs:enumeration value="cs"/>
|
|
1257
|
+
<xs:enumeration value="cs-CZ"/>
|
|
1258
|
+
<xs:enumeration value="da"/>
|
|
1259
|
+
<xs:enumeration value="da-DK"/>
|
|
1260
|
+
<xs:enumeration value="nl"/>
|
|
1261
|
+
<xs:enumeration value="nl-NL"/>
|
|
1262
|
+
<xs:enumeration value="en"/>
|
|
1263
|
+
<xs:enumeration value="en-GB"/>
|
|
1264
|
+
<xs:enumeration value="et"/>
|
|
1265
|
+
<xs:enumeration value="et-EE"/>
|
|
1266
|
+
<xs:enumeration value="fi"/>
|
|
1267
|
+
<xs:enumeration value="fi-FI"/>
|
|
1268
|
+
<xs:enumeration value="fr"/>
|
|
1269
|
+
<xs:enumeration value="fr-FR"/>
|
|
1270
|
+
<xs:enumeration value="de"/>
|
|
1271
|
+
<xs:enumeration value="de-DE"/>
|
|
1272
|
+
<xs:enumeration value="de-AT"/>
|
|
1273
|
+
<xs:enumeration value="el"/>
|
|
1274
|
+
<xs:enumeration value="el-GR"/>
|
|
1275
|
+
<xs:enumeration value="hu"/>
|
|
1276
|
+
<xs:enumeration value="hu-HU"/>
|
|
1277
|
+
<xs:enumeration value="ga"/>
|
|
1278
|
+
<xs:enumeration value="ga-IE"/>
|
|
1279
|
+
<xs:enumeration value="it"/>
|
|
1280
|
+
<xs:enumeration value="it-IT"/>
|
|
1281
|
+
<xs:enumeration value="lv"/>
|
|
1282
|
+
<xs:enumeration value="lv-LV"/>
|
|
1283
|
+
<xs:enumeration value="lt"/>
|
|
1284
|
+
<xs:enumeration value="lt-LT"/>
|
|
1285
|
+
<xs:enumeration value="mt"/>
|
|
1286
|
+
<xs:enumeration value="mt-MT"/>
|
|
1287
|
+
<xs:enumeration value="pl"/>
|
|
1288
|
+
<xs:enumeration value="pl-PL"/>
|
|
1289
|
+
<xs:enumeration value="pt"/>
|
|
1290
|
+
<xs:enumeration value="pt-PT"/>
|
|
1291
|
+
<xs:enumeration value="ro"/>
|
|
1292
|
+
<xs:enumeration value="ro-RO"/>
|
|
1293
|
+
<xs:enumeration value="sk"/>
|
|
1294
|
+
<xs:enumeration value="sk-SK"/>
|
|
1295
|
+
<xs:enumeration value="sl"/>
|
|
1296
|
+
<xs:enumeration value="sl-SI"/>
|
|
1297
|
+
<xs:enumeration value="es"/>
|
|
1298
|
+
<xs:enumeration value="es-ES"/>
|
|
1299
|
+
<xs:enumeration value="sv"/>
|
|
1300
|
+
<xs:enumeration value="sv-SE"/>
|
|
1301
|
+
</xs:restriction>
|
|
1302
|
+
</xs:simpleType>
|
|
1303
|
+
<xs:complexType name="languageElement" abstract="true">
|
|
1304
|
+
<xs:sequence>
|
|
1305
|
+
<xs:element name="Language" type="xs:string"/>
|
|
1306
|
+
</xs:sequence>
|
|
1307
|
+
</xs:complexType>
|
|
1308
|
+
<xs:complexType name="languageElementISO6392B">
|
|
1309
|
+
<xs:complexContent>
|
|
1310
|
+
<xs:restriction base="languageElement">
|
|
1311
|
+
<xs:sequence>
|
|
1312
|
+
<xs:element name="Language" type="euLanguageISO6392B"/>
|
|
1313
|
+
</xs:sequence>
|
|
1314
|
+
</xs:restriction>
|
|
1315
|
+
</xs:complexContent>
|
|
1316
|
+
</xs:complexType>
|
|
1317
|
+
<xs:complexType name="languageElementIETF">
|
|
1318
|
+
<xs:complexContent>
|
|
1319
|
+
<xs:restriction base="languageElement">
|
|
1320
|
+
<xs:sequence>
|
|
1321
|
+
<xs:element name="Language" type="euLanguageIETF"/>
|
|
1322
|
+
</xs:sequence>
|
|
1323
|
+
</xs:restriction>
|
|
1324
|
+
</xs:complexContent>
|
|
1325
|
+
</xs:complexType>
|
|
1326
|
+
<xs:complexType name="geographicBoundingBox">
|
|
1327
|
+
<xs:annotation>
|
|
1328
|
+
<xs:documentation xml:lang="en">Mandatory for services with an explicit geographic extent.</xs:documentation>
|
|
1329
|
+
</xs:annotation>
|
|
1330
|
+
<xs:sequence>
|
|
1331
|
+
<xs:element name="East" type="geoBoxDigits"/>
|
|
1332
|
+
<xs:element name="West" type="geoBoxDigits"/>
|
|
1333
|
+
<xs:element name="North" type="geoBoxDigits"/>
|
|
1334
|
+
<xs:element name="South" type="geoBoxDigits"/>
|
|
1335
|
+
</xs:sequence>
|
|
1336
|
+
</xs:complexType>
|
|
1337
|
+
<xs:complexType name="spatialResolution">
|
|
1338
|
+
<xs:annotation>
|
|
1339
|
+
<xs:documentation xml:lang="en">Mandatory if an equivalent scale or a resolution distance is available</xs:documentation>
|
|
1340
|
+
<xs:documentation xml:lang="en">Mandatory for services when there is a restriction on the spatial resolution for service</xs:documentation>
|
|
1341
|
+
</xs:annotation>
|
|
1342
|
+
<xs:choice>
|
|
1343
|
+
<xs:element name="EquivalentScale" type="xs:integer">
|
|
1344
|
+
<xs:annotation>
|
|
1345
|
+
<xs:documentation>An equivalent scale is generally expressed as an integer value expressing the scale denominator</xs:documentation>
|
|
1346
|
+
</xs:annotation>
|
|
1347
|
+
</xs:element>
|
|
1348
|
+
<xs:sequence>
|
|
1349
|
+
<xs:element name="ResolutionDistance" type="xs:integer">
|
|
1350
|
+
<xs:annotation>
|
|
1351
|
+
<xs:documentation>A resolution distance shall be expressed as a numerical value associated with a unit of length</xs:documentation>
|
|
1352
|
+
</xs:annotation>
|
|
1353
|
+
</xs:element>
|
|
1354
|
+
<xs:element name="UnitOfMeasure" type="xs:string"/>
|
|
1355
|
+
</xs:sequence>
|
|
1356
|
+
</xs:choice>
|
|
1357
|
+
<xs:attribute name="abstract" type="xs:string">
|
|
1358
|
+
<xs:annotation>
|
|
1359
|
+
<xs:documentation>
|
|
1360
|
+
ISO 19139 does not offer encoding of spatial resolution for services and INSPIRE Guidelines recommend to put it inside the abstract element in unstructured format, making it virtually impossible to extract the spatial resolution from the rest of the abstract text. The original abstract text is copied for reference.
|
|
1361
|
+
</xs:documentation>
|
|
1362
|
+
</xs:annotation>
|
|
1363
|
+
</xs:attribute>
|
|
1364
|
+
</xs:complexType>
|
|
1365
|
+
<xs:complexType name="uniqueResourceIdentifier">
|
|
1366
|
+
<xs:sequence>
|
|
1367
|
+
<xs:element name="Code" type="notEmptyString"/>
|
|
1368
|
+
<xs:element name="Namespace" type="xs:anyURI" minOccurs="0"/>
|
|
1369
|
+
</xs:sequence>
|
|
1370
|
+
<xs:attribute name="metadataURL" type="xs:anyURI"/>
|
|
1371
|
+
</xs:complexType>
|
|
1372
|
+
<!--
|
|
1373
|
+
<xs:complexType name="inspireTheme">
|
|
1374
|
+
<xs:complexContent>
|
|
1375
|
+
<xs:restriction base="keyword">
|
|
1376
|
+
<xs:sequence>
|
|
1377
|
+
<xs:element name="OriginatingControlledVocabulary" type="originatingControlledVocabularyGemetInspireThemes" minOccurs="0"/>
|
|
1378
|
+
<xs:element name="KeywordValue" type="keywordValue"/>
|
|
1379
|
+
</xs:sequence>
|
|
1380
|
+
</xs:restriction>
|
|
1381
|
+
</xs:complexContent>
|
|
1382
|
+
</xs:complexType>
|
|
1383
|
+
-->
|
|
1384
|
+
<xs:simpleType name="responsiblePartyRole">
|
|
1385
|
+
<xs:restriction base="xs:string">
|
|
1386
|
+
<xs:enumeration value="resourceProvider">
|
|
1387
|
+
<xs:annotation>
|
|
1388
|
+
<xs:documentation xml:lang="en">Resource Provider (resourceProvider): Party that supplies the resource.</xs:documentation>
|
|
1389
|
+
</xs:annotation>
|
|
1390
|
+
</xs:enumeration>
|
|
1391
|
+
<xs:enumeration value="custodian">
|
|
1392
|
+
<xs:annotation>
|
|
1393
|
+
<xs:documentation>6.2. Custodian (custodian): Party that accepts accountability and responsibility for the data and ensures appropriate care and maintenance of the resource.</xs:documentation>
|
|
1394
|
+
</xs:annotation>
|
|
1395
|
+
</xs:enumeration>
|
|
1396
|
+
<xs:enumeration value="owner">
|
|
1397
|
+
<xs:annotation>
|
|
1398
|
+
<xs:documentation>6.3. Owner (owner): Party that owns the resource.</xs:documentation>
|
|
1399
|
+
</xs:annotation>
|
|
1400
|
+
</xs:enumeration>
|
|
1401
|
+
<xs:enumeration value="user">
|
|
1402
|
+
<xs:annotation>
|
|
1403
|
+
<xs:documentation>6.4. User (user): Party who uses the resource.</xs:documentation>
|
|
1404
|
+
</xs:annotation>
|
|
1405
|
+
</xs:enumeration>
|
|
1406
|
+
<xs:enumeration value="distributor">
|
|
1407
|
+
<xs:annotation>
|
|
1408
|
+
<xs:documentation>6.5. Distributor (distributor): Party who distributes the resource.</xs:documentation>
|
|
1409
|
+
</xs:annotation>
|
|
1410
|
+
</xs:enumeration>
|
|
1411
|
+
<xs:enumeration value="originator">
|
|
1412
|
+
<xs:annotation>
|
|
1413
|
+
<xs:documentation>6.6. Originator (originator): Party who created the resource</xs:documentation>
|
|
1414
|
+
</xs:annotation>
|
|
1415
|
+
</xs:enumeration>
|
|
1416
|
+
<xs:enumeration value="pointOfContact">
|
|
1417
|
+
<xs:annotation>
|
|
1418
|
+
<xs:documentation>6.7. Point of Contact (pointOfContact): Party who can be contacted for acquiring knowledge about or acquisition of the resource.</xs:documentation>
|
|
1419
|
+
</xs:annotation>
|
|
1420
|
+
</xs:enumeration>
|
|
1421
|
+
<xs:enumeration value="principalInvestigator">
|
|
1422
|
+
<xs:annotation>
|
|
1423
|
+
<xs:documentation>6.8. Principal Investigator (principalInvestigator): Key party responsible for gathering information and conducting research.</xs:documentation>
|
|
1424
|
+
</xs:annotation>
|
|
1425
|
+
</xs:enumeration>
|
|
1426
|
+
<xs:enumeration value="processor">
|
|
1427
|
+
<xs:annotation>
|
|
1428
|
+
<xs:documentation>6.9. Processor (processor): Party who has processed the data in a manner such that the resource has been modified.</xs:documentation>
|
|
1429
|
+
</xs:annotation>
|
|
1430
|
+
</xs:enumeration>
|
|
1431
|
+
<xs:enumeration value="publisher">
|
|
1432
|
+
<xs:annotation>
|
|
1433
|
+
<xs:documentation>6.10. Publisher (publisher): Party who published the resource.</xs:documentation>
|
|
1434
|
+
</xs:annotation>
|
|
1435
|
+
</xs:enumeration>
|
|
1436
|
+
<xs:enumeration value="author">
|
|
1437
|
+
<xs:annotation>
|
|
1438
|
+
<xs:documentation>6.11. Author (author): Party who authored the resource.</xs:documentation>
|
|
1439
|
+
</xs:annotation>
|
|
1440
|
+
</xs:enumeration>
|
|
1441
|
+
</xs:restriction>
|
|
1442
|
+
</xs:simpleType>
|
|
1443
|
+
<xs:simpleType name="geoBoxDigits">
|
|
1444
|
+
<xs:restriction base="xs:string">
|
|
1445
|
+
<xs:annotation>
|
|
1446
|
+
<xs:documentation xml:lang="en">The bounding box shall be expressed with westbound and eastbound longitudes, and southbound and northbound latitudes in decimal degrees, with a precision of at least two decimals.</xs:documentation>
|
|
1447
|
+
</xs:annotation>
|
|
1448
|
+
<xs:pattern value="-?(0+|(0*[1-9]\d*))(\.\d{2,})"/>
|
|
1449
|
+
</xs:restriction>
|
|
1450
|
+
</xs:simpleType>
|
|
1451
|
+
<xs:complexType name="inspireTheme" abstract="true">
|
|
1452
|
+
<xs:complexContent>
|
|
1453
|
+
<xs:restriction base="keyword">
|
|
1454
|
+
<xs:sequence>
|
|
1455
|
+
<xs:element name="OriginatingControlledVocabulary" type="originatingControlledVocabularyGemetInspireThemes" minOccurs="1"/>
|
|
1456
|
+
<xs:element name="KeywordValue" type="keywordValue"/>
|
|
1457
|
+
</xs:sequence>
|
|
1458
|
+
</xs:restriction>
|
|
1459
|
+
</xs:complexContent>
|
|
1460
|
+
</xs:complexType>
|
|
1461
|
+
</xs:schema>
|