Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<schema targetNamespace="http://www.opengis.net/gml/3.2" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="3.2.1.2">
3
	<annotation>
4
		<appinfo source="urn:x-ogc:specification:gml:schema-xsd:dynamicFeature:3.2.1">dynamicFeature.xsd</appinfo>
5
		<documentation>See ISO/DIS 19136 15.6.
6
A number of types and relationships are defined to represent the time-varying properties of geographic features. 
7
In a comprehensive treatment of spatiotemporal modeling, Langran (see Bibliography) distinguished three principal temporal entities: states, events, and evidence; the schema specified in the following Subclauses incorporates elements for each.
8

    
9
GML is an OGC Standard.
10
Copyright (c) 2007,2010 Open Geospatial Consortium.
11
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
12
		</documentation>
13
	</annotation>
14
	<include schemaLocation="gml.xsd"/>
15
	<include schemaLocation="feature.xsd"/>
16
	<include schemaLocation="direction.xsd"/>
17
	<element name="dataSource" type="gml:StringOrRefType">
18
		<annotation>
19
			<documentation>Evidence is represented by a simple gml:dataSource or gml:dataSourceReference property that indicates the source of the temporal data. The remote link attributes of the gml:dataSource element have been deprecated along with its current type.</documentation>
20
		</annotation>
21
	</element>
22
	<element name="dataSourceReference" type="gml:ReferenceType">
23
		<annotation>
24
			<documentation>Evidence is represented by a simple gml:dataSource or gml:dataSourceReference property that indicates the source of the temporal data.</documentation>
25
		</annotation>
26
	</element>
27
	<group name="dynamicProperties">
28
		<annotation>
29
			<documentation>A convenience group. This allows an application schema developer to include dynamic properties in a content model in a standard fashion.</documentation>
30
		</annotation>
31
		<sequence>
32
			<element ref="gml:validTime" minOccurs="0"/>
33
			<element ref="gml:history" minOccurs="0"/>
34
			<element ref="gml:dataSource" minOccurs="0"/>
35
			<element ref="gml:dataSourceReference" minOccurs="0"/>
36
		</sequence>
37
	</group>
38
	<element name="DynamicFeature" type="gml:DynamicFeatureType" substitutionGroup="gml:AbstractFeature">
39
		<annotation>
40
			<documentation>States are captured by time-stamped instances of a feature. The content model extends the standard gml:AbstractFeatureType with the gml:dynamicProperties model group.
41
Each time-stamped instance represents a 'snapshot' of a feature. The dynamic feature classes will normally be extended to suit particular applications.  A dynamic feature bears either a time stamp or a history.</documentation>
42
		</annotation>
43
	</element>
44
	<complexType name="DynamicFeatureType">
45
		<complexContent>
46
			<extension base="gml:AbstractFeatureType">
47
				<group ref="gml:dynamicProperties"/>
48
			</extension>
49
		</complexContent>
50
	</complexType>
51
	<element name="DynamicFeatureCollection" type="gml:DynamicFeatureCollectionType" substitutionGroup="gml:DynamicFeature">
52
		<annotation>
53
			<documentation>A gml:DynamicFeatureCollection is a feature collection that has a gml:validTime property (i.e. is a snapshot of the feature collection) or which has a gml:history property that contains one or more gml:AbstractTimeSlices each of which contain values of the time varying properties of the feature collection.  Note that the gml:DynamicFeatureCollection may be one of the following:
54
1.	A feature collection which consists of static feature members (members do not change in time) but which has properties of the collection object as a whole that do change in time .  
55
2.	A feature collection which consists of dynamic feature members (the members are gml:DynamicFeatures) but which also has properties of the collection as a whole that vary in time.</documentation>
56
		</annotation>
57
	</element>
58
	<complexType name="DynamicFeatureCollectionType">
59
		<complexContent>
60
			<extension base="gml:DynamicFeatureType">
61
				<sequence>
62
					<element ref="gml:dynamicMembers"/>
63
				</sequence>
64
			</extension>
65
		</complexContent>
66
	</complexType>
67
	<element name="dynamicMembers" type="gml:DynamicFeatureMemberType"/>
68
	<complexType name="DynamicFeatureMemberType">
69
		<complexContent>
70
			<extension base="gml:AbstractFeatureMemberType">
71
				<sequence>
72
					<element ref="gml:DynamicFeature" minOccurs="0" maxOccurs="unbounded"/>
73
				</sequence>
74
				<attributeGroup ref="gml:AssociationAttributeGroup"/>
75
			</extension>
76
		</complexContent>
77
	</complexType>
78
	<element name="AbstractTimeSlice" type="gml:AbstractTimeSliceType" abstract="true" substitutionGroup="gml:AbstractGML">
79
		<annotation>
80
			<documentation>To describe an event — an action that occurs at an instant or over an interval of time — GML provides the gml:AbtractTimeSlice element. A timeslice encapsulates the time-varying properties of a dynamic feature -- it shall be extended to represent a time stamped projection of a specific feature. The gml:dataSource property describes how the temporal data was acquired.
81
A gml:AbstractTimeSlice instance is a GML object that encapsulates updates of the dynamic—or volatile—properties that reflect some change event; it thus includes only those feature properties that have actually changed due to some process.
82
gml:AbstractTimeSlice basically provides a facility for attribute-level time stamping, in contrast to the object-level time stamping of dynamic feature instances. 
83
The time slice can thus be viewed as event or process-oriented, whereas a snapshot is more state or structure-oriented. A timeslice has richer causality, whereas a snapshot merely portrays the status of the whole. 
84
</documentation>
85
		</annotation>
86
	</element>
87
	<complexType name="AbstractTimeSliceType" abstract="true">
88
		<complexContent>
89
			<extension base="gml:AbstractGMLType">
90
				<sequence>
91
					<element ref="gml:validTime"/>
92
					<element ref="gml:dataSource" minOccurs="0"/>
93
				</sequence>
94
			</extension>
95
		</complexContent>
96
	</complexType>
97
	<element name="history" type="gml:HistoryPropertyType">
98
		<annotation>
99
			<documentation>A generic sequence of events constitute a gml:history of an object.
100
The gml:history element contains a set of elements in the substitution group headed by the abstract element gml:AbstractTimeSlice, representing the time-varying properties of interest. The history property of a dynamic feature associates a feature instance with a sequence of time slices (i.e. change events) that encapsulate the evolution of the feature.</documentation>
101
		</annotation>
102
	</element>
103
	<complexType name="HistoryPropertyType">
104
		<sequence>
105
			<element ref="gml:AbstractTimeSlice" maxOccurs="unbounded"/>
106
		</sequence>
107
		<attributeGroup ref="gml:OwnershipAttributeGroup"/>
108
	</complexType>
109
</schema>
(12-12/30)