Navigation bar
  Print document Start Previous page
 244 of 321 
Next page End  

SAE J2735-Draft-Rev28 [issued: 11-10-08] 
-
244 -
This is an SAE Motor Vehicle Council draft document of the DSRC committee, subject to change.
          name     IA5String(SIZE(1..32)),
          value    IA5String(SIZE(1..10000))
          -- any internal structure of the value string is the 
          -- responsibility of the data creator to manage. If the 
          -- content is binary, convert to bin hex strings.
     } 
     -- the order of the sets shall not be changed
}
XML Representation:
<xs:complexType name="TailSet" >
      <xs:sequence>
         <xs:element name="set" >
            <xs:complexType>
               <xs:sequence>
                  <xs:element name="name" >
                     <xs:simpleType>
                        <xs:restriction base="xs:string">
                           <xs:minLength value="1"/>
                           <xs:maxLength value="32"/>
                        </xs:restriction>
                     </xs:simpleType>
                  </xs:element>
                  <xs:element name="value" >
                     <xs:simpleType>
                        <xs:restriction base="xs:string">
                           <xs:minLength value="1"/>
                           <xs:maxLength value="10000"/>
                        </xs:restriction>
                     </xs:simpleType>
                  </xs:element>
                  <!-- any internal structure of the value string is the
                  responsibility of the data creator to manage. If the
                  content is binary,  convert to bin hex strings. -->
               </xs:sequence>
            </xs:complexType>
         </xs:element>
         <!-- the order of the sets shall not be changed -->
      </xs:sequence>
</xs:complexType>
In addition, this item may be used by data structures in other ITS standards.
8.29 Data Element: EXT_VerticalDatum:cd [LRMS]
Use: The underlying vertical geodetic datum for a geographic coordinate.
ASN.1 Representation:
VerticalDatum ::= ENUMERATED { wgs-84 (0),
  navd   (1),
  ...}   -- # LOCAL_CONTENT
XML Representation:
<xs:simpleType name="VerticalDatum" >
      <xs:annotation>
         <xs:appinfo>
            wgs 84 (0)
            navd (1)
         </xs:appinfo>
         <xs:documentation>       
            # LOCAL_CONTENT
         </xs:documentation>
      </xs:annotation>
      <xs:union>
         <xs:simpleType>
            <xs:restriction base="xs:unsignedInt">
               <xs:minInclusive value="0"/>
               <xs:maxInclusive value="1"/>