ETSI-ITS-CDD.md 325 KB
Newer Older
ASN.1 Checker's avatar
ASN.1 Checker committed
    **Revision**: _Created in V2.1.1_
```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 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _Created in V2.1.1_
```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

Fields:
* objectClass [**ObjectClass**](#ObjectClass) <br>
  the class of the object.


* confidence [**ConfidenceLevel**](#ConfidenceLevel) <br>
   

&nbsp;&nbsp;&nbsp;&nbsp;**Categories**: Sensing information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _Created in V2.1.1_
```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

Fields:
* value [**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 [**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 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _Created in V2.1.1_
```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="Path"></a>Path
ASN.1 Checker's avatar
ASN.1 Checker committed
 This DF represents a path with a set of path points.
 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.
 Each other PathPoint presents an offset delta position and optionally an offset travel time with regards to the previous PathPoint. 
 

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1 based on PathHistory_
```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.
 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.
 Each other PathPoint presents an offset delta position and optionally an offset travel time with regards to the previous PathPoint. 
 

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _semantics updated in V2.1.1_

>>>
NOTE: this DF is kept for backwards compatibility reasons only. It is recommended to use [**Path**](#Path) instead
>>>
```asn1
ASN.1 Checker's avatar
ASN.1 Checker committed
PathHistory::= SEQUENCE (SIZE(40)) OF PathPoint
ASN.1 Checker's avatar
ASN.1 Checker committed

### <a name="PathPredicted"></a>PathPredicted
ASN.1 Checker's avatar
ASN.1 Checker committed
 This DF represents a predicted path with a set of path points.
 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.
 Each other PathPoint presents an offset delta position and optionally an offset travel time with regards to the previous PathPoint. 
 

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1 based on PathHistory_
```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

Fields:
* pathPosition [**DeltaReferencePosition**](#DeltaReferencePosition) <br>
  The waypoint position defined as an offset position with regards to a pre-defined reference position. 


* pathDeltaTime [**PathDeltaTime**](#PathDeltaTime)  OPTIONAL<br>
  The optional travel time separated from a waypoint to the predefined reference position.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _semantics updated in V2.1.1_
```asn1
PathPoint ::= SEQUENCE {
    pathPosition     DeltaReferencePosition,
    pathDeltaTime    PathDeltaTime OPTIONAL
}
```

ASN.1 Checker's avatar
ASN.1 Checker committed
### <a name="PathPointPredicted"></a>PathPointPredicted
 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

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


         
* horizontalPositionConfidence [**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 [**DeltaAltitude**](#DeltaAltitude)  DEFAULT unavailable<br>
  an offset altitude with regards to a pre-defined reference position. 


      
* altitudeConfidence [**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 [**DeltaTimeTenthOfSecond**](#DeltaTimeTenthOfSecond) <br>
  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.
ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed

Fields:
ASN.1 Checker's avatar
ASN.1 Checker committed
* objectId [**Identifier2B**](#Identifier2B)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional identifier assigned to a detected object.


* timeOfMeasurement [**DeltaTimeMilliSecondPosNeg**](#DeltaTimeMilliSecondPosNeg) <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 [**CartesianPosition3dWithConfidence**](#CartesianPosition3dWithConfidence) <br>
  the position of the geometric centre of the object´s bounding box within the pre-defined coordinate system, with the associated variance.
ASN.1 Checker's avatar
ASN.1 Checker committed
* velocity [**Velocity3dWithConfidence**](#Velocity3dWithConfidence)  OPTIONAL<br>
  the velocity vector of the object within the pre-defined coordinate system with the associated variance.
ASN.1 Checker's avatar
ASN.1 Checker committed
* acceleration [**Acceleration3dWithConfidence**](#Acceleration3dWithConfidence)  OPTIONAL<br>
  the acceleration vector of the object within the pre-defined coordinate system with the associated variance.
ASN.1 Checker's avatar
ASN.1 Checker committed
* zAngle [**CartesianAngle**](#CartesianAngle)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
* yAngle [**CartesianAngle**](#CartesianAngle)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
* xAngle [**CartesianAngle**](#CartesianAngle)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
* zAngleVelocity [**CartesianAngularVelocityComponent**](#CartesianAngularVelocityComponent)  OPTIONAL<br>
  optional angular velocity of the object around the z-axis at the time of measurement, with the associated variance.
   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 [**LowerTriangularPositiveSemidefiniteMatrices**](#LowerTriangularPositiveSemidefiniteMatrices)  OPTIONAL<br>
  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 [**ObjectDimension**](#ObjectDimension)  OPTIONAL<br>
  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 [**ObjectDimension**](#ObjectDimension)  OPTIONAL<br>
  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 [**ObjectDimension**](#ObjectDimension)  OPTIONAL<br>
  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 [**DeltaTimeMilliSecondPosNeg**](#DeltaTimeMilliSecondPosNeg)  (0..1500) OPTIONAL<br>
  optional age of the detected and described object, i.e. the difference in time between the moment 
   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 [**ObjectPerceptionQuality**](#ObjectPerceptionQuality)  OPTIONAL<br>
  optional confidence associated to the object. 
ASN.1 Checker's avatar
ASN.1 Checker committed


   
* sensorIdList [**SequenceOfIdentifier1B**](#SequenceOfIdentifier1B)  OPTIONAL<br>
  optional list of sensor-IDs which provided the measurement data. 


   
* classification [**ObjectClassDescription**](#ObjectClassDescription)  OPTIONAL<br>
  optional classification of the described object


   
* mapPosition [**MapPosition**](#MapPosition)  OPTIONAL<br>
   

&nbsp;&nbsp;&nbsp;&nbsp;**Categories**: Sensing information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```asn1
PerceivedObject ::= SEQUENCE {
ASN.1 Checker's avatar
ASN.1 Checker committed
    objectId                                          Identifier2B OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    timeOfMeasurement                                 DeltaTimeMilliSecondPosNeg,
ASN.1 Checker's avatar
ASN.1 Checker committed
    position                                          CartesianPosition3dWithConfidence, 
    velocity                                          Velocity3dWithConfidence OPTIONAL,
    acceleration                                      Acceleration3dWithConfidence OPTIONAL,
    zAngle                                            CartesianAngle OPTIONAL,
    yAngle                                            CartesianAngle OPTIONAL,
    xAngle                                            CartesianAngle OPTIONAL,
    zAngleVelocity                                    CartesianAngularVelocityComponent OPTIONAL,
    lowerTriangularCorrelationMatrices                LowerTriangularPositiveSemidefiniteMatrices OPTIONAL,
    objectDimensionZ                                  ObjectDimension OPTIONAL,
    objectDimensionY                                  ObjectDimension OPTIONAL,
    objectDimensionX                                  ObjectDimension OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    objectAge                                         DeltaTimeMilliSecondPosNeg (0..1500) 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
 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

Fields:
ASN.1 Checker's avatar
ASN.1 Checker committed
* shapeReferencePoint [**CartesianPosition3d**](#CartesianPosition3d)  OPTIONAL<br>
  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
* polygon [**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).
   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 [**StandardLength12b**](#StandardLength12b)  OPTIONAL<br>
  the optional height, present if the shape is a right prism extending in the positive z-axis.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```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
 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

Fields:
* semiMajorConfidence [**SemiAxisLength**](#SemiAxisLength) <br>
  half of length of the major axis, i.e. distance between the centre point
   and major axis point of the position accuracy ellipse. 


* semiMinorConfidence [**SemiAxisLength**](#SemiAxisLength) <br>
  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 [**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 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _V1.3.1_
```asn1
PosConfidenceEllipse ::= SEQUENCE {
    semiMajorConfidence     SemiAxisLength,
    semiMinorConfidence     SemiAxisLength,
ASN.1 Checker's avatar
ASN.1 Checker committed
    semiMajorOrientation    HeadingValue
}
```

### <a name="PositionConfidenceEllipse"></a>PositionConfidenceEllipse
 This DF indicates the horizontal position confidence ellipse which represents the estimated accuracy with a 
 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:

Fields:
* semiMajorAxisLength [**SemiAxisLength**](#SemiAxisLength) <br>
  half of length of the major axis, i.e. distance between the centre point
   and major axis point of the position accuracy ellipse. 


* semiMinorAxisLength [**SemiAxisLength**](#SemiAxisLength) <br>
  half of length of the minor axis, i.e. distance between the centre point
   and minor axis point of the position accuracy ellipse. 


   
* semiMajorAxisOrientation [**Wgs84AngleValue**](#Wgs84AngleValue) <br>
  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.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1 based on @ref PosConfidenceEllipse_
```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.
 

&nbsp;&nbsp;&nbsp;&nbsp;**Categories**: Vehicle information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _V1.3.1_
```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

Fields:
* protectedZoneType [**ProtectedZoneType**](#ProtectedZoneType) <br>
  type of the protected zone. 


* expiryTime [**TimestampIts**](#TimestampIts)  OPTIONAL<br>
  optional time at which the validity of the protected communication zone will expire.


   
* protectedZoneLatitude [**Latitude**](#Latitude) <br>
  latitude of the centre point of the protected communication zone.


   
* protectedZoneLongitude [**Longitude**](#Longitude) <br>
  longitude of the centre point of the protected communication zone.


   
* protectedZoneRadius [**ProtectedZoneRadius**](#ProtectedZoneRadius)  OPTIONAL<br>
  optional radius of the protected communication zone in metres.


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


   

&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: A protected communication zone may be defined around a CEN DSRC road side equipment.
>>>
```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.
 

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _V1.3.1_
```asn1
ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone
```

### <a name="PtActivation"></a>PtActivation
 This DF represents activation data for real-time systems designed for operations control, traffic light priorities, track switches, barriers, etc.
 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).



 Today there are different payload variants defined for public transport activation-data. The R09.x is one of
 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 [i.7]. 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.

Fields:
* ptActivationType [**PtActivationType**](#PtActivationType) <br>
  type of activation. 


* ptActivationData [**PtActivationData**](#PtActivationData) <br>
   

&nbsp;&nbsp;&nbsp;&nbsp;**Categories**: Vehicle information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _V1.3.1_
```asn1
PtActivation ::= SEQUENCE {
    ptActivationType    PtActivationType,
    ptActivationData    PtActivationData
}
```

### <a name="RadialShape"></a>RadialShape
 This DF describes a radial shape. The triangular or cone-shaped volume is
ASN.1 Checker's avatar
ASN.1 Checker committed
 constructed by sweeping the provided range about the reference point  between a horizontal start 
 and a horizontal end angle in positive angular direction of the WGS84
ASN.1 Checker's avatar
ASN.1 Checker committed
 coordinate system. A vertical opening angle may be provided in a Cartesian coordinate system with
 the x-axis located in the North-East plane of the WGS84 coordinate system. The sensor height may
 be provided to reflect characteristics of sensors mounted at an altitude (e.g. sensors mounted
 above intersections).

ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed

Fields:
ASN.1 Checker's avatar
ASN.1 Checker committed
* shapeReferencePoint [**CartesianPosition3d**](#CartesianPosition3d)  OPTIONAL<br>
  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 [**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


   
* stationaryHorizontalOpeningAngleStart [**Wgs84AngleValue**](#Wgs84AngleValue) <br>
  the orientation indicating the beginning of the 
ASN.1 Checker's avatar
ASN.1 Checker committed
   shape's horizontal opening angle in positive angular direction with respect to the 
ASN.1 Checker's avatar
ASN.1 Checker committed
   WGS84 coordinate system.


   
* stationaryHorizontalOpeningAngleEnd [**Wgs84AngleValue**](#Wgs84AngleValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  The orientation indicating the end of the shape's 
   horizontal opening angle in positive angular direction with respect to the WGS84 coordinate system.
ASN.1 Checker's avatar
ASN.1 Checker committed


    
* verticalOpeningAngleStart [**CartesianAngleValue**](#CartesianAngleValue)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional orientation indicating the beginning of the shape`s
   opening angle in positive angular direction of a Cartesian coordinate system with its x-axis 
   located in the north-east plane of the WGS84 coordinate system.
ASN.1 Checker's avatar
ASN.1 Checker committed


    
* verticalOpeningAngleEnd [**CartesianAngleValue**](#CartesianAngleValue)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional orientation indicating the end of the shape's 
ASN.1 Checker's avatar
ASN.1 Checker committed
   vertical opening angle in positive angular direction of a Cartesian coordinate system with its x-axis 
ASN.1 Checker's avatar
ASN.1 Checker committed
   located in the north-east plane of the WGS84 coordinate system. 
ASN.1 Checker's avatar
ASN.1 Checker committed


   

&nbsp;&nbsp;&nbsp;&nbsp;**Categories**: Sensing information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```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,
    stationaryHorizontalOpeningAngleStart    Wgs84AngleValue, 
    stationaryHorizontalOpeningAngleEnd      Wgs84AngleValue, 
    verticalOpeningAngleStart                CartesianAngleValue OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    verticalOpeningAngleEnd                  CartesianAngleValue OPTIONAL
ASN.1 Checker's avatar
ASN.1 Checker committed
}
```

### <a name="RadialShapes"></a>RadialShapes
 This DF describes a list of radial shapes. 

ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed

Fields:
* refPointId [**Identifier1B**](#Identifier1B) <br>
  the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0).


* xCoordinate [**CartesianCoordinateSmall**](#CartesianCoordinateSmall) <br>
  the x-coordinate of the offset point.


   
* yCoordinate [**CartesianCoordinateSmall**](#CartesianCoordinateSmall) <br>
  the y-coordinate of the offset point.


ASN.1 Checker's avatar
ASN.1 Checker committed
* zCoordinate [**CartesianCoordinateSmall**](#CartesianCoordinateSmall)  OPTIONAL<br>
  the optional z-coordinate of the offset point.


   
* radialShapesList [**RadialShapesList**](#RadialShapesList) <br>
  the list of radial shape details.


   

&nbsp;&nbsp;&nbsp;&nbsp;**Categories**: Georeference information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```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
 The DF contains a list of [**RadialShapeDetails**](#RadialShapeDetails).
 

&nbsp;&nbsp;&nbsp;&nbsp;**Categories**: Georeference information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```asn1
RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF RadialShapeDetails
```

### <a name="RadialShapeDetails"></a>RadialShapeDetails
 This DF describes a radial shape details. The triangular or cone-shaped volume is
 constructed by sweeping the provided range about the reference point  or about the offset
 point (if provided) between a horizontal start and a horizontal end angle in positive angular direction of the WGS84
 coordinate system. A vertical opening angle may be provided in a Cartesian coordinate system with
 the x-axis located in the North-East plane of the WGS84 coordinate system. The sensor height may
 be provided to reflect characteristics of sensors mounted at an altitude (e.g. sensors mounted
 above intersections).

ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed

Fields:
* range [**StandardLength12b**](#StandardLength12b) <br>
  the radial range of the sensor from the reference point or sensor point offset. 


* horizontalOpeningAngleStart [**CartesianAngleValue**](#CartesianAngleValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  the orientation indicating the beginning of the 
   shape's horizontal opening angle in positive angular direction.


ASN.1 Checker's avatar
ASN.1 Checker committed
   
* horizontalOpeningAngleEnd [**CartesianAngleValue**](#CartesianAngleValue) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  The orientation indicating the end of the shape's horizontal 
   opening angle in positive angular direction.


ASN.1 Checker's avatar
ASN.1 Checker committed
   
* verticalOpeningAngleStart [**CartesianAngleValue**](#CartesianAngleValue)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional orientation indicating the beginning of the shape's 
ASN.1 Checker's avatar
ASN.1 Checker committed
   vertical opening angle in positive angular direction of a Cartesian coordinate system with its x-axis 
ASN.1 Checker's avatar
ASN.1 Checker committed
   located in the north-east plane of the WGS84 coordinate system.
ASN.1 Checker's avatar
ASN.1 Checker committed


   
* verticalOpeningAngleEnd [**CartesianAngleValue**](#CartesianAngleValue)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optional orientation indicating the end of the shape's 
ASN.1 Checker's avatar
ASN.1 Checker committed
   vertical opening angle in positive angular direction of a Cartesian coordinate system with its x-axis 
   located in the north-east plane of the WGS84 coordinate system. 


   

&nbsp;&nbsp;&nbsp;&nbsp;**Categories**: Georeference information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```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
}
```

### <a name="RectangularShape"></a>RectangularShape
 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. 

ASN.1 Checker's avatar
ASN.1 Checker committed
 It shall include the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed

Fields:
* centerPoint [**CartesianPosition3d**](#CartesianPosition3d)  OPTIONAL<br>
  represents an optional offset point which the rectangle is centred on with respect to the reference position.


* semiLength [**StandardLength12b**](#StandardLength12b) <br>
  represents half the length of the rectangle.


   
* semiBreadth [**StandardLength12b**](#StandardLength12b) <br>
  represents half the breadth of the rectangle.


   
* orientation [**Wgs84AngleValue**](#Wgs84AngleValue)  OPTIONAL<br>
  represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system.
ASN.1 Checker's avatar
ASN.1 Checker committed
   The specific WGS84 coordinate system is specified by the corresponding standards applying this DE.
ASN.1 Checker's avatar
ASN.1 Checker committed


   
* height [**StandardLength12b**](#StandardLength12b)  OPTIONAL<br>
  represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```asn1
RectangularShape ::= SEQUENCE { 
    centerPoint    CartesianPosition3d OPTIONAL,
    semiLength     StandardLength12b,
    semiBreadth    StandardLength12b,
    orientation    Wgs84AngleValue OPTIONAL,
ASN.1 Checker's avatar
ASN.1 Checker committed
    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

Fields:
* latitude [**Latitude**](#Latitude) <br>
  the latitude of the geographical point.


* longitude [**Longitude**](#Longitude) <br>
  the longitude of the geographical point.


   
* positionConfidenceEllipse [**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 [**Altitude**](#Altitude) <br>
  the altitude and an altitude accuracy of the geographical point.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _description updated in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed

>>>
NOTE: 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
```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
 A position within a geographic coordinate system together with a confidence ellipse. 

 It shall include the following components:

Fields:
* latitude [**Latitude**](#Latitude) <br>
  the latitude of the geographical point.


* longitude [**Longitude**](#Longitude) <br>
  the longitude of the geographical point.


   
* positionConfidenceEllipse [**PositionConfidenceEllipse**](#PositionConfidenceEllipse) <br>
  the confidence ellipse associated to the geographical position.


   
* altitude [**Altitude**](#Altitude) <br>
  the altitude and an altitude accuracy of the geographical point.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1 based on @ref ReferencePosition but using @ref PositionConfidenceEllipse._
```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 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _V1.3.1_
```asn1
RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType
```

### <a name="RoadSegmentReferenceId"></a>RoadSegmentReferenceId
 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

Fields:
* region [**Identifier2B**](#Identifier2B)  OPTIONAL<br>
  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.


* id [**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 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_

>>>
ASN.1 Checker's avatar
ASN.1 Checker committed
NOTE: when the component region is present, the RoadSegmentReferenceId is guaranteed to be globally unique.
ASN.1 Checker's avatar
ASN.1 Checker committed
>>>
```asn1
RoadSegmentReferenceId ::= SEQUENCE {
    region    Identifier2B OPTIONAL,
    id        Identifier2B
}
```

### <a name="SafeDistanceIndication"></a>SafeDistanceIndication
 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

Fields:
ASN.1 Checker's avatar
ASN.1 Checker committed
* subjectStation [**StationId**](#StationId)  OPTIONAL<br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  optionally indicates one "other" traffic participant identified by its ITS-S.


* safeDistanceIndicator [**SafeDistanceIndicator**](#SafeDistanceIndicator) <br>
  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 [**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 
   and represented in  the  nearest 100  ms. This component may be present only if subjectStation is present. 


   

&nbsp;&nbsp;&nbsp;&nbsp;**Categories**: Traffic information Kinematics information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
ASN.1 Checker's avatar
ASN.1 Checker committed

>>>
NOTE: the abbreviations used are Lateral Distance (LaD),  Longitudinal Distance (LoD) and Vertical Distance (VD) 
 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 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```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 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```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 Kinematics information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```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
ASN.1 Checker's avatar
ASN.1 Checker committed
 The DF shall contain a list of DF [**TrajectoryInterceptionIndication**](#TrajectoryInterceptionIndication).
ASN.1 Checker's avatar
ASN.1 Checker committed

&nbsp;&nbsp;&nbsp;&nbsp;**Categories**: Traffic information Kinematics information 

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```asn1
ASN.1 Checker's avatar
ASN.1 Checker committed
SequenceOfTrajectoryInterceptionIndication ::=  SEQUENCE (SIZE(1..8,...)) OF TrajectoryInterceptionIndication
ASN.1 Checker's avatar
ASN.1 Checker committed
```

### <a name="Shape"></a>Shape
 This DF provides the definition of a geographical area or volume, based on different options.

ASN.1 Checker's avatar
ASN.1 Checker committed
 It is a choice of the following components:
ASN.1 Checker's avatar
ASN.1 Checker committed

Fields:
ASN.1 Checker's avatar
ASN.1 Checker committed
* rectangular [**RectangularShape**](#RectangularShape) <br>
ASN.1 Checker's avatar
ASN.1 Checker committed
  definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box.


ASN.1 Checker's avatar
ASN.1 Checker committed
* circular [**CircularShape**](#CircularShape) <br>