summaryrefslogtreecommitdiffstats
path: root/petascope/src/petascope/wcs2/schemas/wcsCommon.xsd
diff options
context:
space:
mode:
authorConstantin <jucovschi@gmail.com>2010-06-02 20:09:42 +0200
committerConstantin <jucovschi@gmail.com>2010-06-02 20:09:42 +0200
commit40e12c6af9d05c3413efaf535c35c625b736cbb9 (patch)
tree6a9f6b86b55724e659ca270171496d82362de9cc /petascope/src/petascope/wcs2/schemas/wcsCommon.xsd
parentfcda34adb1c78d0929778e1324c873552d21ee1d (diff)
downloadrasdaman-upstream-40e12c6af9d05c3413efaf535c35c625b736cbb9.tar.gz
rasdaman-upstream-40e12c6af9d05c3413efaf535c35c625b736cbb9.tar.xz
rasdaman-upstream-40e12c6af9d05c3413efaf535c35c625b736cbb9.zip
preparing for joining with rasdaman open source
Diffstat (limited to 'petascope/src/petascope/wcs2/schemas/wcsCommon.xsd')
-rw-r--r--petascope/src/petascope/wcs2/schemas/wcsCommon.xsd87
1 files changed, 87 insertions, 0 deletions
diff --git a/petascope/src/petascope/wcs2/schemas/wcsCommon.xsd b/petascope/src/petascope/wcs2/schemas/wcsCommon.xsd
new file mode 100644
index 0000000..c1d5b33
--- /dev/null
+++ b/petascope/src/petascope/wcs2/schemas/wcsCommon.xsd
@@ -0,0 +1,87 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<schema targetNamespace="http://www.opengis.net/wcs/2.0"
+ xmlns:wcs="http://www.opengis.net/wcs/2.0"
+ xmlns:ows="http://www.opengis.net/ows/1.1"
+ xmlns:gml="http://www.opengis.net/gml/3.2"
+ xmlns="http://www.w3.org/2001/XMLSchema"
+ elementFormDefault="qualified" version="2.0.0" xml:lang="en">
+ <annotation>
+ <appinfo>wcsContents.xsd</appinfo>
+ <appinfo>
+ <GMLProfileSchema>http://schemas.opengis.net/wcs/2.0/gml/gmlwcsAll.xsd</GMLProfileSchema>
+ </appinfo>
+ <documentation>This XML Schema Document encodes the elements and types that are shared by multiple WCS operations.
+ Last updated: 2010-jan-11
+ Copyright (c) 2010 Open Geospatial Consortium, Inc, All Rights Reserved.
+ To obtain additional rights of use, visit http://www.opengeospatial.org/legal/.
+ </documentation>
+ </annotation>
+ <!-- ============================================================== -->
+ <!-- includes and imports -->
+ <!-- ============================================================== -->
+ <import namespace="http://www.opengis.net/gml/3.2" schemaLocation="http://schemas.opengis.net/gml/3.2.1/gml.xsd"/>
+ <import namespace="http://www.opengis.net/ows/1.1" schemaLocation="http://schemas.opengis.net/ows/1.1.0/owsAll.xsd"/>
+ <!-- ============================================================== -->
+ <!-- elements and types -->
+ <!-- ============================================================== -->
+ <complexType name="RequestBaseType">
+ <annotation>
+ <documentation>XML encoded WCS operation request base, for all operations except GetCapabilities. In this XML encoding, no "request" parameter is included, since the element name specifies the specific operation. </documentation>
+ </annotation>
+ <sequence/>
+ <attribute name="service" type="string" use="required" fixed="WCS">
+ <annotation>
+ <documentation>Service type identifier, where the value is the OWS type abbreviation. For WCS operation requests, the value is "WCS". </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="version" type="wcs:VersionStringType" use="required">
+ <annotation>
+ <documentation>Specification version for WCS version and operation. See Version parameter Subclause 7.3.1 of OWS Common for more information. </documentation>
+ </annotation>
+ </attribute>
+ </complexType>
+ <simpleType name="VersionStringType">
+ <restriction base="string">
+ <pattern value="2\.0\.\d+"/>
+ </restriction>
+ </simpleType>
+ <!-- =========================================================== -->
+ <element name="id" type="wcs:CoverageIdType">
+ <annotation>
+ <documentation>This element is a wrapper for the gml:id attribute. Needed to allow lists of identifiers. </documentation>
+ </annotation>
+ </element>
+ <complexType name="CoverageIdType">
+ <attribute ref="gml:id"/>
+ </complexType>
+ <!-- =========================================================== -->
+ <element name="ServiceParameters" type="wcs:ServiceParametersType"/>
+ <complexType name="ServiceParametersType">
+ <sequence>
+ <element name="supportedCrsList" type="wcs:CrsListType"/>
+ <element name="supportedFormatList" type="wcs:FormatListType"/>
+ </sequence>
+ </complexType>
+
+ <simpleType name="CrsListType">
+ <list itemType="anyURI"/>
+ </simpleType>
+ <simpleType name="FormatListType">
+ <list itemType="ows:MimeType"/>
+ </simpleType>
+ <!-- =========================================================== -->
+ <element name="WcsServiceMetadata" type="wcs:ServiceMetadataType"/>
+ <complexType name="ServiceMetadataType">
+ <sequence>
+ <!-- nothing defined here, it is a container for potential additions done by extensions -->
+ </sequence>
+ </complexType>
+ <!-- =========================================================== -->
+ <element name="Contents" type="wcs:ContentsType"/>
+ <complexType name="ContentsType">
+ <sequence>
+ <element ref="wcs:id" minOccurs="0" maxOccurs="unbounded"/>
+ </sequence>
+ </complexType>
+</schema>
+