|     SAE J2735-Draft-Rev28 [issued: 11-10-08]   -  66 -  This is an SAE Motor Vehicle Council draft document of the DSRC committee, subject to change.                    </xs:element>                    <!-- Vehicle Weight by axel -->                 </xs:sequence>              </xs:complexType>           </xs:element>           <xs:element name="axle" >              <xs:complexType>                 <xs:sequence minOccurs="0" maxOccurs="16">                    <xs:element name="axle-item" >                       <xs:complexType>                          <xs:sequence>                             <xs:element name="location" type="AxleLocation" />                             <xs:element name="weight" type="AxleWeight" />                          </xs:sequence>                       </xs:complexType>                    </xs:element>                 </xs:sequence>              </xs:complexType>           </xs:element>           <xs:element name="trailerWeight" type="TrailerWeight" />           <xs:element name="cargoWeight" type="CargoWeight" />           <xs:element name="steeringAxleTemperature" type="SteeringAxleTemperature" />           <xs:element name="driveAxleLocation" type="DriveAxleLocation" />           <xs:element name="driveAxleLiftAirPressure" type="DriveAxleLiftAirPressure" />           <xs:element name="driveAxleTemperature" type="DriveAxleTemperature" />           <xs:element name="driveAxleLubePressure" type="DriveAxleLubePressure" />           <xs:element name="steeringAxleLubePressure" type="SteeringAxleLubePressure" />        </xs:sequence>  </xs:complexType>   In addition, this item may be used by data structures in other ITS standards.  6.26 Data Frame: DF_MovementState  Use:  The  MovementState data frame is used to convey various information about the current signal state  of a designated collection of one or more lanes of a common type.  Note that lanes types supported include  both motorized vehicle lanes as well as pedestrian lanes and dedicated train and transit lanes.   Of the  reported data elements, the time to change (the time remaining in the current state) is often the most of  value.   Lanes with a common state (typically adjacent sets of lanes in an approach) in a signalized  intersection will have individual lane values such as total vehicle counts, summed.   It is used in the SPAT  message to convey every movement in the approaches in a given intersections so that vehicles, when  combined with certain map information, can determine the state of the signal lights.  ASN.1 Representation:    MovementState ::= SEQUENCE {     -- The MovementNumber is contained in the enclosing DF.      movementName     DescriptiveName OPTIONAL,                      -- uniquely defines movement by nzame        laneCnt          INTEGER (1..255) OPTIONAL,                      -- the number of lanes to follow     laneSet          LaneSet,                      -- each encoded as a: LaneNumber,                       -- the collection of lanes, by num,                       -- to which this state data applies     -- For the current movement State, you may CHOICE one of the below:            currState     SignalLightState OPTIONAL,                              -- the state of a Motorised lane            pedState      PedestrianSignalState OPTIONAL,                          -- the state of a Pedestrian type lane            specialState  SpecialSignalState OPTIONAL,                          -- the state of a special type lane                          -- such as a deadicatd train lane     timeToChange     TimeToChange,                       -- Roy suggests abs. time here to avoid latency issues                      -- and not using a time-to-live value,   |