summaryrefslogtreecommitdiffstats
path: root/petascope/xml/ogc/wcs/1.1.0/wcsCommon.xsd
blob: fb1897fd8f055bcc765a5eb95bfc9a92c423fb9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?xml version="1.0" encoding="UTF-8"?>
<schema targetNamespace="http://www.opengis.net/wcs/1.1" 
xmlns:wcs="http://www.opengis.net/wcs/1.1" 
xmlns:gml="http://www.opengis.net/gml" 
xmlns="http://www.w3.org/2001/XMLSchema" 
elementFormDefault="qualified" version="1.1.0" xml:lang="en">
	<annotation>
		<appinfo>wcsContents.xsd 2006-09-23</appinfo>
		<appinfo>
			<GMLProfileSchema>http://schemas.opengis.net/wcs/1.1.0/gml4wcs.xsd</GMLProfileSchema>
		</appinfo>
		<documentation>This XML Schema Document encodes the elements and types that are shared by multiple WCS operations. 
		Copyright (c) 2006 Open Geospatial Consortium, Inc, All Rights Reserved. </documentation>
	</annotation>
	<!-- ==============================================================
 	includes and imports	
	============================================================== -->
	<import namespace="http://www.opengis.net/gml" schemaLocation="../../gml/3.1.1/base/gml.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="string" use="required" fixed="1.1.0">
			<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>
	<!-- =========================================================== -->
	<element name="Identifier" type="wcs:IdentifierType"/>
	<!-- =========================================================== -->
	<simpleType name="IdentifierType">
		<annotation>
			<documentation>Unambiguous identifier. Although there is no formal restriction on characters included, these identifiers shall be directly usable in GetCoverage operation requests for the specific server, whether those requests are encoded in KVP or XML. Each of these encodings requires that certain characters be avoided, encoded, or escaped (TBR). </documentation>
		</annotation>
		<restriction base="string">
			<pattern value=".+"/>
		</restriction>
	</simpleType>
	<!-- =========================================================== -->
	<complexType name="TimeSequenceType">
		<annotation>
			<documentation>List of time positions and periods. The time positions and periods should be ordered from the oldest to the newest, but this is not required. </documentation>
		</annotation>
		<choice maxOccurs="unbounded">
			<element ref="gml:timePosition"/>
			<element name="TimePeriod" type="wcs:TimePeriodType"/>
		</choice>
	</complexType>
	<!-- ========================================================= -->
	<complexType name="TimePeriodType">
		<annotation>
			<documentation>This is a variation of the GML TimePeriod, which allows the beginning and end of a time-period to be expressed in short-form inline using the begin/endPosition element, which allows an identifiable TimeInstant to be defined simultaneously with using it, or by reference, using xlinks on the begin/end elements. </documentation>
			<documentation>(Arliss) What does this mean? What do the TimeResolution and "frame" mean? </documentation>
		</annotation>
		<sequence>
			<element name="BeginPosition" type="gml:TimePositionType"/>
			<element name="EndPosition" type="gml:TimePositionType"/>
			<element name="TimeResolution" type="wcs:TimeDurationType" minOccurs="0"/>
		</sequence>
		<attribute name="frame" type="anyURI" use="optional" default="#ISO-8601"/>
	</complexType>
	<!-- ===================================== -->
	<simpleType name="TimeDurationType">
		<annotation>
			<documentation xml:lang="en">
      Base type for describing temporal length or distance. The value space is further 
      constrained by subtypes that conform to the ISO 8601 or ISO 11404 standards.
      </documentation>
		</annotation>
		<union memberTypes="duration decimal"/>
	</simpleType>
	<!-- ========================================================= -->
</schema>