![]() ![]() ![]() ![]() SAE J2735-Draft-Rev15 [issued: 01-30-07]
-
126 -
This is an SAE Motor Vehicle Council draft document of the DSRC committee, subject to change.
<xs:enumeration value="gas powered vehicles" id="_9247"/>
<xs:enumeration value="diesel powered vehicles" id="_9248"/>
<xs:enumeration value="lPG vehicles" id="_9249"/>
<xs:enumeration value="military convoys" id="_9250"/>
<xs:enumeration value="military vehicles" id="_9251"/>
</xs:restriction>
</xs:simpleType >
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="\[.+\].*"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType>
<xs:restriction base="local:VehicleGroupAffected" />
</xs:simpleType>
</xs:union>
</xs:simpleType>
Used by: This entry is used directly by one other data structure in this standard, a MSG called MSG_EmergencyVehicleAlert
8.15 Data Frame: DF_Angle:frame [LRMS]
Use: An angle expressed as a choice of degrees, radians, or 0.01 (centi-) degrees.
ASN.1 Representation:
Angle ::= CHOICE {
deg REAL (0..360),
rad REAL (0..6.2832),
cdeg INTEGER (0..36000) -- cdeg is in
-- hundredths of degrees
}
XML Representation:
<xs:complexType name="Angle" >
<xs:choice>
<xs:element name="deg" >
<xs:simpleType>
<xs:restriction base="xs:float">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="360"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<!-- Warning, above may need hand editing -->
<!-- observe that min-max restrictions have -->
<!-- not been added to this template yet -->
<xs:element name="rad" >
<xs:simpleType>
<xs:restriction base="xs:float">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="6"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<!-- Warning, above may need hand editing -->
<!-- observe that min-max restrictions have -->
<!-- not been added to this template yet -->
<xs:element name="cdeg" >
<xs:simpleType>
<xs:restriction base="xs:unsignedShort">
<xs:maxInclusive value="36000"/>
</xs:restriction>
|