Preferences Schema
HEIGHT Element
See Also  Send comments on this topic.
Preferences Schema : HEIGHT Element

Glossary Item Box

Description

Used to specify height settings for the GPS in ArcPadPrefs.apx.

Diagram

HEIGHT Element

Overview

HEIGHT
Used to specify height settings for the GPS in ArcPadPrefs.apx.
antennaheight optional xs:double
The antenna height specified in the GPS Height page of the GPS Preferences dialog in ArcPad, in meters. This value is subtracted from the height reported by the GPS receiver.
geiodseparation optional xs:double
The geoid separation specified in the GPS Height page of the GPS Preferences dialog in ArcPad, in meters. This value is subtracted from the height reported by the GPS receiver.
units optional xs:string
The units code that specifies height units for the geoid separation and antenna height in the GPS Height page of the GPS Preferences dialog in ArcPad.
usemapunits optional Restriction of xs:string
Specifies whether to use the units of the map's coordinate system when storing GPS elevation. If the coordinate system's units are degrees, the height units are meters.

Attributes

NameTypeUseDefaultFixedDescription
antennaheightxs:doubleoptional0.0 The antenna height specified in the GPS Height page of the GPS Preferences dialog in ArcPad, in meters. This value is subtracted from the height reported by the GPS receiver.
geiodseparationxs:doubleoptional0.0 The geoid separation specified in the GPS Height page of the GPS Preferences dialog in ArcPad, in meters. This value is subtracted from the height reported by the GPS receiver.
unitsxs:stringoptional  The units code that specifies height units for the geoid separation and antenna height in the GPS Height page of the GPS Preferences dialog in ArcPad.
usemapunitsRestriction of xs:stringoptionaltrue Specifies whether to use the units of the map's coordinate system when storing GPS elevation. If the coordinate system's units are degrees, the height units are meters.

Remarks

The units, geoidseparation, and antennaheight attributes are used to calculate the reported GPS height.
The reported GPS height is calculated as FEATUREHEIGHT = GPSHEIGHT - GEOIDSEPARATION - ANTENNAHEIGHT, where:
FEATUREHEIGHT = reported/stored GPS elevation (Z-value in ShapeZ files)
GPSHEIGHT = height reported by the GPS receiver (HAE, where available)
GEOIDSEPARATION = value specified in geoidseparation attribute
ANTENNAHEIGHT = value specified in antennaheight attribute

Examples

Source

<xs:element name="HEIGHT" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:annotation>
    <xs:documentation>Used to specify height settings for the GPS in ArcPadPrefs.apx.</xs:documentation>
  </xs:annotation>
  <xs:complexType>
    <xs:attribute default="0.0" name="antennaheight" type="xs:double">
      <xs:annotation>
        <xs:documentation>The antenna height specified in the GPS Height page of the GPS Preferences dialog in ArcPad, in meters. This value is subtracted from the height reported by the GPS receiver.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute default="0.0" name="geiodseparation" type="xs:double">
      <xs:annotation>
        <xs:documentation>The geoid separation specified in the GPS Height page of the GPS Preferences dialog in ArcPad, in meters. This value is subtracted from the height reported by the GPS receiver.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute name="units" type="xs:string">
      <xs:annotation>
        <xs:documentation>The units code that specifies height units for the geoid separation and antenna height in the GPS Height page of the GPS Preferences dialog in ArcPad.</xs:documentation>
      </xs:annotation>
    </xs:attribute>
    <xs:attribute default="true" name="usemapunits">
      <xs:annotation>
        <xs:documentation>Specifies whether to use the units of the map's coordinate system when storing GPS elevation. If the coordinate system's units are degrees, the height units are meters.</xs:documentation>
      </xs:annotation>
      <xs:simpleType>
        <xs:restriction base="xs:string">
          <xs:enumeration value="true" />
          <xs:enumeration value="false" />
        </xs:restriction>
      </xs:simpleType>
    </xs:attribute>
  </xs:complexType>
</xs:element>

See Also

© 2013 All Rights Reserved.