ETSI-ITS-CDD.md 328 KB
Newer Older
ASN.1 Checker's avatar
ASN.1 Checker committed
EulerAnglesWithConfidence ::= SEQUENCE {
    zAngle CartesianAngle,
    yAngle CartesianAngle OPTIONAL,
    xAngle CartesianAngle OPTIONAL
}
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="EuVehicleCategoryCode"></a>EuVehicleCategoryCode
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.16].
ASN.1 Checker's avatar
ASN.1 Checker committed
 The following options are available:

ASN.1 Checker's avatar
ASN.1 Checker committed
* euVehicleCategoryL of type [**EuVehicleCategoryL**](#EuVehicleCategoryL) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  indicates a vehicle in the L category.


ASN.1 Checker's avatar
ASN.1 Checker committed
* euVehicleCategoryM of type [**EuVehicleCategoryM**](#EuVehicleCategoryM) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  indicates a vehicle in the M category.


     
ASN.1 Checker's avatar
ASN.1 Checker committed
* euVehicleCategoryN of type [**EuVehicleCategoryN**](#EuVehicleCategoryN) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  indicates a vehicle in the N category.


     
ASN.1 Checker's avatar
ASN.1 Checker committed
* euVehicleCategoryO of type [**EuVehicleCategoryO**](#EuVehicleCategoryO) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  indicates a vehicle in the O category.


      
ASN.1 Checker's avatar
ASN.1 Checker committed
* euVehicleCategoryT of type **NULL** <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  indicates a vehicle in the T category.


      
ASN.1 Checker's avatar
ASN.1 Checker committed
* euVehicleCategoryG of type **NULL** <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  indicates a vehicle in the G category.


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Vehicle information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
EuVehicleCategoryCode ::= CHOICE {
	euVehicleCategoryL    EuVehicleCategoryL,  
	euVehicleCategoryM    EuVehicleCategoryM,  
	euVehicleCategoryN    EuVehicleCategoryN,   
	euVehicleCategoryO    EuVehicleCategoryO,   
	euVehicleCategoryT    NULL,
	euVehicleCategoryG    NULL    
	}
```


### <a name="EventHistory"></a>EventHistory
ASN.1 Checker's avatar
ASN.1 Checker committed
The DF shall contain a list of [**EventPoint**](#EventPoint).  
ASN.1 Checker's avatar
ASN.1 Checker committed

 The eventPosition of each [**EventPoint**](#EventPoint) is defined with respect to the previous [**EventPoint**](#EventPoint) in the list. 
 Except for the first [**EventPoint**](#EventPoint) which is defined with respect to a position outside of the context of this DF.

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information Traffic information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Generalized the semantics in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
NOTE:&emsp;this DF is kept for backwards compatibility reasons only. It is recommended to use the [**EventZone**](#EventZone) instead.
ASN.1 Checker's avatar
ASN.1 Checker committed
>>>
```asn1
EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint
```

### <a name="EventPoint"></a>EventPoint
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF provides information related to an event at a defined position.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* eventPosition of type [**DeltaReferencePosition**](#DeltaReferencePosition) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  offset position of a detected event point to a defined position. 


ASN.1 Checker's avatar
ASN.1 Checker committed
* eventDeltaTime of type [**PathDeltaTime**](#PathDeltaTime)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional time travelled by the detecting ITS-S since the previous detected event point.


   
ASN.1 Checker's avatar
ASN.1 Checker committed
* informationQuality of type [**InformationQuality**](#InformationQuality) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  Information quality of the detection for this event point.


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information Traffic information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _generalized the semantics in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
EventPoint ::= SEQUENCE {
    eventPosition         DeltaReferencePosition,
    eventDeltaTime        PathDeltaTime OPTIONAL,
    informationQuality    InformationQuality
}
```

ASN.1 Checker's avatar
ASN.1 Checker committed

### <a name="EventZone"></a>EventZone
ASN.1 Checker's avatar
ASN.1 Checker committed
The DF shall contain a list of [**EventPoint**](#EventPoint), where all [**EventPoint**](#EventPoint) either contain the COMPONENT eventDeltaTime 
ASN.1 Checker's avatar
ASN.1 Checker committed
 or do not contain the COMPONENT eventDeltaTime.  

 The eventPosition of each [**EventPoint**](#EventPoint) is defined with respect to the previous [**EventPoint**](#EventPoint) in the list. 
 Except for the first [**EventPoint**](#EventPoint) which is defined with respect to a position outside of the context of this DF.

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information Traffic information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1 based on EventHistory_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
EventZone::= EventHistory
   ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) |
    (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT})))
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="GeneralizedLanePosition"></a>GeneralizedLanePosition
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF indicates a transversal position in relation to the different lanes of the road. 
ASN.1 Checker's avatar
ASN.1 Checker committed
 It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where Vehicle ITS-S would normally not be present. 
ASN.1 Checker's avatar
ASN.1 Checker committed

 The following options are available:

ASN.1 Checker's avatar
ASN.1 Checker committed
* trafficLanePosition of type [**LanePosition**](#LanePosition) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  a position on a traffic lane. 


ASN.1 Checker's avatar
ASN.1 Checker committed
* nonTrafficLanePosition of type [**LanePositionAndType**](#LanePositionAndType) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  a position on a lane which is not a traffic lane.


   
ASN.1 Checker's avatar
ASN.1 Checker committed
* trafficIslandPosition of type [**TrafficIslandPosition**](#TrafficIslandPosition) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  a position on a traffic island


   
ASN.1 Checker's avatar
ASN.1 Checker committed
* mapPosition of type [**MapPosition**](#MapPosition) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  a position on a lane identified in a MAPEM.


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road Topology information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
GeneralizedLanePosition::= CHOICE {
    trafficLanePosition       LanePosition,
    nonTrafficLanePosition    LanePositionAndType,
    trafficIslandPosition     TrafficIslandPosition,
    mapPosition               MapPosition,
    ...
}
```

### <a name="Heading"></a>Heading
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents the Heading in a WGS84 co-ordinates system.
ASN.1 Checker's avatar
ASN.1 Checker committed
 The specific WGS84 coordinate system is specified by the corresponding standards applying this DE.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* headingValue of type [**HeadingValue**](#HeadingValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the heading value.


ASN.1 Checker's avatar
ASN.1 Checker committed
* headingConfidence of type [**HeadingConfidence**](#HeadingConfidence) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the confidence value of the heading value with a predefined confidence level.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Kinematic Information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Description revised in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
NOTE:&emsp;this DF is kept for backwards compatibility reasons only. It is recommended to use the [**Wgs84Angle**](#Wgs84Angle) instead.
ASN.1 Checker's avatar
ASN.1 Checker committed
>>>
```asn1
Heading ::= SEQUENCE {
    headingValue         HeadingValue,
    headingConfidence    HeadingConfidence
}
```

### <a name="HeadingChangeIndication"></a>HeadingChangeIndication
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF  provides  information  associated to heading  change indicators  such as  a  change  of  direction.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* direction of type [**TurningDirection**](#TurningDirection) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the direction of heading change value.


ASN.1 Checker's avatar
ASN.1 Checker committed
* actionDeltaTime of type [**DeltaTimeTenthOfSecond**](#DeltaTimeTenthOfSecond) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the period over which a direction change action is performed. 


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Kinematic Information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
HeadingChangeIndication ::= SEQUENCE {
    direction          TurningDirection,
    actionDeltaTime    DeltaTimeTenthOfSecond,
    ...
}
```

### <a name="InterferenceManagementChannel"></a>InterferenceManagementChannel
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a frequency channel 
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* centreFrequency of type **INTEGER**  (1 .. 99999)<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the centre frequency of the channel in 10<sup>(exp+2)</sup> Hz (where exp is exponent)
ASN.1 Checker's avatar
ASN.1 Checker committed
* channelWidth of type **INTEGER**  (0 .. 9999)<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  width of the channel in 10<sup>exp</sup> Hz (where exp is exponent)
ASN.1 Checker's avatar
ASN.1 Checker committed
* exponent of type **INTEGER**  (0 .. 15)<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  exponent of the power of 10 used in the calculation of the components above.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
InterferenceManagementChannel ::= SEQUENCE {
    centreFrequency    INTEGER (1 .. 99999),
    channelWidth       INTEGER (0 .. 9999),
    exponent           INTEGER (0 .. 15) 
}
```

### <a name="InterferenceManagementZone"></a>InterferenceManagementZone
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a zone  inside which the ITS communication should be restricted in order to manage interference.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* zoneDefinition of type [**InterferenceManagementZoneDefinition**](#InterferenceManagementZoneDefinition) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  contains the geographical definition of the zone.


ASN.1 Checker's avatar
ASN.1 Checker committed
* managementInfo of type [**InterferenceManagementInfo**](#InterferenceManagementInfo) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  contains interference management information applicable in the zone defined in the component zoneDefinition.


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
InterferenceManagementZone ::= SEQUENCE {
	zoneDefinition    InterferenceManagementZoneDefinition,
	managementInfo    InterferenceManagementInfo
}
```

### <a name="InterferenceManagementZoneDefinition"></a>InterferenceManagementZoneDefinition
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents the geographical definition of the zone where band sharing occurs. 
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* interferenceManagementZoneLatitude of type [**Latitude**](#Latitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  Latitude of the centre point of the interference management zone.


ASN.1 Checker's avatar
ASN.1 Checker committed
* interferenceManagementZoneLongitude of type [**Longitude**](#Longitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  Longitude of the centre point of the interference management zone.


    
ASN.1 Checker's avatar
ASN.1 Checker committed
* interferenceManagementZoneId of type [**ProtectedZoneId**](#ProtectedZoneId)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional identification of the interference management zone. 


ASN.1 Checker's avatar
ASN.1 Checker committed
* interferenceManagementZoneShape of type [**Shape**](#Shape)  (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  shape of the interference management zone placed at the centre point. 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
InterferenceManagementZoneDefinition::= SEQUENCE{     
    interferenceManagementZoneLatitude     Latitude, 
    interferenceManagementZoneLongitude    Longitude, 
ASN.1 Checker's avatar
ASN.1 Checker committed
    interferenceManagementZoneId           ProtectedZoneId OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    interferenceManagementZoneShape        Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL,
    ...
}
```


### <a name="InterferenceManagementInfo"></a>InterferenceManagementInfo
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF shall contain a list of up to 16 definitions containing interference management information, per affected frequency channels.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information. 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel
```

### <a name="InterferenceManagementInfoPerChannel"></a>InterferenceManagementInfoPerChannel
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF contains interference management information for one affected frequency channel.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* interferenceManagementChannel of type [**InterferenceManagementChannel**](#InterferenceManagementChannel) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  frequency channel for which the zone should be applied interference management 


ASN.1 Checker's avatar
ASN.1 Checker committed
* interferenceManagementZoneType of type [**InterferenceManagementZoneType**](#InterferenceManagementZoneType) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  type of the interference management zone. 


   
ASN.1 Checker's avatar
ASN.1 Checker committed
* interferenceManagementMitigationType of type [**MitigationForTechnologies**](#MitigationForTechnologies)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional type of the mitigation to be used in the interference management zone. 
   In the case where no mitigation should be applied by the ITS-S, this is indicated by the field interferenceManagementMitigationType being absent.


   
ASN.1 Checker's avatar
ASN.1 Checker committed
* expiryTime of type [**TimestampIts**](#TimestampIts)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional time at which the validity of the interference management communication zone will expire. 
   This component is present when the interference management is temporarily valid


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
InterferenceManagementInfoPerChannel ::= SEQUENCE {
    interferenceManagementChannel           InterferenceManagementChannel,
    interferenceManagementZoneType          InterferenceManagementZoneType,
    interferenceManagementMitigationType    MitigationForTechnologies OPTIONAL,
    expiryTime                              TimestampIts OPTIONAL, 
    ...
}
```


### <a name="InterferenceManagementZones"></a>InterferenceManagementZones
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF shall contain a list of up to 16 interference  management zones.  
ASN.1 Checker's avatar
ASN.1 Checker committed

 **EXAMPLE**: An interference management communication zone may be defined around a CEN DSRC road side equipment or an urban rail operational area.

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone
```

### <a name="IntersectionReferenceId"></a>IntersectionReferenceId
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.15].
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* region of type [**Identifier2B**](#Identifier2B)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the optional identifier of the entity that is responsible for the region in which the intersection is placed.
ASN.1 Checker's avatar
ASN.1 Checker committed
   It is the duty of that entity to guarantee that the [**Id**](#Id) is unique within the region.
ASN.1 Checker's avatar
ASN.1 Checker committed
* id of type [**Identifier2B**](#Identifier2B) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the identifier of the intersection


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road topology information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
NOTE:&emsp;when the component region is present, the IntersectionReferenceId is guaranteed to be globally unique.
ASN.1 Checker's avatar
ASN.1 Checker committed
>>>
```asn1
IntersectionReferenceId ::= SEQUENCE {
    region    Identifier2B OPTIONAL,
    id        Identifier2B
}
```


### <a name="ItineraryPath"></a>ItineraryPath
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF shall contain  a list of waypoints [**ReferencePosition**](#ReferencePosition).
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Editorial update in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition
```

### <a name="ItsPduHeader"></a>ItsPduHeader
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a common message header for application and facilities layer messages.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It is included at the beginning of an ITS message as the message header.

ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* protocolVersion of type [**OrdinalNumber1B**](#OrdinalNumber1B) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  version of the ITS message.


ASN.1 Checker's avatar
ASN.1 Checker committed
* messageId of type [**MessageId**](#MessageId) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  type of the ITS message.


   
ASN.1 Checker's avatar
ASN.1 Checker committed
* stationId of type [**StationId**](#StationId) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the identifier of the ITS-S that generated the ITS message.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId._
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ItsPduHeader ::= SEQUENCE {
ASN.1 Checker's avatar
ASN.1 Checker committed
    protocolVersion    OrdinalNumber1B,
ASN.1 Checker's avatar
ASN.1 Checker committed
    messageId          MessageId,
ASN.1 Checker's avatar
ASN.1 Checker committed
    stationId          StationId
ASN.1 Checker's avatar
ASN.1 Checker committed
}
```

### <a name="LanePositionAndType"></a>LanePositionAndType
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF indicates a transversal position in resolution of lanes and the associated lane type.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* transversalPosition of type [**LanePosition**](#LanePosition) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the transversal position.


ASN.1 Checker's avatar
ASN.1 Checker committed
* laneType of type [**LaneType**](#LaneType) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the type of the lane identified in the component transversalPosition.


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road topology information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
LanePositionAndType::= SEQUENCE {
    transversalPosition    LanePosition,
    laneType               LaneType,
    ...
}
```

### <a name="LateralAcceleration"></a>LateralAcceleration
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF indicates the vehicle acceleration at lateral direction and the confidence value of the lateral acceleration.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* lateralAccelerationValue of type [**LateralAccelerationValue**](#LateralAccelerationValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  lateral acceleration value at a point in time.


ASN.1 Checker's avatar
ASN.1 Checker committed
* lateralAccelerationConfidence of type [**AccelerationConfidence**](#AccelerationConfidence) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  confidence value of the lateral acceleration value.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Vehicle information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Description revised in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
NOTE:&emsp;this DF is kept for backwards compatibility reasons only. It is recommended to use [**AccelerationComponent**](#AccelerationComponent) instead.
ASN.1 Checker's avatar
ASN.1 Checker committed
>>>
```asn1
LateralAcceleration ::= SEQUENCE {
    lateralAccelerationValue         LateralAccelerationValue,
    lateralAccelerationConfidence    AccelerationConfidence
}
```

### <a name="LongitudinalAcceleration"></a>LongitudinalAcceleration
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF indicates the vehicle acceleration at longitudinal direction and the confidence value of the longitudinal acceleration.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* longitudinalAccelerationValue of type [**LongitudinalAccelerationValue**](#LongitudinalAccelerationValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  longitudinal acceleration value at a point in time.


ASN.1 Checker's avatar
ASN.1 Checker committed
* longitudinalAccelerationConfidence of type [**AccelerationConfidence**](#AccelerationConfidence) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  confidence value of the longitudinal acceleration value.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Vehicle information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _V1.3.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
NOTE:&emsp;this DF is kept for backwards compatibility reasons only. It is recommended to use [**AccelerationComponent**](#AccelerationComponent) instead.
ASN.1 Checker's avatar
ASN.1 Checker committed
>>>
```asn1
LongitudinalAcceleration ::= SEQUENCE {
    longitudinalAccelerationValue         LongitudinalAccelerationValue,
    longitudinalAccelerationConfidence    AccelerationConfidence
}
```

### <a name="LongitudinalLanePosition"></a>LongitudinalLanePosition
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents the estimated position along the longitudinal length of a particular lane. 
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* longitudinalLanePositionValue of type [**LongitudinalLanePositionValue**](#LongitudinalLanePositionValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the mean value of the longitudinal position within a particular length.


ASN.1 Checker's avatar
ASN.1 Checker committed
* longitudinalLanePositionConfidence of type [**LongitudinalLanePositionConfidence**](#LongitudinalLanePositionConfidence) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  The confidence value associated to the value.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road topology information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
LongitudinalLanePosition ::= SEQUENCE {
    longitudinalLanePositionValue         LongitudinalLanePositionValue,
    longitudinalLanePositionConfidence    LongitudinalLanePositionConfidence
}
```


ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="LowerTriangularPositiveSemidefiniteMatrices"></a>LowerTriangularPositiveSemidefiniteMatrices
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF shall contain a list of a lower triangular positive semi-definite matrices.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Sensing information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
LowerTriangularPositiveSemidefiniteMatrices::= SEQUENCE SIZE (1..4) OF LowerTriangularPositiveSemidefiniteMatrix
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="LowerTriangularPositiveSemidefiniteMatrix"></a>LowerTriangularPositiveSemidefiniteMatrix
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a lower triangular positive semi-definite matrix. 
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* componentsIncludedIntheMatrix of type [**MatrixIncludedComponents**](#MatrixIncludedComponents) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the indication of which components of a [**PerceivedObject**](#PerceivedObject) are included in the matrix. 
   This component also implicitly indicates the number n of included components which defines the size (n x n) of the full correlation matrix "A".


ASN.1 Checker's avatar
ASN.1 Checker committed
* matrix of type [**LowerTriangularPositiveSemidefiniteMatrixColumns**](#LowerTriangularPositiveSemidefiniteMatrixColumns) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the list of cells of the lower triangular positive semi-definite matrix ordered by columns and by rows. 


   
ASN.1 Checker's avatar
ASN.1 Checker committed
The number of columns to be included "k" is equal to the number of included components "n" indicated by componentsIncludedIntheMatrix minus 1: k = n-1.
 These components shall be included in the order or their appearance in componentsIncludedIntheMatrix.
 Each column "i" of the lowerTriangularCorrelationMatrixColumns contains k-(i-1) values.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Sensing information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE{
    componentsIncludedIntheMatrix   MatrixIncludedComponents,
    matrix                          LowerTriangularPositiveSemidefiniteMatrixColumns
}
```


### <a name="LowerTriangularPositiveSemidefiniteMatrixColumns"></a>LowerTriangularPositiveSemidefiniteMatrixColumns
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents the columns of a lower triangular positive semi-definite matrix, each column not including the main diagonal cell of the matrix.
ASN.1 Checker's avatar
ASN.1 Checker committed
 Given a matrix "A" of size n x n, the number of [**CorrelationColumn**](#CorrelationColumn) to be included in the lower triangular matrix is k=n-1.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Sensing information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ASN.1 Checker's avatar
ASN.1 Checker committed
LowerTriangularPositiveSemidefiniteMatrixColumns ::= SEQUENCE SIZE (1..13) OF CorrelationColumn
ASN.1 Checker's avatar
ASN.1 Checker committed
```

### <a name="MapPosition"></a>MapPosition
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301 [i.15].
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* mapReference of type [**MapReference**](#MapReference)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optionally identifies the MAPEM containing the topology information.
   It is absent if the MAPEM topology is known from the context.


ASN.1 Checker's avatar
ASN.1 Checker committed
* laneId of type [**Identifier1B**](#Identifier1B)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optionally identifies the lane in the road segment or intersection topology on which the position is located.
ASN.1 Checker's avatar
ASN.1 Checker committed
* connectionId of type [**Identifier1B**](#Identifier1B)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optionally identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the
   conflict area of an intersection which connects e.g an ingress with an egress lane.
ASN.1 Checker's avatar
ASN.1 Checker committed
* longitudinalLanePosition of type [**LongitudinalLanePosition**](#LongitudinalLanePosition)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road topology information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
MapPosition ::= SEQUENCE {
    mapReference                MapReference OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    laneId                      Identifier1B OPTIONAL,
    connectionId                Identifier1B OPTIONAL, 
ASN.1 Checker's avatar
ASN.1 Checker committed
    longitudinalLanePosition    LongitudinalLanePosition OPTIONAL,
    ...
}
ASN.1 Checker's avatar
ASN.1 Checker committed
   ((WITH COMPONENTS {..., laneId PRESENT, connectionId ABSENT }) |
    (WITH COMPONENTS {..., laneId ABSENT, connectionId PRESENT }))
ASN.1 Checker's avatar
ASN.1 Checker committed
```

### <a name="MapReference"></a>MapReference
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301 [i.15]. 
ASN.1 Checker's avatar
ASN.1 Checker committed

 The following options are provided:

ASN.1 Checker's avatar
ASN.1 Checker committed
* roadsegment of type [**RoadSegmentReferenceId**](#RoadSegmentReferenceId) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  option that identifies the description of a road segment contained in a MAPEM.


ASN.1 Checker's avatar
ASN.1 Checker committed
* intersection of type [**IntersectionReferenceId**](#IntersectionReferenceId) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  option that identifies the description of an intersection contained in a MAPEM.


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road topology information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
MapReference::= CHOICE {
	roadsegment     RoadSegmentReferenceId,
	intersection    IntersectionReferenceId
	}
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="MessageRateHz"></a>MessageRateHz
ASN.1 Checker's avatar
ASN.1 Checker committed
This DE indicates a message rate.
ASN.1 Checker's avatar
ASN.1 Checker committed
* mantissa of type **INTEGER**  (1..100)<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  indicates the mantissa.


ASN.1 Checker's avatar
ASN.1 Checker committed
* exponent of type **INTEGER**  (-5..2)<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  indicates the exponent.


   
ASN.1 Checker's avatar
ASN.1 Checker committed
The specified message rate is: mantissa*(10^exponent)
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Unit:** _Hz_
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
MessageRateHz::= SEQUENCE {
    mantissa    INTEGER (1..100),
    exponent    INTEGER (-5..2)
    }
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="MessageSegmentationInfo"></a>MessageSegmentationInfo
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF provides information about a message with respect to the segmentation process at the sender.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* totalMsgNo of type [**CardinalNumber3b**](#CardinalNumber3b) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  indicates the total number of messages that has been used on the transmitter side to encode the information.


ASN.1 Checker's avatar
ASN.1 Checker committed
* thisMsgNo of type [**OrdinalNumber3b**](#OrdinalNumber3b) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  indicates the position of the message within of the total set of messages.


   
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
MessageSegmentationInfo ::= SEQUENCE {
ASN.1 Checker's avatar
ASN.1 Checker committed
    totalMsgNo  CardinalNumber3b,
    thisMsgNo   OrdinalNumber3b
ASN.1 Checker's avatar
ASN.1 Checker committed
    }
```


### <a name="MitigationForTechnologies"></a>MitigationForTechnologies
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF shall contain a list of [**MitigationPerTechnologyClass**](#MitigationPerTechnologyClass).
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyClass
```

### <a name="MitigationPerTechnologyClass"></a>MitigationPerTechnologyClass
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a set of mitigation parameters for a specific technology, as specified in ETSI TS 103 724 [i.24], clause 7.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* accessTechnologyClass of type [**AccessTechnologyClass**](#AccessTechnologyClass) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  channel access technology to which this mitigation is intended to be applied.
ASN.1 Checker's avatar
ASN.1 Checker committed
* lowDutyCycle of type **INTEGER**  (0 .. 10000) OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  duty cycle limit.


    
ASN.1 Checker's avatar
ASN.1 Checker committed
* powerReduction of type **INTEGER**  (0 .. 30) OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the delta value of power to be reduced.


    
ASN.1 Checker's avatar
ASN.1 Checker committed
* dmcToffLimit of type **INTEGER**  (0 .. 1200) OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  idle time limit as defined in ETSI TS 103 175 [i.19].
ASN.1 Checker's avatar
ASN.1 Checker committed
* dmcTonLimit of type **INTEGER**  (0 .. 20) OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  Transmission duration limit, as defined in ETSI EN 302 571 [i.20].
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Unit:** _ms_
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
NOTE:&emsp;All parameters are optional, as they may not apply to some of the technologies or
ASN.1 Checker's avatar
ASN.1 Checker committed
 interference management zone types. Specification details are in ETSI TS 103 724 [i.24], clause 7.
>>>
```asn1
MitigationPerTechnologyClass ::= SEQUENCE {
   accessTechnologyClass    AccessTechnologyClass, 
   lowDutyCycle             INTEGER (0 .. 10000) OPTIONAL, 
   powerReduction           INTEGER (0 .. 30) OPTIONAL,
   dmcToffLimit             INTEGER (0 .. 1200) OPTIONAL,   
   dmcTonLimit              INTEGER (0 .. 20) OPTIONAL,   
   ...
}
```

### <a name="ObjectClass"></a>ObjectClass
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF indicates both the class and associated subclass that best describes an object.
ASN.1 Checker's avatar
ASN.1 Checker committed

 The following options are available:

ASN.1 Checker's avatar
ASN.1 Checker committed
* vehicleSubClass of type [**TrafficParticipantType**](#TrafficParticipantType)  (unknown|passengerCar..tram|agricultural)<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the object is a road vehicle and the specific subclass is specified.
ASN.1 Checker's avatar
ASN.1 Checker committed
* vruSubClass of type [**VruProfileAndSubprofile**](#VruProfileAndSubprofile) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the object is a VRU and the specific subclass is specified.
ASN.1 Checker's avatar
ASN.1 Checker committed
* groupSubClass of type [**VruClusterInformation**](#VruClusterInformation)  (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT})<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the object is a VRU group or cluster and the cluster information is specified.
ASN.1 Checker's avatar
ASN.1 Checker committed
* otherSubClass of type [**OtherSubClass**](#OtherSubClass) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the object is of a different type than the above and the specific subclass is specified.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Sensing information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ObjectClass ::= CHOICE {
ASN.1 Checker's avatar
ASN.1 Checker committed
    vehicleSubClass      TrafficParticipantType (unknown|passengerCar..tram|agricultural),
    vruSubClass          VruProfileAndSubprofile,
    groupSubClass        VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}),
    otherSubClass        OtherSubClass,
ASN.1 Checker's avatar
ASN.1 Checker committed
    ...
}
```


### <a name="ObjectClassDescription"></a>ObjectClassDescription
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF shall contain a list of object classes.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Sensing information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence
```

### <a name="ObjectClassWithConfidence"></a>ObjectClassWithConfidence
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents the classification of a detected object together with a confidence level.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* objectClass of type [**ObjectClass**](#ObjectClass) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the class of the object.


ASN.1 Checker's avatar
ASN.1 Checker committed
* confidence of type [**ConfidenceLevel**](#ConfidenceLevel) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Sensing information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ObjectClassWithConfidence ::= SEQUENCE {
    objectClass    ObjectClass,
    confidence     ConfidenceLevel
}
ASN.1 Checker's avatar
ASN.1 Checker committed
```

### <a name="ObjectDimension"></a>ObjectDimension
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a dimension of an object together with a confidence value.
ASN.1 Checker's avatar
ASN.1 Checker committed

 It shall include the following components:

ASN.1 Checker's avatar
ASN.1 Checker committed
* value of type [**ObjectDimensionValue**](#ObjectDimensionValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the object dimension value which can be estimated as the mean of the current distribution.


ASN.1 Checker's avatar
ASN.1 Checker committed
* confidence of type [**ObjectDimensionConfidence**](#ObjectDimensionConfidence) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the associated confidence value.


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Sensing information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ASN.1 Checker's avatar
ASN.1 Checker committed
ObjectDimension ::= SEQUENCE {
    value         ObjectDimensionValue,
    confidence    ObjectDimensionConfidence
}
```


### <a name="Path"></a>Path
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a path with a set of path points.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall contain up to `40` [**PathPoint**](#PathPoint). 
ASN.1 Checker's avatar
ASN.1 Checker committed
 
 The first PathPoint presents an offset delta position with regards to an external reference position.
ASN.1 Checker's avatar
ASN.1 Checker committed
 Each other PathPoint presents an offset delta position and optionally an offset travel time with regards to the previous PathPoint.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information Vehicle information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1 based on PathHistory_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
Path::= SEQUENCE (SIZE(0..40)) OF PathPoint
```


### <a name="PathHistory"></a>PathHistory
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a path history with a set of path points.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall contain up to `40` [**PathPoint**](#PathPoint). 
ASN.1 Checker's avatar
ASN.1 Checker committed
 
 The first PathPoint presents an offset delta position with regards to an external reference position.
ASN.1 Checker's avatar
ASN.1 Checker committed
 Each other PathPoint presents an offset delta position and optionally an offset travel time with regards to the previous PathPoint.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information Vehicle information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _semantics updated in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
NOTE:&emsp;this DF is kept for backwards compatibility reasons only. It is recommended to use [**Path**](#Path) instead.
ASN.1 Checker's avatar
ASN.1 Checker committed
>>>
```asn1
ASN.1 Checker's avatar
ASN.1 Checker committed
PathHistory::= SEQUENCE (SIZE(40)) OF PathPoint
ASN.1 Checker's avatar
ASN.1 Checker committed
```


### <a name="PathPredicted"></a>PathPredicted
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a predicted path with a set of path points.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall contain up to `15` [**PathPoint**](#PathPoint). 
ASN.1 Checker's avatar
ASN.1 Checker committed
 
 The first PathPoint presents an offset delta position with regards to an external reference position.
ASN.1 Checker's avatar
ASN.1 Checker committed
 Each other PathPoint presents an offset delta position and optionally an offset travel time with regards to the previous PathPoint.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.1.1 based on PathHistory_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted
```

### <a name="PathPoint"></a>PathPoint
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF defines an offset waypoint position within a path.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* pathPosition of type [**DeltaReferencePosition**](#DeltaReferencePosition) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  The waypoint position defined as an offset position with regards to a pre-defined reference position. 


ASN.1 Checker's avatar
ASN.1 Checker committed
* pathDeltaTime of type [**PathDeltaTime**](#PathDeltaTime)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  The optional travel time separated from a waypoint to the predefined reference position.


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _semantics updated in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
PathPoint ::= SEQUENCE {
    pathPosition     DeltaReferencePosition,
    pathDeltaTime    PathDeltaTime OPTIONAL
}
```

### <a name="PathPointPredicted"></a>PathPointPredicted
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF  defines a predicted offset waypoint position within a path.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* deltaLatitude of type [**DeltaLatitude**](#DeltaLatitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  an offset latitude with regards to a pre-defined reference position. 


ASN.1 Checker's avatar
ASN.1 Checker committed
* deltaLongitude of type [**DeltaLongitude**](#DeltaLongitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  an offset longitude with regards to a pre-defined reference position. 


         
ASN.1 Checker's avatar
ASN.1 Checker committed
* horizontalPositionConfidence of type [**PosConfidenceEllipse**](#PosConfidenceEllipse)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the confidence value associated to the horizontal geographical position.
ASN.1 Checker's avatar
ASN.1 Checker committed
* deltaAltitude of type [**DeltaAltitude**](#DeltaAltitude)  DEFAULT unavailable<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  an offset altitude with regards to a pre-defined reference position. 


      
ASN.1 Checker's avatar
ASN.1 Checker committed
* altitudeConfidence of type [**AltitudeConfidence**](#AltitudeConfidence)  DEFAULT unavailable<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the confidence value associated to the altitude value of the geographical position.
ASN.1 Checker's avatar
ASN.1 Checker committed
* pathDeltaTime of type [**DeltaTimeTenthOfSecond**](#DeltaTimeTenthOfSecond) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  The  travel time separated from the waypoint to the predefined reference position.


   

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _semantics updated in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
PathPointPredicted::= SEQUENCE {
  deltaLatitude                 DeltaLatitude,      
  deltaLongitude                DeltaLongitude,