Documentation for gpx1.1

Complex Type: ptType

[Table of contents]

Super-types: None
Sub-types: None
Name ptType
Used by (from the same schema document) Complex Type ptsegType
Abstract no
Documentation A geographic point with optional elevation and time. Available for use by other schemas.
XML Instance Representation
<...
lat=" latitudeType [1]

'The latitude of the point. Decimal degrees, WGS84 datum.'

"

lon=" longitudeType [1]

'The latitude of the point. Decimal degrees, WGS84 datum.'

"
>
<ele> xsd:decimal </ele> [0..1]

'The elevation (in meters) of the point.'

<time> xsd:dateTime </time> [0..1]

'The time that the point was recorded.'

</...>
Diagram
h882410155 h534892868
Schema Component Representation
<xsd:complexType name="ptType">
<xsd:sequence>
<-- elements must appear in this order -->
<xsd:element name="ele" type=" xsd:decimal " minOccurs="0"/>
<xsd:element name="time" type=" xsd:dateTime " minOccurs="0"/>
</xsd:sequence>
<xsd:attribute name="lat" type=" latitudeType " use="required"/>
<xsd:attribute name="lon" type=" longitudeType " use="required"/>
</xsd:complexType>