ptType

A geographic point with optional elevation and time.  Available for use by other schemas.

Complex Type Information

Model

Children: ele, time

Attributes

QName Type Fixed Default Use Inheritable Annotation
lat latitudeType required
The latitude of the point.  Decimal degrees, WGS84 datum.
lon longitudeType required
The latitude of the point.  Decimal degrees, WGS84 datum.

Used By

Element ptsegType/pt

Source

<xsd:complexType name="ptType">
  <xsd:annotation>
    <xsd:documentation>A geographic point with optional elevation and time. Available for use by other schemas.</xsd:documentation>
  </xsd:annotation>
  <xsd:sequence>
    <!-- elements must appear in this order -->
    <xsd:element name="ele" type="xsd:decimal" minOccurs="0">
      <xsd:annotation>
        <xsd:documentation>The elevation (in meters) of the point.</xsd:documentation>
      </xsd:annotation>
    </xsd:element>
    <xsd:element name="time" type="xsd:dateTime" minOccurs="0">
      <xsd:annotation>
        <xsd:documentation>The time that the point was recorded.</xsd:documentation>
      </xsd:annotation>
    </xsd:element>
  </xsd:sequence>
  <xsd:attribute name="lat" type="latitudeType" use="required">
    <xsd:annotation>
      <xsd:documentation>The latitude of the point. Decimal degrees, WGS84 datum.</xsd:documentation>
    </xsd:annotation>
  </xsd:attribute>
  <xsd:attribute name="lon" type="longitudeType" use="required">
    <xsd:annotation>
      <xsd:documentation>The latitude of the point. Decimal degrees, WGS84 datum.</xsd:documentation>
    </xsd:annotation>
  </xsd:attribute>
</xsd:complexType>