![]() ![]() ![]() ![]() ITIS Phrase Tables, Draft [issued: 04-11-09]
-
21 -
This is a draft document of the SAE ATIS committee, subject to change.
ASN.1 Representation:
Closures ::= ENUMERATED {
closed-to-traffic (769), -- Used for road-closed and variations
closed (770), -- Hint: use this only for NON road-lane items (such as
-- a rest stop)
closed-ahead (771),
closed-intermittently (772),
closed-for-repairs (773),
closed-for-the-season (774),
blocked (775),
blocked-ahead (776),
reduced-to-one-lane (777),
reduced-to-two-lanes (778),
reduced-to-three-lanes (779),
collapse (780), -- Used with bridges and tunnels
out (781), -- Used with bridges and roads
-- Cancel Types
open-to-traffic (891),
open (892), -- Hint: use this only for NON road-lane items (such as
-- a rest stop)
reopened-to-traffic (893),
clearing (894),
cleared-from-road (895),
... -- # LOCAL_CONTENT_ITIS
}
-- Combine with lane-roadway (or generic locations) as needed to form things like
-- "toll lane closed ahead"
XML Representation:
<xs:simpleType name="Closures" >
<xs:union>
<xs:simpleType>
<xs:restriction base="xs:unsignedInt">
<xs:minInclusive value="768"/>
<xs:maxInclusive value="1023"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="closed to traffic" id="_769"/>
<xs:enumeration value="closed" id="_770"/>
<xs:enumeration value="closed ahead" id="_771"/>
<xs:enumeration value="closed intermittently" id="_772"/>
<xs:enumeration value="closed for repairs" id="_773"/>
<xs:enumeration value="closed for the season" id="_774"/>
<xs:enumeration value="blocked" id="_775"/>
<xs:enumeration value="blocked ahead" id="_776"/>
<xs:enumeration value="reduced to one lane" id="_777"/>
<xs:enumeration value="reduced to two lanes" id="_778"/>
<xs:enumeration value="reduced to three lanes" id="_779"/>
<xs:enumeration value="collapse" id="_780"/>
<xs:enumeration value="out" id="_781"/>
<xs:enumeration value="open to traffic" id="_891"/>
<xs:enumeration value="open" id="_892"/>
<xs:enumeration value="reopened to traffic" id="_893"/>
<xs:enumeration value="clearing" id="_894"/>
<xs:enumeration value="cleared from road" id="_895"/>
</xs:restriction>
</xs:simpleType >
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="\[.+\].*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="local:Closures" />
</xs:simpleType>
</xs:union>
|