![]() ![]() ![]() ![]() SAE J2735-Draft-Rev26 [issued: 09-18-08]
-
48 -
This is an SAE Motor Vehicle Council draft document of the DSRC committee, subject to change.
approach such as the road type classification and any barriers which are present.
ASN.1 Representation:
ApproachObject ::= SEQUENCE {
refPoint ReferencePoint OPTIONAL,
-- optional reference from which subsequent
-- data points in this link are offset
approaches SEQUENCE (SIZE(1..32)) OF
Approach OPTIONAL,
-- list of Approaches and thier lanes
egresses SEQUENCE (SIZE(0..32)) OF
Approach OPTIONAL,
-- list of Egresses and thier lanes
...
}
XML Representation:
<xs:complexType name="ApproachObject" >
<xs:sequence>
<xs:element name="refPoint" type="ReferencePoint" minOccurs="0"/>
<!-- OPTIONAL reference from which subsequent
data points in this link are offset -->
<xs:element name="approaches" minOccurs="0">
<xs:complexType>
<xs:sequence minOccurs="1" maxOccurs="32">
<xs:element name="approache" type="Approach" />
<!-- list of Approaches and thier lanes -->
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="egresses" minOccurs="0">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="32">
<!-- list of Egresses and thier lanes -->
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
Used By: This entry is used directly by one other data structure in this standard, a DF called
DF_Intersection <ASN> <XML>. In addition, this item may be used by data structures in other ITS
standards.
Remarks: Note that the offset data found in the underlying data structures will use the values found in the
last ReferencePoint and the last NodeConfig as the basis to which the offset are added values. Normally
this will be found in the enclosing object (typically an intersection type) but it may be reestablished here if
needed (this is intended for use in the case of very large intersections which may exceed the offset ranges).
If present, it applies to the scope of this link object, and not to any subsequent link objects which may be
found in the same message. Similar logic is applied to the Node Configuration element, if present.
6.7 Data Frame: DF_BarrierLane
Use: A Barrier Lane data structure provides a unique lane number, as well as various details such as its
width and attributes and a path within an approach structure for different types of traffic barriers, medians,
and other roadways geometry and the like. The BarrierAttributes data element denotes what generally type
of Barrier that it is. The nodeList data element provides a detailed set of offset values to map the path of
the Barrier.
ASN.1 Representation:
BarrierLane ::= SEQUENCE {
laneNumber LaneNumber,
laneWidth LaneWidth OPTIONAL,
barrierAttributes BarrierAttributes,
|