Navigation bar
  Print document Start Previous page
 105 of 177 
Next page End  

SAE J2735-Draft-Rev15 [issued: 01-30-07]
-
105 -
This is an SAE Motor Vehicle Council draft document of the DSRC committee, subject to change.
XML Representation:
<xs:simpleType name="VerticalAccelerationThreshold-item" >
      <xs:annotation>
         <xs:appinfo>
            allOff (0) -- B&apos;0000  The condition All Off or not equipped
            leftFront (1) -- B&apos;0001  Left Front Event
            leftRear (2) -- B&apos;0010  Left Rear Event
            rightFront (4) -- B&apos;0100  Right Front Event
            rightRear (8) -- B&apos;1000  Right Rear Event
         </xs:appinfo>
         <xs:documentation>       
            to fit in 4 bits
         </xs:documentation>
      </xs:annotation>
      <xs:union>
         <xs:simpleType>
            <xs:restriction base="xs:int">
               <xs:minInclusive value="0"/>
               <xs:maxInclusive value="8"/>
            </xs:restriction>
         </xs:simpleType>
         <xs:simpleType>
            <xs:restriction base="xs:string">
               <xs:enumeration value="allOff"/>
               <xs:enumeration value="leftFront"/>
               <xs:enumeration value="leftRear"/>
               <xs:enumeration value="rightFront"/>
               <xs:enumeration value="rightRear"/>
            </xs:restriction>
         </xs:simpleType >
      </xs:union>
</xs:simpleType>
<xs:simpleType name="VerticalAccelerationThreshold">
   <xs:list itemType="VerticalAccelerationThreshold-item"/>
</xs:simpleType>
Used by: This entry is directly used by the following 2 other data structures in this standard (record type, descriptive name,
ASN.1, and XML name (if present) of each):
DF 
<ASN> <XML>, and
DF 
In addition, this item may be used by data structures in other ITS standards.
7.66 Data Element: DE_VerticalAcceleration
Use: A data element representing the signed vertical acceleration of the vehicle along the vertical axis in units of
0.080 meters per second squared.  This provides a range of over 1G in each direction in a one byte value.  
ASN.1 Representation:
VerticalAcceleration ::= INTEGER (-127..127) -- LSB units are 0.080 m/s^2
XML Representation:
<xs:simpleType name="VerticalAcceleration" >
      <xs:annotation>
         <xs:documentation>       
            LSB units are 0.080 m/s^2
         </xs:documentation>
      </xs:annotation>
      <xs:restriction base="xs:byte">
         <xs:minInclusive value="-127"/>
      </xs:restriction>
</xs:simpleType>