Navigation bar
  Print document Start Previous page
 73 of 303 
Next page End  

SAE J2735-Draft-Rev29 [issued: 12-11-08] 
-
73 -
This is an SAE Motor Vehicle Council draft document of the DSRC committee, subject to change.
   keepOutList      NodeList OPTIONAL, 
                    -- no stop points along the path 
   connectsTo       ConnectsTo  OPTIONAL, 
                    -- a list of other lanes and their
                    -- turning use by this lane
   ... 
   }
XML Representation:
<xs:complexType name="SpecialLane" >
      <xs:sequence>
         <xs:element name="laneNumber" type="LaneNumber" />
         <xs:element name="laneWidth" type="LaneWidth"  minOccurs="0"/>
         <xs:element name="laneAttributes" type="SpecialLaneAttributes" />
         <xs:element name="nodeList" type="NodeList" />
         <!-- path details of the lane and width -->
         <xs:element name="keepOutList" type="NodeList"  minOccurs="0"/>
         <!-- no stop points along the path -->
         <xs:element name="connectsTo" type="ConnectsTo"  minOccurs="0"/>
         <!-- a list of other lanes and their
         turning use by this lane -->
      </xs:sequence>
</xs:complexType>
Used By: This entry is used directly by one other data structure in this standard, a DF called
DF_Approach <ASN> <XML>.   In addition, this item may be used by data structures in other ITS
standards.
6.43 Data Element: DF_SpeedandHeadingConfidence
Use: A single byte long data frame combining multiple related bit fields into one byte.
ASN.1 Representation:
SpeedandHeadingConfidence ::= OCTET STRING (SIZE(1)) 
-- to be packed as follows: 
-- SEQUENCE {
--   heading   HeadingConfidence,   -x- 3 bits 
--   speed     SpeedConfidence,     -x- 3 bits 
--   throttle  ThrottleConfidence   -x- 2 bits
--   }
XML Representation:
<xs:complexType name="SpeedandHeadingConfidence" >
   <xs:simpleContent>
      <xs:annotation>
         <xs:documentation>       
            to be packed as follows:
            SEQUENCE  {
            heading   HeadingConfidence,    -x- 3 bits
            speed     SpeedConfidence,      -x- 3 bits
            throttle  ThrottleConfidence   -x- 2 bits
            }
         </xs:documentation>
      </xs:annotation>
      <xs:extension base="SpeedandHeadingConfidence-string" >
         <xs:attribute name="EncodingType" use="required">
           <xs:simpleType>
              <xs:restriction base="xs:NMTOKEN">
                 <xs:enumeration value="base64Binary"/>
              </xs:restriction>
           </xs:simpleType>
         </xs:attribute>
      </xs:extension>
   </xs:simpleContent>
</xs:complexType>
<xs:simpleType name="SpeedandHeadingConfidence-string">
   <xs:restriction base="xs:base64Binary">