-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVelocitekGPX.xsd
38 lines (38 loc) · 1.59 KB
/
VelocitekGPX.xsd
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
<xsd:schema xmlns="https://www.velocitek.com/VelocitekGPX/v1"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="https://www.velocitek.com/VelocitekGPX/v1" elementFormDefault="qualified">
<xsd:annotation>
<xsd:documentation>
This schema defines the Velocitek extensions to be used with the GPX 1.1 schema.
The root elements defined by this schema are intended to be used as child elements of the "extensions" elements in the GPX 1.1 schema.
The GPX 1.1 schema is available at http://www.topografix.com/GPX/1/1/gpx.xsd.
</xsd:documentation>
</xsd:annotation>
<xsd:element name="TrackPointExtension" type="TrackPointExtension_t"/>
<xsd:complexType name="TrackPointExtension_t">
<xsd:annotation>
<xsd:documentation>
This type contains additional data that can be added by Velocitek products on track points.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="sog" type="NauticalSpeed_t" minOccurs="0"/>
<xsd:element name="cog" type="DirectionTrue_t" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
<xsd:simpleType name="NauticalSpeed_t">
<xsd:annotation>
<xsd:documentation>
This type contains a speed measured in knots.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:double"/>
</xsd:simpleType>
<xsd:simpleType name="DirectionTrue_t">
<xsd:annotation>
<xsd:documentation>
This type contains a direction measured in degrees relative to true north.
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:double"/>
</xsd:simpleType>
</xsd:schema>