ITS-Container.md 295 KB
Newer Older
ASN.1 Checker's avatar
ASN.1 Checker committed
6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000

### <a name="InterferenceManagementInfo"></a>InterferenceManagementInfo
 This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels.
 

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

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

### <a name="InterferenceManagementInfoPerChannel"></a>InterferenceManagementInfoPerChannel
 This DF contains interference management information for one affected frequency channel.

 It includes the following components:

Fields:
* interferenceManagementChannel [**InterferenceManagementChannel**](#InterferenceManagementChannel) <br>
  frequency channel for which the zone should be applied interference management 


* interferenceManagementZoneType [**InterferenceManagementZoneType**](#InterferenceManagementZoneType) <br>
  type of the interference management zone. 


   
* interferenceManagementMitigationType [**InterferenceManagementMitigationType**](#InterferenceManagementMitigationType)  OPTIONAL<br>
  optional type of the mitigation to be used in the interference management zone.


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


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```asn1
InterferenceManagementInfoPerChannel ::= SEQUENCE {
    interferenceManagementChannel           InterferenceManagementChannel,
    interferenceManagementZoneType          InterferenceManagementZoneType,
    interferenceManagementMitigationType    InterferenceManagementMitigationType OPTIONAL,
    expiryTime                              TimestampIts OPTIONAL, 
    ...
}
```

### <a name="InterferenceManagementMitigationType"></a>InterferenceManagementMitigationType
 This DF provides information and commands defining the required mitigation type in the defined interference management zone. 

 It includes the following options:

Fields:
* unavailable **NULL** <br>
  this is the default choice to be used when information is not available


* mitigationForTechnologies [**MitigationForTechnologies**](#MitigationForTechnologies) <br>
  it indicates the type of mitigation and the parameters to be used to protect the 
   potential victim in the interference management zone per channel access technology class.


      

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```asn1
InterferenceManagementMitigationType ::= CHOICE {
    unavailable                  NULL,   
    mitigationForTechnologies    MitigationForTechnologies
}
```


### <a name="InterferenceManagementZones"></a>InterferenceManagementZones
 This DF consist of a list of up to 16 interference  management zones.  

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

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

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

### <a name="IntersectionReferenceId"></a>IntersectionReferenceId
 This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.17].

 It includes the following components:

Fields:
* region [**Identifier2B**](#Identifier2B)  OPTIONAL<br>
  the optional identifier of the entity that is responsible for the region in which the intersection is placed.
   It is the duty of that entity   to guarantee that the [**Id**](#Id) is unique within the region.


* id [**Identifier2B**](#Identifier2B) <br>
  the identifier of the intersection


   

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

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

>>>
NOTE: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique.
>>>
```asn1
IntersectionReferenceId ::= SEQUENCE {
    region    Identifier2B OPTIONAL,
    id        Identifier2B
}
```


### <a name="ItineraryPath"></a>ItineraryPath
 This DF consists of  a list of waypoints [**ReferencePosition**](#ReferencePosition).
 

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _Editorial update in V2.1.1_
```asn1
ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition
```

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

 It includes the following components:

Fields:
* protocolVersion **INTEGER**  (0..255)<br>
  version of the ITS message.


* messageId [**MessageId**](#MessageId) <br>
  type of the ITS message.


   
* stationId [**StationID**](#StationID) <br>
  the identifier of the ITS-S that generates the ITS message in question.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId._
```asn1
ItsPduHeader ::= SEQUENCE {
    protocolVersion    INTEGER (0..255),
    messageId          MessageId,
    stationId          StationID
}
```

### <a name="LanePositionAndType"></a>LanePositionAndType
 This DF indicates a transversal position in resolution of lanes and the associated lane type.

 It includes the following components:

Fields:
* transversalPosition [**LanePosition**](#LanePosition) <br>
  the transversal position.


* laneType [**LaneType**](#LaneType) <br>
  the type of the lane identified in the component transversalPosition.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _Created in V2.1.1_
```asn1
LanePositionAndType::= SEQUENCE {
    transversalPosition    LanePosition,
    laneType               LaneType,
    ...
}
```

### <a name="LateralAcceleration"></a>LateralAcceleration
 This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration.

 It includes the following components:

Fields:
* lateralAccelerationValue [**LateralAccelerationValue**](#LateralAccelerationValue) <br>
  lateral acceleration value at a point in time.


* lateralAccelerationConfidence [**AccelerationConfidence**](#AccelerationConfidence) <br>
  accuracy of the reported lateral acceleration value.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _V1.3.1_

>>>
NOTE: this DF is kept forbackwards compatibility reasons only. It is recommended to use [**Acceleration1d**](#Acceleration1d) instead.
>>>
```asn1
LateralAcceleration ::= SEQUENCE {
    lateralAccelerationValue         LateralAccelerationValue,
    lateralAccelerationConfidence    AccelerationConfidence
}
```

### <a name="LongitudinalAcceleration"></a>LongitudinalAcceleration
 This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration.

 It includes the following components:

Fields:
* longitudinalAccelerationValue [**LongitudinalAccelerationValue**](#LongitudinalAccelerationValue) <br>
  longitudinal acceleration value at a point in time.


* longitudinalAccelerationConfidence [**AccelerationConfidence**](#AccelerationConfidence) <br>
  accuracy of the reported longitudinal acceleration value with a predefined


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _V1.3.1_

>>>
NOTE: this DF is kept forbackwards compatibility reasons only. It is recommended to use [**Acceleration1d**](#Acceleration1d) instead.
>>>
```asn1
LongitudinalAcceleration ::= SEQUENCE {
    longitudinalAccelerationValue         LongitudinalAccelerationValue,
    longitudinalAccelerationConfidence    AccelerationConfidence
}
```

### <a name="LongitudinalLanePosition"></a>LongitudinalLanePosition
 This DF represents the estimated position along the longitudinal length of a particular lane. 

 It includes the following components:

Fields:
* longitudinalLanePositionValue [**LongitudinalLanePositionValue**](#LongitudinalLanePositionValue) <br>
  the mean value of the longitudinal position within a particular length.


* longitudinalLanePositionConfidence [**LongitudinalLanePositionConfidence**](#LongitudinalLanePositionConfidence) <br>
  The confidence associated to the provided value.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```asn1
LongitudinalLanePosition ::= SEQUENCE {
    longitudinalLanePositionValue         LongitudinalLanePositionValue,
    longitudinalLanePositionConfidence    LongitudinalLanePositionConfidence
}
```


### <a name="LowerTriangularPositiveSemidefiniteMatrix"></a>LowerTriangularPositiveSemidefiniteMatrix
 This DF represents the elements of a lower triangular positive semi-definite matrix, not including the main diagonal elements of the matrix.
 Given a matrix "A" of size n x n, the number of columns [**CorrelationColumn**](#CorrelationColumn) to be included in the lower triangular matrix is k=n-1.

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _V1.3.1_
```asn1
LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn
```

### <a name="MapPosition"></a>MapPosition
 This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301 [i.17].

 It includes the following components:

Fields:
* mapReference [**MapReference**](#MapReference)  OPTIONAL<br>
  optionally identifies the MAPEM carrying the topology.
   It is absent if the MAPEM topology is known from the context.


* laneId [**Identifier1B**](#Identifier1B) <br>
  identifies the lane in the topology.


   
* longitudinalLanePosition [**LongitudinalLanePosition**](#LongitudinalLanePosition)  OPTIONAL<br>
  optionally indicates the longitudinal offset of the map-matched position of the object along the lane.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _Created in V2.1.1_
```asn1
MapPosition ::= SEQUENCE {
    mapReference                MapReference OPTIONAL,
    laneId                      Identifier1B,
    longitudinalLanePosition    LongitudinalLanePosition OPTIONAL,
    ...
}
```

### <a name="MapReference"></a>MapReference
 This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301 [i.17]. 

 The following options are provided:

Fields:
* roadsegment [**RoadSegmentReferenceId**](#RoadSegmentReferenceId) <br>
  option that identifies the description of a road segment contained in a MAPEM.


* intersection [**IntersectionReferenceId**](#IntersectionReferenceId) <br>
  option that identifies the description of an intersection contained in a MAPEM.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _Created in V2.1.1_
```asn1
MapReference::= CHOICE {
	roadsegment     RoadSegmentReferenceId,
	intersection    IntersectionReferenceId
	}
```

### <a name="MessageSegmentInfo"></a>MessageSegmentInfo
 This DF provides information about a message with respect to the segmentation process at the sender.

 It includes the following components:

Fields:
* totalMsgSegments [**CardinalNumber1B**](#CardinalNumber1B) <br>
  indicates the total number of messages that has been used on the transmitter side to encode the information.


* thisSegmentNum [**OrdinalNumber1B**](#OrdinalNumber1B) <br>
  indicates the position of the message within of the total set of messages .


   
```asn1
MessageSegmentInfo ::= SEQUENCE {
    totalMsgSegments  CardinalNumber1B,
    thisSegmentNum    OrdinalNumber1B
    }
```


### <a name="MitigationForTechnologies"></a>MitigationForTechnologies
 
 This DF represents a list of [**MitigationPerTechnologyClass**](#MitigationPerTechnologyClass).

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _Created in V2.1.1_
```asn1
MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyClass
```

### <a name="MitigationPerTechnologyClass"></a>MitigationPerTechnologyClass
 This DF represents a set of mitigation parameters for a specific technology, as specified in ETSI TS 103 724 [i.24], clause 7.

 It includes the following components:

Fields:
* accessTechnologyClass [**AccessTechnologyClass**](#AccessTechnologyClass) <br>
  channel access technology to which this mitigation is applied.


* lowDutyCycle **INTEGER**  (0 .. 10000) OPTIONAL<br>
  duty cycle limit.


    
* powerReduction **INTEGER**  (0 .. 30) OPTIONAL<br>
  the delta value of power to be reduced.


    
* dmcToffLimit **INTEGER**  (0 .. 1200) OPTIONAL<br>
  idle time limit as defined in ETSI TS 103 175 [i.25].


   
* dmcTonLimit **INTEGER**  (0 .. 20) OPTIONAL<br>
  Transmission duration limit, as defined in ETSI EN 302 571 [i.26].


      

&nbsp;&nbsp;&nbsp;&nbsp;**Unit**: _ms_

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

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

>>>
NOTE: All parameters are optional, as they may not apply to some of the technologies or
 interference management zone types. Specification details are in ETSI TS 103 724 [i.24], clause 7.
>>>
```asn1
MitigationPerTechnologyClass ::= SEQUENCE {
   accessTechnologyClass    AccessTechnologyClass, 
   lowDutyCycle             INTEGER (0 .. 10000) OPTIONAL, 
   powerReduction           INTEGER (0 .. 30) OPTIONAL,
   dmcToffLimit             INTEGER (0 .. 1200) OPTIONAL,   
   dmcTonLimit              INTEGER (0 .. 20) OPTIONAL,   
   ...
}
```

### <a name="ObjectClass"></a>ObjectClass
 This DF indicates both the class and associated subclass that best describes an object.

 The following options are available:

Fields:
* vehicleSubClass [**VehicleSubClass**](#VehicleSubClass) <br>
  the object is a road vehicle.


* vruSubClass [**VruProfileAndSubprofile**](#VruProfileAndSubprofile) <br>
  the object is a VRU.


   
* groupSubClass [**VruClusterInformation**](#VruClusterInformation)  (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT})<br>
  the object is a VRU group or cluster.


   
* otherSubClass [**OtherSubClass**](#OtherSubClass) <br>
  the object is of a different types as the above.


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _Created in V2.1.1_
```asn1
ObjectClass ::= CHOICE {
    vehicleSubClass    VehicleSubClass,
    vruSubClass        VruProfileAndSubprofile,
    groupSubClass      VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}),
    otherSubClass      OtherSubClass,
    ...
}
```


### <a name="ObjectClassDescription"></a>ObjectClassDescription
 This DF consist of a list of object classes.

&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
 This DF represents the classification of a detected object together with a confidence indication.

 It includes the following components:

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


* confidence [**ConfidenceLevel**](#ConfidenceLevel) <br>
   
* confidence [**ConfidenceLevel**](#ConfidenceLevel) <br>
   
* value [**ObjectDimensionValue**](#ObjectDimensionValue) <br>
   
* confidence [**ObjectDimensionValue**](#ObjectDimensionValue) <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
}
ObjectDimension ::= SEQUENCE {
    value         ObjectDimensionValue,
    confidence    ObjectDimensionValue
}
```


### <a name="Path"></a>Path
 This DF that represents a path with a set of path points.
 It may contain up to `40` [**PathPoint**](#PathPoint). 
 
 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
 This DF that represents a path with a set of path points.
 It may contain up to `40` [**PathPoint**](#PathPoint). 
 
 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
PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint
```

### <a name="PathPoint"></a>PathPoint
 This DF  defines an offset waypoint position within a path.

 It includes the following components:

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
}
```

### <a name="PathPointAbsolute"></a>PathPointAbsolute
 The DF that defines a waypoint position within a path.

 It includes the following components:

Fields:
* pathPosition [**ReferencePosition**](#ReferencePosition) <br>
  The waypoint position defined as an absolute  position.


* pathDeltaTime [**PathDeltaTime**](#PathDeltaTime)  OPTIONAL<br>
  The optional delta time in which the waypoint will be occupied, from a reference time.


                      

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _created in V2.1.1_
```asn1
PathPointAbsolute ::=  SEQUENCE {
    pathPosition     ReferencePosition,                   
    pathDeltaTime    PathDeltaTime OPTIONAL 
}
```

### <a name="PerceivedObject"></a>PerceivedObject
 This DF contains information about a perceived object including its kinematic and attitude vector in a pre-defined coordinate system.
 
 It includes the following components:

Fields:
* objectID [**Identifier2B**](#Identifier2B)  OPTIONAL<br>
  optional identifier assigned to a detected object.


* timeOfMeasurement [**DeltaTimeMilliSecondPosNeg**](#DeltaTimeMilliSecondPosNeg) <br>
  the time difference from a reference time to the time of the  measurement of the object using the DE DeltaTime. 
   Negative values indicate that the provided object state refers to a point in time after the reference time.


   
* xCoordinate [**CartesianCoordinateWithConfidence**](#CartesianCoordinateWithConfidence) <br>
  X Coordinate, i.e. distance to detected object from the origin of the coordinate system to the object reference point in x-direction at the time
   of measurement, with the associated variance.


   
* yCoordinate [**CartesianCoordinateWithConfidence**](#CartesianCoordinateWithConfidence) <br>
  Y Coordinate, i.e. distance to detected object from the origin of the coordinate system to the object reference point in y-direction at the time
   of measurement, with the associated variance.


    
* zCoordinate [**CartesianCoordinateWithConfidence**](#CartesianCoordinateWithConfidence)  OPTIONAL<br>
  optional Z Coordinate, i.e. distance to detected object from the origin of the coordinate system to the object reference point in z-direction 
   at the time of measurement, with the associated variance.


   
* velocityMagnitude [**SpeedExtended**](#SpeedExtended)  OPTIONAL<br>
  magnitude of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. 
   Negative magnitude values indicate movement backwards


   
* velocityDirection [**CartesianAngle**](#CartesianAngle)  OPTIONAL<br>
  polar angle of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance.


    
* xVelocity [**SpeedExtended**](#SpeedExtended)  OPTIONAL<br>
  velocity component of the detected object in x-direction at the time of measurement, with the associated variance.


    
* yVelocity [**SpeedExtended**](#SpeedExtended)  OPTIONAL<br>
  velocity component of the detected object in y-direction at the time of measurement, with the associated variance.


   
* zVelocity [**SpeedExtended**](#SpeedExtended)  OPTIONAL<br>
  optional velocity component of the detected object in z-direction at the time of measurement, with the associated variance.


   
* accelerationMagnitude [**Acceleration1d**](#Acceleration1d)  OPTIONAL<br>
  magnitude of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. 
   Negative magnitude values indicate accelerating backwards.


   
* accelerationDirection [**CartesianAngle**](#CartesianAngle)  OPTIONAL<br>
  polar angle of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance.


   
* xAcceleration [**Acceleration1d**](#Acceleration1d)  OPTIONAL<br>
  optional Acceleration of the detected object in x-direction at the time of measurement, with the associated variance.


   
* yAcceleration [**Acceleration1d**](#Acceleration1d)  OPTIONAL<br>
  optional Acceleration of the detected object in y-direction at the time of measurement, with the associated variance.


   
* zAcceleration [**Acceleration1d**](#Acceleration1d)  OPTIONAL<br>
  optional Acceleration of the detected object in z-direction at the time of measurement, with the associated variance.


   
* rollAngle [**CartesianAngle**](#CartesianAngle)  OPTIONAL<br>
  optional Roll angle of object at the time of measurement with the associated variance.
   The angle is measured with positive values considering the object orientation turning counter-clockwise around the x-axis.


   
* pitchAngle [**CartesianAngle**](#CartesianAngle)  OPTIONAL<br>
  optional Pitch angle of object at the time of measurement with the associated variance.    
   The angle is measured with positive values considering the object orientation turning counter-clockwise around the y-axis.


   
* yawAngle [**CartesianAngle**](#CartesianAngle)  OPTIONAL<br>
  optional Yaw angle of object at the time of measurement, with the associated variance.
   The angle is measured with positive values considering the object orientation turning counter-clockwise around the z-axis.


   
* rollSpeed [**CartesianAngularSpeed**](#CartesianAngularSpeed)  OPTIONAL<br>
  optional Roll speed of the object at the time of measurement, with the associated variance.
   The angular rate is measured with positive values considering the object orientation turning counter-clockwise around the x-axis.


   
* pitchSpeed [**CartesianAngularSpeed**](#CartesianAngularSpeed)  OPTIONAL<br>
  optional Pitch speed of the object at the time of measurement, with the associated variance.
   The angular rate is measured with positive values considering the object orientation turning counter-clockwise around the y-axis.


   
* yawSpeed [**CartesianAngularSpeed**](#CartesianAngularSpeed)  OPTIONAL<br>
  optional Yaw speed of the object at the time of measurement, with the associated variance.
   The angular rate is measured with positive values considering the object orientation turning counter-clockwise around the z-axis.


   
* rollAcceleration [**CartesianAngularAcceleration**](#CartesianAngularAcceleration)  OPTIONAL<br>
  optional Roll acceleration of the object at the time of measurement, with the associated variance.
   The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the x-axis.


   
* pitchAcceleration [**CartesianAngularAcceleration**](#CartesianAngularAcceleration)  OPTIONAL<br>
  optional Pitch acceleration of the object at the time of measurement, with the associated variance. 
   The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the y-axis.


   
* yawAcceleration [**CartesianAngularAcceleration**](#CartesianAngularAcceleration)  OPTIONAL<br>
  optional Yaw acceleration of the object at the time of measurement, with the associated variance.
   The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the z-axis.


   
* lowerTriangularCorrelationMatrixColumns [**LowerTriangularPositiveSemidefiniteMatrix**](#LowerTriangularPositiveSemidefiniteMatrix)  OPTIONAL<br>
  optional set of columns of a lower triangular correlation matrix for the provided kinematic state and attitude vector.
   The kinematic and attitude vector is composed of the xCoordinate, yCoordinate and zero or more of the other components listed immediately before this component from zCoordinate to yawAcceleration.
   The columns and rows of the correlation matrix indicate the value components of the vector (i.e. without variance) to which the covariance entries apply and are ordered as follows:
         - xCoordinate 
         - yCoordinate 
         - zCoordinate
         - velocityMagnitude
         - velocityDirection
         - xVelocity
         - yVelocity
         - zVelocityComponent
         - accelerationMagnitude
         - accelerationDirection
         - xAcceleration
         - yAcceleration
         - zAcceleration
         - rollAngle
         - pitchAngle
         - yawAngle
         - rollSpeed
         - pitchSpeed
         - yawSpeed
         - rollAcceleration
         - pitchAcceleration
         - yawAcceleration
     The number of lowerTriangularCorrelationMatrixColumns to be included "k" is thereby the number of provided
     components "n" of the kinematic state and attitude vector minus 1: k = n-1.
     Each column "i" of the lowerTriangularCorrelationMatrixColumns contains k-(i-1) values.
     In case certain values of the kinematic state and attitude vector are not provided, they are omitted from
     the lowerTriangularCorrelationMatrixColumns.


   
* planarObjectDimension1 [**ObjectDimension**](#ObjectDimension)  OPTIONAL<br>
  optional first dimension of object as provided by the sensor or environment model. 
   This dimension is always contained in the plane which is oriented perpendicular to the direction of the angle
   indicated by the yawAngle and which contains the object's reference point.


   
* planarObjectDimension2 [**ObjectDimension**](#ObjectDimension)  OPTIONAL<br>
  optional second dimension of the object as provided by the sensor environment model. 
   This dimension is contained in the plane oriented in the direction of the angle indicated by the yawAngle and the object's reference point.


   
* verticalObjectDimension [**ObjectDimension**](#ObjectDimension)  OPTIONAL<br>
  optional vertical dimension of object as provided by the sensor or object model.


   
* objectRefPoint [**ObjectRefPoint**](#ObjectRefPoint)  DEFAULT 0<br>
  the reference point on the perceived object. The kinematic attitude and state data provided
   for this object are valid for this reference point of the object. In case no object reference
   point can be determined, it is assumed to be the center point of the detected object.


   
* 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.


   
* objectConfidence [**ObjectConfidence**](#ObjectConfidence)  OPTIONAL<br>
  optional confidence associated to the object. The computation of the object confidence is based on a sensor's or
   fusion system's specific detection confidence, the binary detection success that is, if an object
   has been successfully detected by the last measurement and the object age.


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


   
* dynamicStatus [**ObjectDynamicStatus**](#ObjectDynamicStatus)  OPTIONAL<br>
  optional dynamic capabilities of a detected object.


   
* 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 {
    objectID                                          Identifier2B OPTIONAL,
    timeOfMeasurement                                 DeltaTimeMilliSecondPosNeg,
    xCoordinate                                       CartesianCoordinateWithConfidence, 
    yCoordinate                                       CartesianCoordinateWithConfidence,
    zCoordinate                                       CartesianCoordinateWithConfidence OPTIONAL,
    velocityMagnitude                                 SpeedExtended OPTIONAL, 
	velocityDirection                                 CartesianAngle OPTIONAL, 
    xVelocity                                         SpeedExtended OPTIONAL,
    yVelocity                                         SpeedExtended OPTIONAL,
    zVelocity                                         SpeedExtended OPTIONAL,
    accelerationMagnitude                             Acceleration1d OPTIONAL,
    accelerationDirection                             CartesianAngle OPTIONAL,
    xAcceleration                                     Acceleration1d OPTIONAL,
    yAcceleration                                     Acceleration1d OPTIONAL,
    zAcceleration                                     Acceleration1d OPTIONAL,
    rollAngle                                         CartesianAngle OPTIONAL,
    pitchAngle                                        CartesianAngle OPTIONAL,
    yawAngle                                          CartesianAngle OPTIONAL,
    rollSpeed                                         CartesianAngularSpeed OPTIONAL,
    pitchSpeed                                        CartesianAngularSpeed OPTIONAL,
    yawSpeed                                          CartesianAngularSpeed OPTIONAL,
    rollAcceleration                                  CartesianAngularAcceleration OPTIONAL,
    pitchAcceleration                                 CartesianAngularAcceleration OPTIONAL,
    yawAcceleration                                   CartesianAngularAcceleration OPTIONAL,
    lowerTriangularCorrelationMatrixColumns           LowerTriangularPositiveSemidefiniteMatrix OPTIONAL,
    planarObjectDimension1                            ObjectDimension OPTIONAL,
    planarObjectDimension2                            ObjectDimension OPTIONAL,
    verticalObjectDimension                           ObjectDimension OPTIONAL,
    objectRefPoint                                    ObjectRefPoint DEFAULT 0,
    objectAge                                         DeltaTimeMilliSecondPosNeg (0..1500) OPTIONAL,
    objectConfidence                                  ObjectConfidence OPTIONAL,
    sensorIdList                                      SequenceOfIdentifier1B OPTIONAL,
    dynamicStatus                                     ObjectDynamicStatus 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.

 It includes the following components:

Fields:
* polygon [**SequenceOfCartesianPosition3d**](#SequenceOfCartesianPosition3d)  (SIZE(3..16,...))<br>
  the polygonal area and consist of a list of minimum `3` to maximum `16` [**CartesianPosition3d**](#CartesianPosition3d).


* 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 {
   polygon    SequenceOfCartesianPosition3d (SIZE(3..16,...)),
   height	  StandardLength12b OPTIONAL,
   ...
}
```

### <a name="PosConfidenceEllipse"></a>PosConfidenceEllipse
 This DF provides the horizontal position accuracy in a shape of ellipse 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 includes the following components:

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. 


   
* semiMajorOrientation [**Wgs84AngleValue**](#Wgs84AngleValue) <br>
  orientation direction of the ellipse major axis of the position accuracy
   ellipse with regards to the WGS84 north. 


   

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

&nbsp;&nbsp;&nbsp;&nbsp;**Revision**: _V1.3.1_
```asn1
PosConfidenceEllipse ::= SEQUENCE {
    semiMajorConfidence     SemiAxisLength,
    semiMinorConfidence     SemiAxisLength,
    semiMajorOrientation    Wgs84AngleValue
}
```


### <a name="PositionOfPillars"></a>PositionOfPillars
 This DF contains a list of distances [**PosPillar**](#PosPillar) that refer to the perpendicular distance between centre of vehicle front bumper
 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
 This DF describes a zone of protection inside which the ITSG5 communication should be restricted.

 It includes the following components:

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.


   
* protectedZoneID [**ProtectedZoneID**](#ProtectedZoneID)  OPTIONAL<br>