ETSI-ITS-CDD.md 397 KB
Newer Older
ASN.1 Checker's avatar
ASN.1 Checker committed
* _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
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="PathDeltaTimeChoice"></a>PathDeltaTimeChoice
This DF represents estimated/predicted travel time between a position and a predefined reference position. 

 the following options are available:

* _deltaTimeHighPrecision_ of type [**DeltaTimeTenthOfSecond**](#DeltaTimeTenthOfSecond) <br>
  delta time with precision of 0,1 s.

* _deltaTimeBigRange_ of type [**DeltaTimeTenSeconds**](#DeltaTimeTenSeconds) <br>
  delta time with precision of 10 s.


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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _V2.2.1_
```asn1
PathDeltaTimeChoice::= CHOICE {
    deltaTimeHighPrecision	DeltaTimeTenthOfSecond,
    deltaTimeBigRange	    DeltaTimeTenSeconds
}
```

### <a name="PathExtended"></a>PathExtended
This DF represents a path towards a specific point specified in the [**EventZone**](#EventZone).

 It shall include the following components:

* _pointOfEventZone_ of type **INTEGER** (1..23)<br>
  the ordinal number of the point within the DF EventZone, i.e. within the list of EventPoints.

* _path_ of type [**Path**](#Path) <br>
  the associated path towards the point specified in pointOfEventZone.
   The first PathPoint presents an offset delta position with regards to the position of that pointOfEventZone.


&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1_
```asn1
PathExtended::= SEQUENCE {
  pointOfEventZone    INTEGER(1..23),
  path                Path
}
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <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 or trajectory with a set of predicted points and optional information to generate a shape which is estimated to contain the real path. 
 It shall contain up to `16` [**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 , size constraint changed to SIZE(1..16) in V2.2.1_
```asn1
PathPredicted::= SEQUENCE (SIZE(1..16,...)) OF PathPointPredicted
```

### <a name="PathPredicted2"></a>PathPredicted2
This DF represents a predicted path, predicted trajectory or predicted path zone together with usage information and a prediction confidence.

 It shall include the following components:

* _pathPredicted_ of type [**PathPredicted**](#PathPredicted) <br>
  the predicted path (pathDeltaTime ABSENT) or trajectory (pathDeltaTime PRESENT) and/or the path zone (symmetricAreaOffset PRESENT).

* _usageIndication_ of type [**UsageIndication**](#UsageIndication) <br>
  an indication of how the predicted path will be used. 

* _confidenceLevel_ of type [**ConfidenceLevel**](#ConfidenceLevel) <br>
  the confidence that the path/trajectory in pathPredicted will occur as predicted


&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _created in V2.2.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ASN.1 Checker's avatar
ASN.1 Checker committed
PathPredicted2::= SEQUENCE{
    pathPredicted     PathPredicted,
    usageIndication   UsageIndication,
    confidenceLevel   ConfidenceLevel,   
    ...
}
```

### <a name="PathPredictedList"></a>PathPredictedList
This DF represents one or more predicted paths, or trajectories or path zones (zones that include all possible paths/trajectories within its boundaries) using [**PathPredicted2**](#PathPredicted2).
 It shall contain up to `16` [**PathPredicted2**](#PathPredicted2).

&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _V2.2.1_
```asn1
PathPredictedList ::= SEQUENCE SIZE(1..16,...) OF PathPredicted2
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 position that can be used within a predicted path or trajectory, together with optional data to describe a path zone shape.
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
  the 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
  the 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 optional 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
  the optional offset altitude with regards to a pre-defined reference position, with default value unavailable. 
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 optional confidence value associated to the altitude value of the geographical position, with default value unavailable.

* _pathDeltaTime_ of type [**PathDeltaTimeChoice**](#PathDeltaTimeChoice) <br>
  the optional travel time separated from the waypoint to the predefined reference position.

* _symmetricAreaOffset_ of type [**StandardLength9b**](#StandardLength9b)  OPTIONAL<br>
  the optional symmetric offset applied to the position in order to generate a shape.
   if the component asymmetricAreaOffset is absent, the symmetricAreaOffset is applied to both sides of the position (left and right)
   If the component asymmetricAreaOffset is present, the symmetricAreaOffset is applied to the enclosed side of a curve. 
   If the curvature of the path is 0 the offset is applied to the left handside of the path. 
   To determine how the lateral offset is to be applied to the path, the following steps are executed: 
   - For each nth pathPointPredicted (ppp_n), vectors v_(n-) and v_(n+) from ppp_n to ppp_(n-1) and from ppp_n to ppp_(n+1) are created. 
   - v<sup>_</sup>(n-) and v<sup>_</sup>(n+), the normalized vectors of vectors v_(n-) and v_(n+) are created.  
   - v<sup>_o</sup> the normalized sum of the vectors v<sup>_</sup>(n-) and v<sup>_</sup>(n+) is calculated. 
   The symmetrical border offset spans a vector in the direction of both v<sup>_o</sup> and -v<sup>_o</sup>, if the asymmetrical border offset is ABSENT.
   The symmetrical border offset spans a vector in the direction of v<sup>_o</sup> if the asymmetrical border offset is PRESENT.
   The ends of the border offsets vectors of ppp_n for each side are connected to the border offsets vectors of the endings of ppp_(n-1) and ppp_(n+1) to create the indicated zone. 
   If [**PathPredicted**](#PathPredicted) has only one element, the encoded area represents a circle with the asymmetricAreaOffset as the defining radius.

* _asymmetricAreaOffset_ of type [**StandardLength9b**](#StandardLength9b)  OPTIONAL<br>
  the optional asymmetric offset applied to the outer curve of the path in order to generate a shape. 
   The asymmetrical border offset spans a vector in the direction of -v<sup>_o</sup>
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, type of pathDeltaTime changed and optionality added, fields symmetricAreaOffset and asymmetricAreaOffset added in V2.2.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,
ASN.1 Checker's avatar
ASN.1 Checker committed
  pathDeltaTime                 PathDeltaTimeChoice,
  symmetricAreaOffset           StandardLength9b OPTIONAL, 
  asymmetricAreaOffset          StandardLength9b OPTIONAL, 
ASN.1 Checker's avatar
ASN.1 Checker committed
  ... 
ASN.1 Checker's avatar
ASN.1 Checker committed
}
ASN.1 Checker's avatar
ASN.1 Checker committed
 ((WITH COMPONENTS {..., symmetricAreaOffset   ABSENT, asymmetricAreaOffset   ABSENT}) |
  (WITH COMPONENTS {..., symmetricAreaOffset   PRESENT, asymmetricAreaOffset   ABSENT}) |
  (WITH COMPONENTS {..., symmetricAreaOffset   PRESENT, asymmetricAreaOffset   PRESENT}))
```

### <a name="PathReferences"></a>PathReferences
This DF represents a list of references to the components of a [**Traces**](#Traces) or [**TracesExtended**](#TracesExtended) DF using the [**TraceId**](#TraceId).

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1_
```asn1
PathReferences ::= SEQUENCE (SIZE(1..14)) OF PathId
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:
ASN.1 Checker's avatar
ASN.1 Checker committed
* _shapeReferencePoint_ of type [**CartesianPosition3d**](#CartesianPosition3d)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the optional reference point used for the definition of the shape, relative to an externally specified reference position. 
ASN.1 Checker's avatar
ASN.1 Checker committed
   If this component is absent, the externally specified reference position represents the shape's reference point. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _polygon_ of type [**SequenceOfCartesianPosition3d**](#SequenceOfCartesianPosition3d)  (SIZE(3..16,...))<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the polygonal area represented by a list of minimum `3` to maximum `16` [**CartesianPosition3d**](#CartesianPosition3d).
ASN.1 Checker's avatar
ASN.1 Checker committed
   All nodes of the polygon shall be considered relative to the shape's reference point.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _height_ of type [**StandardLength12b**](#StandardLength12b)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the optional height, present if the shape is a right prism extending in the positive z-axis.


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
PolygonalShape ::= SEQUENCE {
ASN.1 Checker's avatar
ASN.1 Checker committed
   shapeReferencePoint    CartesianPosition3d OPTIONAL,
   polygon                SequenceOfCartesianPosition3d (SIZE(3..16,...)),
   height                 StandardLength12b OPTIONAL
ASN.1 Checker's avatar
ASN.1 Checker committed
}
```

### <a name="PosConfidenceEllipse"></a>PosConfidenceEllipse
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF indicates the horizontal position confidence ellipse which represents the estimated accuracy with a 
ASN.1 Checker's avatar
ASN.1 Checker committed
 confidence level of 95  %. The centre of the ellipse shape corresponds to the reference
ASN.1 Checker's avatar
ASN.1 Checker committed
 position point for which the position accuracy is evaluated.

ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* _semiMajorConfidence_ of type [**SemiAxisLength**](#SemiAxisLength) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  half of length of the major axis, i.e. distance between the centre point
   and major axis point of the position accuracy ellipse. 

ASN.1 Checker's avatar
ASN.1 Checker committed
* _semiMinorConfidence_ of type [**SemiAxisLength**](#SemiAxisLength) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  half of length of the minor axis, i.e. distance between the centre point
   and minor axis point of the position accuracy ellipse. 

ASN.1 Checker's avatar
ASN.1 Checker committed
* _semiMajorOrientation_ of type [**HeadingValue**](#HeadingValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  orientation direction of the ellipse major axis of the position accuracy
   ellipse with regards to the WGS84 north. 
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
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** GeoReference 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
```asn1
PosConfidenceEllipse ::= SEQUENCE {
    semiMajorConfidence     SemiAxisLength,
    semiMinorConfidence     SemiAxisLength,
ASN.1 Checker's avatar
ASN.1 Checker committed
    semiMajorOrientation    HeadingValue
}
```

### <a name="PositionConfidenceEllipse"></a>PositionConfidenceEllipse
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF indicates the horizontal position confidence ellipse which represents the estimated accuracy with a 
ASN.1 Checker's avatar
ASN.1 Checker committed
 confidence level of 95 %. The centre of the ellipse shape corresponds to the reference
 position point for which the position accuracy is evaluated.

 It shall include the following components:

ASN.1 Checker's avatar
ASN.1 Checker committed
* _semiMajorAxisLength_ of type [**SemiAxisLength**](#SemiAxisLength) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  half of length of the major axis, i.e. distance between the centre point
   and major axis point of the position accuracy ellipse. 

ASN.1 Checker's avatar
ASN.1 Checker committed
* _semiMinorAxisLength_ of type [**SemiAxisLength**](#SemiAxisLength) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  half of length of the minor axis, i.e. distance between the centre point
   and minor axis point of the position accuracy ellipse. 

ASN.1 Checker's avatar
ASN.1 Checker committed
* _semiMajorAxisOrientation_ of type [**Wgs84AngleValue**](#Wgs84AngleValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  orientation direction of the ellipse major axis of the position accuracy
   ellipse with regards to the WGS84 north. 
   The specific WGS84 coordinate system is specified by the corresponding standards applying this DE.


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 [**PosConfidenceEllipse**](#PosConfidenceEllipse)_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
PositionConfidenceEllipse ::= SEQUENCE {
    semiMajorAxisLength         SemiAxisLength,
    semiMinorAxisLength         SemiAxisLength,
    semiMajorAxisOrientation    Wgs84AngleValue
ASN.1 Checker's avatar
ASN.1 Checker committed
}
```

### <a name="PositionOfPillars"></a>PositionOfPillars
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF shall contain a list of distances [**PosPillar**](#PosPillar) that refer to the perpendicular distance between centre of vehicle front bumper
ASN.1 Checker's avatar
ASN.1 Checker committed
 and vehicle pillar A, between neighbour pillars until the last pillar of the vehicle.

 Vehicle pillars refer to the vertical or near vertical support of vehicle,
 designated respectively as the A, B, C or D and other pillars moving in side profile view from the front to rear.
 
 The first value of the DF refers to the perpendicular distance from the centre of vehicle front bumper to 
 vehicle A pillar. The second value refers to the perpendicular distance from the centre position of A pillar
 to the B pillar of vehicle and so on until the last pillar.

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
```asn1
PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar
```

### <a name="ProtectedCommunicationZone"></a>ProtectedCommunicationZone
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF describes a zone of protection inside which the ITS communication should be restricted.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* _protectedZoneType_ of type [**ProtectedZoneType**](#ProtectedZoneType) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  type of the protected zone. 

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 protected communication zone will expire.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _protectedZoneLatitude_ of type [**Latitude**](#Latitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  latitude of the centre point of the protected communication zone.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _protectedZoneLongitude_ of type [**Longitude**](#Longitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  longitude of the centre point of the protected communication zone.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _protectedZoneRadius_ of type [**ProtectedZoneRadius**](#ProtectedZoneRadius)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional radius of the protected communication zone in metres.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _protectedZoneId_ of type [**ProtectedZoneId**](#ProtectedZoneId)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the optional ID of the protected communication zone.


ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Infrastructure information Communication information 
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _revised in V2.1.1 (changed protectedZoneID to protectedZoneId)_
ASN.1 Checker's avatar
ASN.1 Checker committed
NOTE:&emsp;A protected communication zone may be defined around a CEN DSRC road side equipment.
ASN.1 Checker's avatar
ASN.1 Checker committed
>>>
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ProtectedCommunicationZone ::= SEQUENCE {
    protectedZoneType         ProtectedZoneType,
    expiryTime                TimestampIts OPTIONAL,
    protectedZoneLatitude     Latitude,
    protectedZoneLongitude    Longitude,
    protectedZoneRadius       ProtectedZoneRadius OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    protectedZoneId           ProtectedZoneId OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    ...
}
```

### <a name="ProtectedCommunicationZonesRSU"></a>ProtectedCommunicationZonesRSU
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF shall contain a list of [**ProtectedCommunicationZone**](#ProtectedCommunicationZone) provided by a road side ITS-S (Road Side Unit RSU).
ASN.1 Checker's avatar
ASN.1 Checker committed

 It may provide up to 16 protected communication zones information.

ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Infrastructure information Communication 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
```asn1
ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="Provider"></a>Provider
This DF identifies an organization.

 It shall include the following components:

* _countryCode_ of type [**CountryCode**](#CountryCode) <br>
  represents the country code that identifies the country of the national registration administrator for issuers according to ISO 14816.

* _providerIdentifier_ of type [**IssuerIdentifier**](#IssuerIdentifier) <br>
  identifies the organization according to the national ISO 14816 register for issuers.


&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Communication information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1 based on ISO 17573-3 [[24]](#references)_

>>>
NOTE:&emsp;See https://www.itsstandards.eu/registries/register-of-nra-i-cs1/ for a list of national registration administrators and their respective registers
>>>

```asn1
Provider ::= SEQUENCE {
	countryCode		CountryCode,
	providerIdentifier	IssuerIdentifier
}
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="PtActivation"></a>PtActivation
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents activation data for real-time systems designed for operations control, traffic light priorities, track switches, barriers, etc.
ASN.1 Checker's avatar
ASN.1 Checker committed
 using a range of activation devices equipped in public transport vehicles.

 The activation of the corresponding equipment is triggered by the approach or passage of a public transport
 vehicle at a certain point (e.g. a beacon).

ASN.1 Checker's avatar
ASN.1 Checker committed
* _ptActivationType_ of type [**PtActivationType**](#PtActivationType) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  type of activation. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _ptActivationData_ of type [**PtActivationData**](#PtActivationData) <br>
* ptActicationData<br>
  data of activation. 
ASN.1 Checker's avatar
ASN.1 Checker committed
Today there are different payload variants defined for public transport activation-data. The R09.x is one of
ASN.1 Checker's avatar
ASN.1 Checker committed
 the industry standard used by public transport vehicles (e.g. buses, trams) in Europe (e.g. Germany Austria)
ASN.1 Checker's avatar
ASN.1 Checker committed
 for controlling traffic lights, barriers, bollards, etc. This DF shall include information like route, course,
ASN.1 Checker's avatar
ASN.1 Checker committed
 destination, priority, etc.
 
ASN.1 Checker's avatar
ASN.1 Checker committed
 The R09.x content is defined in VDV recommendation 420 [[7]](#references). It includes following information:
ASN.1 Checker's avatar
ASN.1 Checker committed
 - Priority Request Information (pre-request, request, ready to start)
 - End of Prioritization procedure
 - Priority request direction
 - Public Transport line number
 - Priority of public transport
 - Route line identifier of the public transport
 - Route number identification
 - Destination of public transport vehicle

 Other countries may use different message sets defined by the local administration.

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
```asn1
PtActivation ::= SEQUENCE {
    ptActivationType    PtActivationType,
    ptActivationData    PtActivationData
}
```

### <a name="RadialShape"></a>RadialShape
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF describes a radial shape. The circular sector or cone is constructed by sweeping      
 the provided range about the reference position specified outside of the context of this DF or 
 about the optional shapeReferencePoint. The range is swept between a horizontal start and a 
 horizontal end angle in the X-Y plane of a cartesian coordinate system specified outside of the 
 context of this DF, in a right-hand positive angular direction w.r.t. the x-axis. 
 A vertical opening angle in the X-Z plane may optionally be provided in a right-hand positive 
 angular direction w.r.t. the x-axis. 
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* _shapeReferencePoint_ of type [**CartesianPosition3d**](#CartesianPosition3d)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the optional reference point used for the definition of the shape, 
   relative to an externally specified reference position. If this component is absent, the  
   externally specified reference position represents the shape's reference point. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _range_ of type [**StandardLength12b**](#StandardLength12b) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the radial range of the shape from the shape's reference point. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _horizontalOpeningAngleStart_ of type [**CartesianAngleValue**](#CartesianAngleValue) <br>
  the start of the shape's horizontal opening angle. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _horizontalOpeningAngleEnd_ of type [**CartesianAngleValue**](#CartesianAngleValue) <br>
  the end of the shape's horizontal opening angle. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _verticalOpeningAngleStart_ of type [**CartesianAngleValue**](#CartesianAngleValue)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional start of the shape's vertical opening angle. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _verticalOpeningAngleEnd_ of type [**CartesianAngleValue**](#CartesianAngleValue)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional end of the shape's vertical opening angle. 
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, names and types of the horizontal opening angles changed, constraint added and description revised in V2.2.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
RadialShape ::= SEQUENCE { 
ASN.1 Checker's avatar
ASN.1 Checker committed
    shapeReferencePoint                      CartesianPosition3d OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    range                                    StandardLength12b,
ASN.1 Checker's avatar
ASN.1 Checker committed
    horizontalOpeningAngleStart              CartesianAngleValue, 
    horizontalOpeningAngleEnd                CartesianAngleValue, 
ASN.1 Checker's avatar
ASN.1 Checker committed
    verticalOpeningAngleStart                CartesianAngleValue OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    verticalOpeningAngleEnd                  CartesianAngleValue OPTIONAL
ASN.1 Checker's avatar
ASN.1 Checker committed
}
ASN.1 Checker's avatar
ASN.1 Checker committed
   ((WITH COMPONENTS {..., verticalOpeningAngleStart ABSENT, verticalOpeningAngleEnd ABSENT }) |
    (WITH COMPONENTS {..., verticalOpeningAngleStart PRESENT, verticalOpeningAngleEnd PRESENT }))
ASN.1 Checker's avatar
ASN.1 Checker committed
```

### <a name="RadialShapes"></a>RadialShapes
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF describes a list of radial shapes positioned w.r.t. to an offset position defined  
 relative to a reference position specified outside of the context of this DF and oriented w.r.t.  
 a cartesian coordinate system specified outside of the context of this DF. 
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* _refPointId_ of type [**Identifier1B**](#Identifier1B) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0).

ASN.1 Checker's avatar
ASN.1 Checker committed
* _xCoordinate_ of type [**CartesianCoordinateSmall**](#CartesianCoordinateSmall) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the x-coordinate of the offset position.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _yCoordinate_ of type [**CartesianCoordinateSmall**](#CartesianCoordinateSmall) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the y-coordinate of the offset position.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _zCoordinate_ of type [**CartesianCoordinateSmall**](#CartesianCoordinateSmall)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the optional z-coordinate of the offset position.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _radialShapesList_ of type [**RadialShapesList**](#RadialShapesList) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the list of radial shape details.


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, description revised in V2.2.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
RadialShapes ::= SEQUENCE {
    refPointId          Identifier1B,
    xCoordinate         CartesianCoordinateSmall, 
    yCoordinate         CartesianCoordinateSmall,
    zCoordinate         CartesianCoordinateSmall OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    radialShapesList    RadialShapesList
ASN.1 Checker's avatar
ASN.1 Checker committed
}
```

### <a name="RadialShapesList"></a>RadialShapesList
ASN.1 Checker's avatar
ASN.1 Checker committed
The DF contains a list of [**RadialShapeDetails**](#RadialShapeDetails).
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
RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF RadialShapeDetails
```

### <a name="RadialShapeDetails"></a>RadialShapeDetails
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF describes radial shape details. The circular sector or cone is
 constructed by sweeping the provided range about the position specified outside of the  
 context of this DF. The range is swept between a horizontal start and a horizontal end angle in 
 the X-Y plane of a right-hand cartesian coordinate system specified outside of the context of 
 this DF, in positive angular direction w.r.t. the x-axis. A vertical opening angle in the X-Z 
 plane may optionally be provided in positive angular direction w.r.t. the x-axis.
 
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* _range_ of type [**StandardLength12b**](#StandardLength12b) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the radial range of the sensor from the reference point or sensor point offset. 

ASN.1 Checker's avatar
ASN.1 Checker committed
* _horizontalOpeningAngleStart_ of type [**CartesianAngleValue**](#CartesianAngleValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the start of the shape's horizontal opening angle.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _horizontalOpeningAngleEnd_ of type [**CartesianAngleValue**](#CartesianAngleValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the end of the shape's horizontal opening angle. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _verticalOpeningAngleStart_ of type [**CartesianAngleValue**](#CartesianAngleValue)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional start of the shape's vertical opening angle. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _verticalOpeningAngleEnd_ of type [**CartesianAngleValue**](#CartesianAngleValue)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional end of the shape's vertical opening angle. 
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, description revised and constraint added in V2.2.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
RadialShapeDetails ::= SEQUENCE {
    range                          StandardLength12b,
    horizontalOpeningAngleStart    CartesianAngleValue,
    horizontalOpeningAngleEnd      CartesianAngleValue,
    verticalOpeningAngleStart      CartesianAngleValue OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    verticalOpeningAngleEnd        CartesianAngleValue OPTIONAL
ASN.1 Checker's avatar
ASN.1 Checker committed
}
ASN.1 Checker's avatar
ASN.1 Checker committed
   ((WITH COMPONENTS {..., verticalOpeningAngleStart ABSENT, verticalOpeningAngleEnd ABSENT }) |
    (WITH COMPONENTS {..., verticalOpeningAngleStart PRESENT, verticalOpeningAngleEnd PRESENT }))
ASN.1 Checker's avatar
ASN.1 Checker committed
```

### <a name="RectangularShape"></a>RectangularShape
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents the shape of a rectangular area or a right rectangular prism that is centred 
 on a reference position defined outside of the context of this DF and oriented w.r.t. a cartesian    
 coordinate system defined outside of the context of this DF. 
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* _shapeReferencePoint_ of type [**CartesianPosition3d**](#CartesianPosition3d)  OPTIONAL<br>
  represents an optional offset point which the rectangle is centred on with 
   respect to the reference position. If this component is absent, the externally specified  
   reference position represents the shape's reference point. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _semiLength_ of type [**StandardLength12b**](#StandardLength12b) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  represents half the length of the rectangle located in the X-Y Plane.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _semiBreadth_ of type [**StandardLength12b**](#StandardLength12b) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  represents half the breadth of the rectangle located in the X-Y Plane.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _orientation_ of type [**CartesianAngleValue**](#CartesianAngleValue)  OPTIONAL<br>
  represents the optional orientation of the length of the rectangle, 
   measured with positive values turning around the Z-axis using the right-hand rule, starting from
   the X-axis. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _height_ of type [**StandardLength12b**](#StandardLength12b)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  represents the optional height, present if the shape is a right rectangular prism 
   with height extending in the positive Z-axis.
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, centerPoint renamed to shapeReferencePoint, the type of the field orientation changed and description revised in V2.2.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
RectangularShape ::= SEQUENCE { 
ASN.1 Checker's avatar
ASN.1 Checker committed
    shapeReferencePoint   CartesianPosition3d OPTIONAL,
    semiLength            StandardLength12b,
    semiBreadth           StandardLength12b,
    orientation           CartesianAngleValue OPTIONAL,
    height                StandardLength12b OPTIONAL
ASN.1 Checker's avatar
ASN.1 Checker committed
}
```

### <a name="ReferencePosition"></a>ReferencePosition
ASN.1 Checker's avatar
ASN.1 Checker committed
A position within a geographic coordinate system together with a confidence ellipse. 
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* _latitude_ of type [**Latitude**](#Latitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the latitude of the geographical point.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _longitude_ of type [**Longitude**](#Longitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the longitude of the geographical point.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _positionConfidenceEllipse_ of type [**PosConfidenceEllipse**](#PosConfidenceEllipse) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the confidence ellipse associated to the geographical position.
ASN.1 Checker's avatar
ASN.1 Checker committed
* _altitude_ of type [**Altitude**](#Altitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the altitude and an altitude accuracy of the geographical point.


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:** _description updated in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed
NOTE:&emsp;this DE is kept for backwards compatibility reasons only. It is recommended to use the [**ReferencePositionWithConfidence**](#ReferencePositionWithConfidence) instead.
ASN.1 Checker's avatar
ASN.1 Checker committed
>>>
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ReferencePosition ::= SEQUENCE {
    latitude                     Latitude,
    longitude                    Longitude,
    positionConfidenceEllipse    PosConfidenceEllipse,
    altitude                     Altitude
}
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="ReferencePositionWithConfidence"></a>ReferencePositionWithConfidence
ASN.1 Checker's avatar
ASN.1 Checker committed
A position within a geographic coordinate system together with a confidence ellipse. 
ASN.1 Checker's avatar
ASN.1 Checker committed

 It shall include the following components:

ASN.1 Checker's avatar
ASN.1 Checker committed
* _latitude_ of type [**Latitude**](#Latitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the latitude of the geographical point.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _longitude_ of type [**Longitude**](#Longitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the longitude of the geographical point.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _positionConfidenceEllipse_ of type [**PositionConfidenceEllipse**](#PositionConfidenceEllipse) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the confidence ellipse associated to the geographical position.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _altitude_ of type [**Altitude**](#Altitude) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the altitude and an altitude accuracy of the geographical point.


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 [**ReferencePosition**](#ReferencePosition) but using [**PositionConfidenceEllipse**](#PositionConfidenceEllipse)._
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
ReferencePositionWithConfidence ::= SEQUENCE {
    latitude                     Latitude,
    longitude                    Longitude,
    positionConfidenceEllipse    PositionConfidenceEllipse,
    altitude                     Altitude
}
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="RestrictedTypes"></a>RestrictedTypes
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF shall contain a list of [**StationType**](#StationType). to which a certain traffic restriction, e.g. the speed limit, applies.
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Infrastructure information Traffic 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
```asn1
RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="RoadConfigurationSection"></a>RoadConfigurationSection
This DF provides configuration information about a road section.

 It shall include the following components:

* _roadSectionDefinition_ of type [**RoadSectionDefinition**](#RoadSectionDefinition) <br>
  the topological definition of the road section.

* _roadType_ of type [**RoadType**](#RoadType)  OPTIONAL<br>
  the optional type of road on which the section is located.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _laneConfiguration_ of type [**BasicLaneConfiguration**](#BasicLaneConfiguration)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the optional configuration of the road section in terms of basic information per lane.

* _mapemConfiguration_ of type [**MapemConfiguration**](#MapemConfiguration)  OPTIONAL<br>
  the optional configuration of the road section in terms of MAPEM lanes or connections.


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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1_
```asn1
RoadConfigurationSection ::= SEQUENCE {
  roadSectionDefinition  RoadSectionDefinition,
  roadType               RoadType OPTIONAL, 
ASN.1 Checker's avatar
ASN.1 Checker committed
  laneConfiguration      BasicLaneConfiguration OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
  mapemConfiguration     MapemConfiguration OPTIONAL,
  ...
} 
  ((WITH COMPONENTS {..., laneConfiguration PRESENT}) |
   (WITH COMPONENTS {..., mapemConfiguration PRESENT}))
```

### <a name="RoadConfigurationSectionList"></a>RoadConfigurationSectionList
This DF shall contain a list of [**RoadConfigurationSection**](#RoadConfigurationSection).

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1_
```asn1
RoadConfigurationSectionList::=  SEQUENCE (SIZE(1..8,...))  OF RoadConfigurationSection
```

### <a name="RoadSectionDefinition"></a>RoadSectionDefinition
This DF provides the basic topological definition of a road section.

 It shall include the following components:

* _startingPointSection_ of type [**GeoPosition**](#GeoPosition) <br>
  the position of the starting point of the section. 

* _lengthOfSection_ of type [**StandardLength2B**](#StandardLength2B)  OPTIONAL<br>
  the optional length of the section along the road profile (i.e. including curves).

* _endingPointSection_ of type [**GeoPosition**](#GeoPosition)  OPTIONAL<br>
  the optional position of the ending point of the section. 
   If this component is absent, the ending position is implicitly defined by other means, e.g. the starting point of the next RoadConfigurationSection, or the section’s length.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _connectedPaths_ of type [**PathReferences**](#PathReferences) <br>
  the identifier(s) of the path(s) having one or an ordered subset of waypoints located upstream of the RoadConfigurationSection’ starting point. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _includedPaths_ of type [**PathReferences**](#PathReferences) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the identifier(s) of the trace(s) that covers (either with all its length or with a part of it) a RoadConfigurationSection. 

* _isEventZoneIncluded_ of type **BOOLEAN** <br>
  indicates, if set to TRUE, that the eventZone (either with all its length or with a part of it) covers a RoadConfigurationSection. 

* _isEventZoneConnected_ of type **BOOLEAN** <br>
  indicates, if set to TRUE, that the eventZone has one or an ordered subset of waypoints located upstream of the RoadConfigurationSection’ starting point.


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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision:** _Created in V2.2.1_
```asn1
RoadSectionDefinition::= SEQUENCE {
  startingPointSection      GeoPosition,
  lengthOfSection	  	    StandardLength2B OPTIONAL,
  endingPointSection       	GeoPosition OPTIONAL, 
ASN.1 Checker's avatar
ASN.1 Checker committed
  connectedPaths		    PathReferences,	
  includedPaths          	PathReferences,
ASN.1 Checker's avatar
ASN.1 Checker committed
  isEventZoneIncluded       BOOLEAN,  
  isEventZoneConnected      BOOLEAN,
  ...
}
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="RoadSegmentReferenceId"></a>RoadSegmentReferenceId
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF represents a unique id for a road segment
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 road segment is placed.
   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 road segment.
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
NOTE:&emsp;when the component region is present, the RoadSegmentReferenceId 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
RoadSegmentReferenceId ::= SEQUENCE {
    region    Identifier2B OPTIONAL,
    id        Identifier2B
}
```

### <a name="SafeDistanceIndication"></a>SafeDistanceIndication
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF provides the safe distance indication of a traffic participant with other traffic participant(s).
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed
* _subjectStation_ of type [**StationId**](#StationId)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optionally indicates one "other" traffic participant identified by its ITS-S.

ASN.1 Checker's avatar
ASN.1 Checker committed
* _safeDistanceIndicator_ of type [**SafeDistanceIndicator**](#SafeDistanceIndicator) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe.
ASN.1 Checker's avatar
ASN.1 Checker committed
   If subjectStation is present then it indicates whether the distance between the ego ITS-S and the traffic participant indicated in the component subjectStation is safe. 
ASN.1 Checker's avatar
ASN.1 Checker committed
* _timeToCollision_ of type [**DeltaTimeTenthOfSecond**](#DeltaTimeTenthOfSecond)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optionally indicated the time-to-collision calculated as sqrt(LaDi<sup>2</sup> + LoDi<sup>2</sup> + VDi<sup>2</sup>/relative speed 
ASN.1 Checker's avatar
ASN.1 Checker committed
   and represented in  the  nearest 100  ms. This component may be present only if subjectStation is present. 


ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Traffic information 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
NOTE:&emsp;the abbreviations used are Lateral Distance (LaD),  Longitudinal Distance (LoD) and Vertical Distance (VD) 
ASN.1 Checker's avatar
ASN.1 Checker committed
 and their respective  thresholds, Minimum  Safe  Lateral  Distance (MSLaD), Minimum  Safe  Longitudinal Distance  (MSLoD),  and  Minimum  Safe Vertical Distance (MSVD).
>>>
ASN.1 Checker's avatar
ASN.1 Checker committed
```asn1
SafeDistanceIndication ::= SEQUENCE {
ASN.1 Checker's avatar
ASN.1 Checker committed
    subjectStation           StationId OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    safeDistanceIndicator    SafeDistanceIndicator,
ASN.1 Checker's avatar
ASN.1 Checker committed
    timeToCollision          DeltaTimeTenthOfSecond OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    ...
}
```

### <a name="SequenceOfCartesianPosition3d"></a>SequenceOfCartesianPosition3d
ASN.1 Checker's avatar
ASN.1 Checker committed
This DF shall contain a list of DF [**CartesianPosition3d**](#CartesianPosition3d).
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
SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d
```

### <a name="SequenceOfIdentifier1B"></a>SequenceOfIdentifier1B
ASN.1 Checker's avatar
ASN.1 Checker committed
The DF contains a list of DE [**Identifier1B**](#Identifier1B).
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Basic 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
SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B
```

### <a name="SequenceOfSafeDistanceIndication"></a>SequenceOfSafeDistanceIndication
ASN.1 Checker's avatar
ASN.1 Checker committed
The DF contains a list of DF [**SafeDistanceIndication**](#SafeDistanceIndication).
ASN.1 Checker's avatar
ASN.1 Checker committed
&nbsp;&nbsp;&nbsp;&nbsp;**Categories:** Traffic information 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
ASN.1 Checker's avatar
ASN.1 Checker committed
SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..8,...)) OF SafeDistanceIndication
ASN.1 Checker's avatar
ASN.1 Checker committed
```

### <a name="SequenceOfTrajectoryInterceptionIndication"></a>SequenceOfTrajectoryInterceptionIndication