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

SAE J2735-Draft-Rev28 [issued: 11-10-08] 
-
44 -
This is an SAE Motor Vehicle Council draft document of the DSRC committee, subject to change.
known phrases, but allows limited text for local place names. The supported message types specify several
sub-dialects of ITIS phrase patterns to further reduce the number of bytes to be sent.  The expressed
messages are active at a precise start and duration period, which can be specified to a resolution of a
minute.  The affected local area can be expressed using either a radius system or a system of short defined
regions which is similar to the way roadway geometry is defined in the map fragment messages.   
ASN.1 Representation:
TravelerInformation ::= SEQUENCE {
   msgID           DSRCmsgID
   packetID   UniqueMSGID,  -- (octect 9 bytes)?
              -- is not this handled in the msg header?
   dataFrameCount  INTEGER(1..32) OPTIONAL, 
               -- is not needed
   
   dataFrames SEQUENCE (SIZE(1..8)) OF SEQUENCE {
   
      -- Part I, Frame header
      frameType   TravelerInfoType,  -- (enum, advisory or road sign)
      msgId       CHOICE  {
                     advisoryNumber  ATISAdvisoryNumber, -- 2 bytes?  
                                     -- perhaps issurs and number? 
                                     -- links to ATIS msgs
                     roadSignID      RoadSignID  
                                     -- to be defined as a DF
                     },
      startYear   DYear OPTIONAL, 
                  -- Current year used if missing
      startTime   MinuteOfTheYear,
      duratonTime MinutesDuration,
      priority    SignPrority,
   
      -- Part II, Appliciable Regions of Use
      regions  SEQUENCE (SIZE(1..8)) OF ValidRegion,
   
      -- Part III, Content
      content  CHOICE  {
                  advisory       ITIS.ITIScodesAndText,           
                                 -- typical ITIS warnings
                  workZone       WorkZone,       
                                 -- work zone signs and directions
                  genericSign    GenericSignage
                                 -- MUTCD signs and directions
                  speedLimit     SpeedLimit,     
                                 -- speed limits and cautions
                  exitService    ExitService     
                                 -- roadside avaiable services
                  -- other types may be added in future revisions
                  },  --# UNTAGGED 
      url     URL-Short OPTIONAL  -- May link to image or other content
      },
   crc        MsgCRC,
   ... -- # LOCAL_CONTENT
   }
XML Representation:
<xs:complexType name="TravelerInformation" >
      <xs:sequence>
         <xs:element name="msgID" type="DSRCmsgID" />
         <xs:element name="packetID" type="UniqueMSGID" />
         <!-- (octect 9 bytes) ?
         is not this handled in the msg header? -->
         <xs:element name="dataFrameCount"  minOccurs="0">
            <xs:simpleType>
               <xs:restriction base="xs:unsignedByte">
                  <xs:minInclusive value="1"/>
                  <xs:maxInclusive value="32"/>
               </xs:restriction>