ETSI-ITS-CDD.md 379 KB
Newer Older
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,
ASN.1 Checker's avatar
ASN.1 Checker committed
    interferenceManagementMitigationType    MitigationForTechnologies OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    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 [[15]](#references).
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
>>>
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 other associated details.
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)  DEFAULT traffic<br>
  the type of the lane identified in the component transversalPosition. By default set to `traffic`.

* _direction_ of type [**Direction**](#Direction)  DEFAULT sameDirection<br>
  the traffic direction for the lane position relative to a defined reference direction. By default set to `sameDirection`, i.e. following the reference direction.

* _laneWidth_ of type [**LaneWidth**](#LaneWidth)  OPTIONAL<br>
  the width of the lane, optional.
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:** _direction and laneWidth added in V2.2.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
LanePositionAndType::= SEQUENCE {
    transversalPosition    LanePosition,
ASN.1 Checker's avatar
ASN.1 Checker committed
    laneType               LaneType DEFAULT traffic,
    direction              Direction DEFAULT sameDirection,
    laneWidth              LaneWidth OPTIONAL,
    ...
}
```

### <a name="LanePositionOptions"></a>LanePositionOptions
This DF represents a set of options to describe a lane position and is the second level DF to represent a lane position. The top-level DFs are [**GeneralizedLanePosition**](#GeneralizedLanePosition) or [**OccupiedLanesWithConfidence**](#OccupiedLanesWithConfidence). 
 A lane position is a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway.

 The following options are available:

* _simplelanePosition_ of type [**LanePosition**](#LanePosition) <br>
  a single lane position without any additional context information.

* _simpleLaneType_ of type [**LaneType**](#LaneType) <br>
  a lane type, to be used when the lane position is unknown but the type of lane is known. This can be used in scenarios where a certain confidence about the used lane type is given 
   but no or limited knowledge about the absolute lane number is available. For example, a cyclist on a cycle-lane or vehicles on a specific lane that is unique for the part of the road (e.g. a bus lane).

* _detailedlanePosition_ of type [**LanePositionAndType**](#LanePositionAndType) <br>
  a single lane position with additional lane details.

* _lanePositionWithLateralDetails_ of type [**LanePositionWithLateralDetails**](#LanePositionWithLateralDetails) <br>
  a single lane position with additional details and the lateral position within the lane.

* _trafficIslandPosition_ of type [**TrafficIslandPosition**](#TrafficIslandPosition) <br>
  a position on a traffic island, i.e. between two lanes. 


&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road Topology information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1 from the DF GeneralizedLanePosition of V2.1.1._
```asn1
LanePositionOptions ::= CHOICE {
    simplelanePosition                   LanePosition,
    simpleLaneType                       LaneType,
    detailedlanePosition                 LanePositionAndType,
    lanePositionWithLateralDetails       LanePositionWithLateralDetails,
    trafficIslandPosition                TrafficIslandPosition,
    ...
}
```

### <a name="LanePositionWithLateralDetails"></a>LanePositionWithLateralDetails
This DF is a third-level DF that represents a lane position and is an extended version of [**LanePositionAndType**](#LanePositionAndType) that adds the distances to the left and right lane border.

 It shall additionally include the following components:

* _COMPONENTS_ of type [**OF**](#OF)                LanePositionAndType<br>
* _distanceToLeftBorder_ of type [**StandardLength9b**](#StandardLength9b) <br>
  the distance of the transversal position to the left lane border. The real value shall be rounded to the next lower encoding-value.

* _distanceToRightBorder_ of type [**StandardLength9b**](#StandardLength9b) <br>
  the distance of the transversal position to the right lane border. The real value shall be rounded to the next lower encoding-value.


&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road Topology information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1_
```asn1
LanePositionWithLateralDetails ::= SEQUENCE {
    COMPONENTS OF               LanePositionAndType,
    distanceToLeftBorder        StandardLength9b,
    distanceToRightBorder       StandardLength9b,
ASN.1 Checker's avatar
ASN.1 Checker committed
    ...
}
```

### <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
>>>
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
>>>
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
ASN.1 Checker's avatar
ASN.1 Checker committed
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
}
```
ASN.1 Checker's avatar
ASN.1 Checker committed
### <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, extension indicator added in V2.2.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="MapemConfiguration"></a>MapemConfiguration
This DF provides information about the configuration of a road section in terms of MAPEM lanes or connections using a list of [**MapemExtractedElementReference**](#MapemExtractedElementReference).

&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road topology information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1_
```asn1
MapemConfiguration::= SEQUENCE(SIZE(1..16,...)) OF MapemElementReference
```

### <a name="MapemElementReference"></a>MapemElementReference
This DF provides references to an element described in a MAPEM according to ETSI TS 103 301 [[i.15]](#references), such as a lane or connection at a specific intersection or road segment. 
 
 It shall include the following components:

* _mapReference_ of type [**MapReference**](#MapReference)  OPTIONAL<br>
  the optional reference to a MAPEM that describes the intersection or road segment. It is absent if the MAPEM topology is known from the context.

* _laneIds_ of type [**MapemLaneList**](#MapemLaneList)   OPTIONAL<br>
  the optional list of the identifiers of the lanes to be referenced. 

* _connectionIds_ of type [**MapemConnectionList**](#MapemConnectionList)   OPTIONAL<br>
  the optional list of the identifiers of the connections to be referenced. 


&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road topology information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1_
```asn1
MapemElementReference::= SEQUENCE {
  mapReference      MapReference OPTIONAL,
  laneIds           MapemLaneList  OPTIONAL,
  connectionIds	    MapemConnectionList  OPTIONAL,		
  ...
} 
((WITH COMPONENTS {..., laneIds PRESENT}) |
 (WITH COMPONENTS {..., connectionIds PRESENT }))
```

### <a name="MapemLaneList"></a>MapemLaneList
This DF provides references to MAPEM lanes using a list of [**Identifier1B**](#Identifier1B).

&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road topology information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in 2.2.1_
```asn1
MapemLaneList ::=  SEQUENCE (SIZE(1..8,...)) OF Identifier1B
```

### <a name="MapemConnectionList"></a>MapemConnectionList
This DF provides references to MAPEM connections using a list of [**Identifier1B**](#Identifier1B).
 Note: connections are  allowed “maneuvers” (e.g. an ingress / egress relation) on an intersection.

&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road topology information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in ?2.2.1_
```asn1
MapemConnectionList ::=  SEQUENCE (SIZE(1..8,...)) OF Identifier1B
```

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 [[15]](#references).
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 [[15]](#references). 
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<sup>exponent</sup>)
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 on facility layer 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 have been assembled on the transmitter side to encode the information 
   during the same messsage generation process.
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 generated during the same message generation process.
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, description revised in V2.2.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ASN.1 Checker's avatar
ASN.1 Checker committed
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="MetaInformation"></a>MetaInformation
This DF provides information about the source of and confidence in information.

 It shall include the following components:

* _usedDetectionInformation_ of type [**SensorTypes**](#SensorTypes) <br>
  the type of sensor(s) that is used to provide the detection information.

* _usedStoredInformation_ of type [**StoredInformationType**](#StoredInformationType) <br>
  the type of source of the stored information 

* _confidenceValue_ of type [**ConfidenceLevel**](#ConfidenceLevel)  OPTIONAL<br>
  an optional confidence value associated to the information. 


&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Basic information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1_
```asn1
MetaInformation::=SEQUENCE{		
  usedDetectionInformation   SensorTypes, 
  usedStoredInformation      StoredInformationType,
  confidenceValue            ConfidenceLevel OPTIONAL,
  ...
}
```

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 [[24]](#references), 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 [[19]](#references).
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 [[20]](#references).
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 [[24]](#references), clause 7.
ASN.1 Checker's avatar
ASN.1 Checker committed
>>>
ASN.1 Checker's avatar
ASN.1 Checker committed
```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>
* Confidence<br>
  the associated confidence level.
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,
ASN.1 Checker's avatar
ASN.1 Checker committed
    confidence    ObjectDimensionConfidence
ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="OccupiedLanesWithConfidence"></a>OccupiedLanesWithConfidence
This DF represents a set of lanes which are partially or fully occupied by an object or event. 


 It shall include the following components:

* _lanePositionBased_ of type **SEQUENCE**  (SIZE(1..4)) OF LanePositionOptions<br>
  a set of up to `4` lanes that are partially or fully occupied by an object or event, ordered by increasing value of [**LanePosition**](#LanePosition). 
   Lanes that are partially occupied can be described using the component lanePositionWithLateralDetails of [**Options**](#Options), with the following constraints: 
   The distance to lane borders which are covered by the object / event shall be set to 0. Only the distances to the leftmost and/or rightmost border which are not covered by 
   the object / event shall be provided with values > 0. Those values shall be added to the respective instances of [**LanePositionOptions**](#LanePositionOptions), i.e. the first entry shall contain the component distanceToLeftBorder > 0 , 
   and/or the last entry shall contain the component distanceToRightBorder > 0; the respective other components of these entries shall be set to 0.

* _mapBased_ of type **SEQUENCE**  (SIZE(1..4)) OF MapPosition  OPTIONAL<br>
  optional lane information described in the context of a MAPEM as specified in ETSI TS 103 301 [[15]](#references). 
   If present, it shall describe the same lane(s) as listed in the component lanePositionBased, but using the lane identification of the MAPEM. This component can be used only if a 
   MAPEM is available for the reference position (e.g. on an intersection): In this case it is used as a synonym to the mandatory component lanePositionBased. 

* _confidence_ of type [**MetaInformation**](#MetaInformation) <br>
  mandatory confidence information for expressing the probability that all the provided lanes are occupied. It also provides information on how the lane 
   information were generated. If none of the sensors were used, the lane information is assumed to be derived directly from the absolute reference position and the related dimension.


&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Road Topology information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1_

>>>
NOTE:&emsp;In contrast to [**GeneralizedLanePosition**](#GeneralizedLanePosition), the dimension of the object or event area (width and length) is taken into account to determine the occupancy, 
 i.e. this DF describes the lanes which are blocked by an object or event and not the position of the object / event itself. A confidence is used to describe the 
 probability that exactly all the provided lanes are occupied.
>>>

```asn1
OccupiedLanesWithConfidence::= SEQUENCE {
    lanePositionBased     SEQUENCE (SIZE(1..4)) OF LanePositionOptions,
    mapBased              SEQUENCE (SIZE(1..4)) OF MapPosition  OPTIONAL,
    confidence            MetaInformation,
    ... 
}
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <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, size corrected to 0..40 in V2.2.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
>>>
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ASN.1 Checker's avatar
ASN.1 Checker committed
PathHistory::= SEQUENCE (SIZE(0..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_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <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
}
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <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
ASN.1 Checker's avatar
ASN.1 Checker committed
PathPointPredicted::= SEQUENCE {
  deltaLatitude                 DeltaLatitude,      
  deltaLongitude                DeltaLongitude, 
  horizontalPositionConfidence  PosConfidenceEllipse OPTIONAL,   
  deltaAltitude                 DeltaAltitude DEFAULT unavailable, 
  altitudeConfidence            AltitudeConfidence DEFAULT unavailable,
  pathDeltaTime                 DeltaTimeTenthOfSecond,
  ... 
ASN.1 Checker's avatar
ASN.1 Checker committed
}
```

### <a name="PerceivedObject"></a>PerceivedObject
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF contains information about a perceived object including its kinematic state and attitude vector in a pre-defined coordinate system and with respect to a reference time.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* _objectId_ of type [**Identifier2B**](#Identifier2B)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional identifier assigned to a detected object.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _measurementDeltaTime_ of type [**DeltaTimeMilliSecondSigned**](#DeltaTimeMilliSecondSigned) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the time difference from a reference time to the time of the  measurement of the object. 
   Negative values indicate that the provided object state refers to a point in time before the reference time.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _position_ of type [**CartesianPosition3dWithConfidence**](#CartesianPosition3dWithConfidence) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the position of the geometric centre of the object's bounding box within the pre-defined coordinate system.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _velocity_ of type [**Velocity3dWithConfidence**](#Velocity3dWithConfidence)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the velocity vector of the object within the pre-defined coordinate system.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _acceleration_ of type [**Acceleration3dWithConfidence**](#Acceleration3dWithConfidence)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the acceleration vector of the object within the pre-defined coordinate system.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _angles_ of type [**EulerAnglesWithConfidence**](#EulerAnglesWithConfidence)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional Euler angles of the object bounding box at the time of measurement. 

ASN.1 Checker's avatar
ASN.1 Checker committed
* _zAngularVelocity_ of type [**CartesianAngularVelocityComponent**](#CartesianAngularVelocityComponent)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional angular velocity of the object around the z-axis at the time of measurement.
ASN.1 Checker's avatar
ASN.1 Checker committed
   The angular velocity is measured with positive values considering the object orientation turning around the z-axis using the right-hand rule.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _lowerTriangularCorrelationMatrices_ of type [**LowerTriangularPositiveSemidefiniteMatrices**](#LowerTriangularPositiveSemidefiniteMatrices)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional set of lower triangular correlation matrices for selected components of the provided kinematic state and attitude vector.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _objectDimensionZ_ of type [**ObjectDimension**](#ObjectDimension)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional z-dimension of object bounding box. 
   This dimension shall be measured along the direction of the z-axis after all the rotations have been applied. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _objectDimensionY_ of type [**ObjectDimension**](#ObjectDimension)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional y-dimension of the object bounding box. 
   This dimension shall be measured along the direction of the y-axis after all the rotations have been applied. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _objectDimensionX_ of type [**ObjectDimension**](#ObjectDimension)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional x-dimension of object bounding box.
   This dimension shall be measured along the direction of the x-axis after all the rotations have been applied.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _objectAge_ of type [**DeltaTimeMilliSecondSigned**](#DeltaTimeMilliSecondSigned)  (0..2047) OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional age of the detected and described object, i.e. the difference in time between the moment 
ASN.1 Checker's avatar
ASN.1 Checker committed
   it has been first detected and the reference time of the message. Value `1500` indicates that the object has been observed for more than 1.5s.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _objectPerceptionQuality_ of type [**ObjectPerceptionQuality**](#ObjectPerceptionQuality)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional confidence associated to the object. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _sensorIdList_ of type [**SequenceOfIdentifier1B**](#SequenceOfIdentifier1B)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional list of sensor-IDs which provided the measurement data. 

ASN.1 Checker's avatar
ASN.1 Checker committed
* _classification_ of type [**ObjectClassDescription**](#ObjectClassDescription)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional classification of the described object

ASN.1 Checker's avatar
ASN.1 Checker committed
* _mapPosition_ of type [**MapPosition**](#MapPosition)  OPTIONAL<br>
* matchedPosition<br>
  optional map-matched position of an object.
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
PerceivedObject ::= SEQUENCE {
ASN.1 Checker's avatar
ASN.1 Checker committed
    objectId                                          Identifier2B OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    measurementDeltaTime                              DeltaTimeMilliSecondSigned,
ASN.1 Checker's avatar
ASN.1 Checker committed
    position                                          CartesianPosition3dWithConfidence, 
    velocity                                          Velocity3dWithConfidence OPTIONAL,
    acceleration                                      Acceleration3dWithConfidence OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    angles                                            EulerAnglesWithConfidence OPTIONAL,
    zAngularVelocity                                  CartesianAngularVelocityComponent OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    lowerTriangularCorrelationMatrices                LowerTriangularPositiveSemidefiniteMatrices OPTIONAL,
    objectDimensionZ                                  ObjectDimension OPTIONAL,
    objectDimensionY                                  ObjectDimension OPTIONAL,
    objectDimensionX                                  ObjectDimension OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    objectAge                                         DeltaTimeMilliSecondSigned (0..2047) OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    objectPerceptionQuality                           ObjectPerceptionQuality OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    sensorIdList                                      SequenceOfIdentifier1B OPTIONAL,
    classification                                    ObjectClassDescription OPTIONAL,
    mapPosition                                       MapPosition OPTIONAL,
    ...
}
```

### <a name="PolygonalShape"></a>PolygonalShape
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents the shape of a polygonal area or of a right prism.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components: