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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
|
<?xml version="1.0" encoding="UTF-8"?>
<schema targetNamespace="http://www.opengis.net/gml" xmlns:gml="http://www.opengis.net/gml" xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="3.1.1 2010-01-28">
<annotation>
<appinfo source="urn:opengis:specification:gml:schema-xsd:dynamicFeature:3.1.1"/>
<documentation xml:lang="en">Basic support for tracking moving objects and objects with changing state.
GML is an OGC Standard.
Copyright (c) 2001,2005,2010 Open Geospatial Consortium, Inc. All Rights Reserved.
To obtain additional rights of use, visit http://www.opengeospatial.org/legal/ .
</documentation>
</annotation>
<!-- ================================================================== -->
<include schemaLocation="feature.xsd"/>
<include schemaLocation="direction.xsd"/>
<!-- ================================================================== -->
<element name="dataSource" type="gml:StringOrRefType"/>
<element name="status" type="gml:StringOrRefType"/>
<!-- ================================================================== -->
<element name="_TimeSlice" type="gml:AbstractTimeSliceType" abstract="true" substitutionGroup="gml:_GML"/>
<!-- ===================================== -->
<complexType name="AbstractTimeSliceType" abstract="true">
<annotation>
<documentation xml:lang="en">A timeslice encapsulates the time-varying properties of a dynamic feature--it
must be extended to represent a timestamped projection of a feature. The dataSource
property describes how the temporal data was acquired.</documentation>
</annotation>
<complexContent>
<extension base="gml:AbstractGMLType">
<sequence>
<element ref="gml:validTime"/>
<element ref="gml:dataSource" minOccurs="0"/>
</sequence>
</extension>
</complexContent>
</complexType>
<!-- ================================================================== -->
<element name="MovingObjectStatus" type="gml:MovingObjectStatusType" substitutionGroup="gml:_TimeSlice"/>
<!-- ===================================== -->
<complexType name="MovingObjectStatusType">
<annotation>
<documentation xml:lang="en">This type encapsulates various dynamic properties of moving objects
(points, lines, regions). It is useful for dealing with features whose
geometry or topology changes over time.</documentation>
</annotation>
<complexContent>
<extension base="gml:AbstractTimeSliceType">
<sequence>
<element ref="gml:location"/>
<element name="speed" type="gml:MeasureType" minOccurs="0"/>
<element name="bearing" type="gml:DirectionPropertyType" minOccurs="0"/>
<element name="acceleration" type="gml:MeasureType" minOccurs="0"/>
<element name="elevation" type="gml:MeasureType" minOccurs="0"/>
<element ref="gml:status" minOccurs="0"/>
</sequence>
</extension>
</complexContent>
</complexType>
<!-- ================================================================== -->
<element name="history" type="gml:HistoryPropertyType"/>
<!-- ===================================== -->
<complexType name="HistoryPropertyType">
<annotation>
<documentation xml:lang="en">The history relationship associates a feature with a sequence of TimeSlice instances.</documentation>
</annotation>
<sequence maxOccurs="unbounded">
<element ref="gml:_TimeSlice"/>
</sequence>
</complexType>
<!-- ================================================================== -->
<element name="track" type="gml:TrackType" substitutionGroup="gml:history"/>
<!-- ===================================== -->
<complexType name="TrackType">
<annotation>
<documentation xml:lang="en">The track of a moving object is a sequence of specialized timeslices that indicate the status of the object.</documentation>
</annotation>
<complexContent>
<restriction base="gml:HistoryPropertyType">
<sequence maxOccurs="unbounded">
<element ref="gml:MovingObjectStatus"/>
</sequence>
</restriction>
</complexContent>
</complexType>
<!-- ================================================================== -->
<group name="dynamicProperties">
<sequence>
<element ref="gml:validTime" minOccurs="0"/>
<element ref="gml:history" minOccurs="0"/>
<element ref="gml:dataSource" minOccurs="0"/>
</sequence>
</group>
<!-- ================================================================== -->
<complexType name="DynamicFeatureType">
<annotation>
<documentation>A dynamic feature may possess a history and/or a timestamp.</documentation>
</annotation>
<complexContent>
<extension base="gml:AbstractFeatureType">
<group ref="gml:dynamicProperties"/>
</extension>
</complexContent>
</complexType>
<!-- ===================================== -->
<complexType name="DynamicFeatureCollectionType">
<annotation>
<documentation>A dynamic feature collection may possess a history and/or a timestamp.</documentation>
</annotation>
<complexContent>
<extension base="gml:FeatureCollectionType">
<group ref="gml:dynamicProperties"/>
</extension>
</complexContent>
</complexType>
<!-- ===================================== -->
</schema>
|