Documentation for ATIS-Draft-03-00-79

Simple Type: CompassDirection

[Table of contents]

Super-types: None
Sub-types: None
Name CompassDirection
Used by (from the same schema document) Complex Type ManeuverInstruction , Complex Type WeatherInformation
Content
  • Union of following types:
    • Locally defined type:
      • Base XSD Type: unsignedInt
      • 7998 <= value <= 8005
    • Locally defined type:
      • Base XSD Type: string
      • value comes from list: {'north'|'south'|'east'|'west'|'northeast'|'northwest'|'southeast'|'southwest'}
Documentation Compass Points
Application Data north (7998) south (7999) east (8000) west (8001) northeast (8002) northwest (8003) southeast (8004) southwest (8005)
Diagram
Schema Component Representation
<xs:simpleType name="CompassDirection">
<xs:union>
<xs:simpleType>
<xs:restriction base=" xs:unsignedInt ">
<xs:minInclusive value="7998"/>
<xs:maxInclusive value="8005"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base=" xs:string ">
<xs:enumeration value="north"/>
<xs:enumeration value="south"/>
<xs:enumeration value="east"/>
<xs:enumeration value="west"/>
<xs:enumeration value="northeast"/>
<xs:enumeration value="northwest"/>
<xs:enumeration value="southeast"/>
<xs:enumeration value="southwest"/>
</xs:restriction>
</xs:simpleType>
</xs:union>
</xs:simpleType>