From eb1ca70ded85254fd1053c7f8e2cf27da42bfc67 Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Thu, 13 Jan 2022 14:09:54 +0000 Subject: [PATCH 01/91] skip empty fields --- .gitlab-ci.mk | 24 + .gitlab-ci.yml | 19 + ITS-Container.asn | 1934 ++++++++++++++++++++++++++++++++++++++++- asn2md.py | 301 +++++++ docs/ITS-Container.md | Bin 0 -> 141110 bytes 5 files changed, 2251 insertions(+), 27 deletions(-) create mode 100755 .gitlab-ci.mk create mode 100755 .gitlab-ci.yml create mode 100755 asn2md.py create mode 100644 docs/ITS-Container.md diff --git a/.gitlab-ci.mk b/.gitlab-ci.mk new file mode 100755 index 0000000..381507c --- /dev/null +++ b/.gitlab-ci.mk @@ -0,0 +1,24 @@ +ASN1_SRC := ITS-Container.asn + +ASN1_PDU := ItsPduHeader +ASN1_KNOWN := DATE + +#ASN1CDIR ?= $(USERPROFILE)/Work/asn1c-fillabs +ifneq (,$(ASN1CDIR)) + ASN1C := $(ASN1CDIR)/asn1c/.libs/asn1c -S $(ASN1CDIR)/skeletons +else + ASN1C := asn1c +endif + +.PHONY: validate doc build + +validate: iso build + +doc: docs + python3 asn2md.py -o docs --no-empty-fields $(ASN1_SRC) + +iso docs: + mkdir -p $@ + +build: $(ASN1_SRC) $(ASN1_SRC_VALIDATE) + $(ASN1C) -E -F -fcompound-names $(addprefix -fknown-extern-type=,$(ASN1_KNOWN)) $(addprefix -pdu=,$(ASN1_PDU)) $^ >/dev/null diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100755 index 0000000..c328dd7 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,19 @@ +include: + - project: 'forge-tools/asn2md' + file: '/gitlab-ci/base.yml' + +variables: + ASN1_SRC: '*.asn' + +validate: + extends: .validate + only: + changes: + - '*.asn' + + +documentation: + extends: .documentation + only: + changes: + - '*.asn' diff --git a/ITS-Container.asn b/ITS-Container.asn index 8aeec58..d3e13ee 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -6,38 +6,202 @@ DEFINITIONS AUTOMATIC TAGS ::= BEGIN +/** + * Common message header for application and facilities layer messages. + * It is included at the beginning of an ITS message as the message header. + * Test + * + * @param protocolVersion: version of the ITS message, + * + * @param messageID: Type of the ITS message. + * Following message type values are assigned in the present document: + * - 1 `denm`: Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], + * - 2 `cam`: Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], + * - 3 `poi`: Point of Interest message as specified in ETSI TS 101 556-1 [i.11], + * - 4 `spatem`: Signal Phase And Timing (SPAT) message as specified in SAE J2735 [i.12] and in ETSI TS 103 301 [i.17], + * - 5 `mapem`: MAP message as specified in SAE J2735 [i.12] and in ETSI TS 103 301 [i.17], + * - 6 `ivim`: In Vehicle Information (IVI) message as defined in ISO TS 19321 [i.13], + * - 7 `ev-rsr`: Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], + * - 8 `tistpgtransaction`: messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 i.15, + * - 9 `srem`: Traffic light Signal Request Message as specified in ETSI TS 103 301 [i.17], + * - 10 `ssem`: Traffic Light Signal Request Status Message as specified in ETSI TS 103 301 [i.17]. + * - 11 `evcsn`: Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], + * - 12 `saem`: Services Announcement Extended Message as specified in ETSI TS 102 890-1 i.19, + * - 13 `rtcmem`: Radio Technical Commission for Maritime Services (RTCM) Message as specified in ETSI TS 103 301 [i.17], + * - 14-255: reserved for future usage, + * + * @param stationID: the identifier of the ITS-S that generates the ITS message in question. It shall be represented as specified in clause A.77 @ref StationID. + * @category: Communication information + */ ItsPduHeader ::= SEQUENCE { protocolVersion INTEGER (0..255), - messageID INTEGER{ denm(1), cam(2), poi(3), spatem(4), mapem(5), ivim(6), ev-rsr(7), tistpgtransaction(8), srem(9), ssem(10), evcsn(11), saem(12), rtcmem(13) } (0..255), -- Mantis #7209, #7005 + messageID INTEGER { denm(1), cam(2), poi(3), spatem(4), mapem(5), ivim(6), ev-rsr(7), tistpgtransaction(8), srem(9), ssem(10), evcsn(11), saem(12), rtcmem(13) } (0..255), -- Mantis #7209, #7005 stationID StationID } +/** + * Identifier for an ITS-S. + * + * The ITS-S ID may be a pseudonym. It may change over space and/or over time. + * + * The DE is used in @ref ActionID DF as defined in clause A.102 and @ref ItsPduHeader DF as defined in clause A.114. + */ StationID ::= INTEGER(0..4294967295) +/** + * The geographical position of a position or of an ITS-S. It represents a geographical point position. + * + * @field latitude: A latitude of the geographical point; it shall be presented as specified in clause A.41, + * + * @field longitude: A longitude of the geographical point; it shall be presented as specified in clause A.44, + * + * @field positionConfidenceEllipse: An accuracy of the geographical position; it shall be presented as specified in clause A.119, + * + * @field altitude: An altitude and an altitude accuracy of the geographical point; it shall be presented as specified in clause A.103. + * + * The DF is used in @ref ItineraryPath DF as defined in clause A.113. + * @category: GeoReference information + */ ReferencePosition ::= SEQUENCE { latitude Latitude, longitude Longitude, - positionConfidenceEllipse PosConfidenceEllipse , + positionConfidenceEllipse PosConfidenceEllipse, altitude Altitude } +/** + * Defines a geographical point position as offset position to a reference geographical point. + * + * The DF is used in @ref EventPoint DF as defined in clause A.111 and in @ref PathPoint DF as defined in clause A.118 + * + * @field deltaLatitude A delta latitude offset with regards to the latitude value of the reference position. + * It shall be presented as defined in clause A.20 + * + * @field deltaLongitude A delta longitude offset with regards to the longitude value of the reference position. + * It shall be presented as defined in clause A.21 + * + * @field deltaAltitude A delta altitude offset with regards to the altitude value of the reference position. + * It shall be presented as defined in clause A.19 + * + * @category: GeoReference information + */ DeltaReferencePosition ::= SEQUENCE { deltaLatitude DeltaLatitude, deltaLongitude DeltaLongitude, deltaAltitude DeltaAltitude } -Longitude ::= INTEGER {oneMicrodegreeEast (10), oneMicrodegreeWest (-10), unavailable(1800000001)} (-1800000000..1800000001) - -Latitude ::= INTEGER {oneMicrodegreeNorth (10), oneMicrodegreeSouth (-10), unavailable(900000001)} (-900000000..900000001) - +/** + * Absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees + * to the east or to the west of the prime meridian. + * + * - Negative values are used for longitudes to the west, + * - Positive values are used for longitudes to the east. + * - When the information is unavailable, the value shall be set to _1 800 000 001_. + * + * The DE is used in + * @ref CenDsrcTollingZone DF as defined in clause A.105, + * @ref ProtectedCommunicationZone DF as defined in clause A.121 and + * @ref ReferencePosition DF as defined in clause A.124. + * @unit: 0.1 microdegree + * @category: GeoReference information + */ +Longitude ::= INTEGER { + oneMicrodegreeEast (10), + oneMicrodegreeWest (-10), + unavailable(1800000001) +} (-1800000000..1800000001) + +/** + * Absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or + * in south hemisphere. + * + * - Positive values are used for latitude in north of the Equator, + * - Negative values are used for latitude in south of the Equator. + * - When the information is unavailable, the value shall be set to _900 000 001_. + * + * The DE is used in + * @ref CenDsrcTollingZone DF as defined in clause A.105, + * @ref ProtectedCommunicationZone DF as defined in clause A.121 and + * @ref ReferencePosition DF as defined in clause A.124. + * @unit: 0.1 microdegree + * @category: GeoReference information + */ +Latitude ::= INTEGER { + oneMicrodegreeNorth (10), + oneMicrodegreeSouth (-10), + unavailable(900000001) +} (-900000000..900000001) + +/** + * Altitude and accuracy of an altitude in a WGS84 co-ordinate system. + * + * @field altitudeValue: altitude of a geographical point. + * It shall be presented as specified in clause A.9 AltitudeValue, + * + * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. + * It shall be presented as specified in clause A.8. + * + * This DF is used in @ref ReferencePosition DF as defined in clause A.124. + * @category: GeoReference information + */ Altitude ::= SEQUENCE { altitudeValue AltitudeValue, altitudeConfidence AltitudeConfidence } -AltitudeValue ::= INTEGER {referenceEllipsoidSurface(0), oneCentimeter(1), unavailable(800001)} (-100000..800001) - +/** + * Altitude in a WGS84 co-ordinate system. + * - When the information is not available, the DE shall be set to _800 001_. + * - For altitude equal or greater than _8 000 m_, the DE shall be set to _800 000_. + * - For altitude equal or less than _-1 000_ m, the DE shall be set to _100 000_. + * + * The DE is used in @ref Altitude DF as defined in clause A.103. + * @unit: 0.1 meter + * @category: GeoReference information + */ +AltitudeValue ::= INTEGER { + referenceEllipsoidSurface(0), + oneCentimeter(1), + unavailable(800001) +} (-100000..800001) + +/** + * Absolute accuracy of a reported altitude value of a geographical point for a predefined confidence level (e.g. 95 %). + * The required confidence level is defined by the corresponding standards applying the usage of this DE. + * + * The DE is used in @ref Altitude DF as defined in clause A.103 + * + * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused + * by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported altitude value may be valid and used by the application. + * + * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported + * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * The value shall be set to: + * - 0 `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre + * - 1 `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre + * - 2 `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre + * - 3 `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre + * - 4 `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre + * - 5 `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre + * - 6 `alt-001-00` if the altitude accuracy is equal to or less than 1 metre + * - 7 `alt-002-00` if the altitude accuracy is equal to or less than 2 metres + * - 8 `alt-005-00` if the altitude accuracy is equal to or less than 5 metres + * - 9 `alt-010-00` if the altitude accuracy is equal to or less than 10 metres + * - 10 `alt-020-00` if the altitude accuracy is equal to or less than 20 metres + * - 11 `alt-050-00` if the altitude accuracy is equal to or less than 50 metres + * - 12 `alt-100-00` if the altitude accuracy is equal to or less than 100 metres + * - 13 `alt-200-00` if the altitude accuracy is equal to or less than 200 metres + * - 14 `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres + * - 15 `unavailable` if the altitude accuracy information is unavailable + * + * @category: GeoReference information + */ AltitudeConfidence ::= ENUMERATED { alt-000-01 (0), alt-000-02 (1), @@ -57,34 +221,197 @@ AltitudeConfidence ::= ENUMERATED { unavailable (15) } -DeltaLongitude ::= INTEGER {oneMicrodegreeEast (10), oneMicrodegreeWest (-10), unavailable(131072)} (-131071..131072) - -DeltaLatitude ::= INTEGER {oneMicrodegreeNorth (10), oneMicrodegreeSouth (-10) , unavailable(131072)} (-131071..131072) - -DeltaAltitude ::= INTEGER {oneCentimeterUp (1), oneCentimeterDown (-1), unavailable(12800)} (-12700..12800) - +/** + * It defines an offset longitude with regards to a referred longitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * - Positive values are used for providing offset towards the east from the reference position. + * - Negative values are used for providing offset towards the west from the reference position. + * - When the information is unavailable, the value shall be set to _131072_. + * + * The DE is used in @ref DeltaReferencePosition DF as defined in clause A.109. + * @unit: 0.1 microdegree + * @category: GeoReference information + */ +DeltaLongitude ::= INTEGER { + oneMicrodegreeEast (10), + oneMicrodegreeWest (-10), + unavailable (131072) +} (-131071..131072) + +/** + * It defines offset latitude with regards to a referred latitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * - Positive values are used for providing offset towards the north from the reference position. + * - Negative values are used for providing offset towards the south from the reference position. + * - When the information is unavailable, the value shall be set to _131072_. + * + * The DE is used in @ref DeltaReferencePosition DF as defined in clause A.109. + * @unit: 0.1 microdegree + * @category: GeoReference information + */ +DeltaLatitude ::= INTEGER { + oneMicrodegreeNorth (10), + oneMicrodegreeSouth (-10) , + unavailable (131072) +} (-131071..131072) + +/** + * It defines an offset altitude with regards to a referred altitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * - Positive values are used for providing altitude offset above the reference position. + * - For values equal or greater than _127,99 metres_, the value shall be _12 799_. + * - Negative values are used for providing altitude offset below the reference position. + * - When the information is unavailable, the value shall be set to _12 800_. + * + * The DE is used in @ref DeltaReferencePosition DF as defined in clause A.109. + * @unit: 0.1 metre + * @category: GeoReference information + */ +DeltaAltitude ::= INTEGER { + oneCentimeterUp (1), + oneCentimeterDown (-1), + unavailable (12800) +} (-12700..12800) + +/** + * This data field provides the horizontal position accuracy in a shape of ellipse with a predefined + * confidence level (e.g. 95 %). The centre of the ellipse shape corresponds to the reference + * position point for which the position accuracy is evaluated. + * + * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point + * and major axis point of the position accuracy ellipse. It shall be presented as specified + * in clause A.67, + * + * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point + * and minor axis point of the position accuracy ellipse. It shall be presented as specified + * in clause A.67, + * + * @field semiMajorOrientation: orientation direction of the ellipse major axis of the position accuracy + * ellipse with regards to the WGS84 north. It shall be presented as specified in clause A.35. + * + * The required confidence level of the position accuracy is defined by ITS message or ITS application applying this DF. + * + * The DF is used in @ref ReferencePosition DF as defined in clause A.124. + */ PosConfidenceEllipse ::= SEQUENCE { semiMajorConfidence SemiAxisLength, semiMinorConfidence SemiAxisLength, semiMajorOrientation HeadingValue } +/** + * The DF that defines a waypoint position within a path. + * + * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined + * reference position. It shall be presented as specified in clause A.109 + * + * @field pathDeltaTime: The travel time separated from a waypoint to the predefined reference position. + * It shall be presented as specified in clause A.47. + * This field is __OPTIONAL__. It shall be present if the information is available. + * + * The DE is used in @ref PathHistory DF as defined in clause A.117. + * @category GeoReference information + */ PathPoint ::= SEQUENCE { pathPosition DeltaReferencePosition, pathDeltaTime PathDeltaTime OPTIONAL } +/** + * This DE defines the recorded or estimated travel time separated between a position and a predefined + * reference position. It may be used to describe the historical path travelled by an ITS-S in mobility + * (e.g. vehicle ITS-S) as specified in ETSI EN 302 637 2 [i.2]. + * + * The DE is used in @ref EventPoint DF as defined in clause A.111 and @ref PathPoint DF as defined in clause A.118. + * @unit 0.01 second + * @category GeoReference information + */ PathDeltaTime ::= INTEGER {tenMilliSecondsInPast(1)} (1..65535, ...) +/** + * 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). + * + * @field ptActivationType: type of activation. It shall be presented as defined in clause A.60 + * + * @field ptActicationData: data of activation. It shall be presented as defined in clause A.59 + * + * 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) + * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, + * destination, priority, etc. + * + * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: + * - 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. + * @category: Vehicle information + */ PtActivation ::= SEQUENCE { ptActivationType PtActivationType, ptActivationData PtActivationData } +/** + * This DE indicates a certain coding type of the PtActivationData data. + * - `0`: undefined coding type, + * - `1`: coding of PtActivationData conform to VDV recommendation 420 [i.8], + * - `2`: coding of PtActivationData based on VDV recommendation 420 [i.8]. + * - values 3 to 255 are reserved for alternative and future use. + * + * The DE is used in @ref PtActivation DF as defined in clause A.123. + * @category: Vehicle information + */ PtActivationType ::= INTEGER {undefinedCodingType(0), r09-16CodingType(1), vdv-50149CodingType(2)} (0..255) +/** + * The DE used for various tasks in the public transportation environment, especially for controlling traffic + * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). + * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation + * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the + * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to + * traffic congestion. Other usage of the DE is the provision of information like the public transport line number + * or the schedule delay of a public transport vehicle. + * + * The DE is used in @ref PtActivation DF as defined in clause A.123. + */ PtActivationData ::= OCTET STRING (SIZE(1..20)) +/** + * Current controlling mechanism for longitudinal movement of the vehicle. + * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle + * acceleration control system is engaged or not. Currently, this DE includes the information of the + * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise + * control system, cruise control system and speed limiter system. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `brakePedalEngaged` : Driver is stepping on the brake pedal, + * - 1 `gasPedalEngaged` : Driver is stepping on the gas pedal, + * - 2 `emergencyBrakeEngaged` : emergency brake system is engaged, + * - 3 `collisionWarningEngaged`: collision warning system is engaged, + * - 4 `accEngaged` : ACC is engaged, + * - 5 `cruiseControlEngaged` : cruise control is engaged, + * - 6 `speedLimiterEngaged` : speed limiter is engaged. + * + * Otherwise (for example when the corresponding system is not available due to non equipped system + * or information is unavailable), the corresponding bit shall be set to _0_. + * + * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. + * @category: Vehicle information + */ AccelerationControl ::= BIT STRING { brakePedalEngaged (0), gasPedalEngaged (1), @@ -95,23 +422,99 @@ AccelerationControl ::= BIT STRING { speedLimiterEngaged (6) } (SIZE(7)) - +/** + * Absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a predefined + * confidence level (e.g. 95 %). The required confidence level is defined by the corresponding standards applying the DE. + * + * The value shall be set to: + * - `1` if the accuracy is equal to or less than 1 cm, + * - `n (n > 1 and n < 4 093)` if the accuracy is equal to or less than n cm, + * - `4 093` if the accuracy is equal to or less than 4 093 cm, + * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, + * - `4 095` if the accuracy information is unavailable. + * + * The DE is used in @ref PosConfidenceEllipse DF as defined in clause A.119. + * + * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported position coordinate value may be valid and used by the application. + * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that + * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful + * for the application. + */ SemiAxisLength ::= INTEGER{oneCentimeter(1), outOfRange(4094), unavailable(4095)} (0..4095) +/** + * Encoded value of a traffic event type. + * + * @field causeCode: the type of a direct cause of a detected event. It shall be presented as defined in clause A.10 + * + * @field subCauseCode: sub type of the direct cause. It shall be presented as defined in clause A.81 + * + * The values of `causeCodeType` and `subCauseCode` are defined in clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * @category: Traffic information + */ CauseCode ::= SEQUENCE { causeCode CauseCodeType, subCauseCode SubCauseCodeType, ... } +/** + * Value of the direct cause code of a detected event as defined in ETSI EN 302 637 3 [i.3]. + * The value is assigned according to the clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The cause codes are described as following: + * - 0 reserved for future use, + * - 1 `trafficCondition` : the type of event is an abnormal traffic condition, + * - 2 `accident` : the type of event is a road accident, + * - 3 `roadworks` : the type of event is roadwork, + * - 4 reserved for future usage, + * - 5 `impassability` : the type of event is unmanaged road blocking, referring to any + * blocking of a road, partial or total, which has not been adequately + * secured and signposted, + * - 6 `adverseWeatherCondition-Adhesion` : the type of event is low adhesion, + * - 7 `aquaplaning` : danger of aquaplaning on the road, + * - 8 reserved for future usage, + * - 9 `hazardousLocation-SurfaceCondition` : the type of event is abnormal road surface condition, + * - 10 `hazardousLocation-ObstacleOnTheRoad`: the type of event is obstacle on the road, + * - 11 `hazardousLocation-AnimalOnTheRoad` : the type of event is animal on the road, + * - 12 `humanPresenceOnTheRoad` : the type of event is human presence on the road, + * - 13 reserved for future usage, + * - 14 `wrongWayDriving` : the type of the event is vehicle driving in wrong way, + * - 15 `rescueAndRecoveryWorkInProgress` : the type of event is rescue and recovery work for accident or for a road hazard in progress, + * - 16 reserved for future usage, + * - 17 `adverseWeatherCondition-ExtremeWeatherCondition`: the type of event is extreme weather condition, + * - 18 `adverseWeatherCondition-Visibility` : the type of event is low visibility, + * - 19 `adverseWeatherCondition-Precipitation` : the type of event is precipitation, + * - 20-25 reserved for future usage, + * - 26 `slowVehicle` : the type of event is slow vehicle driving on the road, + * - 27 `dangerousEndOfQueue` : the type of event is dangerous end of vehicle queue, + * - 28-90 are reserved for future usage, + * - 91 `vehicleBreakdown` : the type of event is break down vehicle on the road, + * - 92 `postCrash` : the type of event is a detected crash, + * - 93 `humanProblem` : the type of event is human health problem in vehicles involved in traffic, + * - 94 `stationaryVehicle` : the type of event is stationary vehicle, + * - 95 `emergencyVehicleApproaching` : the type of event is approaching vehicle operating emergency mission, + * - 96 `hazardousLocation-DangerousCurve` : the type of event is dangerous curve, + * - 97 `collisionRisk` : the type of event is a collision risk, + * - 98 `signalViolation` : the type of event is signal violation, + * - 99 `dangerousSituation` : the type of event is dangerous situation in which autonomous safety system in vehicle is activated, + * - 100-255 are reserved for future usage. + * + * @category: Traffic information + */ CauseCodeType ::= INTEGER { reserved (0), trafficCondition (1), accident (2), roadworks (3), - impassability (5), + impassability (5), adverseWeatherCondition-Adhesion (6), - aquaplannning (7), + aquaplannning (7), hazardousLocation-SurfaceCondition (9), hazardousLocation-ObstacleOnTheRoad (10), hazardousLocation-AnimalOnTheRoad (11), @@ -134,63 +537,582 @@ CauseCodeType ::= INTEGER { dangerousSituation (99) } (0..255) +/** + * Type of sub cause of a detected event as defined in ETSI EN 302 637-3 [i.3]. + * + * For DENM usage, the value as given in clause 7.1.4 of ETSI EN 302 637-3 [i.3] apply. + * + * The DE is used in CauseCode DF as defined in clause A.104. + * + * @note 1: The sub cause code value assignment varies based on value of causeCode as defined in clause A.10. + * + * @note 2: Complete list of all possible sub cause code values as given in ETSI EN 302 637-3 [i.3] is provided + * in the present document for information. For example, see clause A.3 for sub cause code of accident event. + * + * @category: Traffic information + */ SubCauseCodeType ::= INTEGER (0..255) -TrafficConditionSubCauseCode ::= INTEGER {unavailable(0), increasedVolumeOfTraffic(1), trafficJamSlowlyIncreasing(2), trafficJamIncreasing(3), trafficJamStronglyIncreasing(4), trafficStationary(5), trafficJamSlightlyDecreasing(6), trafficJamDecreasing(7), trafficJamStronglyDecreasing(8)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `trafficCondition` as defined in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, + * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, + * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, + * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, + * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, + * - 5 `trafficStationary` : in case traffic is stationary, + * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, + * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, + * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, + * - 9-255: reserved for future usage. + * + * @category: Traffic information + */ +TrafficConditionSubCauseCode ::= INTEGER { + unavailable(0), + increasedVolumeOfTraffic(1), + trafficJamSlowlyIncreasing(2), + trafficJamIncreasing(3), + trafficJamStronglyIncreasing(4), + trafficStationary(5), + trafficJamSlightlyDecreasing(6), + trafficJamDecreasing(7), + trafficJamStronglyDecreasing(8) +} (0..255) -AccidentSubCauseCode ::= INTEGER {unavailable(0), multiVehicleAccident(1), heavyAccident(2), accidentInvolvingLorry(3), accidentInvolvingBus(4), accidentInvolvingHazardousMaterials(5), accidentOnOppositeLane(6), unsecuredAccident(7), assistanceRequested(8)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `accident` as defined in clause A.10 of ETSI TS 102 859-2. + * Sub event cause and value setting rule is defined according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case the information on the sub cause of the accident is unavailable, + * - 1 `multiVehicleAccident` : in case more than two vehicles are involved in accident, + * - 2 `heavyAccident` : in case the airbag of the vehicle involved in the accident is triggered, + * the accident requires important rescue and/or recovery work, + * - 3 `accidentInvolvingLorry` : in case the accident involves a lorry, + * - 4 `accidentInvolvingBus` : in case the accident involves a bus, + * - 5 `accidentInvolvingHazardousMaterials`: in case the accident involves hazardous material, + * - 6 `accidentOnOppositeLane` : in case the accident happens on opposite lanes, + * - 7 `unsecuredAccident` : in case the accident is not secured, + * - 8 `assistanceRequested` : in case rescue and assistance are requested, + * - 9-255 reserved for future usage. + * @category: Traffic information + */ +AccidentSubCauseCode ::= INTEGER { + unavailable(0), + multiVehicleAccident(1), + heavyAccident(2), + accidentInvolvingLorry(3), + accidentInvolvingBus(4), + accidentInvolvingHazardousMaterials(5), + accidentOnOppositeLane(6), + unsecuredAccident(7), + assistanceRequested(8) +} (0..255) +/** + * Encoded value of the sub cause codes of the event type `roadworks` as defined in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according to + * clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, + * - 1 `majorRoadworks` : in case a major roadworks is ongoing, + * - 2 `roadMarkingWork` : in case a road marking work is ongoing, + * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, + * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, + * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, + * - 6 `winterService` : in case winter service work is ongoing, + * - 7-255 reserved for future usage. + * + * @category: Traffic information + */ RoadworksSubCauseCode ::= INTEGER {unavailable(0), majorRoadworks(1), roadMarkingWork(2), slowMovingRoadMaintenance(3), shortTermStationaryRoadworks(4), streetCleaning(5), winterService(6)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `humanPresenceOnTheRoad` as defined in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according to + * clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on human presence on the road is unavailable, + * - 1 `childrenOnRoadway` : in case children are detected on the road event, + * - 2 `cyclistOnRoadway` : in case cyclist presence is detected on the road, + * - 3 `motorcyclistOnRoadway`: in case motorcyclist presence is detected on the road, + * - 4-255 reserved for future usage. + * + * @category: Traffic information + */ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), childrenOnRoadway(1), cyclistOnRoadway(2), motorcyclistOnRoadway(3)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `wrongWayDriving` as defined in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable`: in case further detailed information on wrong way driving event is unavailable, + * - 1 `wrongLane`: in case vehicle is driving on a lane for which it has no authorization to use, + * - 2 `wrongDirection`: in case vehicle is driving in a direction that it is not allowed, + * - 3-255 reserved for future usage. + * + * @category: Traffic information + */ WrongWayDrivingSubCauseCode ::= INTEGER {unavailable(0), wrongLane(1), wrongDirection(2)} (0..255) -AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER {unavailable(0), strongWinds(1), damagingHail(2), hurricane(3), thunderstorm(4), tornado(5), blizzard(6)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `adverseWeatherCondition-ExtremeWeatherCondition` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case information on the type of extreme weather condition is unavailable + * - 1 `strongWinds` : in case the type of extreme weather condition is strong wind + * - 2 `damagingHail`: in case the type of extreme weather condition is damaging hail + * - 3 `hurricane` : in case the type of extreme weather condition is hurricane + * - 4 `thunderstorm`: in case the type of extreme weather condition is thunderstorm + * - 5 `tornado` : in case the type of extreme weather condition is tornado + * - 6 `blizzard` : in case the type of extreme weather condition is blizzard + * - 7-255 reserved for future usage + * + * @category: Traffic information + */ +AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { + unavailable(0), + strongWinds(1), + damagingHail(2), + hurricane(3), + thunderstorm(4), + tornado(5), + blizzard(6) +} (0..255) -AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER {unavailable(0), heavyFrostOnRoad(1), fuelOnRoad(2), mudOnRoad(3), snowOnRoad(4), iceOnRoad(5), blackIceOnRoad(6), oilOnRoad(7), looseChippings(8), instantBlackIce(9), roadsSalted(10)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `adverseWeatherCondition-Adhesion` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case information on the cause of the low road adhesion is unavailable + * - 1 `heavyFrostOnRoad`: in case the low road adhesion is due to heavy frost on the road + * - 2 `fuelOnRoad` : in case the low road adhesion is due to fuel on the road + * - 3 `mudOnRoad` : in case the low road adhesion is due to mud on the road + * - 4 `snowOnRoad` : in case the low road adhesion is due to snow on the road + * - 5 `iceOnRoad` : in case the low road adhesion is due to ice on the road + * - 6 `blackIceOnRoad` : in case the low road adhesion is due to black ice on the road + * - 7 `oilOnRoad` : in case the low road adhesion is due to oil on the road + * - 8 `looseChippings` : in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard + * - 9 `instantBlackIce` : in case the low road adhesion is due to instant black ice on the road surface + * - 10 `roadsSalted` : when the low road adhesion is due to salted road + * - 11-255 reserved for future usage + * + * @category: Traffic information + */ +AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { + unavailable(0), + heavyFrostOnRoad(1), + fuelOnRoad(2), + mudOnRoad(3), + snowOnRoad(4), + iceOnRoad(5), + blackIceOnRoad(6), + oilOnRoad(7), + looseChippings(8), + instantBlackIce(9), + roadsSalted(10) +} (0..255) -AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER {unavailable(0), fog(1), smoke(2), heavySnowfall(3), heavyRain(4), heavyHail(5), lowSunGlare(6), sandstorms(7), swarmsOfInsects(8)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `adverseWeatherCondition-Visibility` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * @category: Traffic information + * + * The sub causes are described as following: + * - 0 `unavailable` : in case information on the cause of low visibility is unavailable + * - 1 `fog` : in case the cause of low visibility is fog + * - 2 `smoke` : in case the cause of low visibility is smoke + * - 3 `heavySnowfall` : in case the cause of low visibility is heavy snow fall + * - 4 `heavyRain` : in case the cause of low visibility is heavy rain + * - 5 `heavyHail` : in case the cause of low visibility is heavy hail + * - 6 `lowSunGlare` : in case the cause of low visibility is sun glare + * - 7 `sandstorms` : in case the cause of low visibility is sand storm + * - 8 `swarmsOfInsects`: in case the cause of low visibility is swarm of insects + * - 9-255 reserved for future usage + * + * @category: Traffic information + */ +AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { + unavailable(0), + fog(1), + smoke(2), + heavySnowfall(3), + heavyRain(4), + heavyHail(5), + lowSunGlare(6), + sandstorms(7), + swarmsOfInsects(8) +} (0..255) -AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER {unavailable(0), heavyRain(1), heavySnowfall(2), softHail(3)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `adverseWeatherCondition-Precipitation` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable`: in case information on the type of precipitation is unavailable + * - 1 `heavyRain`: in case the type of precipitation is heavy rain + * - 2 `heavySnowfall`: in case the type of precipitation is heavy snow fall + * - 3 `softHail`: in case the type of precipitation is soft hail + * - 4-255 reserved for future usage + * + * @category: Traffic information + */ +AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { + unavailable(0), + heavyRain(1), + heavySnowfall(2), + softHail(3) +} (0..255) +/** + * Encoded value of the sub cause codes of the event type "slowVehicle" as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is + * unavailable, + * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, + * - 2 `vehiclesSlowingToLookAtAccident`: in case vehicle is temporally slowing down to look at accident, spot, etc., + * - 3 `abnormalLoad` : in case an abnormal loaded vehicle is driving slowly on the road, + * - 4 `abnormalWideLoad` : in case an abnormal wide load vehicle is driving slowly on the road, + * - 5 `convoy` : in case of slow driving convoy on the road, + * - 6 `snowplough` : in case of slow driving snow plough on the road, + * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, + * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road, + * - 9-255 reserved for future usage. + * + * @category: Traffic information + */ SlowVehicleSubCauseCode ::= INTEGER {unavailable(0), maintenanceVehicle(1), vehiclesSlowingToLookAtAccident(2), abnormalLoad(3), abnormalWideLoad(4), convoy(5), snowplough(6), deicing(7), saltingVehicles(8)} (0..255) +/** + * Encoded value of the sub cause codes of the event type "stationaryVehicle" as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, + * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, + * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, + * - 3 `postCrash` : in case stationary vehicle is caused by collision, + * - 4 `publicTransportStop` : in case public transport vehicle is stationary at bus stop, + * - 5 `carryingDangerousGoods`: in case the stationary vehicle is carrying dangerous goods, + * - 6-255 reserved for future usage. + * + * @category: Traffic information + */ StationaryVehicleSubCauseCode ::= INTEGER {unavailable(0), humanProblem(1), vehicleBreakdown(2), postCrash(3), publicTransportStop(4), carryingDangerousGoods(5)} (0..255) +/** + * Encoded value of the sub cause codes of the event type "humanProblem" as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * - The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on human health problem is unavailable, + * - 1 `glycemiaProblem`: in case human problem is due to glycaemia problem, + * - 2 `heartProblem` : in case human problem is due to heart problem, + * - 3-255 reserved for future usage. + * + * @category: Traffic information + */ HumanProblemSubCauseCode ::= INTEGER {unavailable(0), glycemiaProblem(1), heartProblem(2)} (0..255) +/** + * Encoded value of the sub cause codes of the event type "emergencyVehicleApproaching" as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on the emergency vehicle approaching event + * is unavailable, + * - 1 `emergencyVehicleApproaching` : in case an operating emergency vehicle is approaching, + * - 2 `prioritizedVehicleApproaching`: in case a prioritized vehicle (e.g. bus) is approaching, + * - value 3-255 reserved for future usage. + * + * @category: Traffic information + */ EmergencyVehicleApproachingSubCauseCode ::= INTEGER {unavailable(0), emergencyVehicleApproaching(1), prioritizedVehicleApproaching(2)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `hazardousLocation-DangerousCurve` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on the dangerous curve is unavailable, + * - 1 `dangerousLeftTurnCurve` : in case the dangerous curve is a left turn curve, + * - 2 `dangerousRightTurnCurve` : in case the dangerous curve is a right turn curve, + * - 3 `multipleCurvesStartingWithUnknownTurningDirection`: in case of multiple curves for which the starting curve turning direction is not known, + * - 4 `multipleCurvesStartingWithLeftTurn`: in case of multiple curves starting with a left turn curve, + * - 5 `multipleCurvesStartingWithRightTurn`: in case of multiple curves stating with a right turn curve, + * - value 6-255 reserved for future usage. + * + * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass + * and vehicle speed driving on the curve. This definition is out of scope of the present document. + * + * @category: Traffic information + */ HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER {unavailable(0), dangerousLeftTurnCurve(1), dangerousRightTurnCurve(2), multipleCurvesStartingWithUnknownTurningDirection(3), multipleCurvesStartingWithLeftTurn(4), multipleCurvesStartingWithRightTurn(5)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `hazardousLocation-SurfaceCondition` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on the road surface condition is unavailable, + * - 1 `rockfalls` : in case rock falls are detected on the road surface, + * - 2 `earthquakeDamage`: in case the road surface is damaged by earthquake, + * - 3 `sewerCollapse` : in case of sewer collapse on the road surface, + * - 4 `subsidence` : in case road surface is damaged by subsidence, + * - 5 `snowDrifts` : in case road surface is damaged due to snow drift, + * - 6 `stormDamage` : in case road surface is damaged by strong storm, + * - 7 `burstPipe` : in case road surface is damaged due to pipe burst, + * - 8 `volcanoEruption` : in case road surface is damaged due to volcano eruption, + * - 9 `fallingIce` : in case road surface damage is due to falling ice, + * - 10-255 reserved for future usage. + * + * @category: Traffic information + */ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER {unavailable(0), rockfalls(1), earthquakeDamage(2), sewerCollapse(3), subsidence(4), snowDrifts(5), stormDamage(6), burstPipe(7), volcanoEruption(8), fallingIce(9)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `hazardousLocation-ObstacleOnTheRoad` as specified + * in clause A.10. Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on the detected obstacle is unavailable, + * - 1 `shedLoad` : in case detected obstacle is large amount of obstacles (shedload), + * - 2 `partsOfVehicles`: in case detected obstacles are parts of vehicles, + * - 3 `partsOfTyres` : in case the detected obstacles are parts of tyres, + * - 4 `bigObjects` : in case the detected obstacles are big objects, + * - 5 `fallenTrees` : in case the detected obstacles are fallen trees, + * - 6 `hubCaps` : in case the detected obstacles are hub caps, + * - 7 `waitingVehicles`: in case the detected obstacles are waiting vehicles, + * - 8-255 reserved for future usage. + * + * @category: Traffic information + */ HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), shedLoad(1), partsOfVehicles(2), partsOfTyres(3), bigObjects(4), fallenTrees(5), hubCaps(6), waitingVehicles(7)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `hazardousLocation-AnimalOnTheRoad` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on the animal on the road event is unavailable, + * - 1 `wildAnimals` : in case wild animals are detected on the road, + * - 2 `herdOfAnimals`: in case herd of animals are detected on the road, + * - 3 `smallAnimals` : in case small size animal is detected on the road, + * - 4 `largeAnimals` : in case large size animal is detected on the road, + * - 5-255 reserved for future usage. + * + * @category: Traffic information + */ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), wildAnimals(1), herdOfAnimals(2), smallAnimals(3), largeAnimals(4)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `collisionRisk` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case information on the type of collision risk is unavailable, + * - 1 `longitudinalCollisionRisk`: in case the type of detected collision risk is longitudinal collision risk, + * e.g. forward collision or face to face collision, + * - 2 `crossingCollisionRisk` : in case the type of detected collision risk is crossing collision risk, + * - 3 `lateralCollisionRisk` : in case the type of detected collision risk is lateral collision risk, + * - 4 `vulnerableRoadUser` : in case the type of detected collision risk involves vulnerable road users + * e.g. pedestrians or bicycles, + * - 5-255 reserved for future usage. + * + * @category: Traffic information + */ CollisionRiskSubCauseCode ::= INTEGER {unavailable(0), longitudinalCollisionRisk(1), crossingCollisionRisk(2), lateralCollisionRisk(3), vulnerableRoadUser(4)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `signalViolation` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, + * - 1 `stopSignViolation` : in case a stop sign violation is detected, + * - 2 `trafficLightViolation` : in case a traffic light violation is detected, + * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, + * - 4-255: reserved for future usage. + * + * @category: Traffic information + */ SignalViolationSubCauseCode ::= INTEGER {unavailable(0), stopSignViolation(1), trafficLightViolation(2), turningRegulationViolation(3)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `rescueAndRecoveryWorkInProgress` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, + * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, + * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, + * - 3 `policeActivityOngoing` : in case police activity is ongoing, + * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, + * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, + * - 6-255: reserved for future usage. + * + * @category: Traffic information + */ RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER {unavailable(0), emergencyVehicles(1), rescueHelicopterLanding(2), policeActivityOngoing(3), medicalEmergencyOngoing(4), childAbductionInProgress(5)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `dangerousEndOfQueue` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case information on the type of dangerous queue is unavailable, + * - 1 `suddenEndOfQueue`: in case a sudden end of queue is detected, e.g. due to accident or obstacle, + * - 2 `queueOverHill` : in case the dangerous end of queue is detected on the road hill, + * - 3 `queueAroundBend` : in case the dangerous end of queue is detected around the road bend, + * - 4 `queueInTunnel` : in case queue is detected in tunnel, + * - 5-255 reserved for future usage. + * + * @category: Traffic information + */ DangerousEndOfQueueSubCauseCode ::= INTEGER {unavailable(0), suddenEndOfQueue(1), queueOverHill(2), queueAroundBend(3), queueInTunnel(4)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `dangerousSituation` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable`: in case information on the type of dangerous situation is unavailable, + * - 1 `emergencyElectronicBrakeEngaged`: in case emergency electronic brake is engaged, + * - 2 `preCrashSystemEngaged`: in case pre-crash system is engaged, + * - 3 `espEngaged`: in case Electronic Stability Program (ESP) system is engaged, + * - 4 `absEngaged`: in case Anti-lock braking system (ABS) is engaged, + * - 5 `aebEngaged`: in case Autonomous Emergency Braking (AEB) system is engaged, + * - 6 `brakeWarningEngaged`: in case brake warning is engaged, + * - 7 `collisionRiskWarningEngaged`: in case collision risk warning is engaged, + * - 8-255: reserved for future usage. + * + * @category: Traffic information + */ DangerousSituationSubCauseCode ::= INTEGER {unavailable(0), emergencyElectronicBrakeEngaged(1), preCrashSystemEngaged(2), espEngaged(3), absEngaged(4), aebEngaged(5), brakeWarningEngaged(6), collisionRiskWarningEngaged(7)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `vehicleBreakdown` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, + * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, + * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, + * - 3 `engineProblem` : in case vehicle break down is caused by an engine problem, + * - 4 `transmissionProblem` : in case vehicle break down is caused by transmission problem, + * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, + * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, + * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, + * - 8 `tyrePuncture` : in case vehicle break down is caused by tire puncture, + * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, + * - 10-255: reserved for future usage. + * + * @category: Traffic information + */ VehicleBreakdownSubCauseCode ::= INTEGER {unavailable(0), lackOfFuel (1), lackOfBatteryPower (2), engineProblem(3), transmissionProblem(4), engineCoolingProblem(5), brakingSystemProblem(6), steeringProblem(7), tyrePuncture(8), tyrePressureProblem(9)} (0..255) +/** + * Encoded value of the sub cause codes of the event type `postCrash` as specified in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * + * The sub causes are described as following: + * - 0 `unavailable`: in case further detailed information on post crash event is unavailable, + * - 1 `accidentWithoutECallTriggered`: in case no eCall has been triggered for an accident, + * - 2 `accidentWithECallManuallyTriggered`: in case eCall has been manually triggered and transmitted to eCall back end, + * - 3 `accidentWithECallAutomaticallyTriggered`: in case eCall has been automatically triggered and transmitted to eCall back end, + * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork`: in case eCall has been triggered but cellular network is not accessible from triggering vehicle, + * - 5-255: reserved for future usage. + * + * @category: Traffic information + */ PostCrashSubCauseCode ::= INTEGER {unavailable(0), accidentWithoutECallTriggered (1), accidentWithECallManuallyTriggered (2), accidentWithECallAutomaticallyTriggered (3), accidentWithECallTriggeredWithoutAccessToCellularNetwork(4)} (0..255) +/** + * It describes the curvature of the vehicle trajectory and the accuracy. + * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. + * + * @field curvatureValue: Detected curvature of the vehicle trajectory. + * It shall be presented as defined in clause A.15 + * + * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. + * It shall be presented as defined in clause A.14 + * + * @category: Vehicle information + */ Curvature ::= SEQUENCE { curvatureValue CurvatureValue, curvatureConfidence CurvatureConfidence } +/** + * It describes vehicle turning curve with the following information: + * + * Value = 1 / Radius * 10000 + * + * wherein radius is the vehicle turning curve radius. + * + * Positive values indicate a turning curve to the left hand side of the driver. + * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. + * - The value shall be set to `0` when the vehicle is moving straight. + * - The value shall be set to `1023`, if the information is not available. + * - For calculated values smaller than `-1023`, the DE shall be set to `-1023`. + * - For calculated values bigger than `1022`, the DE shall be set to `1022`. + * + * The DE is used in @ref Curvature DF as defined in clause A.107. + * + * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. + * + * @category: Vehicle information + * @unit 1 over 10 000 metres + */ CurvatureValue ::= INTEGER {straight(0), unavailable(1023)} (-1023..1023) +/** + * It describes the absolute accuracy range of a reported curvature value for a predefined confidence level. + * The required confidence level is defined by the corresponding standards applying the DE. + * + * The value shall be set to: + * - 0 if the accuracy is less than or equal to 0,00002 m-1 + * - 1 if the accuracy is less than or equal to 0,0001 m-1 + * - 2 if the accuracy is less than or equal to 0,0005 m-1 + * - 3 if the accuracy is less than or equal to 0,002 m-1 + * - 4 if the accuracy is less than or equal to 0,01 m-1 + * - 5 if the accuracy is less than or equal to 0,1 m-1 + * - 6 if the accuracy is out of range, i.e. greater than 0,1 m-1 + * - 7 if the information is not available + * + * The DE is used in Curvature DF as defined in clause A.107. + * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported curvature value may be valid and used by the application. + * If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid and therefore cannot be trusted. Such value is not useful for the application. + */ CurvatureConfidence ::= ENUMERATED { onePerMeter-0-00002 (0), onePerMeter-0-0001 (1), @@ -202,75 +1124,401 @@ CurvatureConfidence ::= ENUMERATED { unavailable (7) } +/** + * It describes whether the yaw rate is used to calculate the curvature for a reported curvature value. + * + * When the information of curvature calculation mode is unknown, the value shall be set to 2. + * @category: Vehicle information + */ CurvatureCalculationMode ::= ENUMERATED {yawRateUsed(0), yawRateNotUsed(1), unavailable(2), ...} +/** + * Heading in a WGS84 co-ordinates system. + * + * @param headingValue: a heading value. It shall be presented as defined in clause A.35, + * + * @param headingConfidence: the accuracy of the reported heading value with a predefined confidence level. + * It shall be presented as defined in clause A.34. + * + * @category: GeoReference information, Vehicle information, Road topology information + */ Heading ::= SEQUENCE { headingValue HeadingValue, headingConfidence HeadingConfidence } +/** + * Orientation of a heading with regards to the WGS84 north. + * + * When the information is not available, the DE shall be set to `3 601`. + * + * The DE is used in @ref Heading DF as defined in clause A.112, and @ref PosConfidenceEllipse DF as defined in clause A.119. + * + * @unit: 0,1 degree + * @category: GeoReference information, Vehicle information, Road topology information +*/ HeadingValue ::= INTEGER {wgs84North(0), wgs84East(900), wgs84South(1800), wgs84West(2700), unavailable(3601)} (0..3601) +/** + * The absolute accuracy of a reported heading value for a predefined confidence level (e.g. 95 %). + * The required confidence level is defined by the corresponding standards applying the DE. + * + * The value shall be set to: + * - `1` if the heading accuracy is equal to or less than 0,1 degree, + * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n × 0,1 degree, + * - `125` if the heading accuracy is equal to or less than 12,5 degrees, + * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, + * - `127` if the heading accuracy information is not available. + * + * The DE is used in Heading DF as defined in clause A.112. + * + * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, + * such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported heading value may be valid and used by the application. + * + * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported + * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @unit: 0,1 degree + * @category: GeoReference information, Vehicle information, Road topology information + */ HeadingConfidence ::= INTEGER {equalOrWithinZeroPointOneDegree (1), equalOrWithinOneDegree (10), outOfRange(126), unavailable(127)} (1..127) +/** + * This DE indicates the transversal position information on the road in resolution of lanes, counted from + * the inside border of the road for a given traffic direction. For example, the innermostDrivingLane corresponds + * to the left most lane of the carriageway in a country with right-land traffic, and to the right most lane of the + * carriageway in a left-land traffic (e.g. in UK). The value -1 denotes that the referenced position is outside the road. + * @category: GeoReference information, Road topology information +*/ LanePosition ::= INTEGER {offTheRoad(-1), innerHardShoulder(0), innermostDrivingLane(1), secondLaneFromInside(2), outerHardShoulder(14) } (-1..14) +/** + * This DF indicates the opening/closure status of a lane or a set of lanes. + * + * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of inner hard shoulder lanes. It shall be presented as defined in clause A.29 + * + * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of outer hard shoulder lanes. It shall be presented as defined in clause A.29 + * + * @field drivingLaneStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of driving lanes. It shall be presented as defined in clause A.23 + * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. + * + * @category: GeoReference information, Road topology information + */ ClosedLanes ::= SEQUENCE { innerhardShoulderStatus HardShoulderStatus OPTIONAL, - outerhardShoulderStatus HardShoulderStatus OPTIONAL, + outerhardShoulderStatus HardShoulderStatus OPTIONAL, drivingLaneStatus DrivingLaneStatus OPTIONAL, ... } +/** + * This DE indicates the current status of a hard shoulder lane whether it is available for special usage + * (e.g. for stopping or for driving) or closed for all vehicles. + * + * The DE is used in @ref ClosedLanes DF as defined in clause A.106. + * @category: Traffic information + */ HardShoulderStatus ::= ENUMERATED {availableForStopping(0), closed(1), availableForDriving(2)} +/** + * DE that indicates whether a driving lane is open to traffic. + * + * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall + * correspond to the total number of the driving lanes in the carriageway. + * + * The numbering is matched to @ref LanePosition DE as defined in clause A.40. + * The bit 0 is used to indicate the innermostLane, bit 1 is used to indicate the second lane from inside border. + * + * If a lane is closed to traffic, the corresponding bit shall be set to 1. Otherwise, it shall be set to 0. + * + * @note: Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus as defined in clause A.29. + * + * The DE is used in @ref ClosedLanes DF as defined in clause A.106. + * @category: Traffic information + */ DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) - +/** + * This DE denotes the ability of an ITS-S to provide up-to-date information. + * A performance class value is used to describe age of data. The exact values are out of scope of the present document. + * + * As defined in ETSI TS 101 539-1 [i.6], performance class A shall be set to `1`, performance class B shall be set to 2. + * When the performance class is unknown, it shall be set to `0`. + * + * Values in the range `3 to 7` are reserved for future use. + * + * @category: Vehicle information + */ PerformanceClass ::= INTEGER {unavailable(0), performanceClassA(1), performanceClassB(2)} (0..7) +/** + * A speed value. + * - For values equal to or greater than `163,82 m/s`, the value shall be set to `16 382`. + * - When the information is not available, the value shall be set to `16 383`. + * + * The DE is used in @ref Speed DF as defined in clause A.126. + * + * @unit: 0,01 m/s + * @category: Vehicle information +*/ SpeedValue ::= INTEGER {standstill(0), oneCentimeterPerSec(1), unavailable(16383)} (0..16383) +/** + * The absolute accuracy of a speed value information for a predefined confidence level. + * The required confidence level is defined by the station applying this DE. + * + * The value shall be set to: + * - `1` if the speed accuracy is equal to or less than `1 cm/s`. + * - `n (n > 1 and n < 125)` if the speed accuracy is equal to or less than `n cm/s`. + * - `125` if the speed accuracy is equal to or less than `125 cm/s`. + * - `126` if the speed accuracy is out of range, i.e. greater than `125 cm/s`. + * - `127` if the speed accuracy information is not available. + * + * The DE is used in @ref Speed DF as defined in clause A.126. + * + * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported speed value may be valid and used by the application. + * + * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid and therefore cannot be trusted. Such is not useful for the application. + * + * @unit cm/s + * @category: Vehicle information + */ SpeedConfidence ::= INTEGER {equalOrWithinOneCentimeterPerSec(1), equalOrWithinOneMeterPerSec(100), outOfRange(126), unavailable(127)} (1..127) +/** + * Mass of an empty loaded vehicle in multiple of 100 kg. + * - The value shall be set to `1 023` if the vehicle mass is equal to or greater than `102 300 kg`. + * - The value shall be set to `1 024` when the vehicle mass information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit: 100kg + * @category: Vehicle information +*/ VehicleMass ::= INTEGER {hundredKg(1), unavailable(1024)} (1..1024) +/** + * Describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * + * @field speedValue: speed value. + * It shall be presented as defined in clause A.74, + * + * @field speedConfidence: accuracy of the reported speed value. + * It shall be presented as defined in clause A.72. + * + * @category: Vehicle information + */ Speed ::= SEQUENCE { speedValue SpeedValue, speedConfidence SpeedConfidence } +/** + * Denotes whether a vehicle is driving forward or backward. + * When the information is unavailable, the value shall be set to 2. + * + * @category: Vehicle information + */ DriveDirection ::= ENUMERATED {forward (0), backward (1), unavailable (2)} +/** + * Indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. + * If it is the case, the value shall be set to TRUE. + * + * @category: Vehicle information + */ EmbarkationStatus ::= BOOLEAN +/** + * It indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. + * + * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. + * It shall be presented as specified in clause A.45, + + * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined + * confidence level. It shall be presented as defined in clause A.1. + * + * @category: Vehicle information + */ LongitudinalAcceleration ::= SEQUENCE { longitudinalAccelerationValue LongitudinalAccelerationValue, longitudinalAccelerationConfidence AccelerationConfidence } + /** + * Vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * - Negative values indicate that the vehicle is braking. + * - For values equal to or greater than 16 m/s2, the value shall be set to -160. + * - Positive values indicate that the vehicle is accelerating. + * - For acceleration equal to or greater than 16 m/s2 the value shall be set to 160. + * - When the data is unavailable, the value shall be set to 161. + * + * This acceleration is along the tangent plane of the road surface and does not include gravity components. + * + * The DE is used in @ref LongitudinalAcceleration DF as defined in clause A.116. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @category: Vehicle information + */ LongitudinalAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredForward(1), pointOneMeterPerSecSquaredBackward(-1), unavailable(161)} (-160 .. 161) +/** + * The absolute accuracy of a reported vehicle acceleration value with a predefined confidence level (e.g. 95 %). The required confidence level is defined by the corresponding standards applying the DE. + * + * The value shall be set to: + * - `1` if the acceleration accuracy is equal to or less than 0,1 m/s2. + * - `n (n > 1 and n < 100)` if the acceleration accuracy is equal to or less than n × 0,1 m/s2. + * - `100` if the acceleration accuracy is equal to or less than 10 m/s2. + * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. + * - `102` if the data is unavailable. + * + * The DE is used in LateralAcceleration DF as defined in clause A.115, LongitudinalAcceleration DF as defined in clause A.116, or VerticalAcceleration DF as defined in clause A.129. + * + * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * + * In all 3 cases above, the reported acceleration value may be valid and used by the application. + * + * If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @unit 0,1 m/s2 + * @category Vehicle information + */ AccelerationConfidence ::= INTEGER {pointOneMeterPerSecSquared(1), outOfRange(101), unavailable(102)} (0 .. 102) +/** + * Indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. + * + * @field: lateralAccelerationValue: lateral acceleration value at a point in time. + * It shall be presented as specified in clause A.42, + * + * @field: lateralAccelerationConfidence: accuracy of the reported lateral acceleration value with + * a predefined confidence level. It shall be presented as defined in clause A.1. + * + * @category Vehicle information + */ LateralAcceleration ::= SEQUENCE { lateralAccelerationValue LateralAccelerationValue, lateralAccelerationConfidence AccelerationConfidence } +/** + * Vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * - Negative value indicates that the vehicle is accelerating towards the right side with regards to the vehicle orientation. + * - For values equal to or greater than 16 m/s2 towards the right, the value shall be set to -160. + * - Positive values indicate the acceleration to the left hand side with regards to the vehicle orientation. + * - For values equal to or greater than 16 m/s2 towards the left, the value shall be set to 160. + * - When the information is not available, the value shall be set to 161. + * + * The DE is used in @ref LateralAcceleration DF as defined in clause A.115. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @category Vehicle information + * @unit: 0.1 m/s2 + */ LateralAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredToRight(-1), pointOneMeterPerSecSquaredToLeft(1), unavailable(161)} (-160 .. 161) +/** + * It indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. + * + * @field: verticalAccelerationValue: vertical acceleration value at a point in time. + * It shall be presented as specified in clause A.96, + * + * @field: verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with + * a predefined confidence level. It shall be presented as defined in clause A.1. + * + * @category Vehicle information + */ VerticalAcceleration ::= SEQUENCE { verticalAccelerationValue VerticalAccelerationValue, verticalAccelerationConfidence AccelerationConfidence } +/** + * Vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * - Positive values indicate that the vehicle is accelerating upwards. + * - The value shall be set to `160` if the upwards acceleration is equal to or greater than 16 m/s2.- + * - Negative values indicate the vehicle is accelerating downwards. + * - The value shall be set to `-160` if the downwards acceleration is equal to or greater than 16 m/s2. + * - The value shall be set to `161` if the information is not available. + * + * The DE is used in @ref VerticalAcceleration DF as defined in clause A.129. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @category Vehicle information + * @unit: 0.1 m/s2 + * + */ VerticalAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredUp(1), pointOneMeterPerSecSquaredDown(-1), unavailable(161)} (-160 .. 161) +/** + * The type of technical context the ITS-S is integrated in. + * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. + * + * The value shall be set to: + * - 0 `unknown`: information about the ITS-S context is not provided, + * - 1 pedestrian`: ITS-S carried by human being traveling on foot, incl. possible use of roller skates or skateboards, + * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, + * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class L1, L2, + * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class L3, L4, L5, L6, L7, + * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, + * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, + * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, + * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, + * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, + * ***NOTE***: Only to be used when not towed. + * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, + * - 12 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 13 16-255: reserved for future usage. + * + * The DE is used in @ref RestrictedTypes DF as defined in clause A.125. + * + * @category Vehicle information + */ StationType ::= INTEGER {unknown(0), pedestrian(1), cyclist(2), moped(3), motorcycle(4), passengerCar(5), bus(6), lightTruck(7), heavyTruck(8), trailer(9), specialVehicles(10), tram(11), roadSideUnit(15)} (0..255) +/** + * This DE describes the status of the exterior light switches of a vehicle. + * + * The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, + * either manually by the driver or automatically by a vehicle system. The bit value does not indicate + * if the corresponding lamps are alight or not. + * + * If a vehicle is not equipped with a certain light or if the light switch status information is not available, + * the corresponding bit shall be set to `0`. + * + * The `fogLightOn` only indicates the status of the tail fog lamp switch. + * + * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not + * alternate with the blinking interval. + * + * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. + * + * @category Vehicle information + */ ExteriorLights ::= BIT STRING { lowBeamHeadlightsOn (0), highBeamHeadlightsOn (1), @@ -282,6 +1530,15 @@ ExteriorLights ::= BIT STRING { parkingLightsOn (7) } (SIZE(8)) +/** + * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. + * The value is assigned according to "_class_" and "_division_" definitions of dangerous goods as specified in part II, + * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. + * + * The DE is used in @ref DangerousGoodsExtended DF as defined in clause A.108. + * + * @category Vehicle information + */ DangerousGoodsBasic::= ENUMERATED { explosives1(0), explosives2(1), @@ -305,6 +1562,35 @@ DangerousGoodsBasic::= ENUMERATED { miscellaneousDangerousSubstances(19) } +/** + * This DF provides a description of dangerous goods being carried by a heavy vehicle. + * + * @field dangerousGoodsType: Type of dangerous goods, It shall be presented as defined in clause A.17, + * + * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in + * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], + * + * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. + * If yes, the value shall be set to TRUE, + * + * @field tunnelsRestricted: whether the heavy vehicle carrying dangerous goods is restricted to enter tunnels. + * If yes, the value shall be set to TRUE, + * + * @field limitedQuantity: whether the carried dangerous goods are packed with limited quantity. + * If yes, the value shall be set to TRUE, + * + * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency + * service should deal with an incident. This DE is optional; it shall be present if the information is available, + * + * @field phoneNumber: contact phone number of assistance service in case of incident or accident. + * This DE is optional, it shall be present if the information is available. + * It shall be presented as defined in clause A.135, + * + * @field companyName: name of company that manages the transportation of the dangerous goods. + * This DE is optional; it shall be present if the information is available. + * + * @category Vehicle information + */ DangerousGoodsExtended ::= SEQUENCE { dangerousGoodsType DangerousGoodsBasic, unNumber INTEGER (0..9999), @@ -317,38 +1603,175 @@ DangerousGoodsExtended ::= SEQUENCE { ... } +/** + * It indicates if a vehicle is carrying goods with heavy load, excess width, excess length or excess height. + * The corresponding bit shall be set to 1 when the special transport applies to the corresponding case. + * Otherwise, the corresponding bit shall be set to 0. + * + * @category Vehicle information + */ SpecialTransportType ::= BIT STRING {heavyLoad(0), excessWidth(1), excessLength(2), excessHeight(3)} (SIZE(4)) +/** + * It describes the status of light bar and any sort of audible alarm system besides the horn. + * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. + * When the light bar or audible alarm is active, the corresponding bits shall be set to 1. + * Otherwise, it shall be set to 0. + * + * @category Vehicle information + */ LightBarSirenInUse ::= BIT STRING { lightBarActivated (0), sirenActivated (1) } (SIZE(2)) +/** + * Height of left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle + * rear to front). For values equal to or greater than 99 cm, the DE shall be set to 99. + * If the value is unavailable, the DE shall be set to 100. + * + * @unit 1 centimeter + * @category Vehicle information + */ HeightLonCarr ::= INTEGER {oneCentimeter(1), unavailable(100)} (1..100) +/** + * Distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. + * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. + * For values equal to or higher than 1.26 metres, the value shall be set to `126`. + * If the information is unavailable, the value shall be set to `127`. + * + * @unit 1 centimeter + * @category Vehicle information + */ PosLonCarr ::= INTEGER {oneCentimeter(1), unavailable(127)} (1..127) +/** + * It indicates the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the + * middle point of the front line of the vehicle bounding box. + * For values equal to or greater than 2.9 metres, the value shall be set to `29`. + * The value shall be set to `30` if the information is unavailable. + * + * The DE is used in @ref PositionOfPillars DF as defined in clause A.120. + * + * @unit 1 centimeter + * @category Vehicle information + */ PosPillar ::= INTEGER {tenCentimeters(1), unavailable(30)} (1..30) +/** + * It indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of + * the vehicle bounding box of the empty load vehicle. + * For values equal to or higher than 6.2 metres, the data value be set to `62`. + * The value shall be set to `63` if the information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit 1 centimeter + * @category Vehicle information + */ PosCentMass ::= INTEGER {tenCentimeters(1), unavailable(63)} (1..63) +/** + * This DE includes whether an ITS message is transmitted as request from ITS-S or a response transmitted from + * ITS-S after receiving request from other ITS-Ss. + * @category Communication information + */ RequestResponseIndication ::= ENUMERATED {request(0), response(1)} +/** + * Speed limitation applied to a geographical position, a road section or a geographical region. + * + * @unit: km/h + * @category: Infrastructure information, Traffic information + */ SpeedLimit ::= INTEGER {oneKmPerHour(1)} (1..255) +/** + * It indicates the duration in minutes of a vehicle being stationary. + * For a vehicle being stationary since equal to or greater than 15 minutes, the value shall be set to `3`. + * @category: Infrastructure information, Traffic information + */ StationarySince ::= ENUMERATED {lessThan1Minute(0), lessThan2Minutes(1), lessThan15Minutes(2), equalOrGreater15Minutes(3)} +/** + * Temperature. + * - For temperature equal to or less than -60 °C, the value shall be set to `60`. + * - For temperature equal to or greater than 67 °C, the value shall be set to `67`. + * + * @unit: °C + * @category: Other information + */ Temperature ::= INTEGER {equalOrSmallerThanMinus60Deg (-60), oneDegreeCelsius(1), equalOrGreaterThan67Deg(67)} (-60..67) +/** + * It indicates traffic rules that apply to vehicles at a certain position. + * It includes the following information: + * - If overtaking is prohibited for all vehicles, the DE shall be set to `0`. + * - If overtaking is prohibited for trucks, the DE shall be set to `1`. + * - If vehicles should pass to the right lane, the DE shall be set to `2`. + * - If vehicles should pass to the left lane, the DE shall be set to `3`. + * + * @category: Infrastructure information, Traffic information + */ TrafficRule ::= ENUMERATED {noPassing(0), noPassingForTrucks(1), passToRight(2), passToLeft(3), ... } +/** + * Perpendicular distance between front and rear axle of the wheel base of vehicle. + * - The value shall be set to `126` if the wheel base distance is equal to or greater than 12.6 metres. + * - The value shall be set to `127` if the information is unavailable. + * + * @category: Vehicle information + * @unit 0.1 metre + */ WheelBaseVehicle ::= INTEGER {tenCentimeters(1), unavailable(127)} (1..127) +/** + * The smallest circular turn (i.e. U-turn) that the vehicle is capable of making. + * - The value shall be set to `254` if the turning radius is equal to or greater than 254 × 0.4 metre = 101.6 metres. + * - The value shall be set to `255` if the information is unavailable. + * + * For vehicle with tracker, the turning radius applies to the vehicle only. + * + * @category: Vehicle information + * @unit 0.4 metre + */ TurningRadius ::= INTEGER {point4Meters(1), unavailable(255)} (1..255) +/** + * Perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. + * - For values equal to or higher than 1.9 metres, the DE shall be set to `19`. + * - The value shall bet set to `20` if the information is unavailable. + * @category: Vehicle information + * @unit 0.1 metre + */ PosFrontAx ::= INTEGER {tenCentimeters(1), unavailable(20)} (1..20) +/** + * It indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. + * + * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear + * of the vehicle. + * The left side seat of a row refers to the left hand side seen from vehicle rear to front. + * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, + * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. + * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, + * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. + * + * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. + * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. + * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. + * Otherwise, the value of seat occupation bit shall be set according to the following conditions: + * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. + * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row + * shall be set to `1`. + * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. + * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row + * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. + * + * @category: Vehicle information + */ PositionOfOccupants ::= BIT STRING { row1LeftOccupied (0), row1RightOccupied (1), @@ -371,63 +1794,312 @@ PositionOfOccupants ::= BIT STRING { row4NotDetectable (18), row4NotPresent (19)} (SIZE(20)) +/** + * It indicates the positioning technology being used to estimate a geographical position. + * It covers the following positioning solutions: + * - 1 `sGNSS`: Global Navigation Satellite System, + * - 2 `dGNSS`: Differential GNSS, + * - 3 `sGNSSplusDR`: GNSS and dead reckoning, + * - 4 `dGNSSplusDR`: Differential GNSS and dead reckoning, + * - 5 `dR`: dead reckoning. + * + * @category: GeoReference information + */ PositioningSolutionType ::= ENUMERATED {noPositioningSolution(0), sGNSS(1), dGNSS(2), sGNSSplusDR(3), dGNSSplusDR(4), dR(5), ...} +/** + * This DF provides information related to the identification of a vehicle. + * + * @field wMInumber: World Manufacturer Identifier (WMI) code. It shall be presented as defined in clause A.98, + * + * @field vDS: Vehicle Descriptor Section (VDS). It shall be presented as defined in clause A.89. + * + * @category: Vehicle information + */ VehicleIdentification ::= SEQUENCE { wMInumber WMInumber OPTIONAL, vDS VDS OPTIONAL, ... } +/** + * World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. + * + * The DE is used in @ref VehicleIdentification DF as defined in clause A.130. + * + * @category: Vehicle information + */ WMInumber ::= IA5String (SIZE(1..3)) +/** + * Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. + * + * The DE is used in @ref VehicleIdentification DF as defined in clause A.130. + * + * @category: Vehicle information + */ VDS ::= IA5String (SIZE(6)) +/** + * Type of energy being used and stored in vehicle. + * - If a storage type is used by the vehicle, the corresponding bit shall be set to `1`. + * - Otherwise, the corresponding bit shall be set to `0`. + * + * @category: Vehicle information + */ EnergyStorageType ::= BIT STRING {hydrogenStorage(0), electricEnergyStorage(1), liquidPropaneGas(2), compressedNaturalGas(3), diesel(4), gasoline(5), ammonia(6)} (SIZE(7)) +/** + * Length of vehicle and accuracy indication information. + * + * @field vehicleLengthValue: length of vehicle. It shall be presented as defined in clause A.92 + * + * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. + * It shall be presented as defined in clause A.91. + * + * @category: Vehicle information + */ VehicleLength ::= SEQUENCE { vehicleLengthValue VehicleLengthValue, vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication } +/** + * Length of a vehicle. + * - The value shall be set to 1 022 if the vehicle length is equal to or greater than 102.2 metres. + * - The value shall be set to 1 023 if the information in unavailable. + * + * The DE is used in @ref VehicleLength DF as defined in clause A.131. + * + * @unit: 0.1 metre + * @category: Vehicle information + */ VehicleLengthValue ::= INTEGER {tenCentimeters(1), outOfRange(1022), unavailable(1023)} (1..1023) +/** + * To indicate whether the presence of a trailer is detectable or whether its length is included in a + * reported vehicle length value. + * - When the information is not known, the value shall be set to `unavailable(4)`. + * + * The DE is used in @ref VehicleLength DF as defined in clause A.131. + * + * @category: Vehicle information + */ VehicleLengthConfidenceIndication ::= ENUMERATED {noTrailerPresent(0), trailerPresentWithKnownLength(1), trailerPresentWithUnknownLength(2), trailerPresenceIsUnknown(3), unavailable(4)} +/** + * Width of a vehicle, including side mirrors. + * - For a vehicle width equal to or greater than 6.1 metres, the value shall be set to `61`. + * - The value shall be set to `62` if the information is unavailable. + * + * @unit: 0.1 metre + * @category: Vehicle information + */ VehicleWidth ::= INTEGER {tenCentimeters(1), outOfRange(61), unavailable(62)} (1..62) +/** + * DF that defines a path with a set of path points. + * It may contain up to `40` path points. Each path point shall be presented as defined in clause A.118 @ref PathPoint. + * + * It may be used to describe the historical path of a vehicle. + * + * @category: GeoReference information, Vehicle information + */ PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint +/** + * It indicates the right of priority requested by an operating emergency vehicle. + * The right-of-priority bit shall be set to 1 if the corresponding right is requested. + * + * @category: Traffic information + */ EmergencyPriority ::= BIT STRING {requestForRightOfWay(0), requestForFreeCrossingAtATrafficLight(1)} (SIZE(2)) +/** + * Quality level of provided information. + * + * The DE is used in @ref EventPoint DF as defined in clause A.111. + * + * @category: Other information + * @note: Definition of quality level is out of scope of the present document. + */ InformationQuality ::= INTEGER {unavailable(0), lowest(1), highest(7)} (0..7) +/** + * Type of a road segment. + * + * @category: Road Topology Information + * > NOTE: Definition of road type is out of scope of the present document. + */ RoadType ::= ENUMERATED { urban-NoStructuralSeparationToOppositeLanes(0), urban-WithStructuralSeparationToOppositeLanes(1), nonUrban-NoStructuralSeparationToOppositeLanes(2), nonUrban-WithStructuralSeparationToOppositeLanes(3)} +/** + * Steering wheel angle of the vehicle at certain point in time. + * + * @field steeringWheelAngleValue: steering wheel angle value. It shall be presented as defined in clause A.80, + * + * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. + * It shall be presented as defined in clause A.79. + * + * @category: Vehicle Information + */ SteeringWheelAngle ::= SEQUENCE { steeringWheelAngleValue SteeringWheelAngleValue, steeringWheelAngleConfidence SteeringWheelAngleConfidence } +/** + * Steering wheel angle of the vehicle at certain point in time. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * - Positive values indicate that the steering wheel angle is turning counter-clockwise (i.e. to the left). + * - Negative values shall be used when the steering wheel angle is turning clockwise (i.e. to the right). + * - The value shall be set to `511` if the steering wheel angle is equal to or greater than 511 × 1,5 degrees = 766,5 degrees to the left. + * - The value shall be set to `-511` if the steering wheel angle is equal to or greater than 511 × 1,5 degrees = 766,5 degrees to the right. + * - When the information is not available, the value shall be set to `512`. + * + * The DE is used in @ref SteeringWheelAngle DF as defined in clause A.127. + * @unit: 1.5 degree + * @category: Vehicle Information + */ SteeringWheelAngleValue ::= INTEGER {straight(0), onePointFiveDegreesToRight(-1), onePointFiveDegreesToLeft(1), unavailable(512)} (-511..512) +/** + * Absolute accuracy for a reported steering wheel angle value for a predefined confidence level (e.g. 95 %). + * The required confidence level is defined by the station applying this DE. + * + * The value shall be set to: + * - `1` if the steering wheel angle accuracy is equal to or less than 1,5 degrees, + * - `n (n > 1 and n < 125)` if the steering wheel angle accuracy is equal to or less than n × 1,5 degrees, + * - `125` if the steering wheel angle accuracy is equal to or less than 1,5 degrees ×125 = 187,5 degrees, + * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, + * - `127` if the accuracy information is not available. + * + * The DE is used in @ref SteeringWheelAngle DF as defined in clause A.127. + * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. + * + * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', + * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. + * Such value is not useful for the application. + * + * @unit: 1.5 degree + * @category: Vehicle Information +*/ SteeringWheelAngleConfidence ::= INTEGER {equalOrWithinOnePointFiveDegree (1), outOfRange(126), unavailable(127)} (1..127) +/** + * Number of milliseconds since `2004-01-01T00:00:00.000Z`, as specified in ISO 8601 [i.10]. + * + * EXAMPLE: The value for TimestampIts for `2007-01-01T00:00:00.000Z` is `94 694 401 000` milliseconds, + * which includes one leap second insertion since `2004-01-01T00:00:00.000Z`. + * + * The DE is used in @ref ProtectedCommunicationZone DF as defined in clause A.121. + * + * @unit: millisecond + * @category: Other Information + */ TimestampIts ::= INTEGER {utcStartOf2004(0), oneMillisecAfterUTCStartOf2004(1)} (0..4398046511103) +/** + * Role played by a vehicle at a point in time. + * The DE shall be set to: + * - 0 `default`: default vehicle role as indicated by the vehicle type, + * - 1 `publicTransport`: vehicle is used to operate public transport service, + * - 2 `specialTransport`: vehicle is used for special transport purpose, e.g. oversized trucks, + * - 3 `dangerousGoods`: vehicle is used for dangerous goods transportation, + * - 4 `roadWork`: vehicle is used to realize roadwork or road maintenance mission, + * - 5 `rescue`: vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, + * - 6 `emergency`: vehicle is used for emergency mission, e.g. ambulance, fire brigade, + * - 7 `safetyCar`: vehicle is used for public safety, e.g. patrol, + * - 8 `agriculture`: vehicle is used for agriculture, e.g. farm tractor as defined + * in CEN/TS 16157-3 [3], annex A, table A.137, + * - 9 `commercial`: vehicle is used for transportation of commercial goods as defined + * in CEN/TS 16157-3 [3], annex A, table A.137, + * - 10 `military`: vehicle is used for military purpose as defined in CEN/TS 16157-3 [3], annex A, table A.137, + * - 11 `roadOperator`: vehicle is used in road operator missions as defined in CEN/TS 16157-3 [3], annex A, table A.137, + * - 12 `taxi`: vehicle is used to provide an authorized taxi service as defined + * in CEN/TS 16157-3 [3], annex A, table A.137, + * - 13 `reserved`: reserved for future usage, + * - 14 `reserved`: reserved for future usage, + * - 15 `reserved`: reserved for future usage. + * + * @category: Vehicle Information + */ VehicleRole ::= ENUMERATED {default(0), publicTransport(1), specialTransport(2), dangerousGoods(3), roadWork(4), rescue(5), emergency(6), safetyCar(7), agriculture(8), commercial(9), military(10), roadOperator(11), taxi(12), reserved1(13), reserved2(14), reserved3(15)} +/** + * Yaw rate of vehicle at a point in time. + * + * @field yawRateValue: yaw rate value at a point in time. It shall be presented as defined in clause A.101, + * + * @field vehicleLengthConfidenceIndication: accuracy of reported yaw rate value. + * It shall be presented as defined in clause A.100. + * + * @category: Vehicle Information + */ YawRate::= SEQUENCE { yawRateValue YawRateValue, yawRateConfidence YawRateConfidence } +/** + * It denotes the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded + * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * - The leading sign denotes the direction of rotation. + * - Positive values indicate that the rotation is anti-clockwise (i.e. to the left). + * - The value shall be set to `32 766` if the yaw rate is equal to or greater than 327.66 degrees/second to the left. + * - Negative values indicate that the rotation is clockwise (i.e. to the right). + * - The value shall be set to `-32 766` if the yaw rate is equal to or greater than 327,66 degrees/second to the right. + * - The value shall be set to `32 767` if the information is not available. + * + * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. + * The reading instant should be the same as for the vehicle acceleration. + * + * The DE is used in @ref YawRate DF as defined in clause A.132. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * +* @category: Vehicle Information +*/ YawRateValue ::= INTEGER {straight(0), degSec-000-01ToRight(-1), degSec-000-01ToLeft(1), unavailable(32767)} (-32766..32767) +/** + * DE that denotes the absolute accuracy range for reported yaw rate value for a predefined confidence level (e.g. 95 %). + * The required confidence level is defined by the station applying this DE. + * + * The value shall be set to: + * - 0 if the accuracy is equal to or less than 0,01 degree/second + * - 1 if the accuracy is equal to or less than 0,05 degrees/second + * - 2 if the accuracy is equal to or less than 0,1 degree/second + * - 3 if the accuracy is equal to or less than 1 degree/second + * - 4 if the accuracy is equal to or less than 5 degrees/second + * - 5 if the accuracy is equal to or less than 10 degrees/second + * - 6 if the accuracy is equal to or less than 100 degrees/second + * - 7 if the accuracy is out of range, i.e. greater than 100 degrees/second + * - 8 if the accuracy information is unavailable + * + * The DE is used in @ref YawRate DF as defined in clause A.132. + * + * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported yaw rate value may be valid and used by the application. + * + * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported + * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. + * + * @category: Traffic information + */ YawRateConfidence ::= ENUMERATED { degSec-000-01 (0), degSec-000-05 (1), @@ -440,23 +2112,104 @@ YawRateConfidence ::= ENUMERATED { unavailable (8) } +/** + * DE that defines the type of a protected communication zone, so that an ITS-S is aware of the actions to do + * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * + * The protected zone type is defined in ETSI TS 102 792 [i.16]. + * + * The DE is used in @ref ProtectedCommunicationZone DF as defined in clause A.121. + * + * @category: Communication information + */ ProtectedZoneType::= ENUMERATED { permanentCenDsrcTolling (0), ..., temporaryCenDsrcTolling (1) } +/** + * DE describing a distance of relevance for information indicated in a message, for example, it may be used + * to describe the distance of relevance of an event indicated in a DENM as defined in ETSI EN 302 637-3 [i.3]. + * @category: GeoReference information + */ RelevanceDistance ::= ENUMERATED {lessThan50m(0), lessThan100m(1), lessThan200m(2), lessThan500m(3), lessThan1000m(4), lessThan5km(5), lessThan10km(6), over10km(7)} +/** + * DE describing a traffic direction that is relevant to information indicated in a message. + * For example, it may be used to describe traffic direction which is relevant to an event indicated by a DENM + * as defined in ETSI EN 302 637-3 [i.3], + * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * + * @note: Upstream traffic corresponds to the incoming traffic towards the event position, + * and downstream traffic to the departing traffic away from the event position. + * + * @category: GeoReference information + */ RelevanceTrafficDirection ::= ENUMERATED {allTrafficDirections(0), upstreamTraffic(1), downstreamTraffic(2), oppositeTraffic(3)} +/** + * Time interval between two consecutive message transmissions. + * + * @unit: milliseconds + * @category: Communication information + */ TransmissionInterval ::= INTEGER {oneMilliSecond(1), tenSeconds(10000)} (1..10000) +/** + * Duration of a traffic event validity. + * @unit: seconds + * @category: Traffic information + */ ValidityDuration ::= INTEGER {timeOfDetection(0), oneSecondAfterDetection(1)} (0..86400) +/** + * Identifier used to describe a protocol action taken by an ITS-S. + * + * For example, it describes an action taken by an ITS-S to trigger a new DENM as defined in ETSI EN 302 637-3 [i.3] + * after detecting an event. + * + * @field originatingStationID: ID of the ITS-S that takes the action. It shall be presented as defined in clause A.77, + * + * @field sequenceNumber: a sequence number. It shall be presented as defined in clause A.68. + * + * @category: Communication information + */ ActionID ::= SEQUENCE { originatingStationID StationID, sequenceNumber SequenceNumber } +/** + * A path being described with a list of waypoints, each waypoint is represented with geographical position + * as defined in clause A.124 @ref ReferencePosition. + * @category: GeoReference information + */ ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition +/** + * DF that describes a zone of protection inside which the ITSG5 communication should be restricted. + * + * @field protectedZoneType: Type of the protected zone. It shall be presented as defined in clause A.58, + * + * @field expiryTime: Time at which the validity of the protected communication zone will expire. + * It shall be presented as defined in clause A.82. + * This information is optional and shall be present when the protected zone is temporarily valid, + * + * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. + * It shall be presented as defined in clause A.41, + * + * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. + * It shall be represented as defined in clause A.44, + * + * @field protectedZoneRadius: radius of the protected communication zone in metres. + * It shall be presented as defined in clause A.57. + * This DE is optional, it shall be present if the data is available, + * + * @field protectedZoneID: the ID of the protected communication zone. + * It shall be presented as defined in clause A.56. + * This DE is optional, it shall be present if the data is available. + * + * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. + * + * @category: Infrastructure information, Communication information + */ ProtectedCommunicationZone ::= SEQUENCE { protectedZoneType ProtectedZoneType, expiryTime TimestampIts OPTIONAL, @@ -467,28 +2220,116 @@ ProtectedCommunicationZone ::= SEQUENCE { ... } +/** + * One or more paths, each path is described using a list of waypoints in a predefined order. + * A path shall be presented as defined in clause A.117 @ref PathHistory. + * + * This DF may be used to describe location referencing information. + * + * @category: GeoReference information + */ Traces ::= SEQUENCE SIZE(1..7) OF PathHistory +/** + * Number of occupants in a vehicle. + * - For values equal to or higher than 126, the value shall be set to `126`. + * - If the information is not available, the value shall be set to `127`. + * + * @unit: 1 person + * @category Other information + */ NumberOfOccupants ::= INTEGER {oneOccupant (1), unavailable(127)} (0 .. 127) +/** + * Sequence number. + * + * The DE is used in @ref ActionID as defined in clause A.102. + * @category Other information + */ SequenceNumber ::= INTEGER (0..65535) +/** + * 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 DF contains a list of distances 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. + * + * 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. + * + * Each pillar position shall be presented as defined in clause A.54 @ref PosPillar. + * + * @category: Vehicle information + */ PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar +/** + * List of ITS-S types to which a certain traffic restriction, e.g. the speed limit, applies. + * + * Each station type shall be presented as defined in clause A.78 @ref StationType. + * + * @category: Infrastructure information, Traffic information + */ RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType +/** + * The DF consists of a list of event points which represents the dimension of a plain event in a predefined order. + * In case that the plain event is detected by a vehicle ITS-S, the DF consists of a list of event detection points + * along the path that the detecting ITS S has travelled over some past time and/or distance. + * + * Each event point shall be presented as defined in clause A.111 @ref EventPoint. + * @category: GeoReference information, Traffic information + */ EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint +/** + * DF that describes the position, time and corresponding information quality for an event point detected to describe + * a plain event. + * + * @field eventPosition: Offset position of a detected event point with regards to the previous detected event point. + * It shall be presented as defined in clause A.109. + * + * @field eventDeltaTime: Time travelled by the detecting ITS-S since the previous detected event point. + * It shall be presented as defined in clause A.47. + * This field is optional, it shall be present if the information is available. + * + * @field informationQuality: Information quality of the detection for this event point. + * It shall be presented as defined in clause A.39. + * + * This DF is used in @ref EventHistory DF as defined in clause A.110. + * @category: GeoReference information, Traffic information + */ EventPoint ::= SEQUENCE { eventPosition DeltaReferencePosition, eventDeltaTime PathDeltaTime OPTIONAL, informationQuality InformationQuality } +/** + * DF that describes a list of protected communication zones by a road side ITS-S (Road Side Unit RSU). + * + * It may provide up to 16 protected communication zones information. + * Each protected communication zone shall be presented as defined in clause A.121 @ref ProtectedCommunicationZone. + * @category: Infrastructure information, Communication information + */ ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone - - +/** + * The DF describes the position of a CEN DSRC road side equipment. + * + * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. + * It shall be presented as defined in clause A.41, + * + * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. + * It shall be presented as defined in clause A.44, + * + * @field cenDsrcTollingZoneID: the ID of the CEN DSRC road side equipment. + * It shall be presented as defined in clause A.11. This DE is optional. + * + * @category: Infrastructure information, Communication information + */ CenDsrcTollingZone ::= SEQUENCE { protectedZoneLatitude Latitude, protectedZoneLongitude Longitude, @@ -496,16 +2337,55 @@ CenDsrcTollingZone ::= SEQUENCE { ... } +/** + * Radius of a protected communication zone. + * + * This DE is used in @ref ProtectedCommunicationZone DF as defined in clause A.121. + * + * @unit: metre + * @category: Infrastructure information, Communication information + */ ProtectedZoneRadius ::= INTEGER {oneMeter(1)} (1..255,...) +/** + * ID of a protected communication zone. + * + * This DE is used in @ref CenDsrcTollingZoneID DE as defined in clause A.11 + * and in @ref ProtectedCommunicationZone DF as defined in clause A.121. + * + * @category: Infrastructure information, Communication information + */ ProtectedZoneID ::= INTEGER (0.. 134217727) +/** + * ID of a CEN DSRC tolling zone. It shall be presented as defined in clause A.56 ProtectedZoneID. + * + * This DE is used in @ref CenDsrcTollingZone DF as defined in clause A.105. + * @category: Infrastructure information, Communication information + */ CenDsrcTollingZoneID ::= ProtectedZoneID +/** + * Portion of digital map, described using a list of waypoints, described as + * @ref ReferencePosition as defined in clause A.124. + * + * @category: GeoReference information + */ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition +/** + * UTF8String description of a time period to describe the opening days and hours of a Point of Interest + * (for example local commerce). + * + * @category: Other information + */ OpeningDaysHours ::= UTF8String +/** + * Phone number + * + * @category: Other information + */ PhoneNumber ::= NumericString (SIZE(1..16)) END diff --git a/asn2md.py b/asn2md.py new file mode 100755 index 0000000..6f032ac --- /dev/null +++ b/asn2md.py @@ -0,0 +1,301 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import argparse # parse arguments +import os.path # getting extension from file +import sys # output and stuff +import re # for regular expressions +if (sys.version_info > (3, 0)): + import urllib.parse # +else: + import urllib # + +## extract doxygen-tag namespace +RE_MODULE = re.compile( r'^\s*([A-Z][\w-]*)\s*({.*?})?\s*DEFINITIONS.*?::=\s*?BEGIN(.*)END', re.VERBOSE | re.MULTILINE | re.DOTALL) + +RE_SPACES = re.compile(r'\s+') + +RE_COMMENTS = re.compile(r'^\s*--.*?\n|--.*?(?:--|$)|/\*.*?\*/[\t ]*\n?', re.MULTILINE|re.DOTALL) + +RE_BASIC_TYPES = re.compile(r'^OCTET\s+STRING|BIT\s+STRING|BOOLEAN|INTEGER|FLOAT|SEQUENCE|SET|NULL') + +RE_TYPE_BODY = re.compile(r'.*?{(.*)}\s*(?:\(.*?\)|\s*$)', re.MULTILINE|re.DOTALL) + +#RE_FIELDS = re.compile(r'^\s*(?:/\*\*.*?\*/)|^\s*([\w-]+?)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][.\w-]+)?(.*?)(?:,((?:\s*--!?<.*?\n)*)|((?:--!?<.*?\n)*)$)', re.MULTILINE | re.DOTALL| re.VERBOSE) +RE_FIELDS = re.compile(r'^\s*/\*.*?\*/|^\s*--\!.*?\n|^\s*([\w-]+)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][\w-]+)?((?:{[^}]*}|\([^)]*\)|.)*?)(?:,|(--)|$)', re.MULTILINE | re.DOTALL) + +RE_EXPORTS = re.compile(r'^\s*EXPORTS.*?;', re.DOTALL | re.MULTILINE) + +RE_IMPORTS = re.compile(r'^\s*IMPORTS\s*(.*?);', re.DOTALL | re.MULTILINE) + +RE_IMPORT_ELEMENTS = re.compile(r'^([,\s\w-]*?)FROM\s*([\w-]+)\s*({[^}]*}(?:\s+WITH\s+SUCCESSORS)?)?', re.MULTILINE) + +RE_IMPORT_ELEMENT_TYPE = re.compile(r'[^,\s]+') + +RE_DOXY_COMMENTS = re.compile(r'^\s*--[-!#](:?$|\s(.*))', re.MULTILINE) + +RE_DOXY_C_COMMENTS = re.compile(r'^\s*/\*\*\s(.*?)\*/', re.MULTILINE | re.DOTALL) + +RE_DOXY_C_COMMENTS_I = re.compile(r'\s*\*+') + +RE_DOXY_REF = re.compile(r'@ref\s+([\w-]+)') +RE_DOXY_CLASS = re.compile(r'@class:?\s+([\w-]+)') +RE_DOXY_STRIP_SINGLE_TAG = re.compile(r'@(?:brief|url|details)\s+') +RE_DOXY_DETAILS = re.compile(r'@details:?\s+[\w-]+') +RE_DOXY_STRIP_TAG = re.compile(r'\s*@(?:class|struct):?\s+[\w-]+') +RE_DOXY_UNIT = re.compile(r'^\s*@unit:?\s+(.+)\n+', re.MULTILINE) +RE_DOXY_BRIEF = re.compile(r'^\s*@brief:?\s+(.+)\n+', re.MULTILINE) +RE_DOXY_CATEGORY = re.compile(r'@category:\s+(.+)\n+', re.MULTILINE) +RE_DOXY_NOTE = re.compile(r'@note\s*(\d*):\s+(.+?)\n\s*$', re.MULTILINE | re.DOTALL) +RE_DOXY_PARAM = re.compile(r'^\s*@(?:param|field|value)\s+([\w-]+):?\s*(.*?)\n\s*$', re.MULTILINE | re.DOTALL) +RE_DOXY_OPTION = re.compile(r'@(no-auto-fields|no-auto-values)', re.MULTILINE) + +# RE_TYPE = re.compile(r'(([A-Z][\w-]*)\s*::=[\w \t]+(?:{+(.*?)}+)?.*?)\n\s*\n', re.MULTILINE | re.DOTALL) +RE_TYPE = re.compile(r'^\s*([A-Z][\w-]*)?\s*([{} \t:\w-]*?)?::=([\w \t]+.*?)\n\s*\n', re.MULTILINE | re.DOTALL) + +extTypes = {} +cpos = 0 +o_args = [] + +def urlquote(s): + if (sys.version_info > (3, 0)): + return urllib.parse.quote_plus(s) + else: + return urllib.quote_plus(s) + +def parseText(content, indent=None): + def repl_ref(m): + return '[**{0}**]({1}#{0})'.format(m.group(1), extTypes.get(m.group(1),'')) + content = RE_DOXY_REF.sub(repl_ref, content) + + content = RE_DOXY_STRIP_TAG.sub('', content) + + content = RE_DOXY_STRIP_SINGLE_TAG.sub('', content) + + return content + +def parseInlineComments(content:str, indent=None): + # keep into account only '--<' comments + lines = content.splitlines() + content = '' + for l in lines: + l = l.lstrip() + if l.startswith('--< '): + content += ''.ljust(indent or 0) + l[4:] + '\n' + elif l.startswith('--!< '): + content += ''.ljust(indent or 0) + l[5:] + '\n' + else: + continue + return parseText(content, indent) + +def parseDoxyComments(content:str, indent=None): + # keep only '--! ' and /** */ comments + # convert '--! ' comments to C-style + content = RE_DOXY_COMMENTS.sub(r'/** *\g<1>*/', content) + ret = '' + for m in RE_DOXY_C_COMMENTS.finditer(content): + lines = m.group(1).splitlines() + for l in lines: + l = l.strip().lstrip('*') + ret += ''.ljust(indent or 0) + l + '\n' + return ret + +def parseModule(mname, content): + global cpos + cpos = 0 + ret = '' + m = RE_IMPORTS.search(content) + if m is not None: + pos = 0 + if m.group(1) is not None: + ret += '## Imports:\n' + s = m.group(1) + for fm in RE_IMPORT_ELEMENTS.finditer(s): + imName = fm.group(2) + for im in RE_IMPORT_ELEMENT_TYPE.finditer(fm.group(1)): + extTypes[im.group(0)] = imName+'.md' + ret += ' * **[{0}]({0}.md)** *{1}*
\n'.format(imName, RE_SPACES.sub(' ', fm.group(3) or '')) + ret += parseDoxyComments(s[pos:fm.start()], 3)+'\n' + pos = fm.end() + ret += parseDoxyComments(s[pos:]) + cpos = m.end() + + m = RE_EXPORTS.search(content) + if m is not None: + if cpos < m.end(): + cpos = m.end() + + # parse types + def repl_type (m, doc): + title = t = m.group(1) + auto_fields = True + s_unit = '' + s_category = '' + s_params = {} + + if doc : # non None and not empty + + # keep only doxy comments + doc = parseDoxyComments(doc) + + # parse @brief + def repl_brief (m): + nonlocal title + title = m.group(1) + return '\n' + if o_args.brief_as_title: + doc = RE_DOXY_BRIEF.sub(repl_brief, doc, 1) + + # parse options + def repl_doxy_option(m): + nonlocal auto_fields + if m.group(1) == 'no-auto-fields' or m.group(1) == 'no-auto-values': + auto_fields = False + return '' + doc = RE_DOXY_OPTION.sub(repl_doxy_option, doc) + + # filter out unit + def repl_unit(m): + nonlocal s_unit + s_unit = '\n\n    **Unit**: _{}_'.format(m.group(1).strip()) + return '' + doc = RE_DOXY_UNIT.sub(repl_unit, doc, 1) + + #filter out category + def repl_category(m): + nonlocal s_category + s_category = '\n\n    **Categories**: ' + for l in m.group(1).split(','): + l = l.strip() + if l: + s_category += '_[{0}](#{1})_ '.format(l, urlquote(l)) + return '' + doc = RE_DOXY_CATEGORY.sub(repl_category, doc, 1) + + #filter out notes + def repl_note(m): + return '    **NOTE{0}**: {1}\n{2}\n\n'.format(m.group(1) or '', m.group(2).strip(), " {: .note}") + doc = RE_DOXY_NOTE.sub(repl_note, doc) + + #filter out params + def repl_param (m): + nonlocal s_params + if m.group(1) is not None and m.group(2) is not None: + l = parseText(m.group(2).lstrip(":, \t\n")) + if len(l): + s_params[m.group(1)] = l + return '' + doc = RE_DOXY_PARAM.sub(repl_param, doc) + + doc = parseText(doc).strip() + s_unit + s_category + else: + doc = '' + + ret = '' + if t is not None: + ret = '### {1}\n\n'.format(t, title) + doc + '\n\n' + + # parse fields and get out fields descriptions + if m.group(3) is not None: + # check if contain fields + fm = RE_TYPE_BODY.search(m.group(3)) + if fm is not None and fm.group(1) is not None: + typeBody = fm.group(1).strip() + if typeBody is not None: + fTitle = '' + fields = '' + f_header = '' + f_doc = '' + pos = 0 + for fm in RE_FIELDS.finditer(typeBody): + f_doc += parseInlineComments(fm.string[pos:fm.start()], 3).strip() + if f_header and (f_doc or not o_args.no_empty_fields): + fields += f_header + ( f_doc or '\n' ) + f_doc = '' + if fm.group(1) is not None: + # add description to the previous type + f = fm.group(1).strip() + ext = fm.group(3) or '' + if fm.group(2) is not None: + fTitle = 'Fields:\n' + t = fm.group(2).strip() + if RE_BASIC_TYPES.match(t) is not None: + f_header = '* {0} **{1}** {2}
\n'.format(f, t, ext) + else: + f_header += '* {0} [**{1}**]({2}#{1}) {3}
\n'.format(f, t, extTypes.get(t,''), ext) + else: + fTitle = 'Values:\n' + f_header = '* **{0}** {1}
\n'.format(f, ext) + + if f in s_params: + f_doc = s_params[f] + '\n\n' + + f = parseDoxyComments(fm.string[pos:fm.start()], 3).strip() + if f: + f_doc += f + '\n\n' + pos = fm.end() + if fm.group(4) is not None: + # keep '--' for the next round + pos -= 2 + f_doc += parseInlineComments(typeBody[pos:], 3).strip() + if f_doc or not o_args.no_empty_fields: + fields += f_header + ( f_doc or '\n' ) + + ret = ret.strip() + '\n\n' + if auto_fields and len(fields): + ret += fTitle + fields + else: + if title: + ret = '### {}\n\n'.format(title) + ret += doc + '\n\n' + + return ret + '```asn1\n' + RE_COMMENTS.sub('', m.group(0).strip()) +'\n```\n\n' + + pos = 0 + ret += '## Data Elements:\n' + for m in RE_TYPE.finditer(content[cpos:]): + ret += repl_type (m, m.string[pos:m.start()]) + pos = m.end() + return ret + + +def parseAsn(outDir, content) : + # iterate modules in the file + pos= 0 + cnt = 0 + for m in RE_MODULE.finditer(content): + ret = '# ASN.1 module {}\n OID: _{}_\n'.format(m.group(1), RE_SPACES.sub(' ', m.group(2))) + ret += parseDoxyComments(content[pos:m.start()]) + '\n' + if m.group(3) is not None: + ret += parseModule(m.group(1), m.group(3)) + ret += '\n\n' + open(outDir + '/' + m.group(1) + '.md', "w").write(ret) + pos = m.end() + cnt += 1 + return cnt + +def main(): + global o_args + ap = argparse.ArgumentParser(description='ASN.1 to markdown converter') + ap.add_argument('--out', '-o', type=str, default='.', help='output directory') + ap.add_argument('--brief-as-title', '-B', default=False, action='store_true', help='Do not treat @brief line as type header') + ap.add_argument('--no-empty-fields', '-F', default=False, action='store_true', help='Do not add non-documented fields in the "Fields" block') + ap.add_argument('--no-empty-values', '-V', default=False, action='store_true', help='Do not add non-documented fields in the "Fields" block') + ap.add_argument('modules', action='store', nargs='+', help='ASN.1 files') + o_args = ap.parse_args() + + if not o_args.modules: + ap.print_help() + exit(1) + + cnt = 0 + for a in o_args.modules: + try: + content = open(a).read() + cnt += parseAsn(o_args.out, content) + except IOError as e: + sys.stderr.write(e[1]+"\n") + print("{} modules porcessed\n".format(cnt)) + +if __name__ == '__main__': + main() diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md new file mode 100644 index 0000000000000000000000000000000000000000..0e7808e771d56b7a971cd2eac8ac7e98308df3c3 GIT binary patch literal 141110 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 Date: Thu, 13 Jan 2022 14:12:09 +0000 Subject: [PATCH 02/91] Delete asn2md.py. not needed here. Shared script shall be used. --- asn2md.py | 301 ------------------------------------------------------ 1 file changed, 301 deletions(-) delete mode 100755 asn2md.py diff --git a/asn2md.py b/asn2md.py deleted file mode 100755 index 6f032ac..0000000 --- a/asn2md.py +++ /dev/null @@ -1,301 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -import argparse # parse arguments -import os.path # getting extension from file -import sys # output and stuff -import re # for regular expressions -if (sys.version_info > (3, 0)): - import urllib.parse # -else: - import urllib # - -## extract doxygen-tag namespace -RE_MODULE = re.compile( r'^\s*([A-Z][\w-]*)\s*({.*?})?\s*DEFINITIONS.*?::=\s*?BEGIN(.*)END', re.VERBOSE | re.MULTILINE | re.DOTALL) - -RE_SPACES = re.compile(r'\s+') - -RE_COMMENTS = re.compile(r'^\s*--.*?\n|--.*?(?:--|$)|/\*.*?\*/[\t ]*\n?', re.MULTILINE|re.DOTALL) - -RE_BASIC_TYPES = re.compile(r'^OCTET\s+STRING|BIT\s+STRING|BOOLEAN|INTEGER|FLOAT|SEQUENCE|SET|NULL') - -RE_TYPE_BODY = re.compile(r'.*?{(.*)}\s*(?:\(.*?\)|\s*$)', re.MULTILINE|re.DOTALL) - -#RE_FIELDS = re.compile(r'^\s*(?:/\*\*.*?\*/)|^\s*([\w-]+?)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][.\w-]+)?(.*?)(?:,((?:\s*--!?<.*?\n)*)|((?:--!?<.*?\n)*)$)', re.MULTILINE | re.DOTALL| re.VERBOSE) -RE_FIELDS = re.compile(r'^\s*/\*.*?\*/|^\s*--\!.*?\n|^\s*([\w-]+)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][\w-]+)?((?:{[^}]*}|\([^)]*\)|.)*?)(?:,|(--)|$)', re.MULTILINE | re.DOTALL) - -RE_EXPORTS = re.compile(r'^\s*EXPORTS.*?;', re.DOTALL | re.MULTILINE) - -RE_IMPORTS = re.compile(r'^\s*IMPORTS\s*(.*?);', re.DOTALL | re.MULTILINE) - -RE_IMPORT_ELEMENTS = re.compile(r'^([,\s\w-]*?)FROM\s*([\w-]+)\s*({[^}]*}(?:\s+WITH\s+SUCCESSORS)?)?', re.MULTILINE) - -RE_IMPORT_ELEMENT_TYPE = re.compile(r'[^,\s]+') - -RE_DOXY_COMMENTS = re.compile(r'^\s*--[-!#](:?$|\s(.*))', re.MULTILINE) - -RE_DOXY_C_COMMENTS = re.compile(r'^\s*/\*\*\s(.*?)\*/', re.MULTILINE | re.DOTALL) - -RE_DOXY_C_COMMENTS_I = re.compile(r'\s*\*+') - -RE_DOXY_REF = re.compile(r'@ref\s+([\w-]+)') -RE_DOXY_CLASS = re.compile(r'@class:?\s+([\w-]+)') -RE_DOXY_STRIP_SINGLE_TAG = re.compile(r'@(?:brief|url|details)\s+') -RE_DOXY_DETAILS = re.compile(r'@details:?\s+[\w-]+') -RE_DOXY_STRIP_TAG = re.compile(r'\s*@(?:class|struct):?\s+[\w-]+') -RE_DOXY_UNIT = re.compile(r'^\s*@unit:?\s+(.+)\n+', re.MULTILINE) -RE_DOXY_BRIEF = re.compile(r'^\s*@brief:?\s+(.+)\n+', re.MULTILINE) -RE_DOXY_CATEGORY = re.compile(r'@category:\s+(.+)\n+', re.MULTILINE) -RE_DOXY_NOTE = re.compile(r'@note\s*(\d*):\s+(.+?)\n\s*$', re.MULTILINE | re.DOTALL) -RE_DOXY_PARAM = re.compile(r'^\s*@(?:param|field|value)\s+([\w-]+):?\s*(.*?)\n\s*$', re.MULTILINE | re.DOTALL) -RE_DOXY_OPTION = re.compile(r'@(no-auto-fields|no-auto-values)', re.MULTILINE) - -# RE_TYPE = re.compile(r'(([A-Z][\w-]*)\s*::=[\w \t]+(?:{+(.*?)}+)?.*?)\n\s*\n', re.MULTILINE | re.DOTALL) -RE_TYPE = re.compile(r'^\s*([A-Z][\w-]*)?\s*([{} \t:\w-]*?)?::=([\w \t]+.*?)\n\s*\n', re.MULTILINE | re.DOTALL) - -extTypes = {} -cpos = 0 -o_args = [] - -def urlquote(s): - if (sys.version_info > (3, 0)): - return urllib.parse.quote_plus(s) - else: - return urllib.quote_plus(s) - -def parseText(content, indent=None): - def repl_ref(m): - return '[**{0}**]({1}#{0})'.format(m.group(1), extTypes.get(m.group(1),'')) - content = RE_DOXY_REF.sub(repl_ref, content) - - content = RE_DOXY_STRIP_TAG.sub('', content) - - content = RE_DOXY_STRIP_SINGLE_TAG.sub('', content) - - return content - -def parseInlineComments(content:str, indent=None): - # keep into account only '--<' comments - lines = content.splitlines() - content = '' - for l in lines: - l = l.lstrip() - if l.startswith('--< '): - content += ''.ljust(indent or 0) + l[4:] + '\n' - elif l.startswith('--!< '): - content += ''.ljust(indent or 0) + l[5:] + '\n' - else: - continue - return parseText(content, indent) - -def parseDoxyComments(content:str, indent=None): - # keep only '--! ' and /** */ comments - # convert '--! ' comments to C-style - content = RE_DOXY_COMMENTS.sub(r'/** *\g<1>*/', content) - ret = '' - for m in RE_DOXY_C_COMMENTS.finditer(content): - lines = m.group(1).splitlines() - for l in lines: - l = l.strip().lstrip('*') - ret += ''.ljust(indent or 0) + l + '\n' - return ret - -def parseModule(mname, content): - global cpos - cpos = 0 - ret = '' - m = RE_IMPORTS.search(content) - if m is not None: - pos = 0 - if m.group(1) is not None: - ret += '## Imports:\n' - s = m.group(1) - for fm in RE_IMPORT_ELEMENTS.finditer(s): - imName = fm.group(2) - for im in RE_IMPORT_ELEMENT_TYPE.finditer(fm.group(1)): - extTypes[im.group(0)] = imName+'.md' - ret += ' * **[{0}]({0}.md)** *{1}*
\n'.format(imName, RE_SPACES.sub(' ', fm.group(3) or '')) - ret += parseDoxyComments(s[pos:fm.start()], 3)+'\n' - pos = fm.end() - ret += parseDoxyComments(s[pos:]) - cpos = m.end() - - m = RE_EXPORTS.search(content) - if m is not None: - if cpos < m.end(): - cpos = m.end() - - # parse types - def repl_type (m, doc): - title = t = m.group(1) - auto_fields = True - s_unit = '' - s_category = '' - s_params = {} - - if doc : # non None and not empty - - # keep only doxy comments - doc = parseDoxyComments(doc) - - # parse @brief - def repl_brief (m): - nonlocal title - title = m.group(1) - return '\n' - if o_args.brief_as_title: - doc = RE_DOXY_BRIEF.sub(repl_brief, doc, 1) - - # parse options - def repl_doxy_option(m): - nonlocal auto_fields - if m.group(1) == 'no-auto-fields' or m.group(1) == 'no-auto-values': - auto_fields = False - return '' - doc = RE_DOXY_OPTION.sub(repl_doxy_option, doc) - - # filter out unit - def repl_unit(m): - nonlocal s_unit - s_unit = '\n\n    **Unit**: _{}_'.format(m.group(1).strip()) - return '' - doc = RE_DOXY_UNIT.sub(repl_unit, doc, 1) - - #filter out category - def repl_category(m): - nonlocal s_category - s_category = '\n\n    **Categories**: ' - for l in m.group(1).split(','): - l = l.strip() - if l: - s_category += '_[{0}](#{1})_ '.format(l, urlquote(l)) - return '' - doc = RE_DOXY_CATEGORY.sub(repl_category, doc, 1) - - #filter out notes - def repl_note(m): - return '    **NOTE{0}**: {1}\n{2}\n\n'.format(m.group(1) or '', m.group(2).strip(), " {: .note}") - doc = RE_DOXY_NOTE.sub(repl_note, doc) - - #filter out params - def repl_param (m): - nonlocal s_params - if m.group(1) is not None and m.group(2) is not None: - l = parseText(m.group(2).lstrip(":, \t\n")) - if len(l): - s_params[m.group(1)] = l - return '' - doc = RE_DOXY_PARAM.sub(repl_param, doc) - - doc = parseText(doc).strip() + s_unit + s_category - else: - doc = '' - - ret = '' - if t is not None: - ret = '### {1}\n\n'.format(t, title) + doc + '\n\n' - - # parse fields and get out fields descriptions - if m.group(3) is not None: - # check if contain fields - fm = RE_TYPE_BODY.search(m.group(3)) - if fm is not None and fm.group(1) is not None: - typeBody = fm.group(1).strip() - if typeBody is not None: - fTitle = '' - fields = '' - f_header = '' - f_doc = '' - pos = 0 - for fm in RE_FIELDS.finditer(typeBody): - f_doc += parseInlineComments(fm.string[pos:fm.start()], 3).strip() - if f_header and (f_doc or not o_args.no_empty_fields): - fields += f_header + ( f_doc or '\n' ) - f_doc = '' - if fm.group(1) is not None: - # add description to the previous type - f = fm.group(1).strip() - ext = fm.group(3) or '' - if fm.group(2) is not None: - fTitle = 'Fields:\n' - t = fm.group(2).strip() - if RE_BASIC_TYPES.match(t) is not None: - f_header = '* {0} **{1}** {2}
\n'.format(f, t, ext) - else: - f_header += '* {0} [**{1}**]({2}#{1}) {3}
\n'.format(f, t, extTypes.get(t,''), ext) - else: - fTitle = 'Values:\n' - f_header = '* **{0}** {1}
\n'.format(f, ext) - - if f in s_params: - f_doc = s_params[f] + '\n\n' - - f = parseDoxyComments(fm.string[pos:fm.start()], 3).strip() - if f: - f_doc += f + '\n\n' - pos = fm.end() - if fm.group(4) is not None: - # keep '--' for the next round - pos -= 2 - f_doc += parseInlineComments(typeBody[pos:], 3).strip() - if f_doc or not o_args.no_empty_fields: - fields += f_header + ( f_doc or '\n' ) - - ret = ret.strip() + '\n\n' - if auto_fields and len(fields): - ret += fTitle + fields - else: - if title: - ret = '### {}\n\n'.format(title) - ret += doc + '\n\n' - - return ret + '```asn1\n' + RE_COMMENTS.sub('', m.group(0).strip()) +'\n```\n\n' - - pos = 0 - ret += '## Data Elements:\n' - for m in RE_TYPE.finditer(content[cpos:]): - ret += repl_type (m, m.string[pos:m.start()]) - pos = m.end() - return ret - - -def parseAsn(outDir, content) : - # iterate modules in the file - pos= 0 - cnt = 0 - for m in RE_MODULE.finditer(content): - ret = '# ASN.1 module {}\n OID: _{}_\n'.format(m.group(1), RE_SPACES.sub(' ', m.group(2))) - ret += parseDoxyComments(content[pos:m.start()]) + '\n' - if m.group(3) is not None: - ret += parseModule(m.group(1), m.group(3)) - ret += '\n\n' - open(outDir + '/' + m.group(1) + '.md', "w").write(ret) - pos = m.end() - cnt += 1 - return cnt - -def main(): - global o_args - ap = argparse.ArgumentParser(description='ASN.1 to markdown converter') - ap.add_argument('--out', '-o', type=str, default='.', help='output directory') - ap.add_argument('--brief-as-title', '-B', default=False, action='store_true', help='Do not treat @brief line as type header') - ap.add_argument('--no-empty-fields', '-F', default=False, action='store_true', help='Do not add non-documented fields in the "Fields" block') - ap.add_argument('--no-empty-values', '-V', default=False, action='store_true', help='Do not add non-documented fields in the "Fields" block') - ap.add_argument('modules', action='store', nargs='+', help='ASN.1 files') - o_args = ap.parse_args() - - if not o_args.modules: - ap.print_help() - exit(1) - - cnt = 0 - for a in o_args.modules: - try: - content = open(a).read() - cnt += parseAsn(o_args.out, content) - except IOError as e: - sys.stderr.write(e[1]+"\n") - print("{} modules porcessed\n".format(cnt)) - -if __name__ == '__main__': - main() -- GitLab From 93c90bf86e46e7c1d1f18af55f99459e853f3c6a Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Thu, 13 Jan 2022 14:12:34 +0000 Subject: [PATCH 03/91] Delete .gitlab-ci.mk: Not needed anymore --- .gitlab-ci.mk | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100755 .gitlab-ci.mk diff --git a/.gitlab-ci.mk b/.gitlab-ci.mk deleted file mode 100755 index 381507c..0000000 --- a/.gitlab-ci.mk +++ /dev/null @@ -1,24 +0,0 @@ -ASN1_SRC := ITS-Container.asn - -ASN1_PDU := ItsPduHeader -ASN1_KNOWN := DATE - -#ASN1CDIR ?= $(USERPROFILE)/Work/asn1c-fillabs -ifneq (,$(ASN1CDIR)) - ASN1C := $(ASN1CDIR)/asn1c/.libs/asn1c -S $(ASN1CDIR)/skeletons -else - ASN1C := asn1c -endif - -.PHONY: validate doc build - -validate: iso build - -doc: docs - python3 asn2md.py -o docs --no-empty-fields $(ASN1_SRC) - -iso docs: - mkdir -p $@ - -build: $(ASN1_SRC) $(ASN1_SRC_VALIDATE) - $(ASN1C) -E -F -fcompound-names $(addprefix -fknown-extern-type=,$(ASN1_KNOWN)) $(addprefix -pdu=,$(ASN1_PDU)) $^ >/dev/null -- GitLab From db66f29de69189b0b00dded4533de9075ca3647f Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Thu, 10 Feb 2022 05:05:03 +0000 Subject: [PATCH 04/91] Replace ITS-Container.asn --- ITS-Container.asn | 5810 ++++++++++++++++++++++++++++++++------------- 1 file changed, 4167 insertions(+), 1643 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index d3e13ee..736fe13 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,176 +1,259 @@ +-- Draft CDD ASN.1 module Release 2 (Version 3) +-- Based on the official version available at @https://forge.etsi.org/rep/ITS/asn1/cdd_ts102894_2 +-- prepared by Jasja Tijink for ETSI TC ITS WG1 (date 13.01.2022) +-- Note: some descriptions of the data type still need to be harmonized and cleaned up. + ITS-Container { -itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) version (2) +itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) version3 (3) } DEFINITIONS AUTOMATIC TAGS ::= BEGIN +------------------------------------------ +-- Specification of CDD Data Elements: +------------------------------------------ -/** - * Common message header for application and facilities layer messages. - * It is included at the beginning of an ITS message as the message header. - * Test - * - * @param protocolVersion: version of the ITS message, - * - * @param messageID: Type of the ITS message. - * Following message type values are assigned in the present document: - * - 1 `denm`: Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], - * - 2 `cam`: Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], - * - 3 `poi`: Point of Interest message as specified in ETSI TS 101 556-1 [i.11], - * - 4 `spatem`: Signal Phase And Timing (SPAT) message as specified in SAE J2735 [i.12] and in ETSI TS 103 301 [i.17], - * - 5 `mapem`: MAP message as specified in SAE J2735 [i.12] and in ETSI TS 103 301 [i.17], - * - 6 `ivim`: In Vehicle Information (IVI) message as defined in ISO TS 19321 [i.13], - * - 7 `ev-rsr`: Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], - * - 8 `tistpgtransaction`: messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 i.15, - * - 9 `srem`: Traffic light Signal Request Message as specified in ETSI TS 103 301 [i.17], - * - 10 `ssem`: Traffic Light Signal Request Status Message as specified in ETSI TS 103 301 [i.17]. - * - 11 `evcsn`: Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], - * - 12 `saem`: Services Announcement Extended Message as specified in ETSI TS 102 890-1 i.19, - * - 13 `rtcmem`: Radio Technical Commission for Maritime Services (RTCM) Message as specified in ETSI TS 103 301 [i.17], - * - 14-255: reserved for future usage, - * - * @param stationID: the identifier of the ITS-S that generates the ITS message in question. It shall be represented as specified in clause A.77 @ref StationID. - * @category: Communication information - */ -ItsPduHeader ::= SEQUENCE { - protocolVersion INTEGER (0..255), - messageID INTEGER { denm(1), cam(2), poi(3), spatem(4), mapem(5), ivim(6), ev-rsr(7), tistpgtransaction(8), srem(9), ssem(10), evcsn(11), saem(12), rtcmem(13) } (0..255), -- Mantis #7209, #7005 - stationID StationID -} -/** - * Identifier for an ITS-S. +/** + * This DE indicates a change of acceleration. * - * The ITS-S ID may be a pseudonym. It may change over space and/or over time. + * The following values are specified: + * - `accelerate` if the acceleration is positive. + * - `decelerate` if the acceleration is negative. * - * The DE is used in @ref ActionID DF as defined in clause A.102 and @ref ItsPduHeader DF as defined in clause A.114. - */ -StationID ::= INTEGER(0..4294967295) + * @category Kinematics information +*/ +AccelerationChange::= ENUMERATED { accelerate, decelerate } -- tbd add values and/or extension? /** - * The geographical position of a position or of an ITS-S. It represents a geographical point position. + * This DE reprents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. * - * @field latitude: A latitude of the geographical point; it shall be presented as specified in clause A.41, + * The value shall be set to: + * - `1` if the acceleration accuracy is equal to or less than 0,1 m/s2. + * - `n (n > 1 and n < 100)` if the acceleration accuracy is equal to or less than n × 0,1 m/s2. + * - `100` if the acceleration accuracy is equal to or less than 10 m/s2. + * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. + * - `102` if the data is unavailable. * - * @field longitude: A longitude of the geographical point; it shall be presented as specified in clause A.44, * - * @field positionConfidenceEllipse: An accuracy of the geographical position; it shall be presented as specified in clause A.119, + * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. * - * @field altitude: An altitude and an altitude accuracy of the geographical point; it shall be presented as specified in clause A.103. + * In all 3 cases above, the reported acceleration value may be valid and used by the application. + * + * If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. * - * The DF is used in @ref ItineraryPath DF as defined in clause A.113. - * @category: GeoReference information + * @unit 0,1 m/s2 + * @category Kinematics information */ -ReferencePosition ::= SEQUENCE { - latitude Latitude, - longitude Longitude, - positionConfidenceEllipse PosConfidenceEllipse, - altitude Altitude -} +AccelerationConfidence ::= INTEGER {pointOneMeterPerSecSquared(1), outOfRange(101), unavailable(102)} (0 .. 102) /** - * Defines a geographical point position as offset position to a reference geographical point. + * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. + * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle + * acceleration control system is engaged or not. Currently, this DE includes the information of the + * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise + * control system, cruise control system and speed limiter system. * - * The DF is used in @ref EventPoint DF as defined in clause A.111 and in @ref PathPoint DF as defined in clause A.118 - * - * @field deltaLatitude A delta latitude offset with regards to the latitude value of the reference position. - * It shall be presented as defined in clause A.20 + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `brakePedalEngaged` : Driver is stepping on the brake pedal, + * - 1 `gasPedalEngaged` : Driver is stepping on the gas pedal, + * - 2 `emergencyBrakeEngaged` : emergency brake system is engaged, + * - 3 `collisionWarningEngaged`: collision warning system is engaged, + * - 4 `accEngaged` : ACC is engaged, + * - 5 `cruiseControlEngaged` : cruise control is engaged, + * - 6 `speedLimiterEngaged` : speed limiter is engaged. + * - 7 : reserved for future use * - * @field deltaLongitude A delta longitude offset with regards to the longitude value of the reference position. - * It shall be presented as defined in clause A.21 + * Otherwise (for example when the corresponding system is not available due to non equipped system + * or information is unavailable), the corresponding bit shall be set to _0_. * - * @field deltaAltitude A delta altitude offset with regards to the altitude value of the reference position. - * It shall be presented as defined in clause A.19 + * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. + * @category: Kinematics information + */ +AccelerationControl ::= BIT STRING { + brakePedalEngaged (0), + gasPedalEngaged (1), + emergencyBrakeEngaged (2), + collisionWarningEngaged (3), + accEngaged (4), + cruiseControlEngaged (5), + speedLimiterEngaged (6) +} (SIZE(7)) + +/** + * This DE represents the value of an acceleration component in a defined coordinate system. + * The DE shall be set to `161` if the information is not available. * - * @category: GeoReference information + * @unit 0,1 m/s2 + * @category: Kinematics information +*/ +AccelerationValue ::= INTEGER { + pointOneMeterPerSecSquared (1), + minusPointOneMeterPerSecSquared (-1), + unavailable (161) +} (-160 .. 161) + + +/** + * This DE indicates an access technology. + * + * The following values are specified: + * - `0`: any access technology class (see clause 7 of TS 103 724). + * - `1`: ITS-G5 access technology class. + * - `2`: LTE-V2X access technology class. + * - `3`: NR-V2X access technology class. + * + * @category: Communication information */ -DeltaReferencePosition ::= SEQUENCE { - deltaLatitude DeltaLatitude, - deltaLongitude DeltaLongitude, - deltaAltitude DeltaAltitude +AccessTechnologyClass ::= ENUMERATED { + any(0), + itsg5Class(1), + ltev2xClass(2), + nrv2xClass(3), + ... } /** - * Absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees - * to the east or to the west of the prime meridian. + * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. * - * - Negative values are used for longitudes to the west, - * - Positive values are used for longitudes to the east. - * - When the information is unavailable, the value shall be set to _1 800 000 001_. + * The following values are specified: + * - 0 `unavailable` : in case the information on the sub cause of the accident is unavailable, + * - 1 `multiVehicleAccident` : in case more than two vehicles are involved in accident, + * - 2 `heavyAccident` : in case the airbag of the vehicle involved in the accident is triggered, + * the accident requires important rescue and/or recovery work, + * - 3 `accidentInvolvingLorry` : in case the accident involves a lorry, + * - 4 `accidentInvolvingBus` : in case the accident involves a bus, + * - 5 `accidentInvolvingHazardousMaterials`: in case the accident involves hazardous material, + * - 6 `accidentOnOppositeLane` : in case the accident happens on opposite lanes, + * - 7 `unsecuredAccident` : in case the accident is not secured, + * - 8 `assistanceRequested` : in case rescue and assistance are requested, + * - 9-255 reserved for future usage. + * @category: Traffic information + */ +AccidentSubCauseCode ::= INTEGER { + unavailable(0), + multiVehicleAccident(1), + heavyAccident(2), + accidentInvolvingLorry(3), + accidentInvolvingBus(4), + accidentInvolvingHazardousMaterials(5), + accidentOnOppositeLane(6), + unsecuredAccident(7), + assistanceRequested(8) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case information on the cause of the low road adhesion is unavailable + * - 1 `heavyFrostOnRoad`: in case the low road adhesion is due to heavy frost on the road + * - 2 `fuelOnRoad` : in case the low road adhesion is due to fuel on the road + * - 3 `mudOnRoad` : in case the low road adhesion is due to mud on the road + * - 4 `snowOnRoad` : in case the low road adhesion is due to snow on the road + * - 5 `iceOnRoad` : in case the low road adhesion is due to ice on the road + * - 6 `blackIceOnRoad` : in case the low road adhesion is due to black ice on the road + * - 7 `oilOnRoad` : in case the low road adhesion is due to oil on the road + * - 8 `looseChippings` : in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard + * - 9 `instantBlackIce` : in case the low road adhesion is due to instant black ice on the road surface + * - 10 `roadsSalted` : when the low road adhesion is due to salted road + * - 11-255 reserved for future usage * - * The DE is used in - * @ref CenDsrcTollingZone DF as defined in clause A.105, - * @ref ProtectedCommunicationZone DF as defined in clause A.121 and - * @ref ReferencePosition DF as defined in clause A.124. - * @unit: 0.1 microdegree - * @category: GeoReference information + * @category: Traffic information */ -Longitude ::= INTEGER { - oneMicrodegreeEast (10), - oneMicrodegreeWest (-10), - unavailable(1800000001) -} (-1800000000..1800000001) +AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { + unavailable(0), + heavyFrostOnRoad(1), + fuelOnRoad(2), + mudOnRoad(3), + snowOnRoad(4), + iceOnRoad(5), + blackIceOnRoad(6), + oilOnRoad(7), + looseChippings(8), + instantBlackIce(9), + roadsSalted(10) +} (0..255) /** - * Absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or - * in south hemisphere. + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. * - * - Positive values are used for latitude in north of the Equator, - * - Negative values are used for latitude in south of the Equator. - * - When the information is unavailable, the value shall be set to _900 000 001_. + * The sub causes are described as following: + * - 0 `unavailable` : in case information on the type of extreme weather condition is unavailable + * - 1 `strongWinds` : in case the type of extreme weather condition is strong wind + * - 2 `damagingHail`: in case the type of extreme weather condition is damaging hail + * - 3 `hurricane` : in case the type of extreme weather condition is hurricane + * - 4 `thunderstorm`: in case the type of extreme weather condition is thunderstorm + * - 5 `tornado` : in case the type of extreme weather condition is tornado + * - 6 `blizzard` : in case the type of extreme weather condition is blizzard + * - 7-255 reserved for future usage * - * The DE is used in - * @ref CenDsrcTollingZone DF as defined in clause A.105, - * @ref ProtectedCommunicationZone DF as defined in clause A.121 and - * @ref ReferencePosition DF as defined in clause A.124. - * @unit: 0.1 microdegree - * @category: GeoReference information + * @category: Traffic information */ -Latitude ::= INTEGER { - oneMicrodegreeNorth (10), - oneMicrodegreeSouth (-10), - unavailable(900000001) -} (-900000000..900000001) +AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { + unavailable(0), + strongWinds(1), + damagingHail(2), + hurricane(3), + thunderstorm(4), + tornado(5), + blizzard(6) +} (0..255) /** - * Altitude and accuracy of an altitude in a WGS84 co-ordinate system. - * - * @field altitudeValue: altitude of a geographical point. - * It shall be presented as specified in clause A.9 AltitudeValue, + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. * - * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. - * It shall be presented as specified in clause A.8. + * The sub causes are described as following: + * - 0 `unavailable`: in case information on the type of precipitation is unavailable + * - 1 `heavyRain`: in case the type of precipitation is heavy rain + * - 2 `heavySnowfall`: in case the type of precipitation is heavy snow fall + * - 3 `softHail`: in case the type of precipitation is soft hail + * - 4-255 reserved for future usage * - * This DF is used in @ref ReferencePosition DF as defined in clause A.124. - * @category: GeoReference information + * @category: Traffic information */ -Altitude ::= SEQUENCE { - altitudeValue AltitudeValue, - altitudeConfidence AltitudeConfidence -} +AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { + unavailable(0), + heavyRain(1), + heavySnowfall(2), + softHail(3) +} (0..255) /** - * Altitude in a WGS84 co-ordinate system. - * - When the information is not available, the DE shall be set to _800 001_. - * - For altitude equal or greater than _8 000 m_, the DE shall be set to _800 000_. - * - For altitude equal or less than _-1 000_ m, the DE shall be set to _100 000_. + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. * - * The DE is used in @ref Altitude DF as defined in clause A.103. - * @unit: 0.1 meter - * @category: GeoReference information + * The sub causes are described as following: + * - 0 `unavailable` : in case information on the cause of low visibility is unavailable + * - 1 `fog` : in case the cause of low visibility is fog + * - 2 `smoke` : in case the cause of low visibility is smoke + * - 3 `heavySnowfall` : in case the cause of low visibility is heavy snow fall + * - 4 `heavyRain` : in case the cause of low visibility is heavy rain + * - 5 `heavyHail` : in case the cause of low visibility is heavy hail + * - 6 `lowSunGlare` : in case the cause of low visibility is sun glare + * - 7 `sandstorms` : in case the cause of low visibility is sand storm + * - 8 `swarmsOfInsects`: in case the cause of low visibility is swarm of insects + * - 9-255 reserved for future usage + * + * @category: Traffic information */ -AltitudeValue ::= INTEGER { - referenceEllipsoidSurface(0), - oneCentimeter(1), - unavailable(800001) -} (-100000..800001) +AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { + unavailable(0), + fog(1), + smoke(2), + heavySnowfall(3), + heavyRain(4), + heavyHail(5), + lowSunGlare(6), + sandstorms(7), + swarmsOfInsects(8) +} (0..255) /** - * Absolute accuracy of a reported altitude value of a geographical point for a predefined confidence level (e.g. 95 %). - * The required confidence level is defined by the corresponding standards applying the usage of this DE. - * - * The DE is used in @ref Altitude DF as defined in clause A.103 + * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. * * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused * by several reasons, such as: @@ -222,252 +305,143 @@ AltitudeConfidence ::= ENUMERATED { } /** - * It defines an offset longitude with regards to a referred longitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. + * This DE represents the altitude value in a WGS84 co-ordinate system. * - * - Positive values are used for providing offset towards the east from the reference position. - * - Negative values are used for providing offset towards the west from the reference position. - * - When the information is unavailable, the value shall be set to _131072_. + * The following values are specified: + * - When the information is not available, the DE shall be set to _800 001_. + * - For altitude equal or greater than _8 000 m_, the DE shall be set to _800 000_. + * - For altitude equal or less than _-1 000_ m, the DE shall be set to _100 000_. * - * The DE is used in @ref DeltaReferencePosition DF as defined in clause A.109. - * @unit: 0.1 microdegree + * @unit: 0.1 meter * @category: GeoReference information */ -DeltaLongitude ::= INTEGER { - oneMicrodegreeEast (10), - oneMicrodegreeWest (-10), - unavailable (131072) -} (-131071..131072) - -/** - * It defines offset latitude with regards to a referred latitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * - Positive values are used for providing offset towards the north from the reference position. - * - Negative values are used for providing offset towards the south from the reference position. - * - When the information is unavailable, the value shall be set to _131072_. - * - * The DE is used in @ref DeltaReferencePosition DF as defined in clause A.109. - * @unit: 0.1 microdegree - * @category: GeoReference information - */ -DeltaLatitude ::= INTEGER { - oneMicrodegreeNorth (10), - oneMicrodegreeSouth (-10) , - unavailable (131072) -} (-131071..131072) - -/** - * It defines an offset altitude with regards to a referred altitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * - Positive values are used for providing altitude offset above the reference position. - * - For values equal or greater than _127,99 metres_, the value shall be _12 799_. - * - Negative values are used for providing altitude offset below the reference position. - * - When the information is unavailable, the value shall be set to _12 800_. - * - * The DE is used in @ref DeltaReferencePosition DF as defined in clause A.109. - * @unit: 0.1 metre - * @category: GeoReference information - */ -DeltaAltitude ::= INTEGER { - oneCentimeterUp (1), - oneCentimeterDown (-1), - unavailable (12800) -} (-12700..12800) - -/** - * This data field provides the horizontal position accuracy in a shape of ellipse with a predefined - * confidence level (e.g. 95 %). The centre of the ellipse shape corresponds to the reference - * position point for which the position accuracy is evaluated. - * - * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point - * and major axis point of the position accuracy ellipse. It shall be presented as specified - * in clause A.67, - * - * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point - * and minor axis point of the position accuracy ellipse. It shall be presented as specified - * in clause A.67, - * - * @field semiMajorOrientation: orientation direction of the ellipse major axis of the position accuracy - * ellipse with regards to the WGS84 north. It shall be presented as specified in clause A.35. - * - * The required confidence level of the position accuracy is defined by ITS message or ITS application applying this DF. - * - * The DF is used in @ref ReferencePosition DF as defined in clause A.124. - */ -PosConfidenceEllipse ::= SEQUENCE { - semiMajorConfidence SemiAxisLength, - semiMinorConfidence SemiAxisLength, - semiMajorOrientation HeadingValue -} +AltitudeValue ::= INTEGER { + referenceEllipsoidSurface(0), + oneCentimeter(1), + unavailable(800001) +} (-100000..800001) -/** - * The DF that defines a waypoint position within a path. - * - * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined - * reference position. It shall be presented as specified in clause A.109 +/** @brief Angle Confidence + * The absolute accuracy of an angle value for a predefined confidence level of 95 %. * - * @field pathDeltaTime: The travel time separated from a waypoint to the predefined reference position. - * It shall be presented as specified in clause A.47. - * This field is __OPTIONAL__. It shall be present if the information is available. + * The value shall be set to: + * zeroPointOneDegree (1), + * oneDegree (10), + * outOfRange (126), --< if the accuracy is out of range, i.e. greater than + * --< 12,5 degrees. A corresponding reported angle value shall be + * --< considered invalid and cannot be trusted. + * unavailable (127) --< if the accuracy information is not available + * @unit 0,1 degrees + * @category: Kinematics information +*/ +AngleConfidence ::= INTEGER { + zeroPointOneDegree (1), + oneDegree (10), + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. + * For correlation computation, maximum interval levels shall be assumed. * - * The DE is used in @ref PathHistory DF as defined in clause A.117. - * @category GeoReference information - */ -PathPoint ::= SEQUENCE { - pathPosition DeltaReferencePosition, - pathDeltaTime PathDeltaTime OPTIONAL + * The following values are specified: + * degSec-000-01 (0), --< if the accuracy is equal to or less than 0,01 degree/second + * degSec-000-05 (1), --< 1 if the accuracy is equal to or less than 0,05 degrees/second + * degSec-000-10 (2), --< if the accuracy is equal to or less than 0,1 degree/second + * degSec-001-00 (3), --< 3 if the accuracy is equal to or less than 1 degree/second + * degSec-005-00 (4), --< if the accuracy is equal to or less than 5 degrees/second + * degSec-010-00 (5), --< if the accuracy is equal to or less than 10 degrees/second + * degSec-100-00 (6), --< if the accuracy is equal to or less than 100 degrees/second + * outOfRange (7), --< if the accuracy is out of range, i.e. greater than 100 degrees/second + * unavailable (8) --< if the accuracy information is unavailable + * + * @category: Kinematics information +*/ +AngularSpeedConfidence ::= ENUMERATED { + degSec-000-01 (0), + degSec-000-05 (1), + degSec-000-10 (2), + degSec-001-00 (3), + degSec-005-00 (4), + degSec-010-00 (5), + degSec-100-00 (6), + outOfRange (7), + unavailable (8) } -/** - * This DE defines the recorded or estimated travel time separated between a position and a predefined - * reference position. It may be used to describe the historical path travelled by an ITS-S in mobility - * (e.g. vehicle ITS-S) as specified in ETSI EN 302 637 2 [i.2]. - * - * The DE is used in @ref EventPoint DF as defined in clause A.111 and @ref PathPoint DF as defined in clause A.118. - * @unit 0.01 second - * @category GeoReference information - */ -PathDeltaTime ::= INTEGER {tenMilliSecondsInPast(1)} (1..65535, ...) - -/** - * 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). - * - * @field ptActivationType: type of activation. It shall be presented as defined in clause A.60 +/** + * Tis DE represents the absolute accuracy of a reported angular acceleration value for a confidence level of 95%. + * For correlation computation, maximum interval levels shall be assumed. * - * @field ptActicationData: data of activation. It shall be presented as defined in clause A.59 - * - * 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) - * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, - * destination, priority, etc. - * - * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: - * - 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 + * The following values are specified: + * degSecSquared-000-01 (0), --< if the accuracy is equal to or less than 0,01 degree/second^2 + * degSecSquared-000-05 (1), --< 1 if the accuracy is equal to or less than 0,05 degrees/second^2 + * degSecSquared-000-10 (2), --< if the accuracy is equal to or less than 0,1 degree/second^2 + * degSecSquared-001-00 (3), --< 3 if the accuracy is equal to or less than 1 degree/second^2 + * degSecSquared-005-00 (4), --< if the accuracy is equal to or less than 5 degrees/second^2 + * degSecSquared-010-00 (5), --< if the accuracy is equal to or less than 10 degrees/second^2 + * degSecSquared-100-00 (6), --< if the accuracy is equal to or less than 100 degrees/second^2 + * outOfRange (7), --< if the accuracy is out of range, i.e. greater than 100 degrees/second^2 + * unavailable (8) --< if the accuracy information is unavailable * - * Other countries may use different message sets defined by the local administration. - * @category: Vehicle information - */ -PtActivation ::= SEQUENCE { - ptActivationType PtActivationType, - ptActivationData PtActivationData + * @category: Kinematics information +*/ +AngularAccelerationConfidence ::= ENUMERATED { + degSecSquared-000-01 (0), + degSecSquared-000-05 (1), + degSecSquared-000-10 (2), + degSecSquared-001-00 (3), + degSecSquared-005-00 (4), + degSecSquared-010-00 (5), + degSecSquared-100-00 (6), + outOfRange (7), + unavailable (8) } -/** - * This DE indicates a certain coding type of the PtActivationData data. - * - `0`: undefined coding type, - * - `1`: coding of PtActivationData conform to VDV recommendation 420 [i.8], - * - `2`: coding of PtActivationData based on VDV recommendation 420 [i.8]. - * - values 3 to 255 are reserved for alternative and future use. - * - * The DE is used in @ref PtActivation DF as defined in clause A.123. - * @category: Vehicle information - */ -PtActivationType ::= INTEGER {undefinedCodingType(0), r09-16CodingType(1), vdv-50149CodingType(2)} (0..255) - -/** - * The DE used for various tasks in the public transportation environment, especially for controlling traffic - * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). - * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation - * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the - * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to - * traffic congestion. Other usage of the DE is the provision of information like the public transport line number - * or the schedule delay of a public transport vehicle. - * - * The DE is used in @ref PtActivation DF as defined in clause A.123. - */ -PtActivationData ::= OCTET STRING (SIZE(1..20)) - -/** - * Current controlling mechanism for longitudinal movement of the vehicle. - * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle - * acceleration control system is engaged or not. Currently, this DE includes the information of the - * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise - * control system, cruise control system and speed limiter system. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `brakePedalEngaged` : Driver is stepping on the brake pedal, - * - 1 `gasPedalEngaged` : Driver is stepping on the gas pedal, - * - 2 `emergencyBrakeEngaged` : emergency brake system is engaged, - * - 3 `collisionWarningEngaged`: collision warning system is engaged, - * - 4 `accEngaged` : ACC is engaged, - * - 5 `cruiseControlEngaged` : cruise control is engaged, - * - 6 `speedLimiterEngaged` : speed limiter is engaged. - * - * Otherwise (for example when the corresponding system is not available due to non equipped system - * or information is unavailable), the corresponding bit shall be set to _0_. - * - * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. - * @category: Vehicle information - */ -AccelerationControl ::= BIT STRING { - brakePedalEngaged (0), - gasPedalEngaged (1), - emergencyBrakeEngaged (2), - collisionWarningEngaged (3), - accEngaged (4), - cruiseControlEngaged (5), - speedLimiterEngaged (6) -} (SIZE(7)) - -/** - * Absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a predefined - * confidence level (e.g. 95 %). The required confidence level is defined by the corresponding standards applying the DE. - * - * The value shall be set to: - * - `1` if the accuracy is equal to or less than 1 cm, - * - `n (n > 1 and n < 4 093)` if the accuracy is equal to or less than n cm, - * - `4 093` if the accuracy is equal to or less than 4 093 cm, - * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, - * - `4 095` if the accuracy information is unavailable. - * - * The DE is used in @ref PosConfidenceEllipse DF as defined in clause A.119. - * - * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' - * can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported position coordinate value may be valid and used by the application. - * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that - * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful - * for the application. - */ -SemiAxisLength ::= INTEGER{oneCentimeter(1), outOfRange(4094), unavailable(4095)} (0..4095) - -/** - * Encoded value of a traffic event type. +/** + * This DE represenst an angle value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. * - * @field causeCode: the type of a direct cause of a detected event. It shall be presented as defined in clause A.10 + * @unit 0,1 degrees + * @category: Kinematics information +*/ +CartesianAngleValue ::= INTEGER { + zeroPointOneDegree (1), + oneDegree (10), + unavailable (3601) +} (0..3601) + +/** + * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. * - * @field subCauseCode: sub type of the direct cause. It shall be presented as defined in clause A.81 + * @unit 0,01 degrees/s + * @category: Kinematics information +*/ +CartesianAngularSpeedValue ::= INTEGER { + noSpeed (0), + oneDegreePerSecondAntiClockwise (100), + oneDegreePerSecondClockwise (-100) +} (-32766..32767) + +/** + * This DE represents an angular acceleration value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. * - * The values of `causeCodeType` and `subCauseCode` are defined in clause 7.1.4 of ETSI EN 302 637-3 [i.3]. - * @category: Traffic information - */ -CauseCode ::= SEQUENCE { - causeCode CauseCodeType, - subCauseCode SubCauseCodeType, - ... -} + * @unit 0,01 degrees/s^2 (degrees per second squared) + * @category: Kinematics information +*/ +CartesianAngularAccelerationValue ::= INTEGER { + noAcceleration (0), + oneDegreePerSecondSquaredAntiClockwise (100), + oneDegreePerSecondSquaredClockwise (-100) +} (-32766..32767) /** - * Value of the direct cause code of a detected event as defined in ETSI EN 302 637 3 [i.3]. - * The value is assigned according to the clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + *The DE represents the value of the cause code of an event. * - * The cause codes are described as following: + * The following values are specified: * - 0 reserved for future use, * - 1 `trafficCondition` : the type of event is an abnormal traffic condition, * - 2 `accident` : the type of event is a road accident, @@ -524,6 +498,7 @@ CauseCodeType ::= INTEGER { adverseWeatherCondition-ExtremeWeatherCondition (17), adverseWeatherCondition-Visibility (18), adverseWeatherCondition-Precipitation (19), + violence (20), slowVehicle (26), dangerousEndOfQueue (27), vehicleBreakdown (91), @@ -538,248 +513,1593 @@ CauseCodeType ::= INTEGER { } (0..255) /** - * Type of sub cause of a detected event as defined in ETSI EN 302 637-3 [i.3]. + * This DF represents the value of a cartesian coordinate. + * + * @unit 0,01 m +*/ +CartesianCoordinate::= INTEGER (-32768..32767) +-- a range of +- 327.68 meters. 1cm unit + +/** + * This DE represents the ID of a CEN DSRC tolling zone. * - * For DENM usage, the value as given in clause 7.1.4 of ETSI EN 302 637-3 [i.3] apply. + * @category: Infrastructure information, Communication information + */ +CenDsrcTollingZoneID ::= ProtectedZoneID -- tbd to be deleted? + +/** + * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 * - * The DE is used in CauseCode DF as defined in clause A.104. + * @category: tbd + */ +ClusterCardinalitySize ::= INTEGER {unavailable(0), onlyLeader(1)} (0..255) --tbd make more generic? + +/** + * Identifier of a cluster. * - * @note 1: The sub cause code value assignment varies based on value of causeCode as defined in clause A.10. - * - * @note 2: Complete list of all possible sub cause code values as given in ETSI EN 302 637-3 [i.3] is provided - * in the present document for information. For example, see clause A.3 for sub cause code of accident event. - * - * @category: Traffic information + * @category: tbd */ -SubCauseCodeType ::= INTEGER (0..255) +ClusterId ::= INTEGER(0..255) /** - * Encoded value of the sub cause codes of the event type `trafficCondition` as defined in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE represents the value of the sub cause codes of the @ref CauseCode `collisionRisk`. * - * The sub causes are described as following: - * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, - * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, - * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, - * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, - * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, - * - 5 `trafficStationary` : in case traffic is stationary, - * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, - * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, - * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, - * - 9-255: reserved for future usage. + * The following values are specified: + * - 0 `unavailable` : in case information on the type of collision risk is unavailable, + * - 1 `longitudinalCollisionRisk`: in case the type of detected collision risk is longitudinal collision risk, + * e.g. forward collision or face to face collision, + * - 2 `crossingCollisionRisk` : in case the type of detected collision risk is crossing collision risk, + * - 3 `lateralCollisionRisk` : in case the type of detected collision risk is lateral collision risk, + * - 4 `vulnerableRoadUser` : in case the type of detected collision risk involves vulnerable road users + * e.g. pedestrians or bicycles, + * - 5-255 reserved for future usage. * * @category: Traffic information */ -TrafficConditionSubCauseCode ::= INTEGER { - unavailable(0), - increasedVolumeOfTraffic(1), - trafficJamSlowlyIncreasing(2), - trafficJamIncreasing(3), - trafficJamStronglyIncreasing(4), - trafficStationary(5), - trafficJamSlightlyDecreasing(6), - trafficJamDecreasing(7), - trafficJamStronglyDecreasing(8) -} (0..255) + /** - * Encoded value of the sub cause codes of the event type `accident` as defined in clause A.10 of ETSI TS 102 859-2. - * Sub event cause and value setting rule is defined according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE indicates the reason why a cluster leader intends to break up the cluster. + * + * The following values are specified: + * - notProvided (0), + * - clusteringPurposeCompleted (1), + * - leaderMovedOutOfClusterBoundingBox (2), + * - joiningAnotherCluster (3), + * - enteringLowRiskAreaBasedOnMaps (4), + * - receptionOfCpmContainingCluster (5), + * - max(15) * - * The sub causes are described as following: - * - 0 `unavailable` : in case the information on the sub cause of the accident is unavailable, - * - 1 `multiVehicleAccident` : in case more than two vehicles are involved in accident, - * - 2 `heavyAccident` : in case the airbag of the vehicle involved in the accident is triggered, - * the accident requires important rescue and/or recovery work, - * - 3 `accidentInvolvingLorry` : in case the accident involves a lorry, - * - 4 `accidentInvolvingBus` : in case the accident involves a bus, - * - 5 `accidentInvolvingHazardousMaterials`: in case the accident involves hazardous material, - * - 6 `accidentOnOppositeLane` : in case the accident happens on opposite lanes, - * - 7 `unsecuredAccident` : in case the accident is not secured, - * - 8 `assistanceRequested` : in case rescue and assistance are requested, - * - 9-255 reserved for future usage. - * @category: Traffic information */ -AccidentSubCauseCode ::= INTEGER { - unavailable(0), - multiVehicleAccident(1), - heavyAccident(2), - accidentInvolvingLorry(3), - accidentInvolvingBus(4), - accidentInvolvingHazardousMaterials(5), - accidentOnOppositeLane(6), - unsecuredAccident(7), - assistanceRequested(8) -} (0..255) +ClusterBreakupReason ::= ENUMERATED { + notProvided (0), + clusteringPurposeCompleted (1), + leaderMovedOutOfClusterBoundingBox (2), + joiningAnotherCluster (3), + enteringLowRiskAreaBasedOnMaps (4), + receptionOfCpmContainingCluster (5), + max(15) +} /** - * Encoded value of the sub cause codes of the event type `roadworks` as defined in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according to - * clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE indicates the reason why a cluster participant is leaving the cluster. * - * The sub causes are described as following: - * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, - * - 1 `majorRoadworks` : in case a major roadworks is ongoing, - * - 2 `roadMarkingWork` : in case a road marking work is ongoing, - * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, - * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, - * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, - * - 6 `winterService` : in case winter service work is ongoing, - * - 7-255 reserved for future usage. + * The following values are specified: + * - notProvided (0), + * - clusterLeaderLost (1), + * - clusterDisbandedByLeader (2), + * - outOfClusterBoundingBox (3), + * - outOfClusterSpeedRange (4), + * - joiningAnotherCluster (5), + * - cancelledJoin (6), + * - failedJoin (7), + * - safetyCondition (8), + * - max (15): The value 15 is set to "max" in order to bound the size of the encoded field + * + */ +ClusterLeaveReason ::= ENUMERATED { + notProvided (0), + clusterLeaderLost (1), + clusterDisbandedByLeader (2), + outOfClusterBoundingBox (3), + outOfClusterSpeedRange (4), + joiningAnotherCluster (5), + cancelledJoin (6), + failedJoin (7), + safetyCondition (8), + max(15) +} + +ClusterOpTimestamp::= INTEGER (1..255) --tbd what this is! + +/** + * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. + * + * The following values are specified: + * - 0 `unavailable` : in case information on the type of collision risk is unavailable, + * - 1 `longitudinalCollisionRisk`: in case the type of detected collision risk is longitudinal collision risk, + * e.g. forward collision or face to face collision, + * - 2 `crossingCollisionRisk` : in case the type of detected collision risk is crossing collision risk, + * - 3 `lateralCollisionRisk` : in case the type of detected collision risk is lateral collision risk, + * - 4 `vulnerableRoadUser` : in case the type of detected collision risk involves vulnerable road users + * e.g. pedestrians or bicycles, + * - 5-255 reserved for future usage. + * + * @category: Traffic information + */ +CollisionRiskSubCauseCode ::= INTEGER { + unavailable(0), + longitudinalCollisionRisk(1), + crossingCollisionRisk(2), + lateralCollisionRisk(3), + vulnerableRoadUser(4) +}(0..255) + +/** + * This DE represnents the absolute accuracy of measurement to a confidence level of 95%. + * @unit 0,01 m +*/ +CoordinateConfidence ::= INTEGER { + zeroPointZeroOneMeter (1), + oneMeter (100), + outOfRange (4094), -- shall be set if the accuracy is out of range + unavailable (4095) -- shall be set if the accuracy data is unavailable +} (0..4095) + +/** + * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. + * The values is scaled by 100. + * + * The following exemplary values are specified. + * full-negative-correlation (-100), --< Full negative correlation + * no-correlation (0), --< If not correlated or unavailable + * point-one (10), + * full-positive-correlation (100) --< Full positive correlation + * + * @category: Kinematics information +*/ +CorrelationRowValue ::= INTEGER { + full-negative-correlation (-100), + no-correlation (0), + point-one (10), + full-positive-correlation (100) +} (-100..100) + + +/** + * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. + * + * + * The following values are specified: + * - yawRateUsed: when the yaw rate is used + * - yawRateNotUsed: when the yaw rate is not ued + * - unavailable: when the information of curvature calculation mode is unknown. + * + * @category: Vehicle information + */ +CurvatureCalculationMode ::= ENUMERATED {yawRateUsed(0), yawRateNotUsed(1), unavailable(2), ...} + +/** + * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. + * * + * The following values are specified: + * - 0 if the accuracy is less than or equal to 0,00002 m-1 + * - 1 if the accuracy is less than or equal to 0,0001 m-1 + * - 2 if the accuracy is less than or equal to 0,0005 m-1 + * - 3 if the accuracy is less than or equal to 0,002 m-1 + * - 4 if the accuracy is less than or equal to 0,01 m-1 + * - 5 if the accuracy is less than or equal to 0,1 m-1 + * - 6 if the accuracy is out of range, i.e. greater than 0,1 m-1 + * - 7 if the information is not available + * + * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported curvature value may be valid and used by the application. + * If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid and therefore cannot be trusted. Such value is not useful for the application. + */ +CurvatureConfidence ::= ENUMERATED { + onePerMeter-0-00002 (0), + onePerMeter-0-0001 (1), + onePerMeter-0-0005 (2), + onePerMeter-0-002 (3), + onePerMeter-0-01 (4), + onePerMeter-0-1 (5), + outOfRange (6), + unavailable (7) +} + +/** + * This DE describes vehicle turning curve with the following information: + * + * Value = 1 / Radius * 10000 + * + * wherein radius is the vehicle turning curve radius. + * + * Positive values indicate a turning curve to the left hand side of the driver. + * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. + * + * The following exemplary values are explicitly defined: + * - The value shall be set to `0` when the vehicle is moving straight. + * - The value shall be set to `1023`, if the information is not available. + * - For calculated values smaller than `-1023`, the DE shall be set to `-1023`. + * - For calculated values bigger than `1022`, the DE shall be set to `1022`. + * + * + * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. + * + * @unit 1 over 10 000 metres + * @category: Vehicle information + */ +CurvatureValue ::= INTEGER {straight(0), unavailable(1023)} (-1023..1023) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. + * + * The following value are specified: + * - 0 `unavailable` : in case information on the type of dangerous queue is unavailable, + * - 1 `suddenEndOfQueue`: in case a sudden end of queue is detected, e.g. due to accident or obstacle, + * - 2 `queueOverHill` : in case the dangerous end of queue is detected on the road hill, + * - 3 `queueAroundBend` : in case the dangerous end of queue is detected around the road bend, + * - 4 `queueInTunnel` : in case queue is detected in tunnel, + * - 5-255 reserved for future usage. + * + * @category: Traffic information + */ +DangerousEndOfQueueSubCauseCode ::= INTEGER {unavailable(0), suddenEndOfQueue(1), queueOverHill(2), queueAroundBend(3), queueInTunnel(4)} (0..255) + +/** + * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. + * The value is assigned according to "_class_" and "_division_" definitions of dangerous goods as specified in part II, + * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. + * + * + * @category Vehicle information + */ +DangerousGoodsBasic::= ENUMERATED { + explosives1(0), + explosives2(1), + explosives3(2), + explosives4(3), + explosives5(4), + explosives6(5), + flammableGases(6), + nonFlammableGases(7), + toxicGases(8), + flammableLiquids(9), + flammableSolids(10), + substancesLiableToSpontaneousCombustion(11), + substancesEmittingFlammableGasesUponContactWithWater(12), + oxidizingSubstances(13), + organicPeroxides(14), + toxicSubstances(15), + infectiousSubstances(16), + radioactiveMaterial(17), + corrosiveSubstances(18), + miscellaneousDangerousSubstances(19) +} + +/** + * This DE represents the value of the sub cause codes of the @ ref CauseCode `dangerousSituation` + * + * The following values are specified: + * - 0 `unavailable`: in case information on the type of dangerous situation is unavailable, + * - 1 `emergencyElectronicBrakeEngaged`: in case emergency electronic brake is engaged, + * - 2 `preCrashSystemEngaged`: in case pre-crash system is engaged, + * - 3 `espEngaged`: in case Electronic Stability Program (ESP) system is engaged, + * - 4 `absEngaged`: in case Anti-lock braking system (ABS) is engaged, + * - 5 `aebEngaged`: in case Autonomous Emergency Braking (AEB) system is engaged, + * - 6 `brakeWarningEngaged`: in case brake warning is engaged, + * - 7 `collisionRiskWarningEngaged`: in case collision risk warning is engaged, + * - 8-255: reserved for future usage. + * + * @category: Traffic information + */ +DangerousSituationSubCauseCode ::= INTEGER { + unavailable(0), + emergencyElectronicBrakeEngaged(1), + preCrashSystemEngaged(2), + espEngaged(3), + absEngaged(4), + ebEngaged(5), + brakeWarningEngaged(6), + collisionRiskWarningEngaged(7) +} (0..255) + +/** + * This DE represents an offset altitude with regards to a defined altitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The followig values are specified: + * - Positive values are used for providing altitude offset above the reference position. + * - For values equal or greater than _127,99 metres_, the value shall be _12 799_. + * - Negative values are used for providing altitude offset below the reference position. + * - When the information is unavailable, the value shall be set to _12 800_. + * + * @unit: 0.1 metre + * @category: GeoReference information + */ +DeltaAltitude ::= INTEGER { + oneCentimeterUp (1), + oneCentimeterDown (-1), + unavailable (12800) +} (-12700..12800) + +/** + * This DE represents an offset latitude with regards to a defined latitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The followig values are specified: + * - Positive values are used for providing offset towards the north from the reference position. + * - Negative values are used for providing offset towards the south from the reference position. + * - When the information is unavailable, the value shall be set to _131072_. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + */ +DeltaLatitude ::= INTEGER { + oneMicrodegreeNorth (10), + oneMicrodegreeSouth (-10) , + unavailable (131072) +} (-131071..131072) + +/** + * This DE represents an offset longitude with regards to a defined longitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The followig values are specified: + * - Positive values are used for providing offset towards the east from the reference position. + * - Negative values are used for providing offset towards the west from the reference position. + * - When the information is unavailable, the value shall be set to _131072_. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + */ +DeltaLongitude ::= INTEGER { + oneMicrodegreeEast (10), + oneMicrodegreeWest (-10), + unavailable (131072) +} (-131071..131072) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit 1 ms +*/ +DeltaTimeMilliSecond ::= INTEGER { + oneMilliSecond (1) +} (-1500..1500) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit 0,01 s +*/ +DeltaTimeHundredthOfSecond::= INTEGER {tenMilliSeconds(1)} (1..65535, ...) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit 0,1 s +*/ +DeltaTimeTenthOfSecond::= INTEGER {zero(0), hundredMs(1), twoHundredMs(2), unavailable (127) } (0..127) -- tbd which range? + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit 1 s +*/ +DeltaTimeSecond ::= INTEGER { -- tbd + + timeOfDetection(0), + oneSecondAfterDetection(1) +} (0..86400) + +/** + * This DE indicates in which direction something is moving. + * + * The following values are specified: + * - forward: it is moving forward + * - backwards: it is moving backwards + * - unavailable : the information is unavailable + * + * @category: Kinematics information + */ +DriveDirection ::= ENUMERATED {forward (0), backward (1), unavailable (2)} + +/** + * This DE indicates whether a driving lane is open to traffic. + * + * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall + * correspond to the total number of the driving lanes in the carriageway. + * + * The numbering is matched to @ref LanePosition. + * The bit 0 is used to indicate the innermostLane, bit 1 is used to indicate the second lane from inside border. + * + * If a lane is closed to traffic, the corresponding bit shall be set to 1. Otherwise, it shall be set to 0. + * + * @note: Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus as defined in clause A.29. + * + * @category: Traffic information + */ +DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) + +/** + * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. + * If it is the case, the value shall be set to TRUE, otherwise to FALSE + * + * @category: Vehicle information + */ +EmbarkationStatus ::= BOOLEAN + +/** + * This DE indicates the right of priority requested by an operating emergency vehicle. + * The right-of-priority bit shall be set to 1 if the corresponding right is requested. + * + * @category: Traffic information + */ +EmergencyPriority ::= BIT STRING { + requestForRightOfWay(0), + requestForFreeCrossingAtATrafficLight(1) +} (SIZE(2)) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on the emergency vehicle approaching event + * is unavailable, + * - 1 `emergencyVehicleApproaching` : in case an operating emergency vehicle is approaching, + * - 2 `prioritizedVehicleApproaching`: in case a prioritized vehicle (e.g. bus) is approaching, + * - value 3-255 reserved for future usage. + * + * @category: Traffic information + */ +EmergencyVehicleApproachingSubCauseCode ::= INTEGER { + unavailable(0), + emergencyVehicleApproaching(1), + prioritizedVehicleApproaching(2) +} (0..255) + +/** + * This DE indicated the type of energy being used and stored in vehicle. + * - If a storage type is used by the vehicle, the corresponding bit shall be set to `1`. + * - Otherwise, the corresponding bit shall be set to `0`. + * + * @category: Vehicle information + */ +EnergyStorageType ::= BIT STRING { + hydrogenStorage(0), + electricEnergyStorage(1), + liquidPropaneGas(2), + compressedNaturalGas(3), + diesel(4), + gasoline(5), + ammonia(6)} +(SIZE(7)) + +/** + * This DE describes the status of the exterior light switches of a vehicle. + * + * The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, + * either manually by the driver or automatically by a vehicle system. The bit value does not indicate + * if the corresponding lamps are alight or not. + * + * If a vehicle is not equipped with a certain light or if the light switch status information is not available, + * the corresponding bit shall be set to `0`. + * + * The `fogLightOn` only indicates the status of the tail fog lamp switch. + * + * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not + * alternate with the blinking interval. + * + * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. + * + * @category Vehicle information + */ +ExteriorLights ::= BIT STRING { + lowBeamHeadlightsOn (0), + highBeamHeadlightsOn (1), + leftTurnSignalOn (2), + rightTurnSignalOn (3), + daytimeRunningLightsOn (4), + reverseLightOn (5), + fogLightOn (6), + parkingLightsOn (7) +} (SIZE(8)) + +/** + * This DE represents the confidence of the information indicating that an area is not occupied by a traffic participant or obstacle. + * + * the following values are specified: + * - unknown (0), -- if the free space confidence is unknown for the described area + * - onePercent (1), + * - OneHundredPercent (100), + * - unavailable (101) -- if the confidence could not be computed and does not apply. + * + * @category tbd +*/ +FreeSpaceConfidence ::= INTEGER { + unknown (0), -- if the free space confidence is unknown for the described area + onePercent (1), + oneHundredPercent (100), + unavailable (101) -- if the confidence could not be computed and does not apply. +} (0..101) + + +/** + * This DE represents a timestamp based on TimestampIts modulo 65 536. + * This means that generationDeltaTime = TimestampIts mod 65 536. + * + * @category Time information +*/ +GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) + +/** + * This DE indicates the current status of a hard shoulder: whether it is available for special usage + * (e.g. for stopping or for driving) or closed for all vehicles. + * + * The following values are specified: + * - availableForStopping(0): if the hard shoulder is available for stopping in emergency situations. + * - closed(1): if the hard shoulder is closed and cannot / shall not be occupied in any case. + * - availableForDriving(2): if the hard shoulder is available for regular driving. +* + * + * @category: Traffic information + */ +HardShoulderStatus ::= ENUMERATED { + availableForStopping(0), + closed(1), + availableForDriving(2)} + +/** + * This DE represents the value of the sub cause code of the @CauseCode `hazardousLocation-AnimalOnTheRoad`. + * + * The following values are specified: + * - 0 `unavailable` : in case further detailed information on the animal on the road event is unavailable, + * - 1 `wildAnimals` : in case wild animals are detected on the road, + * - 2 `herdOfAnimals`: in case herd of animals are detected on the road, + * - 3 `smallAnimals` : in case small size animal is detected on the road, + * - 4 `largeAnimals` : in case large size animal is detected on the road, + * - 5-255 reserved for future usage. + * + * @category: Traffic information + */ +HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { + unavailable(0), + wildAnimals(1), + herdOfAnimals(2), + smallAnimals(3), + largeAnimals(4)} (0..255) + +/** + * This DE represents the sub cause code of the @CauseCode `hazardousLocation-DangerousCurve`. + * + * The following values are specified: + * - 0 `unavailable` : in case further detailed information on the dangerous curve is unavailable, + * - 1 `dangerousLeftTurnCurve` : in case the dangerous curve is a left turn curve, + * - 2 `dangerousRightTurnCurve` : in case the dangerous curve is a right turn curve, + * - 3 `multipleCurvesStartingWithUnknownTurningDirection`: in case of multiple curves for which the starting curve turning direction is not known, + * - 4 `multipleCurvesStartingWithLeftTurn`: in case of multiple curves starting with a left turn curve, + * - 5 `multipleCurvesStartingWithRightTurn`: in case of multiple curves stating with a right turn curve, + * - value 6-255 reserved for future usage. + * + * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass + * and vehicle speed driving on the curve. This definition is out of scope of the present document. + * + * @category: Traffic information + */ +HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { + unavailable(0), + dangerousLeftTurnCurve(1), + dangerousRightTurnCurve(2), + multipleCurvesStartingWithUnknownTurningDirection(3), + multipleCurvesStartingWithLeftTurn(4), + multipleCurvesStartingWithRightTurn(5) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. + * + * The following values are specified: + * - 0 `unavailable` : in case further detailed information on the detected obstacle is unavailable, + * - 1 `shedLoad` : in case detected obstacle is large amount of obstacles (shedload), + * - 2 `partsOfVehicles`: in case detected obstacles are parts of vehicles, + * - 3 `partsOfTyres` : in case the detected obstacles are parts of tyres, + * - 4 `bigObjects` : in case the detected obstacles are big objects, + * - 5 `fallenTrees` : in case the detected obstacles are fallen trees, + * - 6 `hubCaps` : in case the detected obstacles are hub caps, + * - 7 `waitingVehicles`: in case the detected obstacles are waiting vehicles, + * - 8-255 reserved for future usage. + * + * @category: Traffic information + */ +HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { + unavailable(0), + shedLoad(1), + partsOfVehicles(2), + partsOfTyres(3), + bigObjects(4), + fallenTrees(5), + hubCaps(6), + waitingVehicles(7) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. + * + * The sub causes are described as following: + * - 0 `unavailable` : in case further detailed information on the road surface condition is unavailable, + * - 1 `rockfalls` : in case rock falls are detected on the road surface, + * - 2 `earthquakeDamage`: in case the road surface is damaged by earthquake, + * - 3 `sewerCollapse` : in case of sewer collapse on the road surface, + * - 4 `subsidence` : in case road surface is damaged by subsidence, + * - 5 `snowDrifts` : in case road surface is damaged due to snow drift, + * - 6 `stormDamage` : in case road surface is damaged by strong storm, + * - 7 `burstPipe` : in case road surface is damaged due to pipe burst, + * - 8 `volcanoEruption` : in case road surface is damaged due to volcano eruption, + * - 9 `fallingIce` : in case road surface damage is due to falling ice, + * - 10-255 reserved for future usage. + * + * @category: Traffic information + */ +HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { + unavailable(0), + rockfalls(1), + earthquakeDamage(2), + sewerCollapse(3), + subsidence(4), + snowDrifts(5), + stormDamage(6), + burstPipe(7), + volcanoEruption(8), + fallingIce(9), + fire(10) +} (0..255) + +/** + * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle + * rear to front). For values equal to or greater than 99 cm, the DE shall be set to 99. + * If the value is unavailable, the DE shall be set to 100. + * + * @unit 1 centimeter + * @category Vehicle information + */ +HeightLonCarr ::= INTEGER { + oneCentimeter(1), + unavailable(100) +} (1..100) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. + * + * The following values are specified: + * - 0 `unavailable` : in case further detailed information on human presence on the road is unavailable, + * - 1 `childrenOnRoadway` : in case children are detected on the road event, + * - 2 `cyclistOnRoadway` : in case cyclist presence is detected on the road, + * - 3 `motorcyclistOnRoadway`: in case motorcyclist presence is detected on the road, + * - 4-255 reserved for future usage. + * + * @category: Traffic information + */ +HumanPresenceOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), childrenOnRoadway(1), cyclistOnRoadway(2), motorcyclistOnRoadway(3)} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". + * + * The following values are specified: + * - 0 `unavailable` : in case further detailed information on human health problem is unavailable, + * - 1 `glycemiaProblem`: in case human problem is due to glycaemia problem, + * - 2 `heartProblem` : in case human problem is due to heart problem, + * - 3-255 reserved for future usage. + * + * @category: Traffic information + */ +HumanProblemSubCauseCode ::= INTEGER { + unavailable(0), + glycemiaProblem(1), + heartProblem(2) +} (0..255) + +/** + * This DE is a general identifier. + * + * @category: tbd +*/ +Identifier ::= INTEGER (0..255) + +/** + * This DE represents the quality level of provided information. + * + * + * @category: Other information + * @note: Definition of quality level is out of scope of the present document. + */ +InformationQuality ::= INTEGER { + unavailable(0), + lowest(1), + highest(7) +} (0..7) + +/** + * This DE defines the type of an interference management zone, so that an ITS-S can + * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * + * The value are specified as following: + * - permanentCenDsrcTolling(0), --!< as specified in ETSI TS 102 792 + * - temporaryCenDsrcTolling(1), --!< as specified in ETSI TS 102 792 + * - unavailable(2), --!< default value. Set to 2 for backwards compatibility with DSRC tolling + * - urbanRail(3), --!< as specified in ETSI TS 103 724, clause 7 + * - satelliteStation(4), --!< as specified in ETSI TS 103 724, clause 7 + * - fixedLinks(5), --!< as specified in ETSI TS 103 724, clause 7 + * + * @category: Communication information + */ +InterferenceManagementZoneType ::= ENUMERATED { + permanentCenDsrcTolling(0), --!< as specified in ETSI TS 102 792 + temporaryCenDsrcTolling(1), --!< as specified in ETSI TS 102 792 + unavailable(2), --!< default value. Set to 2 for backwards compatibility with DSRC tolling + urbanRail(3), --!< as specified in ETSI TS 103 724, clause 7 + satelliteStation(4), --!< as specified in ETSI TS 103 724, clause 7 + fixedLinks(5), --!< as specified in ETSI TS 103 724, clause 7 + ... +} + +/** + * This DE represents the identifier of an intersection + * + * @category: Communication information + */ +IntersectionID ::= INTEGER (0..65535) + +/** + * This DE indicates the transversal position information on the road in resolution of lanes, counted from + * the inside border of the road for a given traffic direction. For example, the innermostDrivingLane corresponds + * to the left most lane of the carriageway in a country with right-land traffic, and to the right most lane of the + * carriageway in a left-land traffic (e.g. in UK). The value -1 denotes that the referenced position is outside the road. + * + * @category: Road topology information +*/ +LanePosition ::= INTEGER { + offTheRoad(-1), + innerHardShoulder(0), + innermostDrivingLane(1), + secondLaneFromInside(2), + outerHardShoulder(14) +} (-1..14) + +/** + *Thios DE represents the identifier of a lane. + * + * @note: the context of the identification (e.g. the intersection geometry of a MAPEM) is defined outside the DE + * + * @category: Road topology information +*/ +LaneId ::= INTEGER (0..255) + +/** + * This DE represents the type of a lane. The following values are specified: + * + * - 0 traffic: Lane dedicated to the movement of vehicles. + * - 1 through: Lane dedicated to the movement of vehicles travelling ahead and not turning. + * - 2 reversible: Lane where the direction of traffic can be changed to match the peak flow. + * - 3 acceleration: Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. + * - 4 deceleration: Lane that allows vehicles exiting a road to decelerate before leaving it. + * - 5 leftHandTurning: Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. + * - 6 rightHandTurning: Lane reserved for slowing down and making a right turn so as not to disrupt traffic. + * - 7 dedicatedVehicle: Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. + * - 8 bus: Lane: dedicated to movement of buses providing public transportation. + * - 9 taxi: Lane dedicated to movement of taxis. + * - 10 hov: Carpooling lane or high occupancy vehicle lane. + * - 11 hot: High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. + * - 12 pedestrian: Lanes dedicated to pedestrians such as pedestrian sidewalk paths. + * - 13 bikeLane: Lane dedicated to exclusive or preferred use by bicycles. + * - 14 median: Lane not dedicated to movement of vehicles but representing medians and channelization such as the central median separating the two directional carriageways of the highway. + * - 15 striping: Lane not dedicated to movement of vehicles but covered with roadway markings. + * - 16 trackedVehicle: Lane dedicated to movement of trains and trolleys. + * - 17 parking: Lanes dedicated to vehicles parking, stopping and loading lanes. + * - 18 emergency: Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. + * - 19 verge: Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between the road surface edge and the boundary of a road. + * - 20 minimumRiskManoeuvre: Lane dedicated to automated vehicles making a minimum risk manoeuvre. + * - values 21 to 30: reserved for future use + * + * @category: Road topology information +*/ +LaneType::= INTEGER{ + traffic (0), + through (1), + reversible (2), + acceleration (3), + deceleration (4), + leftHandTurning (5), + rightHandTurning (6), + dedicatedVehicle (7), + bus (8), + taxi (9), + hov (10), + hot (11), + pedestrian (12), + bikeLane (13), + median (14), + striping (15), + trackedVehicle (16), + parking (17), + emergency (18), + verge (19), + minimumRiskManoeuvre(20), + unknown (31) +}(0..31) + +/** + * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or + * in south hemisphere. + * + * - Positive values are used for latitude in north of the Equator, + * - Negative values are used for latitude in south of the Equator. + * - When the information is unavailable, the value shall be set to _900 000 001_. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + */ +Latitude ::= INTEGER { + oneMicrodegreeNorth (10), + oneMicrodegreeSouth (-10), + unavailable(900000001) +} (-900000000..900000001) + +/** + * This DE represenst the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * - Negative value indicates that the vehicle is accelerating towards the right side with regards to the vehicle orientation. + * - For values equal to or greater than 16 m/s2 towards the right, the value shall be set to -160. + * - Positive values indicate the acceleration to the left hand side with regards to the vehicle orientation. + * - For values equal to or greater than 16 m/s2 towards the left, the value shall be set to 160. + * - When the information is not available, the value shall be set to 161. + * + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit: 0.1 m/s2 + * @category Vehicle information + */ +LateralAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredToRight(-1), pointOneMeterPerSecSquaredToLeft(1), unavailable(161)} (-160 .. 161) + +/** + * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. + * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. + * When the light bar or audible alarm is active, the corresponding bits shall be set to 1. + * Otherwise, it shall be set to 0. + * + * @category Vehicle information + */ +LightBarSirenInUse ::= BIT STRING { + lightBarActivated (0), + sirenActivated (1) +} (SIZE(2)) + +/** + * This DE represents the absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees + * to the east or to the west of the prime meridian. + * + * - Negative values are used for longitudes to the west, + * - Positive values are used for longitudes to the east. + * - When the information is unavailable, the value shall be set to _1 800 000 001_. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + */ +Longitude ::= INTEGER { + oneMicrodegreeEast (10), + oneMicrodegreeWest (-10), + unavailable(1800000001) +} (-1800000000..1800000001) + + /** + * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The following values are specified: + * - Negative values indicate that the vehicle is braking. + * - For values equal to or greater than 16 m/s2, the value shall be set to -160. + * - Positive values indicate that the vehicle is accelerating. + * - For acceleration equal to or greater than 16 m/s2 the value shall be set to 160. + * - When the data is unavailable, the value shall be set to 161. + * + * This acceleration is along the tangent plane of the road surface and does not include gravity components. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @category: Vehicle information + */ +LongitudinalAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredForward(1), pointOneMeterPerSecSquaredBackward(-1), unavailable(161)} (-160 .. 161) + +/** + * This DE represents the longitudinal offset of the map-matched position of a particular object along the + * matched lane, beginning from the lane’s starting point as defined in CEN ISO/TS 19091 + * + * @unit 0,1 m + * @category: Road topology information +*/ +LongitudinalLanePositionValue ::= INTEGER { + zeroPointOneMeter (1) +} (0..32767) + +/** + * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. + * + * The following values are specified: + * - zeroPointZeroOneMeter (1): examplary value of 0,01 meter + * - oneMeter (100): examplary value of 1 meter + * - outOfRange (101): if the accuracy is out of range + * - unavailable (102): if the accuracy data is unavailable + * + * @unit 0,01 m + * @category: Road topology information +*/ +LongitudinalLanePositionConfidence ::= INTEGER { + zeroPointZeroOneMeter (1), + oneMeter (100), + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * This DE represents the type of facility layer message. + * + * The following values are specified: + * - 1 `denm`: Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], + * - 2 `cam`: Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], + * - 3 `poi`: Point of Interest message as specified in ETSI TS 101 556-1 [i.11], + * - 4 `spatem`: Signal Phase And Timing (SPAT) message as specified in SAE J2735 [i.12] and in ETSI TS 103 301 [i.17], + * - 5 `mapem`: MAP message as specified in SAE J2735 [i.12] and in ETSI TS 103 301 [i.17], + * - 6 `ivim`: In Vehicle Information (IVI) message as defined in ISO TS 19321 [i.13], + * - 7 `ev-rsr`: Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], + * - 8 `tistpgtransaction`: messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 i.15, + * - 9 `srem`: Traffic light Signal Request Message as specified in ETSI TS 103 301 [i.17], + * - 10 `ssem`: Traffic Light Signal Request Status Message as specified in ETSI TS 103 301 [i.17]. + * - 11 `evcsn`: Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], + * - 12 `saem`: Services Announcement Extended Message as specified in ETSI TS 102 890-1 i.19, + * - 13 `rtcmem`: Radio Technical Commission for Maritime Services (RTCM) Message as specified in ETSI TS 103 301 [i.17], + * - 14 `vam` : Vulnerable Road User Awareness Message as specified in ETS TS 130 300-3 + * - 14-255: reserved for future usage, + * + * @category: Communication information + * Revision: Created in V2.1.1 + */ +MessageId::= INTEGER { + denm(1), + cam(2), + poi(3), + spatem(4), + mapem(5), + ivim(6), + ev-rsr(7), + tistpgtransaction(8), + srem(9), + ssem(10), + evcsn(11), + saem(12), + rtcmem(13), + vam(14) +} (0..255) + +/** + * This DE represents the number of occupants in a vehicle. + * + * The following values are specified: + * - For values equal to or higher than 126, the value shall be set to `126`. + * - If the information is not available, the value shall be set to `127`. + * + * @unit: 1 person + * @category: Vehicle information + */ +NumberOfOccupants ::= INTEGER {oneOccupant (1), unavailable(127)} (0 .. 127) + +/** + * This DE represents the confidence value for the type of a detected object. + * + * The following values are specified: + * + * - unknown (0), --< in case the confidence value is unknown but the reported + * - --< classification is still valid. + * - onePercent (1), + * - oneHundredPercent (100), + * - unavailable (101) --< In case the class confidence value computation is not available + * --< for this object. Indicates that the class assignment is invalid. + * @unit Percent + * @category: Sensing information +*/ +ObjectClassConfidence ::= INTEGER { + unknown (0), + onePercent (1), + oneHundredPercent (100), + unavailable (101) +} (0..101) + +/** + * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. + * + * The following values are specified: + * + * - noConfidence (0), --< No confidence in detected object, e.g. for "ghost"-objects or + * - --< if confidence could not be computed + * - fullConfidence (15) --< Full confidence in detected ObjectDescriptor + * - + * @unit n/a + * @category: Sensing information +*/ +ObjectConfidence ::= INTEGER { + noConfidence (0), + fullConfidence (15) +} (0..15) + +/** + * This DE represents a single dimension of an object. + * + * @unit 0,1 m + * @category: Sensing information +*/ +ObjectDimensionValue ::= INTEGER { + zeroPointOneMeter (1), + oneMeter (10) +} (0..1023) + +/** + * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. + * + * @unit 0,01 m + * @category: Sensing information +*/ +ObjectDimensionConfidence ::= INTEGER { + zeroPointZeroOneMeter (1), + oneMeter (100), + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * The DE indicates whether the detected object is classified as a dynamic (i.e. moving) object. + * This value indicates whether an object has the general capability to move, i.e. change its + * position. + * + * The following values are specified: + * - dynamic (0), --< the object is moving + * - hasBeenDynamic (1), --< indicates whether an object has been dynamic before, e.g., a car + * - --< stopping at a traffic light + * - static (2) --< shall be used in case an object is identified to be not moving + * - --< throughout any previous observation + * + * @unit n/a + * @category: Sensing information +*/ +ObjectDynamicStatus ::= INTEGER { -- t.b.d add unavailable + dynamic (0), + hasBeenDynamic (1), + static (2) +} (0..2) + +/** + * This DE indicate the approximate position of the reference point of measurement for the object dimensions. + * The point is included in the plane perpendicular to the direction of the object´s @ref yawAngleValue. + * + * @unit n/a + * @category: Sensing information +*/ +ObjectRefPoint ::= INTEGER { + mid (0), + bottomLeft (1), + midLeft (2), + topLeft (3), + bottomMid (4), + topMid (5), + bottomRight (6), + midRight (7), + topRight (8) +} (0..8) + +/** + * This DE represents positions with lane-level accuracy which are not on regular traffic lanes. + * + * The following values are specified: + * - unavailable(0): in case information on the lane position is unavailable, + * - sidewalk (1), + * - parkingLane (2), an area at the side of the road not intended for travel but for vehicular parking, + * - bikeLane (3), an area reserved for bicycles, + * - value 4-15: reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. + * + * @unit n/a + * @category: Road topology information + +*/ +OffRoadLanePosition ::= ENUMERATED { + unavailable(0), + sidewalk(1), + parkingLane(2), + bikeLane(3), + max(15) +} + +/** + * This DE represents a time period to describe the opening days and hours of a Point of Interest + * (for example local commerce). * - * @category: Traffic information + * @category: Time information + */ +OpeningDaysHours ::= UTF8String + +/** + * This DE indicates the subclass of a detected object for object class "otherSubclass". + * + * The following values are specified: + * - unknown(0): the subclasss is unknown. + * - roadSideUnit (1): the object is a roadside unit. + * + * @category: Sensing information + * Revision: Created in V2.1.1 + */ +OtherSubclass ::= INTEGER { + unknown (0), + roadSideUnit (1) +} (0..255) + +/** + * This DE represents the recorded or estimated travel time between a position and a predefined reference position. + * + * @unit 0.01 second + * @category GeoReference information */ -RoadworksSubCauseCode ::= INTEGER {unavailable(0), majorRoadworks(1), roadMarkingWork(2), slowMovingRoadMaintenance(3), shortTermStationaryRoadworks(4), streetCleaning(5), winterService(6)} (0..255) +PathDeltaTime ::= DeltaTimeHundredthOfSecond /** - * Encoded value of the sub cause codes of the event type `humanPresenceOnTheRoad` as defined in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according to - * clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE denotes the ability of an ITS-S to provide up-to-date information. + * A performance class value is used to describe age of data. The exact values are out of scope of the present document. * - * The sub causes are described as following: - * - 0 `unavailable` : in case further detailed information on human presence on the road is unavailable, - * - 1 `childrenOnRoadway` : in case children are detected on the road event, - * - 2 `cyclistOnRoadway` : in case cyclist presence is detected on the road, - * - 3 `motorcyclistOnRoadway`: in case motorcyclist presence is detected on the road, - * - 4-255 reserved for future usage. + * As defined in ETSI TS 101 539-1 [i.6], performance class A shall be set to `1`, performance class B shall be set to 2. + * When the performance class is unknown, it shall be set to `0`. + * + * Values in the range `3 to 7` are reserved for future use. * - * @category: Traffic information + * @category: Vehicle information */ -HumanPresenceOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), childrenOnRoadway(1), cyclistOnRoadway(2), motorcyclistOnRoadway(3)} (0..255) +PerformanceClass ::= INTEGER { --tbd semantics + unavailable(0), + performanceClassA(1), + performanceClassB(2)} (0..7) /** - * Encoded value of the sub cause codes of the event type `wrongWayDriving` as defined in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE represents a telephone number * - * The sub causes are described as following: - * - 0 `unavailable`: in case further detailed information on wrong way driving event is unavailable, - * - 1 `wrongLane`: in case vehicle is driving on a lane for which it has no authorization to use, - * - 2 `wrongDirection`: in case vehicle is driving in a direction that it is not allowed, - * - 3-255 reserved for future usage. + * @category: Other information + */ +PhoneNumber ::= NumericString (SIZE(1..16)) + +/** + * This DE indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of + * the vehicle bounding box of the empty load vehicle. + * + * The following values are specified: + * - The DE is set to any aplicable value between 0,1 meter and 6,2 meters. + * - For values equal to or higher than 6.2 metres, the data value be set to `62`. + * - The value shall be set to `63` if the information is unavailable. * - * @category: Traffic information + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit 0,1 metre + * @category Vehicle information */ -WrongWayDrivingSubCauseCode ::= INTEGER {unavailable(0), wrongLane(1), wrongDirection(2)} (0..255) +PosCentMass ::= INTEGER { + tenCentimeters(1), + unavailable(63) +} (1..63) /** - * Encoded value of the sub cause codes of the event type `adverseWeatherCondition-ExtremeWeatherCondition` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE indicates the positioning technology being used to estimate a geographical position. * - * The sub causes are described as following: - * - 0 `unavailable` : in case information on the type of extreme weather condition is unavailable - * - 1 `strongWinds` : in case the type of extreme weather condition is strong wind - * - 2 `damagingHail`: in case the type of extreme weather condition is damaging hail - * - 3 `hurricane` : in case the type of extreme weather condition is hurricane - * - 4 `thunderstorm`: in case the type of extreme weather condition is thunderstorm - * - 5 `tornado` : in case the type of extreme weather condition is tornado - * - 6 `blizzard` : in case the type of extreme weather condition is blizzard - * - 7-255 reserved for future usage + * The followin values are specified: + * - o `noPositioningSolution`: no positioning solution used, + * - 1 `sGNSS`: Global Navigation Satellite System used, + * - 2 `dGNSS`: Differential GNSS used, + * - 3 `sGNSSplusDR`: GNSS and dead reckoning used, + * - 4 `dGNSSplusDR`: Differential GNSS and dead reckoning used, + * - 5 `dR`: dead reckoning used. + * + * @category: GeoReference information + */ +PositioningSolutionType ::= ENUMERATED { + noPositioningSolution(0), + sGNSS(1), dGNSS(2), + sGNSSplusDR(3), + dGNSSplusDR(4), + dR(5), ...} + +/** + * This DE indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. + * + * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear + * of the vehicle. + * The left side seat of a row refers to the left hand side seen from vehicle rear to front. + * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, + * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. + * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, + * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. + * + * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. + * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. + * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. + * Otherwise, the value of seat occupation bit shall be set according to the following conditions: + * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. + * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row + * shall be set to `1`. + * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. + * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row + * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. + * + * @category: Vehicle information + */ +PositionOfOccupants ::= BIT STRING { + row1LeftOccupied (0), + row1RightOccupied (1), + row1MidOccupied (2), + row1NotDetectable (3), + row1NotPresent (4), + row2LeftOccupied (5), + row2RightOccupied (6), + row2MidOccupied (7), + row2NotDetectable (8), + row2NotPresent (9), + row3LeftOccupied (10), + row3RightOccupied (11), + row3MidOccupied (12), + row3NotDetectable (13), + row3NotPresent (14), + row4LeftOccupied (15), + row4RightOccupied (16), + row4MidOccupied (17), + row4NotDetectable (18), + row4NotPresent (19)} (SIZE(20)) + +/** + * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. + * + * The following values are specified: + * - The DE is set to any aplicable value between 0,1 meter and 1,9 meters. + * - For values equal to or higher than 1.9 metres, the DE shall be set to `19`. + * - The value shall bet set to `20` if the information is unavailable. + * + * @category: Vehicle information + * @unit 0.1 metre + */ +PosFrontAx ::= INTEGER {tenCentimeters(1), unavailable(20)} (1..20) + +/** + * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. + * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. + * + * The following values are specified: + * - The DE is set to any aplicable value between 0,01 meter and 1,26 meters. + * - For values equal to or higher than 1.26 metres, the value shall be set to `126`. + * - If the information is unavailable, the value shall be set to `127`. + * + * @unit 0,01 metre + * @category Vehicle information + */ +PosLonCarr ::= INTEGER {oneCentimeter(1), unavailable(127)} (1..127) + +/** + * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the + * middle point of the front line of the vehicle bounding box. + * + * The following values are specified: + * - The DE is set to any aplicable value between 0,1 meter and 2,9 meters. + * - For values equal to or greater than 2.9 metres, the value shall be set to `29`. + * - The value shall be set to `30` if the information is unavailable. + * + * @unit 0,1 metre + * @category Vehicle information + */ +PosPillar ::= INTEGER {tenCentimeters(1), unavailable(30)} (1..30) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . + * +* The following values are specified: + * - 0 `unavailable`: in case further detailed information on post crash event is unavailable, + * - 1 `accidentWithoutECallTriggered`: in case no eCall has been triggered for an accident, + * - 2 `accidentWithECallManuallyTriggered`: in case eCall has been manually triggered and transmitted to eCall back end, + * - 3 `accidentWithECallAutomaticallyTriggered`: in case eCall has been automatically triggered and transmitted to eCall back end, + * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork`: in case eCall has been triggered but cellular network is not accessible from triggering vehicle, + * - 5-255: reserved for future usage. * * @category: Traffic information */ -AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { - unavailable(0), - strongWinds(1), - damagingHail(2), - hurricane(3), - thunderstorm(4), - tornado(5), - blizzard(6) +PostCrashSubCauseCode ::= INTEGER { + unavailable(0), + accidentWithoutECallTriggered (1), + accidentWithECallManuallyTriggered (2), + accidentWithECallAutomaticallyTriggered (3), + accidentWithECallTriggeredWithoutAccessToCellularNetwork(4) } (0..255) /** - * Encoded value of the sub cause codes of the event type `adverseWeatherCondition-Adhesion` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE represenst the indentifier of a protected communication zone. * - * The sub causes are described as following: - * - 0 `unavailable` : in case information on the cause of the low road adhesion is unavailable - * - 1 `heavyFrostOnRoad`: in case the low road adhesion is due to heavy frost on the road - * - 2 `fuelOnRoad` : in case the low road adhesion is due to fuel on the road - * - 3 `mudOnRoad` : in case the low road adhesion is due to mud on the road - * - 4 `snowOnRoad` : in case the low road adhesion is due to snow on the road - * - 5 `iceOnRoad` : in case the low road adhesion is due to ice on the road - * - 6 `blackIceOnRoad` : in case the low road adhesion is due to black ice on the road - * - 7 `oilOnRoad` : in case the low road adhesion is due to oil on the road - * - 8 `looseChippings` : in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard - * - 9 `instantBlackIce` : in case the low road adhesion is due to instant black ice on the road surface - * - 10 `roadsSalted` : when the low road adhesion is due to salted road - * - 11-255 reserved for future usage + * + * @category: Infrastructure information, Communication information + */ +ProtectedZoneID ::= INTEGER (0.. 134217727) + +/** + * This DE represenst the radius of a protected communication zone. + * + * + * @unit: metre + * @category: Infrastructure information, Communication information + */ +ProtectedZoneRadius ::= INTEGER {oneMeter(1)} (1..255,...) + +/** + * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do + * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * + * The protected zone type is defined in ETSI TS 102 792 [i.16]. + * + * + * @category: Communication information + */ +ProtectedZoneType::= ENUMERATED { + permanentCenDsrcTolling (0), + ..., + temporaryCenDsrcTolling (1) +} + +/** + * This DE is used for various tasks in the public transportation environment, especially for controlling traffic + * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). + * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation + * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the + * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to + * traffic congestion. Other usage of the DE is the provision of information like the public transport line number + * or the schedule delay of a public transport vehicle. + * + */ +PtActivationData ::= OCTET STRING (SIZE(1..20)) + +/** + * This DE indicates a certain coding type of the PtActivationData data. + * + * The folowing value are specified: + * - `0`: undefined coding type, + * - `1`: coding of PtActivationData conform to VDV recommendation 420 [i.8], + * - `2`: coding of PtActivationData based on VDV recommendation 420 [i.8]. + * - values 3 to 255 are reserved for alternative and future use. + * + * @category: Vehicle information + */ +PtActivationType ::= INTEGER {undefinedCodingType(0), r09-16CodingType(1), vdv-50149CodingType(2)} (0..255) + +/** + * This DE represents a reference point counter for a trailer. + * @unit n/a +*/ +RefPointId ::= INTEGER (0..255) + +/** + * This DE describes a distance of relevance for information indicated in a message. + * + * @category: GeoReference information + */ +RelevanceDistance ::= ENUMERATED { + lessThan50m(0), + lessThan100m(1), + lessThan200m(2), + lessThan500m(3), + lessThan1000m(4), + lessThan5km(5), + lessThan10km(6), + over10km(7) +} + +/** + * This DE indicates a traffic direction that is relevant to information indicated in a message. + * + * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * + * @note: Upstream traffic corresponds to the incoming traffic towards the event position, + * and downstream traffic to the departing traffic away from the event position. + * + * @category: GeoReference information + */ +RelevanceTrafficDirection ::= ENUMERATED { + allTrafficDirections(0), + upstreamTraffic(1), + downstreamTraffic(2), + oppositeTraffic(3)} + +/** + * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from + * ITS-S after receiving request from other ITS-Ss. + * + * @category Communication information + */ +RequestResponseIndication ::= ENUMERATED { + request(0), + response(1) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` + * + * The following value are specified: + * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, + * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, + * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, + * - 3 `policeActivityOngoing` : in case police activity is ongoing, + * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, + * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, + * - 6-255: reserved for future usage. * * @category: Traffic information */ -AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { - unavailable(0), - heavyFrostOnRoad(1), - fuelOnRoad(2), - mudOnRoad(3), - snowOnRoad(4), - iceOnRoad(5), - blackIceOnRoad(6), - oilOnRoad(7), - looseChippings(8), - instantBlackIce(9), - roadsSalted(10) +RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { + unavailable(0), + emergencyVehicles(1), + rescueHelicopterLanding(2), + policeActivityOngoing(3), + medicalEmergencyOngoing(4), + childAbductionInProgress(5) } (0..255) /** - * Encoded value of the sub cause codes of the event type `adverseWeatherCondition-Visibility` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. - * @category: Traffic information - * + * This DE represents A unique identifier assigned to an entity. + * + * @category: Road Topology Information + */ +RoadRegulatorId ::= INTEGER (0..65535) + +/** + * This DE represnets an identifier assigned to a section of roadway. + * + * @category: Road Topology Information + */ +RoadSegmentID ::= INTEGER (0..65535) + +/** + * This DE indicates the type of a road segment. + * + * @category: Road Topology Information + */ +RoadType ::= ENUMERATED { + urban-NoStructuralSeparationToOppositeLanes(0), + urban-WithStructuralSeparationToOppositeLanes(1), + nonUrban-NoStructuralSeparationToOppositeLanes(2), + nonUrban-WithStructuralSeparationToOppositeLanes(3)} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. + * * The sub causes are described as following: - * - 0 `unavailable` : in case information on the cause of low visibility is unavailable - * - 1 `fog` : in case the cause of low visibility is fog - * - 2 `smoke` : in case the cause of low visibility is smoke - * - 3 `heavySnowfall` : in case the cause of low visibility is heavy snow fall - * - 4 `heavyRain` : in case the cause of low visibility is heavy rain - * - 5 `heavyHail` : in case the cause of low visibility is heavy hail - * - 6 `lowSunGlare` : in case the cause of low visibility is sun glare - * - 7 `sandstorms` : in case the cause of low visibility is sand storm - * - 8 `swarmsOfInsects`: in case the cause of low visibility is swarm of insects - * - 9-255 reserved for future usage + * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, + * - 1 `majorRoadworks` : in case a major roadworks is ongoing, + * - 2 `roadMarkingWork` : in case a road marking work is ongoing, + * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, + * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, + * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, + * - 6 `winterService` : in case winter service work is ongoing, + * - 7-255 reserved for future usage. * * @category: Traffic information */ -AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { - unavailable(0), - fog(1), - smoke(2), - heavySnowfall(3), - heavyRain(4), - heavyHail(5), - lowSunGlare(6), - sandstorms(7), - swarmsOfInsects(8) +RoadworksSubCauseCode ::= INTEGER { + unavailable(0), + majorRoadworks(1), + roadMarkingWork(2), + slowMovingRoadMaintenance(3), + shortTermStationaryRoadworks(4), + streetCleaning(5), + winterService(6) } (0..255) /** - * Encoded value of the sub cause codes of the event type `adverseWeatherCondition-Precipitation` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE indicates if a distance is safe + * This DE is FALSE if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} simultaneously satisfied with confidence of 90 % or more. + * Otherwise stationSafeDistanceIndication is set as TRUE 3 * - * The sub causes are described as following: - * - 0 `unavailable`: in case information on the type of precipitation is unavailable - * - 1 `heavyRain`: in case the type of precipitation is heavy rain - * - 2 `heavySnowfall`: in case the type of precipitation is heavy snow fall - * - 3 `softHail`: in case the type of precipitation is soft hail - * - 4-255 reserved for future usage + * @Note: the ebbreviations 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) + * @category: tbd + * Revision: created in V2.1.1 +*/ +SafeDistanceIndicator::= BOOLEAN + +/** + * This DE represenst the absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a + * confidence level of 95 %. + * + * The value shall be set to: + * - `1` if the accuracy is equal to or less than 1 cm, + * - `n (n > 1 and n < 4 093)` if the accuracy is equal to or less than n cm, + * - `4 093` if the accuracy is equal to or less than 4 093 cm, + * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, + * - `4 095` if the accuracy information is unavailable. + * + * + * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported position coordinate value may be valid and used by the application. + * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that + * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful + * for the application. + */ +SemiAxisLength ::= INTEGER{oneCentimeter(1), outOfRange(4094), unavailable(4095)} (0..4095) + +/** + * This DE indicates the type of sensor. + * + * The following values are specified: + * - undefined (0), + * - radar (1), + * - lidar (2), + * - monovideo (3), + * - stereovision (4), + * - nightvision (5), + * - ultrasonic (6), + * - pmd (7), + * - fusion (8), --< object information provided from sensor data fusion system + * - inductionloop (9), + * - sphericalCamera (10), + * - itssaggregation (11) --< object information gathered from other received ITS messages + * @unit n/a +*/ +SensorType ::= INTEGER { + undefined (0), + radar (1), + lidar (2), + monovideo (3), + stereovision (4), + nightvision (5), + ultrasonic (6), + pmd (7), + fusion (8), + inductionloop (9), + sphericalCamera (10), + itssaggregation (11) +} (0..15) + +/** + * This DE represents a sequence number. + * + * @category Other information + */ +SequenceNumber ::= INTEGER (0..65535) + +/** + * This DE represenst thevalue of the sub cause codes of the @ref CauseCode `signalViolation`. + * + * The following values are specified: + * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, + * - 1 `stopSignViolation` : in case a stop sign violation is detected, + * - 2 `trafficLightViolation` : in case a traffic light violation is detected, + * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, + * - 4-255: reserved for future usage. * * @category: Traffic information */ -AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { - unavailable(0), - heavyRain(1), - heavySnowfall(2), - softHail(3) +SignalViolationSubCauseCode ::= INTEGER { + unavailable(0), + stopSignViolation(1), + trafficLightViolation(2), + turningRegulationViolation(3) } (0..255) /** - * Encoded value of the sub cause codes of the event type "slowVehicle" as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". * - * The sub causes are described as following: + * The following values are specified: * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is * unavailable, * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, @@ -794,230 +2114,446 @@ AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { * * @category: Traffic information */ -SlowVehicleSubCauseCode ::= INTEGER {unavailable(0), maintenanceVehicle(1), vehiclesSlowingToLookAtAccident(2), abnormalLoad(3), abnormalWideLoad(4), convoy(5), snowplough(6), deicing(7), saltingVehicles(8)} (0..255) - +SlowVehicleSubCauseCode ::= INTEGER { + unavailable(0), + maintenanceVehicle(1), + vehiclesSlowingToLookAtAccident(2), + abnormalLoad(3), + abnormalWideLoad(4), + convoy(5), + snowplough(6), + deicing(7), + saltingVehicles(8) +} (0..255) + /** - * Encoded value of the sub cause codes of the event type "stationaryVehicle" as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * The DE indicates if a vehicle is carrying goods with heavy load, excess width, excess length or excess height. + * The corresponding bit shall be set to 1 when the special transport applies to the corresponding case. + * Otherwise, the corresponding bit shall be set to 0. + * + * @category Vehicle information + */ +SpecialTransportType ::= BIT STRING { + heavyLoad(0), + excessWidth(1), + excessLength(2), + excessHeight(3) +} (SIZE(4)) + +/** + * This DE represents the absolute accuracy of a speed value information for a predefined confidence level. + * The required confidence level is defined by the station applying this DE. * - * The sub causes are described as following: + * The value shall be set to: + * - `1` if the speed accuracy is equal to or less than `1 cm/s`. + * - `n (n > 1 and n < 125)` if the speed accuracy is equal to or less than `n cm/s`. + * - `125` if the speed accuracy is equal to or less than `125 cm/s`. + * - `126` if the speed accuracy is out of range, i.e. greater than `125 cm/s`. + * - `127` if the speed accuracy information is not available. + * + * + * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported speed value may be valid and used by the application. + * + * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid and therefore cannot be trusted. Such is not useful for the application. + * + * @unit cm/s + * @category: Vehicle information + */ +SpeedConfidence ::= INTEGER { + equalOrWithinOneCentimeterPerSec(1), + equalOrWithinOneMeterPerSec(100), + outOfRange(126), + unavailable(127) +} (1..127) + +/** + * This DE represents a speed limitation applied to a geographical position, a road section or a geographical region. + * + * @unit: km/h + * @category: Infrastructure information, Traffic information + */ +SpeedLimit ::= INTEGER { + oneKmPerHour(1) +} (1..255) + +/** + * This DE represents a speed value. + * + * The following values are specified: + * - standstill(0): this value is set for a standstill situation. + * - In case of movement, DE is set to the applicable value between `0,01` and `163,82 m/s`. + * - oneCentimeterPerSec(1): is an examplary value for 0,01 m/s + * - For values equal to or greater than `163,82 m/s`, the value shall be set to `16 382`. + * - When the information is not available, the value shall be set to `16 383`. + * + * The DE is used in @ref Speed DF as defined in clause A.126. + * + * @unit: 0,01 m/s + * @category: Vehicle information +*/ +SpeedValue ::= INTEGER {standstill(0), oneCentimeterPerSec(1), unavailable(16383)} (0..16383) + +/** + * This DE represents a speed value with extended range. + * + * The following values are specified: + * - negativeSpeedMaximum (-16383), - this value is set in case of speed values equal to or smaller than -163,83 m/s + * - standstill (0), this value is set in case of stanstill. + * - oneCentimeterPerSec (1), this is an exemplary value 0,01 m/s + * - speedMaximum (16382), --< this value is setfor values equal to or greater than 163,82 m/s + * - unavailable (16383) --< this value is set if information is not available + * @unit 0,01 m/s +*/ +SpeedValueExtended ::= INTEGER { + negativeSpeedMaximum (-16383), + standstill (0), + oneCentimeterPerSec (1), + speedMaximum (16382), + unavailable (16383) +} (-16383..16383) + + +/** + * This DE indicates the estimated probability of a stability level LOSS? : OR the actual estimated stability level??? tbd. + * + * The following values are specified: + * - zero(0): this value indicates stable. + * - Values between 1 and 50 indicate the actual stability level. + * - twoPercent (1): an exemplary value for 2 percent. + * - hundredPercent(50): this value indicates total stability. + * - the values between 51 and 62 are reserved. + * - unavailable (63): this value indicates that the information is unavailable.. + * + * @unit: 2% + * @category: Kinematics information + */ +StabilityLossProbability ::= INTEGER { + zero(0), + twoPercent (1), + hundredPercent(50), + unavailable (63) +} (0..63) + +/** + * Length as a measure of distance between points or objects used in the definition of various other types. + * + * @unit: 0.1 meter + * @category: Basic information + */ +StandardLength::= INTEGER (0..16383) + +/** + * Length as a measure of distance between points or objects used in the definition of various other types + * + * The DE is used in @ref tbd + * @unit: 0.1 meter + * @category: Basic information + */ +StandardLengthSmall::= INTEGER (0..255) + +/** + * This DE indicates the duration in minutes of a something being stationary. + * + * The following values are specified: + * - lessThan1Minute(0: being stationary since less than 1 minute. + * - lessThan2Minutes(1): being stationary since less than 2 minute and for equal to or more 1 minute. + * - lessThan15Minutes(2)´: being stationary since less than 15 minutes and for equal to or more than 1 minute. + * - equalOrGreater15Minutes(3): being stationary since equal to or greater than 15 minutes. + * @category: Kinematics information + */ +StationarySince ::= ENUMERATED { + lessThan1Minute(0), + lessThan2Minutes(1), + lessThan15Minutes(2), + equalOrGreater15Minutes(3)} + +/** + * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle" + * + * The following values are specified: * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, * - 3 `postCrash` : in case stationary vehicle is caused by collision, * - 4 `publicTransportStop` : in case public transport vehicle is stationary at bus stop, * - 5 `carryingDangerousGoods`: in case the stationary vehicle is carrying dangerous goods, - * - 6-255 reserved for future usage. + * - 6 `vehicleOnFire` : in case of vehicle on fire. + * - 7-255 reserved for future usage. * * @category: Traffic information */ -StationaryVehicleSubCauseCode ::= INTEGER {unavailable(0), humanProblem(1), vehicleBreakdown(2), postCrash(3), publicTransportStop(4), carryingDangerousGoods(5)} (0..255) +StationaryVehicleSubCauseCode ::= INTEGER { + unavailable(0), + humanProblem(1), + vehicleBreakdown(2), + postCrash(3), + publicTransportStop(4), + carryingDangerousGoods(5), + vehicleOnFire (6)} +(0..255) /** - * Encoded value of the sub cause codes of the event type "humanProblem" as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. - * - * - The sub causes are described as following: - * - 0 `unavailable` : in case further detailed information on human health problem is unavailable, - * - 1 `glycemiaProblem`: in case human problem is due to glycaemia problem, - * - 2 `heartProblem` : in case human problem is due to heart problem, - * - 3-255 reserved for future usage. + * This DE represents the identifier of an ITS-S. + * The ITS-S ID may be a pseudonym. It may change over space and/or over time. * - * @category: Traffic information + * @category: Basic information */ -HumanProblemSubCauseCode ::= INTEGER {unavailable(0), glycemiaProblem(1), heartProblem(2)} (0..255) +StationID ::= INTEGER(0..4294967295) /** - * Encoded value of the sub cause codes of the event type "emergencyVehicleApproaching" as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE represenst the type of technical context the ITS-S is integrated in. + * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. * - * The sub causes are described as following: - * - 0 `unavailable` : in case further detailed information on the emergency vehicle approaching event - * is unavailable, - * - 1 `emergencyVehicleApproaching` : in case an operating emergency vehicle is approaching, - * - 2 `prioritizedVehicleApproaching`: in case a prioritized vehicle (e.g. bus) is approaching, - * - value 3-255 reserved for future usage. + * The value shall be set to: + * - 0 `unknown`: information about the ITS-S context is not provided, + * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). + * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, + * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class L1, L2 (VRU Profile 3) + * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class L3, L4, L5, L6, L7 (VRU Profile 3) + * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, + * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, + * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, + * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, + * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, + * ***NOTE***: Only to be used when not towed. + * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). + * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) + * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 16 16-255: reserved for future usage. + * + * + * @category Vehicle information tbd. + */ +StationType ::= INTEGER { + unknown(0), + pedestrian(1), + cyclist(2), + moped(3), + motorcycle(4), + passengerCar(5), + bus(6), + lightTruck(7), + heavyTruck(8), + trailer(9), + specialVehicles(10), + tram(11), + lightVruVehicle(12), + animal (13), + roadSideUnit(15) +} (0..255) + +/** + * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. + * The required confidence level is defined by the station applying this DE. + * + * The following values are specified: + * - `1` if the steering wheel angle accuracy is equal to or less than 1,5 degrees, + * - `n (n > 1 and n < 125)` if the steering wheel angle accuracy is equal to or less than n × 1,5 degrees, + * - `125` if the steering wheel angle accuracy is equal to or less than 1,5 degrees ×125 = 187,5 degrees, + * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, + * - `127` if the accuracy information is not available. + * + * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. + * + * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', + * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. + * Such value is not useful for the application. + * + * @unit: 1.5 degree + * @category: Vehicle Information +*/ +SteeringWheelAngleConfidence ::= INTEGER { + equalOrWithinOnePointFiveDegree (1), + outOfRange(126), + unavailable(127) +} (1..127) + +/** + * This DE represents the steering wheel angle of the vehicle at certain point in time. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The following values are specified: + * - Positive values indicate that the steering wheel angle is turning counter-clockwise (i.e. to the left). + * - Negative values shall be used when the steering wheel angle is turning clockwise (i.e. to the right). + * - The value shall be set to `511` if the steering wheel angle is equal to or greater than 511 × 1,5 degrees = 766,5 degrees to the left. + * - The value shall be set to `-511` if the steering wheel angle is equal to or greater than 511 × 1,5 degrees = 766,5 degrees to the right. + * - When the information is not available, the value shall be set to `512`. + * + * The DE is used in @ref SteeringWheelAngle DF as defined in clause A.127. + * @unit: 1.5 degree + * @category: Vehicle Information + */ +SteeringWheelAngleValue ::= INTEGER { + straight(0), + onePointFiveDegreesToRight(-1), + onePointFiveDegreesToLeft(1), + unavailable(512) +} (-511..512) + +/** + * This DE indicates the sub cause of a detected event. + * + * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode * * @category: Traffic information */ -EmergencyVehicleApproachingSubCauseCode ::= INTEGER {unavailable(0), emergencyVehicleApproaching(1), prioritizedVehicleApproaching(2)} (0..255) +SubCauseCodeType ::= INTEGER (0..255) + +/** + * This DE indicates a temperature value. + * - For temperature equal to or less than -60 °C, the value shall be set to `60`. + * - For temperature equal to or greater than 67 °C, the value shall be set to `67`. + * + * @unit: °C + * @category: Basic information + */ +Temperature ::= INTEGER { + equalOrSmallerThanMinus60Deg (-60), + oneDegreeCelsius(1), + equalOrGreaterThan67Deg(67)} (-60..67) /** - * Encoded value of the sub cause codes of the event type `hazardousLocation-DangerousCurve` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE represenst the number of milliseconds since `2004-01-01T00:00:00.000Z`, as specified in ISO 8601 [i.10]. * - * The sub causes are described as following: - * - 0 `unavailable` : in case further detailed information on the dangerous curve is unavailable, - * - 1 `dangerousLeftTurnCurve` : in case the dangerous curve is a left turn curve, - * - 2 `dangerousRightTurnCurve` : in case the dangerous curve is a right turn curve, - * - 3 `multipleCurvesStartingWithUnknownTurningDirection`: in case of multiple curves for which the starting curve turning direction is not known, - * - 4 `multipleCurvesStartingWithLeftTurn`: in case of multiple curves starting with a left turn curve, - * - 5 `multipleCurvesStartingWithRightTurn`: in case of multiple curves stating with a right turn curve, - * - value 6-255 reserved for future usage. + * EXAMPLE: The value for TimestampIts for `2007-01-01T00:00:00.000Z` is `94 694 401 000` milliseconds, + * which includes one leap second insertion since `2004-01-01T00:00:00.000Z`. * - * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass - * and vehicle speed driving on the curve. This definition is out of scope of the present document. - * - * @category: Traffic information + * + * @unit: millisecond + * @category: Basic Information */ -HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER {unavailable(0), dangerousLeftTurnCurve(1), dangerousRightTurnCurve(2), multipleCurvesStartingWithUnknownTurningDirection(3), multipleCurvesStartingWithLeftTurn(4), multipleCurvesStartingWithRightTurn(5)} (0..255) +TimestampIts ::= INTEGER {utcStartOf2004(0), oneMillisecAfterUTCStartOf2004(1)} (0..4398046511103) /** - * Encoded value of the sub cause codes of the event type `hazardousLocation-SurfaceCondition` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. * - * The sub causes are described as following: - * - 0 `unavailable` : in case further detailed information on the road surface condition is unavailable, - * - 1 `rockfalls` : in case rock falls are detected on the road surface, - * - 2 `earthquakeDamage`: in case the road surface is damaged by earthquake, - * - 3 `sewerCollapse` : in case of sewer collapse on the road surface, - * - 4 `subsidence` : in case road surface is damaged by subsidence, - * - 5 `snowDrifts` : in case road surface is damaged due to snow drift, - * - 6 `stormDamage` : in case road surface is damaged by strong storm, - * - 7 `burstPipe` : in case road surface is damaged due to pipe burst, - * - 8 `volcanoEruption` : in case road surface is damaged due to volcano eruption, - * - 9 `fallingIce` : in case road surface damage is due to falling ice, - * - 10-255 reserved for future usage. + * The following values are specified: + * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, + * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, + * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, + * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, + * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, + * - 5 `trafficStationary` : in case traffic is stationary, + * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, + * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, + * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, + * - 9-255: reserved for future usage. * * @category: Traffic information */ -HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER {unavailable(0), rockfalls(1), earthquakeDamage(2), sewerCollapse(3), subsidence(4), snowDrifts(5), stormDamage(6), burstPipe(7), volcanoEruption(8), fallingIce(9)} (0..255) +TrafficConditionSubCauseCode ::= INTEGER { + unavailable(0), + increasedVolumeOfTraffic(1), + trafficJamSlowlyIncreasing(2), + trafficJamIncreasing(3), + trafficJamStronglyIncreasing(4), + trafficStationary(5), + trafficJamSlightlyDecreasing(6), + trafficJamDecreasing(7), + trafficJamStronglyDecreasing(8) +} (0..255) /** - * Encoded value of the sub cause codes of the event type `hazardousLocation-ObstacleOnTheRoad` as specified - * in clause A.10. Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. - * - * The sub causes are described as following: - * - 0 `unavailable` : in case further detailed information on the detected obstacle is unavailable, - * - 1 `shedLoad` : in case detected obstacle is large amount of obstacles (shedload), - * - 2 `partsOfVehicles`: in case detected obstacles are parts of vehicles, - * - 3 `partsOfTyres` : in case the detected obstacles are parts of tyres, - * - 4 `bigObjects` : in case the detected obstacles are big objects, - * - 5 `fallenTrees` : in case the detected obstacles are fallen trees, - * - 6 `hubCaps` : in case the detected obstacles are hub caps, - * - 7 `waitingVehicles`: in case the detected obstacles are waiting vehicles, - * - 8-255 reserved for future usage. + * This DE indicates traffic rules that apply to vehicles at a certain position. * - * @category: Traffic information + * The following values are specified: + * - If overtaking is prohibited for all vehicles, the DE shall be set to `0`. + * - If overtaking is prohibited for trucks, the DE shall be set to `1`. + * - If vehicles should pass to the right lane, the DE shall be set to `2`. + * - If vehicles should pass to the left lane, the DE shall be set to `3`. + * + * @category: Infrastructure information, Traffic information */ -HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), shedLoad(1), partsOfVehicles(2), partsOfTyres(3), bigObjects(4), fallenTrees(5), hubCaps(6), waitingVehicles(7)} (0..255) +TrafficRule ::= ENUMERATED { + noPassing(0), + noPassingForTrucks(1), + passToRight(2), + passToLeft(3), ...} /** - * Encoded value of the sub cause codes of the event type `hazardousLocation-AnimalOnTheRoad` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. * - * The sub causes are described as following: - * - 0 `unavailable` : in case further detailed information on the animal on the road event is unavailable, - * - 1 `wildAnimals` : in case wild animals are detected on the road, - * - 2 `herdOfAnimals`: in case herd of animals are detected on the road, - * - 3 `smallAnimals` : in case small size animal is detected on the road, - * - 4 `largeAnimals` : in case large size animal is detected on the road, - * - 5-255 reserved for future usage. - * - * @category: Traffic information + * @category: Kinematics information */ -HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), wildAnimals(1), herdOfAnimals(2), smallAnimals(3), largeAnimals(4)} (0..255) +TrajectoryInterceptionProbability ::= INTEGER { + zero(0), + twoPercent(1), + fourPercent(2), + oneHundredPercent(50), + unavailable (63) } (0..63) /** - * Encoded value of the sub cause codes of the event type `collisionRisk` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE defines the confidence level of the trajectoryInterceptionProbability. * - * The sub causes are described as following: - * - 0 `unavailable` : in case information on the type of collision risk is unavailable, - * - 1 `longitudinalCollisionRisk`: in case the type of detected collision risk is longitudinal collision risk, - * e.g. forward collision or face to face collision, - * - 2 `crossingCollisionRisk` : in case the type of detected collision risk is crossing collision risk, - * - 3 `lateralCollisionRisk` : in case the type of detected collision risk is lateral collision risk, - * - 4 `vulnerableRoadUser` : in case the type of detected collision risk involves vulnerable road users - * e.g. pedestrians or bicycles, - * - 5-255 reserved for future usage. - * - * @category: Traffic information + * @category: Kinematics information */ -CollisionRiskSubCauseCode ::= INTEGER {unavailable(0), longitudinalCollisionRisk(1), crossingCollisionRisk(2), lateralCollisionRisk(3), vulnerableRoadUser(4)} (0..255) - +TrajectoryInterceptionConfidence ::= INTEGER { + lessthan50percent(0), + between50and70Percent(1), + between70and90Percent(2), + above90Percent(3) } (0..3) + /** - * Encoded value of the sub cause codes of the event type `signalViolation` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE represents a time interval between two consecutive message transmissions. * - * The sub causes are described as following: - * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, - * - 1 `stopSignViolation` : in case a stop sign violation is detected, - * - 2 `trafficLightViolation` : in case a traffic light violation is detected, - * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, - * - 4-255: reserved for future usage. - * - * @category: Traffic information + * @unit: milliseconds + * @category: Basic information */ -SignalViolationSubCauseCode ::= INTEGER {unavailable(0), stopSignViolation(1), trafficLightViolation(2), turningRegulationViolation(3)} (0..255) +TransmissionInterval ::= INTEGER { + oneMilliSecond(1), + tenSeconds(10000) +} (1..10000) /** - * Encoded value of the sub cause codes of the event type `rescueAndRecoveryWorkInProgress` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE provides the turning direction. * - * The sub causes are described as following: - * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, - * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, - * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, - * - 3 `policeActivityOngoing` : in case police activity is ongoing, - * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, - * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, - * - 6-255: reserved for future usage. - * - * @category: Traffic information + * @category: */ -RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER {unavailable(0), emergencyVehicles(1), rescueHelicopterLanding(2), policeActivityOngoing(3), medicalEmergencyOngoing(4), childAbductionInProgress(5)} (0..255) +TurningDirection::= ENUMERATED { + left, + right +} /** - * Encoded value of the sub cause codes of the event type `dangerousEndOfQueue` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI ETSI EN 302 637-3 [i.3]. + * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. + * + * The following values are specified: + * - The DE is set to the applicable value in the range of 1 to 253 meters. + * - The value shall be set to `254` if the turning radius is equal to or greater than 254 x 0.4 metre = 101.6 metres. + * - The value shall be set to `255` if the information is unavailable. * - * The sub causes are described as following: - * - 0 `unavailable` : in case information on the type of dangerous queue is unavailable, - * - 1 `suddenEndOfQueue`: in case a sudden end of queue is detected, e.g. due to accident or obstacle, - * - 2 `queueOverHill` : in case the dangerous end of queue is detected on the road hill, - * - 3 `queueAroundBend` : in case the dangerous end of queue is detected around the road bend, - * - 4 `queueInTunnel` : in case queue is detected in tunnel, - * - 5-255 reserved for future usage. + * For vehicle with tracker, the turning radius applies to the vehicle only. * - * @category: Traffic information + * @category: Vehicle information + * @unit 0.4 metre */ -DangerousEndOfQueueSubCauseCode ::= INTEGER {unavailable(0), suddenEndOfQueue(1), queueOverHill(2), queueAroundBend(3), queueInTunnel(4)} (0..255) +TurningRadius ::= INTEGER { + point4Meters(1), + unavailable(255) +} (1..255) /** - * Encoded value of the sub cause codes of the event type `dangerousSituation` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI ETSI EN 302 637-3 [i.3]. + * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. * - * The sub causes are described as following: - * - 0 `unavailable`: in case information on the type of dangerous situation is unavailable, - * - 1 `emergencyElectronicBrakeEngaged`: in case emergency electronic brake is engaged, - * - 2 `preCrashSystemEngaged`: in case pre-crash system is engaged, - * - 3 `espEngaged`: in case Electronic Stability Program (ESP) system is engaged, - * - 4 `absEngaged`: in case Anti-lock braking system (ABS) is engaged, - * - 5 `aebEngaged`: in case Autonomous Emergency Braking (AEB) system is engaged, - * - 6 `brakeWarningEngaged`: in case brake warning is engaged, - * - 7 `collisionRiskWarningEngaged`: in case collision risk warning is engaged, - * - 8-255: reserved for future usage. - * - * @category: Traffic information + * @category: Vehicle information */ -DangerousSituationSubCauseCode ::= INTEGER {unavailable(0), emergencyElectronicBrakeEngaged(1), preCrashSystemEngaged(2), espEngaged(3), absEngaged(4), aebEngaged(5), brakeWarningEngaged(6), collisionRiskWarningEngaged(7)} (0..255) +VDS ::= IA5String (SIZE(6)) /** - * Encoded value of the sub cause codes of the event type `vehicleBreakdown` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE represents the value of the sub cause codes of the @CauseCode `vehicleBreakdown`. * - * The sub causes are described as following: + * The following values are specified: * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, @@ -1032,540 +2568,983 @@ DangerousSituationSubCauseCode ::= INTEGER {unavailable(0), emergencyElectronicB * * @category: Traffic information */ -VehicleBreakdownSubCauseCode ::= INTEGER {unavailable(0), lackOfFuel (1), lackOfBatteryPower (2), engineProblem(3), transmissionProblem(4), engineCoolingProblem(5), brakingSystemProblem(6), steeringProblem(7), tyrePuncture(8), tyrePressureProblem(9)} (0..255) +VehicleBreakdownSubCauseCode ::= INTEGER { + unavailable(0), + lackOfFuel (1), + lackOfBatteryPower (2), + engineProblem(3), + transmissionProblem(4), + engineCoolingProblem(5), + brakingSystemProblem(6), + steeringProblem(7), + tyrePuncture(8), + tyrePressureProblem(9), + vehicleOnFire (10) +} (0..255) + +/** + * This DE represents the height if the vehicle, measured from the ground to the highest point, excluding any antennas. + * In case vehicles are equipped with adjustable ride heights, camper shells, and any other + * equipment which may result in varying height, the largest possible height shall be used. + * + * @unit 5 cm (DE ranges to 6.35 m) +*/ +VehicleHeight ::= INTEGER (0..127) --tbd /** - * Encoded value of the sub cause codes of the event type `postCrash` as specified in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. - * - * The sub causes are described as following: - * - 0 `unavailable`: in case further detailed information on post crash event is unavailable, - * - 1 `accidentWithoutECallTriggered`: in case no eCall has been triggered for an accident, - * - 2 `accidentWithECallManuallyTriggered`: in case eCall has been manually triggered and transmitted to eCall back end, - * - 3 `accidentWithECallAutomaticallyTriggered`: in case eCall has been automatically triggered and transmitted to eCall back end, - * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork`: in case eCall has been triggered but cellular network is not accessible from triggering vehicle, - * - 5-255: reserved for future usage. + * This DE provides information about the presence of a trailer. * - * @category: Traffic information + * The following values are specified: + * - noTrailerPresent(0): used when no trailer is present. + * - trailerPresentWithKnownLength(1): used when a trailer is present and the length is included in a reported vehicle length value. + * - trailerPresentWithUnknownLength(2): used when a trailer is present and the length is not included in a reported vehicle length value. + * - trailerPresenceIsUnknown(3): used when the trailer presence is unknown. + * - unavailable(4): value used when the information is not known. + * + * @category: Vehicle information + * Revision: Editorial update in V2.1.1 */ -PostCrashSubCauseCode ::= INTEGER {unavailable(0), accidentWithoutECallTriggered (1), accidentWithECallManuallyTriggered (2), accidentWithECallAutomaticallyTriggered (3), accidentWithECallTriggeredWithoutAccessToCellularNetwork(4)} (0..255) +VehicleLengthConfidenceIndication ::= ENUMERATED { + noTrailerPresent(0), + trailerPresentWithKnownLength(1), + trailerPresentWithUnknownLength(2), + trailerPresenceIsUnknown(3), + unavailable(4)} /** - * It describes the curvature of the vehicle trajectory and the accuracy. - * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. - * - * @field curvatureValue: Detected curvature of the vehicle trajectory. - * It shall be presented as defined in clause A.15 + * This DE represents the length of a vehicle. + * + * The following values are specified: + * - The DE is set to the applicable value in the range of 1 cm and 102,2 meters. + * - The DE is set to 1 022 if the vehicle length is equal to or greater than 102.2 metres. + * - The DE is set to 1 023 if the information in unavailable. * - * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. - * It shall be presented as defined in clause A.14 * + * @unit: 0.1 metre * @category: Vehicle information + * Revision: Editorial update in V2.1.1 */ -Curvature ::= SEQUENCE { - curvatureValue CurvatureValue, - curvatureConfidence CurvatureConfidence -} +VehicleLengthValue ::= INTEGER { + tenCentimeters(1), + outOfRange(1022), + unavailable(1023) +} (1..1023) /** - * It describes vehicle turning curve with the following information: - * - * Value = 1 / Radius * 10000 - * - * wherein radius is the vehicle turning curve radius. - * - * Positive values indicate a turning curve to the left hand side of the driver. - * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. - * - The value shall be set to `0` when the vehicle is moving straight. - * - The value shall be set to `1023`, if the information is not available. - * - For calculated values smaller than `-1023`, the DE shall be set to `-1023`. - * - For calculated values bigger than `1022`, the DE shall be set to `1022`. - * - * The DE is used in @ref Curvature DF as defined in clause A.107. + * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. + * + * The following values are specified: + * - The DE is set to the applicable value in the range of 100 kg and 102 200 kg. + * - The value shall be set to `1 023` if the vehicle mass is equal to or greater than `102 300 kg`. + * - The value shall be set to `1 024` when the vehicle mass information is unavailable. * - * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * + * @unit: 100kg * @category: Vehicle information - * @unit 1 over 10 000 metres - */ -CurvatureValue ::= INTEGER {straight(0), unavailable(1023)} (-1023..1023) + * Revision: Editorial update in V2.1.1 +*/ +VehicleMass ::= INTEGER { + hundredKg(1), + unavailable(1024)} (1..1024) /** - * It describes the absolute accuracy range of a reported curvature value for a predefined confidence level. - * The required confidence level is defined by the corresponding standards applying the DE. - * - * The value shall be set to: - * - 0 if the accuracy is less than or equal to 0,00002 m-1 - * - 1 if the accuracy is less than or equal to 0,0001 m-1 - * - 2 if the accuracy is less than or equal to 0,0005 m-1 - * - 3 if the accuracy is less than or equal to 0,002 m-1 - * - 4 if the accuracy is less than or equal to 0,01 m-1 - * - 5 if the accuracy is less than or equal to 0,1 m-1 - * - 6 if the accuracy is out of range, i.e. greater than 0,1 m-1 - * - 7 if the information is not available + * This DE indicates the role played by a vehicle at a point in time. + * The DE shall be set to: + * - 0 `default`: default vehicle role as indicated by the vehicle type, + * - 1 `publicTransport`: vehicle is used to operate public transport service, + * - 2 `specialTransport`: vehicle is used for special transport purpose, e.g. oversized trucks, + * - 3 `dangerousGoods`: vehicle is used for dangerous goods transportation, + * - 4 `roadWork`: vehicle is used to realize roadwork or road maintenance mission, + * - 5 `rescue`: vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, + * - 6 `emergency`: vehicle is used for emergency mission, e.g. ambulance, fire brigade, + * - 7 `safetyCar`: vehicle is used for public safety, e.g. patrol, + * - 8 `agriculture`: vehicle is used for agriculture, e.g. farm tractor as defined + * in CEN/TS 16157-3 [3], annex A, table A.137, + * - 9 `commercial`: vehicle is used for transportation of commercial goods as defined + * in CEN/TS 16157-3 [3], annex A, table A.137, + * - 10 `military`: vehicle is used for military purpose as defined in CEN/TS 16157-3 [3], annex A, table A.137, + * - 11 `roadOperator`: vehicle is used in road operator missions as defined in CEN/TS 16157-3 [3], annex A, table A.137, + * - 12 `taxi`: vehicle is used to provide an authorized taxi service as defined + * in CEN/TS 16157-3 [3], annex A, table A.137, + * - 13 `reserved`: reserved for future usage, + * - 14 `reserved`: reserved for future usage, + * - 15 `reserved`: reserved for future usage. * - * The DE is used in Curvature DF as defined in clause A.107. - * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by - * several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported curvature value may be valid and used by the application. - * If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid and therefore cannot be trusted. Such value is not useful for the application. - */ -CurvatureConfidence ::= ENUMERATED { - onePerMeter-0-00002 (0), - onePerMeter-0-0001 (1), - onePerMeter-0-0005 (2), - onePerMeter-0-002 (3), - onePerMeter-0-01 (4), - onePerMeter-0-1 (5), - outOfRange (6), - unavailable (7) -} + * @category: Vehicle Information + * Revision: V1.3.1 + */ +VehicleRole ::= ENUMERATED { + default(0), + publicTransport(1), + specialTransport(2), + dangerousGoods(3), + roadWork(4), + rescue(5), + emergency(6), + safetyCar(7), + agriculture(8), + commercial(9), + military(10), + roadOperator(11), + taxi(12), + reserved1(13), + reserved2(14), + reserved3(15)} + +/** + * This DE describes the subclass of a vehicle. + + unknown (0), -- < the type of vehicle is unknown + passengerCar (1), --< the detected object is a small passenger car as defined in + --< UNECE/TRANS/WP.29/78/Rev.4 class M1 + bus (2), --< the detected object is a large passenger vehicle as defined + --< in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3 + lightTruck (3), --< the detected object is a light goods vehicle as defined + --< in UNECE/TRANS/WP.29/78/Rev.4 class N1 + heavyTruck (4), --< the detected object is a heavy goods vehicle as defined + --< in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3 + trailer (5), --< the detected object is an unpowered vehicle that is intended + --< to be towed by a powered vehicle as defined in + --< UNECE/TRANS/WP.29/78/Rev.4 class O + specialVehicles (6), --< the detected object is a vehicle which has a special purpose + --< other than the above (e.g. moving road works vehicle) + tram (7), --< the detected object is a vehicle running on tracks along + --< public streets + emergencyVehicle (8), --< the detected object is a vehicle used in an emergency situation + --< such as an ambulance, police car or fire engine + agricultural (9) --< the detected object is a vehicle used for agricultural purposes + + + * @unit n/a + * Revision: V1.3.1 + */ +VehicleSubclass ::= INTEGER { + unknown (0), + passengerCar (1), + bus (2), + lightTruck (3), + heavyTruck (4), + trailer (5), + specialVehicles (6), + tram (7), + emergencyVehicle (8), + agricultural (9) +} (0..255) /** - * It describes whether the yaw rate is used to calculate the curvature for a reported curvature value. + * Width of a vehicle, excluding side mirrors and possible similar extensions. + * - For a vehicle width equal to or greater than 6.1 metres, the value shall be set to `61`. + * - The value shall be set to `62` if the information is unavailable. * - * When the information of curvature calculation mode is unknown, the value shall be set to 2. - * @category: Vehicle information + * @unit: 0.1 metre + * @category: Vehicle information */ -CurvatureCalculationMode ::= ENUMERATED {yawRateUsed(0), yawRateNotUsed(1), unavailable(2), ...} +VehicleWidth ::= INTEGER {tenCentimeters(1), outOfRange(61), unavailable(62)} (1..62) /** - * Heading in a WGS84 co-ordinates system. - * - * @param headingValue: a heading value. It shall be presented as defined in clause A.35, + * Vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * - Positive values indicate that the vehicle is accelerating upwards. + * - The value shall be set to `160` if the upwards acceleration is equal to or greater than 16 m/s2.- + * - Negative values indicate the vehicle is accelerating downwards. + * - The value shall be set to `-160` if the downwards acceleration is equal to or greater than 16 m/s2. + * - The value shall be set to `161` if the information is not available. * - * @param headingConfidence: the accuracy of the reported heading value with a predefined confidence level. - * It shall be presented as defined in clause A.34. + * The DE is used in @ref VerticalAcceleration DF as defined in clause A.129. * - * @category: GeoReference information, Vehicle information, Road topology information + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @category Vehicle information + * @unit: 0.1 m/s2 + * */ -Heading ::= SEQUENCE { - headingValue HeadingValue, - headingConfidence HeadingConfidence -} +VerticalAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredUp(1), pointOneMeterPerSecSquaredDown(-1), unavailable(161)} (-160 .. 161) -/** - * Orientation of a heading with regards to the WGS84 north. +/** + * Identifies all the VRU profile types that are believed to be within the cluster + * Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). * - * When the information is not available, the DE shall be set to `3 601`. - * - * The DE is used in @ref Heading DF as defined in clause A.112, and @ref PosConfidenceEllipse DF as defined in clause A.119. + * The corresponding bit shall be set to 1 under the following conditions: + * - pedestrian (0): The VRU cluster contains at least one pedestrian VRU, + * - bicycle(1): The VRU cluster contains at least one bicycle VRU member, + * - motorcycle(2): The VRU cluster contains at least one motorcycle VRU member, + * - animal(3): The VRU cluster contains at least one animal VRU member, * - * @unit: 0,1 degree - * @category: GeoReference information, Vehicle information, Road topology information + * Otherwise, the corresponding bit shall be set to 0. + * */ -HeadingValue ::= INTEGER {wgs84North(0), wgs84East(900), wgs84South(1800), wgs84West(2700), unavailable(3601)} (0..3601) +VruClusterProfiles ::= BIT STRING { + pedestrian(0), + bicyclist(1), + motorcyclist(2), + animal(3) +} (SIZE(4)) + +/** + * value of the possible VRU usage conditions + * - The VRU usage conditions are described as follows: + * - unavailable (0), -- Not specified, + * - other (1), -- Used for states not defined below, + * - idle (2), -- Human is not interacting with device, + * - listeningToAudio (3), -- Any audio source other than calling, + * - typing (4), -- Including texting, entering addresses and other manual input activity, + * - calling (5), + * - playingGames (6), + * - reading (7), + * - viewing (8) -- Watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, + * - value 9 to 255: reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + */ +VruDeviceUsage ::= ENUMERATED {unavailable(0), other(1), idle(2), listeningToAudio(3), typing(4), calling(5), playingGames(6), reading(7), viewing(8), max(255)} /** - * The absolute accuracy of a reported heading value for a predefined confidence level (e.g. 95 %). - * The required confidence level is defined by the corresponding standards applying the DE. - * - * The value shall be set to: - * - `1` if the heading accuracy is equal to or less than 0,1 degree, - * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n × 0,1 degree, - * - `125` if the heading accuracy is equal to or less than 12,5 degrees, - * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, - * - `127` if the heading accuracy information is not available. - * - * The DE is used in Heading DF as defined in clause A.112. + * value of the possible VRU environment conditions. + * The VRU environment conditions are described as follows: + * - unavailable (0): in case information on the type of environment is unavailable, + * - intersectionCrossing (1), + * - zebraCrossing (2), + * - sidewalk (3), + * - onVehicleRoad (4), + * - value 6 to 255: reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * - * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, - * such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported heading value may be valid and used by the application. - * - * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported - * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @category: VRU information + */ +VruEnvironment ::= ENUMERATED {unavailable (0), intersectionCrossing(1), zebraCrossing(2), sidewalk (3), onVehicleRoad(4), protectedGeographicArea(5), max (255)} + +/** + * Status of the possible human control over a VRU vehicle. + * - unavailable (0): in case information on is unavailable, + * - braking (1): the VRU is braking + * - hardBraking (2): the VRU is braking hard + * - stopPedaling (3): the VRU stopped pedaling + * - brakingAndStopPedaling (4): the VRU stopped pedaling an is braking + * - hardBrakingAndStopPedaling (5): the VRU stopped pedaling an is braking hard + * - noReaction (6): the VRU is not changing its behavior + * - value 5 to 255: reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * - * @unit: 0,1 degree - * @category: GeoReference information, Vehicle information, Road topology information + * @category: VRU information */ -HeadingConfidence ::= INTEGER {equalOrWithinZeroPointOneDegree (1), equalOrWithinOneDegree (10), outOfRange(126), unavailable(127)} (1..127) +VruMovementControl ::= ENUMERATED {unavailable (0), braking(1), hardBraking(2), stopPedaling (3), brakingAndStopPedaling(4), hardBrakingAndStopPedaling (5), noReaction(6), max (255)} /** - * This DE indicates the transversal position information on the road in resolution of lanes, counted from - * the inside border of the road for a given traffic direction. For example, the innermostDrivingLane corresponds - * to the left most lane of the carriageway in a country with right-land traffic, and to the right most lane of the - * carriageway in a left-land traffic (e.g. in UK). The value -1 denotes that the referenced position is outside the road. - * @category: GeoReference information, Road topology information -*/ -LanePosition ::= INTEGER {offTheRoad(-1), innerHardShoulder(0), -innermostDrivingLane(1), secondLaneFromInside(2), outerHardShoulder(14) } (-1..14) + * Profile of a pedestrian + * - unavailable (0): in case information on is unavailable, + * - ordinary-pedestrian(1): a pedestrian to which no more-specific profile applies + * - road-worker(2): a pedestrian with the role of a road worker + * - first-responder(3): a pedestrian with the role of a first responder + * - value 4 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + */ +VruSubProfilePedestrian ::= ENUMERATED { + unavailable(0), + ordinary-pedestrian(1), + road-worker(2), + first-responder(3), + max(15) +} /** - * This DF indicates the opening/closure status of a lane or a set of lanes. - * - * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of inner hard shoulder lanes. It shall be presented as defined in clause A.29 - * - * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of outer hard shoulder lanes. It shall be presented as defined in clause A.29 - * - * @field drivingLaneStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of driving lanes. It shall be presented as defined in clause A.23 - * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. - * - * @category: GeoReference information, Road topology information - */ -ClosedLanes ::= SEQUENCE { - innerhardShoulderStatus HardShoulderStatus OPTIONAL, - outerhardShoulderStatus HardShoulderStatus OPTIONAL, - drivingLaneStatus DrivingLaneStatus OPTIONAL, - ... + * Profile of a VRU and its light VRU vehicle / animal. + * The corresponding value shall be set as follows: + * - unavailable (0): in case information on is unavailable, + * - bicyclist (1): cycle and bicyclist + * - wheelchair-user(2): wheelchair and its user + * - horse-and-rider(3): horse and rider + * - rollerskater(4): rolleskater and skater + * - e-scooter(5): e-scooter and rider + * - personal-transporter(6): personal-transporter + * - pedelec(7): pedelec and rider + * - speed-pedelec(8): speed-pedelec rider + * - value 9 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + */ +VruSubProfilelightVruVehicle ::= ENUMERATED { + unavailable(0), + bicyclist(1), + wheelchair-user(2), + horse-and-rider(3), + rollerskater(4), + e-scooter(5), + personal-transporter(6), + pedelec(7), + speed-pedelec(8), + max(15) } /** - * This DE indicates the current status of a hard shoulder lane whether it is available for special usage - * (e.g. for stopping or for driving) or closed for all vehicles. - * - * The DE is used in @ref ClosedLanes DF as defined in clause A.106. - * @category: Traffic information - */ -HardShoulderStatus ::= ENUMERATED {availableForStopping(0), closed(1), availableForDriving(2)} + * Profile of a motorcyclist and corresponding vehicle. + * The corresponding value shall be set as follows: + * - unavailable (0): in case information on is unavailable, + * - moped (1): moped and rider + * - motorcycle(2): motorcycle and rider + * - motorcycle-and-sidecar-right(3): + * - motorcycle-and-sidecar-left(4): + * - value 5 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + */ +VruSubProfileMotorcyclist ::= ENUMERATED { + unavailable(0), + moped(1), + motorcycle(2), + motorcycle-and-sidecar-right(3), + motorcycle-and-sidecar-left(4), + max(15) +} /** - * DE that indicates whether a driving lane is open to traffic. - * - * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall - * correspond to the total number of the driving lanes in the carriageway. - * - * The numbering is matched to @ref LanePosition DE as defined in clause A.40. - * The bit 0 is used to indicate the innermostLane, bit 1 is used to indicate the second lane from inside border. - * - * If a lane is closed to traffic, the corresponding bit shall be set to 1. Otherwise, it shall be set to 0. - * - * @note: Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus as defined in clause A.29. - * - * The DE is used in @ref ClosedLanes DF as defined in clause A.106. - * @category: Traffic information + * Profile of a animal + * The corresponding value shall be set as follows: + * - unavailable (0): in case information on is unavailable, + * - wild-animal (1): in case of a animal living in the wildness. + * - farm-animal(2): in case of an animal beloning to a farm. + * - service-animal(3): in case of an animal that supports a human being. + * - value 4 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + */ +VruSubProfileAnimal ::= ENUMERATED { + unavailable(0), + wild-animal(1), + farm-animal(2), + service-animal(3), + max(15) +} + +/** + * Size of a VRU including the VRU vehicle used. + * The corresponding value shall be set as follows: + * - unavailable(0): There is no matched size class or due to privacy reasons in profile 1. + * - low (1): the VRU size class is low depending on the VRU profile + * - medium (2): the VRU size class is medium depending on the VRU profile + * - high (3): the VRU size class is high depending on the VRU profile + * - value 4 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + */ +VruSizeClass ::= ENUMERATED { + unavailable (0), + low(1), + medium(2), + high (3), + max(15) +} + +/** + * This DE describes the status of the exterior light switches of a vehicle or a VRU. + * The DE is an extension of the existing vehicular DE ExteriorLight. + * The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU or automatically by a vehicle or VRU system. + * - Bit unavailable (0) corresponds to no information available. + * - Bit backFlashLight (1),corresponds to the back flash light. + * - Bit helmetLight (2), corresponds to the helmet light. + * - Bit armLight (3), corresponds to the arm light. + * - Bit legLight (4), corresponds to the leg leight. + * - Bit wheelLight (5) corresponds to wheel light. + * - Bits 6 to 8: reserved for future use. + * The bit values do not indicate if the corresponding lamps are alight or not. + * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. + */ +VruSpecificExteriorLights ::= BIT STRING { + unavailable (0), + backFlashLight (1), + helmetLight (2), + armLight (3), + legLight (4), + wheelLight (5) + } (SIZE(8)) + +/** + * Perpendicular distance between front and rear axle of the wheel base of vehicle. + * - The value shall be set to `126` if the wheel base distance is equal to or greater than 12.6 metres. + * - The value shall be set to `127` if the information is unavailable. + * + * @category: Vehicle information + * @unit 0.1 metre */ -DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) +WheelBaseVehicle ::= INTEGER {tenCentimeters(1), unavailable(127)} (1..127) + +/** @brief WGS84Angle Confidence + * The absolute accuracy of a reported angle value for a predefined confidence level (e.g. 95 %). + * The required confidence level is defined by the corresponding standards applying this DE. + * zeroPointOneDegree (1), + * oneDegree (10), + * outOfRange (126), --< if the accuracy is out of range, i.e. greater than + * --< 12,5 degrees. A corresponding reported angle value shall be + * --< considered invalid and cannot be trusted. + * unavailable (127) --< if the accuracy information is not available + * @unit 0,1 degrees +*/ +Wgs84AngleConfidence ::= INTEGER { + zeroPointOneDegree (1), + oneDegree (10), + outOfRange (126), + unavailable (127) +} (1..127) + + +/** @brief WGS 84 Angle Value + * An angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. + * @unit 0,1 degrees +*/ +Wgs84AngleValue ::= INTEGER { + wgs84North (0), + wgs84East (900), + wgs84South (1800), + wgs84West (2700), + unavailable (3601) +} (0..3601) /** - * This DE denotes the ability of an ITS-S to provide up-to-date information. - * A performance class value is used to describe age of data. The exact values are out of scope of the present document. - * - * As defined in ETSI TS 101 539-1 [i.6], performance class A shall be set to `1`, performance class B shall be set to 2. - * When the performance class is unknown, it shall be set to `0`. + * World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. * - * Values in the range `3 to 7` are reserved for future use. + * The DE is used in @ref VehicleIdentification DF as defined in clause A.130. * * @category: Vehicle information */ -PerformanceClass ::= INTEGER {unavailable(0), performanceClassA(1), performanceClassB(2)} (0..7) +WMInumber ::= IA5String (SIZE(1..3)) /** - * A speed value. - * - For values equal to or greater than `163,82 m/s`, the value shall be set to `16 382`. - * - When the information is not available, the value shall be set to `16 383`. + * Encoded value of the sub cause codes of the event type `wrongWayDriving` as defined in clause A.10. + * Definition of the sub event cause is defined and the value is assigned according + * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. * - * The DE is used in @ref Speed DF as defined in clause A.126. + * The sub causes are described as following: + * - 0 `unavailable`: in case further detailed information on wrong way driving event is unavailable, + * - 1 `wrongLane`: in case vehicle is driving on a lane for which it has no authorization to use, + * - 2 `wrongDirection`: in case vehicle is driving in a direction that it is not allowed, + * - 3-255 reserved for future usage. * - * @unit: 0,01 m/s - * @category: Vehicle information -*/ -SpeedValue ::= INTEGER {standstill(0), oneCentimeterPerSec(1), unavailable(16383)} (0..16383) + * @category: Traffic information + */ +WrongWayDrivingSubCauseCode ::= INTEGER {unavailable(0), wrongLane(1), wrongDirection(2)} (0..255) /** - * The absolute accuracy of a speed value information for a predefined confidence level. + * DE that denotes the absolute accuracy range for reported yaw rate value for a predefined confidence level (e.g. 95 %). * The required confidence level is defined by the station applying this DE. * * The value shall be set to: - * - `1` if the speed accuracy is equal to or less than `1 cm/s`. - * - `n (n > 1 and n < 125)` if the speed accuracy is equal to or less than `n cm/s`. - * - `125` if the speed accuracy is equal to or less than `125 cm/s`. - * - `126` if the speed accuracy is out of range, i.e. greater than `125 cm/s`. - * - `127` if the speed accuracy information is not available. + * - 0 if the accuracy is equal to or less than 0,01 degree/second + * - 1 if the accuracy is equal to or less than 0,05 degrees/second + * - 2 if the accuracy is equal to or less than 0,1 degree/second + * - 3 if the accuracy is equal to or less than 1 degree/second + * - 4 if the accuracy is equal to or less than 5 degrees/second + * - 5 if the accuracy is equal to or less than 10 degrees/second + * - 6 if the accuracy is equal to or less than 100 degrees/second + * - 7 if the accuracy is out of range, i.e. greater than 100 degrees/second + * - 8 if the accuracy information is unavailable * - * The DE is used in @ref Speed DF as defined in clause A.126. + * The DE is used in @ref YawRate DF as defined in clause A.132. * - * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: + * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by + * several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported speed value may be valid and used by the application. + * In all 3 cases above, the reported yaw rate value may be valid and used by the application. * - * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid and therefore cannot be trusted. Such is not useful for the application. - * - * @unit cm/s - * @category: Vehicle information + * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported + * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. + * + * @category: Traffic information */ -SpeedConfidence ::= INTEGER {equalOrWithinOneCentimeterPerSec(1), equalOrWithinOneMeterPerSec(100), outOfRange(126), unavailable(127)} (1..127) +YawRateConfidence ::= ENUMERATED { + degSec-000-01 (0), + degSec-000-05 (1), + degSec-000-10 (2), + degSec-001-00 (3), + degSec-005-00 (4), + degSec-010-00 (5), + degSec-100-00 (6), + outOfRange (7), + unavailable (8) +} /** - * Mass of an empty loaded vehicle in multiple of 100 kg. - * - The value shall be set to `1 023` if the vehicle mass is equal to or greater than `102 300 kg`. - * - The value shall be set to `1 024` when the vehicle mass information is unavailable. + * It denotes the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded + * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * - The leading sign denotes the direction of rotation. + * - Positive values indicate that the rotation is anti-clockwise (i.e. to the left). + * - The value shall be set to `32 766` if the yaw rate is equal to or greater than 327.66 degrees/second to the left. + * - Negative values indicate that the rotation is clockwise (i.e. to the right). + * - The value shall be set to `-32 766` if the yaw rate is equal to or greater than 327,66 degrees/second to the right. + * - The value shall be set to `32 767` if the information is not available. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. + * The reading instant should be the same as for the vehicle acceleration. * - * @unit: 100kg - * @category: Vehicle information + * The DE is used in @ref YawRate DF as defined in clause A.132. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit: 0,01 degree per second. + * + * @category: Vehicle Information */ -VehicleMass ::= INTEGER {hundredKg(1), unavailable(1024)} (1..1024) +YawRateValue ::= INTEGER {straight(0), degSec-000-01ToRight(-1), degSec-000-01ToLeft(1), unavailable(32767)} (-32766..32767) + +---------------------------------------- +-- Specification of CDD Data Frames: +---------------------------------------- + +/** + * This DF represents general Data Frame to describe an acceleration component along with a confidence with a predefined confidence level of 95% for the component. + * + * @details value: the acceleration value which can be estimated as the mean of the current distribution. + * + * @details value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * + * @category: Kinematic Information + * Revision: Created in V2.1.1 + */ +Acceleration1d ::= SEQUENCE { + value AccelerationValue, + confidence AccelerationConfidence +} + +/** + * This DF represents information associated to changes in acceleration. + * + * @details accelOrDecel: the indication of an acceleration change. + * + * @details value actionDeltaTime: the period in which the acceleration change action is performed. + * + * @category: Kinematic Information + * Revision: Created in V2.1.1 + */ +AccelerationChangeIndication ::= SEQUENCE { + accelOrDecel AccelerationChange, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} /** - * Describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * This DF represents an identifier used to describe a protocol action taken by an ITS-S. * - * @field speedValue: speed value. - * It shall be presented as defined in clause A.74, * - * @field speedConfidence: accuracy of the reported speed value. - * It shall be presented as defined in clause A.72. - * - * @category: Vehicle information + * @field originatingStationID: ID of the ITS-S that takes the action. + * + * @field sequenceNumber: a sequence number. + * + * @category: Communication information + * Revision: V1.3.1 */ -Speed ::= SEQUENCE { - speedValue SpeedValue, - speedConfidence SpeedConfidence +ActionID ::= SEQUENCE { + originatingStationID StationID, + sequenceNumber SequenceNumber } /** - * Denotes whether a vehicle is driving forward or backward. - * When the information is unavailable, the value shall be set to 2. + * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. * - * @category: Vehicle information + * @field altitudeValue: altitude of a geographical point. + * + * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. + * + * @category: GeoReference information + * Revision: V1.3.1 */ -DriveDirection ::= ENUMERATED {forward (0), backward (1), unavailable (2)} +Altitude ::= SEQUENCE { + altitudeValue AltitudeValue, + altitudeConfidence AltitudeConfidence +} /** - * Indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. - * If it is the case, the value shall be set to TRUE. + * This DF provides the definition of a geographical area, based on different options. * - * @category: Vehicle information + * @field rectangle: definition of an area of rectangular shape. + * + * @field circle: definition of an area of cicrular shape. + * + * @field polygon: definition of an area of polygonal shape. + * + * @field ellipse: definition of an area of ellipse shape. + * + * @category: GeoReference information + * Revision: Created in V2.1.1 */ -EmbarkationStatus ::= BOOLEAN -/** - * It indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. +Area::= CHOICE { + rectangle RectangularArea, + circle CircularArea, + polygon PolygonalArea, + ellipse EllipticalArea, + radial RadialArea, + -- radialVehicle + ... +} + +/** + * This DE represents a general container for usage in various types of messages. * - * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. - * It shall be presented as specified in clause A.45, + * @details stationType: The type of station that has generated the message that contains the basic container. + * + * @details referencePosition: the reference position of the station that has generated the message that contains the basic container. + * + * @category: Basic information + * Revision: Created in V2.1.1 +*/ +BasicContainer ::= SEQUENCE { + stationType StationType, + referencePosition ReferencePosition, + ... +} - * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined - * confidence level. It shall be presented as defined in clause A.1. +/** + * This DF represents a general Data Frame to describe an angle component along with a confidence with a predefined + * confidence level of 95% for the component in a Cartesian coordinate system. * - * @category: Vehicle information + * @details value: The angle value which can be estimated as the mean of the current distribution. + * + * @details confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * + * @category: Kinematics information + * Revision: Created in V2.1.1 + */ +CartesianAngle ::= SEQUENCE { + value CartesianAngleValue, + confidence AngleConfidence +} + +/** + * This DF represents a general Data Frame to describe an angular speed component along with a confidence with a predefined + * confidence level of 95% for the component in a Cartesian coordinate system. + * + * @details value: The angular speed (rate) value which can be estimated as the mean of the current distribution. + * + * @details confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * + * @category: Kinematics information + * Revision: Created in V2.1.1 */ -LongitudinalAcceleration ::= SEQUENCE { - longitudinalAccelerationValue LongitudinalAccelerationValue, - longitudinalAccelerationConfidence AccelerationConfidence +CartesianAngularSpeed ::= SEQUENCE { + value CartesianAngularSpeedValue, + confidence AngularSpeedConfidence } - /** - * Vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - Negative values indicate that the vehicle is braking. - * - For values equal to or greater than 16 m/s2, the value shall be set to -160. - * - Positive values indicate that the vehicle is accelerating. - * - For acceleration equal to or greater than 16 m/s2 the value shall be set to 160. - * - When the data is unavailable, the value shall be set to 161. - * - * This acceleration is along the tangent plane of the road surface and does not include gravity components. - * - * The DE is used in @ref LongitudinalAcceleration DF as defined in clause A.116. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. +/** + * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence with a predefined + * confidence level of 95% for the component in a Cartesian coordinate system. * - * @category: Vehicle information + * @details value: The angular acceleration value which can be estimated as the mean of the current distribution. + * + * @details confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * + * @category: Kinematics information + * Revision: Created in V2.1.1 */ -LongitudinalAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredForward(1), pointOneMeterPerSecSquaredBackward(-1), unavailable(161)} (-160 .. 161) +CartesianAngularAcceleration ::= SEQUENCE { + value CartesianAngularAccelerationValue, + confidence AngularAccelerationConfidence +} /** - * The absolute accuracy of a reported vehicle acceleration value with a predefined confidence level (e.g. 95 %). The required confidence level is defined by the corresponding standards applying the DE. - * - * The value shall be set to: - * - `1` if the acceleration accuracy is equal to or less than 0,1 m/s2. - * - `n (n > 1 and n < 100)` if the acceleration accuracy is equal to or less than n × 0,1 m/s2. - * - `100` if the acceleration accuracy is equal to or less than 10 m/s2. - * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. - * - `102` if the data is unavailable. + * This DF is a representation of the cause code value of a traffic event. * - * The DE is used in LateralAcceleration DF as defined in clause A.115, LongitudinalAcceleration DF as defined in clause A.116, or VerticalAcceleration DF as defined in clause A.129. + * @field causeCode: the main cause of a detected event. * - * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. + * @field subCauseCode: the subordinate cause of a detected event. * - * In all 3 cases above, the reported acceleration value may be valid and used by the application. - * - * If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * The semantics of the entire DF are completely defined by the component causeCode. + * The interpretation of the subCauseCode may provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. * - * @unit 0,1 m/s2 - * @category Vehicle information + * @category: Traffic information + * Revision: Editorial update in V2.1.1 */ -AccelerationConfidence ::= INTEGER {pointOneMeterPerSecSquared(1), outOfRange(101), unavailable(102)} (0 .. 102) +CauseCode ::= SEQUENCE { + causeCode CauseCodeType, + subCauseCode SubCauseCodeType, + ... +} + +/** + * This DF is an alternative representation of the cause code value of a traffic event. + * + * @field causeCode: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. + * + * The semantics of the entire DF are completely defined by the component causeCode. + * The interpretation of the subCauseCode may provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @category: Traffic information + * Revision: Created in V2.1.1 + */ + +CauseCodeV2 ::= SEQUENCE { + causeCode CHOICE { + reserved SubCauseCodeType, + trafficCondition TrafficConditionSubCauseCode, + accident AccidentSubCauseCode, + roadworks-3 RoadworksSubCauseCode, + reserved4 SubCauseCodeType, + impassability SubCauseCodeType, + adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, + aquaplannning SubCauseCodeType, + reserved8 SubCauseCodeType, + hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, + hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, + hazardousLocation-AnimalOnTheRoad HazardousLocation-AnimalOnTheRoadSubCauseCode, + humanPresenceOnTheRoad HumanPresenceOnTheRoadSubCauseCode, + reserved13 SubCauseCodeType, + wrongWayDriving WrongWayDrivingSubCauseCode, + rescueAndRecoveryWorkInProgress RescueAndRecoveryWorkInProgressSubCauseCode, + reserved16 SubCauseCodeType, + adverseWeatherCondition-ExtremeWeatherCondition AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, + adverseWeatherCondition-Visibility AdverseWeatherCondition-VisibilitySubCauseCode, + adverseWeatherCondition-Precipitation AdverseWeatherCondition-PrecipitationSubCauseCode, + violence SubCauseCodeType, + reserved21 SubCauseCodeType, + reserved22 SubCauseCodeType, + reserved23 SubCauseCodeType, + reserved24 SubCauseCodeType, + reserved25 SubCauseCodeType, + slowVehicle SlowVehicleSubCauseCode, + dangerousEndOfQueue DangerousEndOfQueueSubCauseCode, + reserved28 SubCauseCodeType, + reserved29 SubCauseCodeType, + reserved30 SubCauseCodeType, + reserved31 SubCauseCodeType, + reserved32 SubCauseCodeType, + reserved33 SubCauseCodeType, + reserved34 SubCauseCodeType, + reserved35 SubCauseCodeType, + reserved36 SubCauseCodeType, + reserved37 SubCauseCodeType, + reserved38 SubCauseCodeType, + reserved39 SubCauseCodeType, + reserved40 SubCauseCodeType, + reserved41 SubCauseCodeType, + reserved42 SubCauseCodeType, + reserved43 SubCauseCodeType, + reserved44 SubCauseCodeType, + reserved45 SubCauseCodeType, + reserved46 SubCauseCodeType, + reserved47 SubCauseCodeType, + reserved48 SubCauseCodeType, + reserved49 SubCauseCodeType, + reserved50 SubCauseCodeType, + reserved51 SubCauseCodeType, + reserved52 SubCauseCodeType, + reserved53 SubCauseCodeType, + reserved54 SubCauseCodeType, + reserved55 SubCauseCodeType, + reserved56 SubCauseCodeType, + reserved57 SubCauseCodeType, + reserved58 SubCauseCodeType, + reserved59 SubCauseCodeType, + reserved60 SubCauseCodeType, + reserved61 SubCauseCodeType, + reserved62 SubCauseCodeType, + reserved63 SubCauseCodeType, + reserved64 SubCauseCodeType, + reserved65 SubCauseCodeType, + reserved66 SubCauseCodeType, + reserved67 SubCauseCodeType, + reserved68 SubCauseCodeType, + reserved69 SubCauseCodeType, + reserved70 SubCauseCodeType, + reserved71 SubCauseCodeType, + reserved72 SubCauseCodeType, + reserved73 SubCauseCodeType, + reserved74 SubCauseCodeType, + reserved75 SubCauseCodeType, + reserved76 SubCauseCodeType, + reserved77 SubCauseCodeType, + reserved78 SubCauseCodeType, + reserved79 SubCauseCodeType, + reserved80 SubCauseCodeType, + reserved81 SubCauseCodeType, + reserved82 SubCauseCodeType, + reserved83 SubCauseCodeType, + reserved84 SubCauseCodeType, + reserved85 SubCauseCodeType, + reserved86 SubCauseCodeType, + reserved87 SubCauseCodeType, + reserved88 SubCauseCodeType, + reserved89 SubCauseCodeType, + reserved90 SubCauseCodeType, + vehicleBreakdown VehicleBreakdownSubCauseCode, + postCrash PostCrashSubCauseCode, + humanProblem HumanProblemSubCauseCode, + stationaryVehicle StationaryVehicleSubCauseCode, + emergencyVehicleApproaching EmergencyVehicleApproachingSubCauseCode, + hazardousLocation-DangerousCurve HazardousLocation-DangerousCurveSubCauseCode, + collisionRisk CollisionRiskSubCauseCode, + signalViolation SignalViolationSubCauseCode, + dangerousSituation DangerousSituationSubCauseCode, + reserved100 SubCauseCodeType, + reserved101 SubCauseCodeType, + reserved102 SubCauseCodeType, + reserved103 SubCauseCodeType, + reserved104 SubCauseCodeType, + reserved105 SubCauseCodeType, + reserved106 SubCauseCodeType, + reserved107 SubCauseCodeType, + reserved108 SubCauseCodeType, + reserved109 SubCauseCodeType, + reserved110 SubCauseCodeType, + reserved111 SubCauseCodeType, + reserved112 SubCauseCodeType, + reserved113 SubCauseCodeType, + reserved114 SubCauseCodeType, + reserved115 SubCauseCodeType, + reserved116 SubCauseCodeType, + reserved117 SubCauseCodeType, + reserved118 SubCauseCodeType, + reserved119 SubCauseCodeType, + reserved120 SubCauseCodeType, + reserved121 SubCauseCodeType, + reserved122 SubCauseCodeType, + reserved123 SubCauseCodeType, + reserved124 SubCauseCodeType, + reserved125 SubCauseCodeType, + reserved126 SubCauseCodeType, + reserved127 SubCauseCodeType, + reserved128 SubCauseCodeType + }, + ... +} /** - * Indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. + * The DF describes the position of a CEN DSRC road side equipment. * - * @field: lateralAccelerationValue: lateral acceleration value at a point in time. - * It shall be presented as specified in clause A.42, + * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. + * + * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. * - * @field: lateralAccelerationConfidence: accuracy of the reported lateral acceleration value with - * a predefined confidence level. It shall be presented as defined in clause A.1. + * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. * - * @category Vehicle information + * @category: Infrastructure information, Communication information + * Revision: V1.3.1 */ -LateralAcceleration ::= SEQUENCE { - lateralAccelerationValue LateralAccelerationValue, - lateralAccelerationConfidence AccelerationConfidence +CenDsrcTollingZone ::= SEQUENCE { + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, + ... } -/** - * Vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - Negative value indicates that the vehicle is accelerating towards the right side with regards to the vehicle orientation. - * - For values equal to or greater than 16 m/s2 towards the right, the value shall be set to -160. - * - Positive values indicate the acceleration to the left hand side with regards to the vehicle orientation. - * - For values equal to or greater than 16 m/s2 towards the left, the value shall be set to 160. - * - When the information is not available, the value shall be set to 161. +/** * - * The DE is used in @ref LateralAcceleration DF as defined in clause A.115. + * This DF defines a circular area that is centred on a reference position defined outside of the context of this DF. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @field centerPoint: optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field radius: the radius of the circular area, using the DE StandardLength. * - * @category Vehicle information - * @unit: 0.1 m/s2 + * @category: GeoReference information + * Revision: Created in V2.1.1 */ -LateralAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredToRight(-1), pointOneMeterPerSecSquaredToLeft(1), unavailable(161)} (-160 .. 161) +CircularArea ::= SEQUENCE { + nodeCenterPoint CartesianPosition3d OPTIONAL, + radius StandardLength +} /** - * It indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. + * This DF indicates the opening/closure status of a lane or a set of lanes. * - * @field: verticalAccelerationValue: vertical acceleration value at a point in time. - * It shall be presented as specified in clause A.96, + * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of inner hard shoulder lanes. * - * @field: verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with - * a predefined confidence level. It shall be presented as defined in clause A.1. + * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of outer hard shoulder lanes. * - * @category Vehicle information + * @field drivingLaneStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of driving lanes. + * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. + * + * @category: GeoReference information, Road topology information + * Revision: V1.3.1 */ -VerticalAcceleration ::= SEQUENCE { - verticalAccelerationValue VerticalAccelerationValue, - verticalAccelerationConfidence AccelerationConfidence +ClosedLanes ::= SEQUENCE { + innerhardShoulderStatus HardShoulderStatus OPTIONAL, + outerhardShoulderStatus HardShoulderStatus OPTIONAL, + drivingLaneStatus DrivingLaneStatus OPTIONAL, + ... } /** - * Vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - Positive values indicate that the vehicle is accelerating upwards. - * - The value shall be set to `160` if the upwards acceleration is equal to or greater than 16 m/s2.- - * - Negative values indicate the vehicle is accelerating downwards. - * - The value shall be set to `-160` if the downwards acceleration is equal to or greater than 16 m/s2. - * - The value shall be set to `161` if the information is not available. + * The DF provides information about the breakup of a cluster. * - * The DE is used in @ref VerticalAcceleration DF as defined in clause A.129. + * @field clusterBreakupReason: indicates the reason for breakup. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @field breakupTime: indicates the time of breakup. * - * @category Vehicle information - * @unit: 0.1 m/s2 - * + * @category: Cluster Information + * Revision: Created in V2.1.1 */ -VerticalAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredUp(1), pointOneMeterPerSecSquaredDown(-1), unavailable(161)} (-160 .. 161) +ClusterBreakupInfo ::= SEQUENCE { + clusterBreakupReason ClusterBreakupReason, + breakupTime ClusterOpTimestamp, + ... +} /** - * The type of technical context the ITS-S is integrated in. - * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. + * The DF provides information about the joining of a cluster. * - * The value shall be set to: - * - 0 `unknown`: information about the ITS-S context is not provided, - * - 1 pedestrian`: ITS-S carried by human being traveling on foot, incl. possible use of roller skates or skateboards, - * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, - * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class L1, L2, - * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class L3, L4, L5, L6, L7, - * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, - * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, - * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, - * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, - * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, - * ***NOTE***: Only to be used when not towed. - * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, - * - 12 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), - * - 13 16-255: reserved for future usage. - * - * The DE is used in @ref RestrictedTypes DF as defined in clause A.125. + * @field clusterId: indicates the identifier of the cluster. * - * @category Vehicle information + * @field joinTime: indicates the time of joining. + * + * @category: Cluster Information + * Revision: Created in V2.1.1 */ -StationType ::= INTEGER {unknown(0), pedestrian(1), cyclist(2), moped(3), motorcycle(4), passengerCar(5), bus(6), -lightTruck(7), heavyTruck(8), trailer(9), specialVehicles(10), tram(11), roadSideUnit(15)} (0..255) +ClusterJoinInfo ::= SEQUENCE { + clusterId ClusterId, + joinTime ClusterOpTimestamp, + ... +} /** - * This DE describes the status of the exterior light switches of a vehicle. - * - * The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, - * either manually by the driver or automatically by a vehicle system. The bit value does not indicate - * if the corresponding lamps are alight or not. - * - * If a vehicle is not equipped with a certain light or if the light switch status information is not available, - * the corresponding bit shall be set to `0`. - * - * The `fogLightOn` only indicates the status of the tail fog lamp switch. - * - * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not - * alternate with the blinking interval. + * The DF provides information about the leaving of a cluster. * - * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. + * @field clusterId: indicates the cluster. * - * @category Vehicle information + * @field clusterLeaveReason: indicates the reason for leaving. + * + * @category: Cluster Information + * Revision: Created in V2.1.1 */ -ExteriorLights ::= BIT STRING { - lowBeamHeadlightsOn (0), - highBeamHeadlightsOn (1), - leftTurnSignalOn (2), - rightTurnSignalOn (3), - daytimeRunningLightsOn (4), - reverseLightOn (5), - fogLightOn (6), - parkingLightsOn (7) -} (SIZE(8)) +ClusterLeaveInfo ::= SEQUENCE { + clusterId ClusterId, + clusterLeaveReason ClusterLeaveReason, + ... +} /** - * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. - * The value is assigned according to "_class_" and "_division_" definitions of dangerous goods as specified in part II, - * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. + * This DF represents the column of the lower triangular positive semi-definite matrix and consists of a list of correlation row values. + * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. + * Each column "i" of the lower triangular then contains k-(i-1) values, where "i" refers to the column number count + * starting at 1 from the left. + * + * @category: Sensing Information + * Revision: Created in V2.1.1 +*/ +CorrelationColumn ::= SEQUENCE SIZE (1..17) OF CorrelationRowValue -- tbd extension to be defined? + +/** + * This DF represents the curvature of the vehicle trajectory and the accuracy. + * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. * - * The DE is used in @ref DangerousGoodsExtended DF as defined in clause A.108. + * @field curvatureValue: Detected curvature of the vehicle trajectory. * - * @category Vehicle information + * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. + * + * @category: Vehicle information + * Revision: V1.3.1 */ -DangerousGoodsBasic::= ENUMERATED { - explosives1(0), - explosives2(1), - explosives3(2), - explosives4(3), - explosives5(4), - explosives6(5), - flammableGases(6), - nonFlammableGases(7), - toxicGases(8), - flammableLiquids(9), - flammableSolids(10), - substancesLiableToSpontaneousCombustion(11), - substancesEmittingFlammableGasesUponContactWithWater(12), - oxidizingSubstances(13), - organicPeroxides(14), - toxicSubstances(15), - infectiousSubstances(16), - radioactiveMaterial(17), - corrosiveSubstances(18), - miscellaneousDangerousSubstances(19) +Curvature ::= SEQUENCE { + curvatureValue CurvatureValue, + curvatureConfidence CurvatureConfidence } /** * This DF provides a description of dangerous goods being carried by a heavy vehicle. * - * @field dangerousGoodsType: Type of dangerous goods, It shall be presented as defined in clause A.17, + * @field dangerousGoodsType: Type of dangerous goods, I * * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], @@ -1590,6 +3569,7 @@ DangerousGoodsBasic::= ENUMERATED { * This DE is optional; it shall be present if the information is available. * * @category Vehicle information + * Revision: V1.3.1 */ DangerousGoodsExtended ::= SEQUENCE { dangerousGoodsType DangerousGoodsBasic, @@ -1603,789 +3583,1333 @@ DangerousGoodsExtended ::= SEQUENCE { ... } + + +/** + * This DF represents a position in a two- or three-dimensional cartesian coordinate system. + * + * @details xCoordinate: the X coordinate value using the DE CartesianCoordinate. + * + * @details yCoordinate: the Y coordinate value using the DE CartesianCoordinate. + * + * @details xCoordinate: the optional Z coordinate value using the DE CartesianCoordinate. + * + * @category: GeoReference information + * Revision: Created in V2.1.1 +*/ +CartesianPosition3d::=SEQUENCE{ + xCoordinate CartesianCoordinate, + yCoordinate CartesianCoordinate, + zCoordinate CartesianCoordinate OPTIONAL -- tbd keep optional? +} + + /** - * It indicates if a vehicle is carrying goods with heavy load, excess width, excess length or excess height. - * The corresponding bit shall be set to 1 when the special transport applies to the corresponding case. - * Otherwise, the corresponding bit shall be set to 0. + * This DF represents a coordinate in a cartesian reference system + * + * @details value: the coordinate value which can be estimated as the mean of the current distribution. + * + * @details confidence: the coordinate accuracy associated to the provided value at a predefined confidence level of 95%. * - * @category Vehicle information + * @category: GeoReference information + * Revision: Created in V2.1.1 +*/ +CartesianCoordinateWithConfidence ::= SEQUENCE { + value CartesianCoordinate, + confidence CoordinateConfidence +} + + +/** + * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. + * + * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. + * + * @field deltaLongitude: A delta longitude offset with regards to the longitude value of the reference position. + * + * @field deltaAltitude: A delta altitude offset with regards to the altitude value of the reference position. + * + * @category: GeoReference information + * Revision: V1.3.1 + */ +DeltaReferencePosition ::= SEQUENCE { + deltaLatitude DeltaLatitude, + deltaLongitude DeltaLongitude, + deltaAltitude DeltaAltitude +} + +/** + * This DF represnets a portion of digital map, described using a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * Revision: V1.3.1 */ -SpecialTransportType ::= BIT STRING {heavyLoad(0), excessWidth(1), excessLength(2), excessHeight(3)} (SIZE(4)) +DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition + +/** + * + * This DF represents an elliptical area that is centred on a reference position which is defined outside of the context of this DF. + * + * @field centerPoint: optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field semiMajorAxisLenght: half length of the major axis of the ellipse. + * + * @field semiMinorAxisLenght: half length of the minor axis of the ellipse. + * + * @field orientation: orientation of the major axis of the ellipse in the WGS84 coordinate system. + + * @category: GeoReference information + * Revision: Created in V2.1.1 +*/ + +EllipticalArea ::= SEQUENCE { + centerPoint CartesianPosition3d OPTIONAL, + semiMajorAxisLenght StandardLength, + semiMinorAxisLenght StandardLength, + orientation Wgs84AngleValue + -- semiHeight SemiRangeLength OPTIONAL +} /** - * It describes the status of light bar and any sort of audible alarm system besides the horn. - * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. - * When the light bar or audible alarm is active, the corresponding bits shall be set to 1. - * Otherwise, it shall be set to 0. + * The DF consists of a list of @Ref EventPoint. + * The eventPosition of each @Ref EventPoint is defined with respect to the previous @Ref EventPoint in the list. + * Except for the first @Ref EventPoint which is defined with respect to a position outside of the context of this DF. * - * @category Vehicle information + * @category: GeoReference information, Traffic information + * Revision: Generalized the semantics in V2.1.1 + */ +EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint + + +/** + * This DF provides information related to an event at a defined position. + * + * @field eventPosition: offset position of a detected event point to a defined position. + * + * @field eventDeltaTime: optional time travelled by the detecting ITS-S since the previous detected event point. + * + * @field informationQuality: Information quality of the detection for this event point. + * + * @category: GeoReference information, Traffic information + * Revision: generalized the semantics in V2.1.1 */ -LightBarSirenInUse ::= BIT STRING { - lightBarActivated (0), - sirenActivated (1) -} (SIZE(2)) +EventPoint ::= SEQUENCE { + eventPosition DeltaReferencePosition, + eventDeltaTime PathDeltaTime OPTIONAL, + informationQuality InformationQuality +} /** - * Height of left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle - * rear to front). For values equal to or greater than 99 cm, the DE shall be set to 99. - * If the value is unavailable, the DE shall be set to 100. + * This DF represents the status of the exterior light switches of a traffic participant. + * + * @field vehicular: represents the status of the exterior light switches of a road vehicle. + * + * @field vruSpecific: represents the status of the exterior light switches of a VRU. * - * @unit 1 centimeter - * @category Vehicle information + * @category: tbd + * Revision: created in V2.1.1 */ -HeightLonCarr ::= INTEGER {oneCentimeter(1), unavailable(100)} (1..100) +ExteriorLightsExtended ::= SEQUENCE { + vehicular ExteriorLights, + vruSpecific VruSpecificExteriorLights, + ... +} + /** - * Distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. - * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. - * For values equal to or higher than 1.26 metres, the value shall be set to `126`. - * If the information is unavailable, the value shall be set to `127`. + * This DF indicates a transversal position in relation to the different lanes of the road. + * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where V-ITS-S would normally not be present. * - * @unit 1 centimeter - * @category Vehicle information - */ -PosLonCarr ::= INTEGER {oneCentimeter(1), unavailable(127)} (1..127) + * The following options are available: + * + * @field trafficLanePosition: a position on a traffic lane. + * + * @field nonTrafficLanePosition: a position on a lane which is not a traffic lane. + * + * @field trafficIslandPosition: a position on a traffic island + * + * @field mapPosition: a position on a lane identified in a MAPEM. + * + * @category: Road Topology information + * Revision: created in V2.1.1 + */ +GeneralizedLanePosition::= CHOICE { + trafficLanePosition LanePosition, + nonTrafficLanePosition LanePositionAndType, + trafficIslandPosition TrafficIslandPosition, + mapPosition MapPosition, + ... +} /** - * It indicates the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the - * middle point of the front line of the vehicle bounding box. - * For values equal to or greater than 2.9 metres, the value shall be set to `29`. - * The value shall be set to `30` if the information is unavailable. + * This DF represents the Heading in a WGS84 co-ordinates system. * - * The DE is used in @ref PositionOfPillars DF as defined in clause A.120. + * @field headingValue: the heading value. * - * @unit 1 centimeter - * @category Vehicle information + * @field headingConfidence: the accuracy of the reported heading value with a predefined confidence level. + * + * @note: this DF is kept for backwards compatibiliyty reasons only. It is reccomended to use the @ref Wgs84Angle instead. + * @category: GeoReference information, Vehicle information, Road topology information + * Revision: V1.3.1 */ -PosPillar ::= INTEGER {tenCentimeters(1), unavailable(30)} (1..30) +Heading ::= SEQUENCE { + headingValue HeadingValue, + headingConfidence HeadingConfidence +} + /** - * It indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of - * the vehicle bounding box of the empty load vehicle. - * For values equal to or higher than 6.2 metres, the data value be set to `62`. - * The value shall be set to `63` if the information is unavailable. + * This DF provides information associated to heading change indicators such as a change of direction. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @unit 1 centimeter - * @category Vehicle information + * @field direction: the direction of heading change value. + * + * @field actionDeltaTime: the period over which a direction change action is performed. + * + * @category: t.b.d. + * Revision: created in V2.1.1 */ -PosCentMass ::= INTEGER {tenCentimeters(1), unavailable(63)} (1..63) +HeadingChangeIndication ::= SEQUENCE { + direction TurningDirection, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} /** - * This DE includes whether an ITS message is transmitted as request from ITS-S or a response transmitted from - * ITS-S after receiving request from other ITS-Ss. - * @category Communication information - */ -RequestResponseIndication ::= ENUMERATED {request(0), response(1)} + * This DF represents a frequency channel + * + * @field centreFrequency: the centre frequency of the channel + * @unit: 10exp+2 Hz (where exp is exponent) + * + * @details channelWidth: width of the channel + * @unit: 10exp Hz (where exp is exponent) + * + * @details exponent of the power of 10 + * @unit: N/A + * + * @category: Communication information + * Revision: created in V2.1.1 +*/ +InterferenceManagementChannel ::= SEQUENCE { + centreFrequency INTEGER (1 .. 99999), + channelWidth INTEGER (0 .. 9999), + exponent INTEGER (0 .. 15) +} /** - * Speed limitation applied to a geographical position, a road section or a geographical region. * - * @unit: km/h - * @category: Infrastructure information, Traffic information + * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. + * + * @field zoneDefinition: contains the geographical definition of the zone. + * + * @field managementInfo: contains interference management information applicable in the zone defined in @field zoneDefinition. + * + * @category: Communication information + * Revision: created in V2.1.1 */ -SpeedLimit ::= INTEGER {oneKmPerHour(1)} (1..255) +InterferenceManagementZone ::= SEQUENCE { + zoneDefinition InterferenceManagementZoneDefinition, + managementInfo InterferenceManagementInfo +} /** - * It indicates the duration in minutes of a vehicle being stationary. - * For a vehicle being stationary since equal to or greater than 15 minutes, the value shall be set to `3`. - * @category: Infrastructure information, Traffic information - */ -StationarySince ::= ENUMERATED {lessThan1Minute(0), lessThan2Minutes(1), lessThan15Minutes(2), equalOrGreater15Minutes(3)} + * This DF represents the geographical definition of the zone where band sharing occurs. + * + * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneRadius: optional radius of the interference management zone in metres. + * + * @field interferenceManagementZoneID: optional identification of the interference management zone. + * + * @field interferenceManagementZoneShape: shape of the interference management zone. + * + * @category: Communication information + * Revision: created in V2.1.1 + */ +InterferenceManagementZoneDefinition::= SEQUENCE{ + interferenceManagementZoneLatitude Latitude, + interferenceManagementZoneLongitude Longitude, + interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, + interferenceManagementZoneID ProtectedZoneID OPTIONAL, + interferenceManagementZoneShape Area (WITH COMPONENTS{..., radial ABSENT}) OPTIONAL, + ... +} /** - * Temperature. - * - For temperature equal to or less than -60 °C, the value shall be set to `60`. - * - For temperature equal to or greater than 67 °C, the value shall be set to `67`. - * - * @unit: °C - * @category: Other information + * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. + * + * @category: Communication information. + * Revision: created in V2.1.1 */ -Temperature ::= INTEGER {equalOrSmallerThanMinus60Deg (-60), oneDegreeCelsius(1), equalOrGreaterThan67Deg(67)} (-60..67) +InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel + /** - * It indicates traffic rules that apply to vehicles at a certain position. - * It includes the following information: - * - If overtaking is prohibited for all vehicles, the DE shall be set to `0`. - * - If overtaking is prohibited for trucks, the DE shall be set to `1`. - * - If vehicles should pass to the right lane, the DE shall be set to `2`. - * - If vehicles should pass to the left lane, the DE shall be set to `3`. + * This DF contains interference management information for one affected frequency channel. * - * @category: Infrastructure information, Traffic information + * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management + * + * @field interferenceManagementZoneType: type of the interference management zone. + * + * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. + * + * @field expiryTime: 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 + * + * @category: Communication information + * Revision: created in V2.1.1 */ -TrafficRule ::= ENUMERATED {noPassing(0), noPassingForTrucks(1), passToRight(2), passToLeft(3), ... +InterferenceManagementInfoPerChannel ::= SEQUENCE { + interferenceManagementChannel InterferenceManagementChannel, + interferenceManagementZoneType InterferenceManagementZoneType, + interferenceManagementMitigationType InterferenceManagementMitigationType OPTIONAL, + expiryTime TimestampIts OPTIONAL, -- from ITS-Container + ... } /** - * Perpendicular distance between front and rear axle of the wheel base of vehicle. - * - The value shall be set to `126` if the wheel base distance is equal to or greater than 12.6 metres. - * - The value shall be set to `127` if the information is unavailable. + * This DF provides information and commands defining the required mitigation type in the defined interference management zone. + * @field unavailable: this is the default choice to be used when information is not available * - * @category: Vehicle information - * @unit 0.1 metre + * @field mitigationForTechnologies: 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. + * + * @category: Communication information + * Revision: created in V2.1.1 */ -WheelBaseVehicle ::= INTEGER {tenCentimeters(1), unavailable(127)} (1..127) +InterferenceManagementMitigationType ::= CHOICE { + unavailable NULL, + mitigationForTechnologies MitigationForTechnologies +} /** - * The smallest circular turn (i.e. U-turn) that the vehicle is capable of making. - * - The value shall be set to `254` if the turning radius is equal to or greater than 254 × 0.4 metre = 101.6 metres. - * - The value shall be set to `255` if the information is unavailable. - * - * For vehicle with tracker, the turning radius applies to the vehicle only. + * This DF consist of a list of up to 16 interference interference management zones. * - * @category: Vehicle information - * @unit 0.4 metre + * **EXAMPLE**: An interference management communication zone may be defined around a + * CEN DSRC road side equipment or an urban rail operational area. + * Communication information + * Revision: created in V2.1.1 */ -TurningRadius ::= INTEGER {point4Meters(1), unavailable(255)} (1..255) +InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone /** - * Perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. - * - For values equal to or higher than 1.9 metres, the DE shall be set to `19`. - * - The value shall bet set to `20` if the information is unavailable. - * @category: Vehicle information - * @unit 0.1 metre + * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301. + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the intersection + * + * @note: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique. + * @category: Road topology information + * Revision: created in V2.1.1 */ -PosFrontAx ::= INTEGER {tenCentimeters(1), unavailable(20)} (1..20) +IntersectionReferenceId ::= SEQUENCE { + region RoadRegulatorId OPTIONAL, + id IntersectionID +} /** - * It indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. - * - * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear - * of the vehicle. - * The left side seat of a row refers to the left hand side seen from vehicle rear to front. - * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, - * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. - * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, - * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. - * - * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. - * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. - * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. - * Otherwise, the value of seat occupation bit shall be set according to the following conditions: - * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. - * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row - * shall be set to `1`. - * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. - * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row - * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. - * - * @category: Vehicle information + * This DF consists of a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * Revision: Editorial update in V2.1.1 */ -PositionOfOccupants ::= BIT STRING { - row1LeftOccupied (0), - row1RightOccupied (1), - row1MidOccupied (2), - row1NotDetectable (3), - row1NotPresent (4), - row2LeftOccupied (5), - row2RightOccupied (6), - row2MidOccupied (7), - row2NotDetectable (8), - row2NotPresent (9), - row3LeftOccupied (10), - row3RightOccupied (11), - row3MidOccupied (12), - row3NotDetectable (13), - row3NotPresent (14), - row4LeftOccupied (15), - row4RightOccupied (16), - row4MidOccupied (17), - row4NotDetectable (18), - row4NotPresent (19)} (SIZE(20)) +ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition /** - * It indicates the positioning technology being used to estimate a geographical position. - * It covers the following positioning solutions: - * - 1 `sGNSS`: Global Navigation Satellite System, - * - 2 `dGNSS`: Differential GNSS, - * - 3 `sGNSSplusDR`: GNSS and dead reckoning, - * - 4 `dGNSSplusDR`: Differential GNSS and dead reckoning, - * - 5 `dR`: dead reckoning. + * 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. * - * @category: GeoReference information + * @field protocolVersion: version of the ITS message. + * + * @field messageId: type of the ITS message. + * + * @field stationId: the identifier of the ITS-S that generates the ITS message in question. + * + * @category: Communication information + * Revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. */ -PositioningSolutionType ::= ENUMERATED {noPositioningSolution(0), sGNSS(1), dGNSS(2), sGNSSplusDR(3), dGNSSplusDR(4), dR(5), ...} +ItsPduHeader ::= SEQUENCE { + protocolVersion INTEGER (0..255), + messageId MessageId, + stationId StationID +} /** - * This DF provides information related to the identification of a vehicle. + * This DF indicates a transversal position in resolution of lanes and the associated lane type. * - * @field wMInumber: World Manufacturer Identifier (WMI) code. It shall be presented as defined in clause A.98, + * @field: transversalPosition: the transversal position. * - * @field vDS: Vehicle Descriptor Section (VDS). It shall be presented as defined in clause A.89. + * @field: laneType: the type of the lane identified in the component transversalPosition. * - * @category: Vehicle information + * @category GeoReference information + * Revision: Created in V2.1.1 */ -VehicleIdentification ::= SEQUENCE { - wMInumber WMInumber OPTIONAL, - vDS VDS OPTIONAL, +LanePositionAndType::= SEQUENCE { + transversalPosition LanePosition, + laneType LaneType, ... } /** - * World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. + * This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. * - * The DE is used in @ref VehicleIdentification DF as defined in clause A.130. + * @field: lateralAccelerationValue: lateral acceleration value at a point in time. + * + * @field: lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @category Vehicle information + * Revision: V1.3.1 + */ +LateralAcceleration ::= SEQUENCE { + lateralAccelerationValue LateralAccelerationValue, + lateralAccelerationConfidence AccelerationConfidence +} + +/** + * This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. + * + * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. + + * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. * @category: Vehicle information + * Revision: V1.3.1 */ -WMInumber ::= IA5String (SIZE(1..3)) +LongitudinalAcceleration ::= SEQUENCE { + longitudinalAccelerationValue LongitudinalAccelerationValue, + longitudinalAccelerationConfidence AccelerationConfidence +} + +/** + * This DF represents the estimated position along the longitudinal length of a particular lane. + * + * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. + * + * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @category: Vehicle information + * Revision: V1.3.1 +*/ +LongitudinalLanePosition ::= SEQUENCE { + longitudinalLanePositionValue LongitudinalLanePositionValue, + longitudinalLanePositionConfidence LongitudinalLanePositionConfidence +} + +/** + * 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 @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. + * + * @category: Vehicle information + * Revision: V1.3.1 +*/ +LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..17) OF CorrelationColumn -- tbd extension to be addded? /** - * Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. + * This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301. * - * The DE is used in @ref VehicleIdentification DF as defined in clause A.130. + * @field mapReference: optionally identifies the MAPEM carrying the topology. + * It is absent if the MAPEM topology is known from the context. + * + * @field lane: identifies the lane in the topology. * - * @category: Vehicle information + * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane. + * + * @category: Road topology information + * Revision: Created in V2.1.1 */ -VDS ::= IA5String (SIZE(6)) +MapPosition ::= SEQUENCE { + mapReference MapReference OPTIONAL, + laneId LaneId, + longitudinalLanePosition LongitudinalLanePosition OPTIONAL, + ... +} /** - * Type of energy being used and stored in vehicle. - * - If a storage type is used by the vehicle, the corresponding bit shall be set to `1`. - * - Otherwise, the corresponding bit shall be set to `0`. + * This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301. + * The following options are provided: + * + * @field roadsegment: option that identifies the description of a road segment contained in a MAPEM. + * + * @field intersection: option that identifies the description of an intersection contained in a MAPEM. * - * @category: Vehicle information + * @category: Road topology information + * Revision: Created in V2.1.1 */ -EnergyStorageType ::= BIT STRING {hydrogenStorage(0), electricEnergyStorage(1), liquidPropaneGas(2), compressedNaturalGas(3), diesel(4), gasoline(5), ammonia(6)} (SIZE(7)) + +MapReference::= CHOICE { + roadsegment RoadSegmentReferenceId, + intersection IntersectionReferenceId + } /** - * Length of vehicle and accuracy indication information. * - * @field vehicleLengthValue: length of vehicle. It shall be presented as defined in clause A.92 + * This DF represents a list @ref MitigationPerTechnologyClass. + * @category: Communication information + * Revision: Created in V2.1.1 +*/ +MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyClass -- tbd extension needed? + +/** * - * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. - * It shall be presented as defined in clause A.91. + * This DF represents a set of mitigation parameters for a specific technology, as specified in ETSI TS 103 724, clause 7.. + * + * @field accessTechnologyClass: channel access technology to which this mitigation is applied. + * + * @field lowDutyCycle: duty cycle limit. + * @unit: 0.01% steps + * + * @field powerReduction: the delta value of power to be reduced. + * @unit: dB + * + * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175. + * @unit: ms + * + * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571. + * @unit: ms + * + * @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, clause 7. + * + * @category: Communication information + * Revision: Created in V2.1.1 + */ +MitigationPerTechnologyClass ::= SEQUENCE { + accessTechnologyClass AccessTechnologyClass, + lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, + powerReduction INTEGER (0 .. 30) OPTIONAL, + dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, + dmcTonLimit INTEGER (0 .. 20) OPTIONAL, + ... +} + +/** + * This DF indicates both the class and associated subclass that best describes an object, based on different options: + * + * @field vehicleSubclass: the object is a road vehicle. + * + * @field vruSubclass: the object is a VRU. + * + * @field groupSubClass: the object is a VRU CLuster. + * + * @field otherSubclass: the object is of a different types as the above. + * + * @category: Sensing information + * Revision: Created in V2.1.1 + */ +ObjectClass ::= CHOICE { + vehicleSubclass VehicleSubclass, + vruSubclass VruProfileAndSubprofile, + groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingArea ABSENT}), + otherSubclass OtherSubclass, + ... +} + +/** + * This DF consist of a list of object classes. + * + * @category: Sensing information + * Revision: Created in V2.1.1 +*/ +ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence --tbd added extension? + +/** +* This DF represents the classification of a detected object together with a confidence indication. + * + * @field objectClass: the class of the object. + * + * @field confidence: the associated confidence information. + * + * @category: Sensing information + * Revision: Created in V2.1.1 +*/ +ObjectClassWithConfidence ::= SEQUENCE { + objectClass ObjectClass, + confidence ObjectClassConfidence +} +/** + * This DF represents a dimension of an object together with a confidence indication * - * @category: Vehicle information - */ -VehicleLength ::= SEQUENCE { - vehicleLengthValue VehicleLengthValue, - vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication + * @field value: the object dimension value which can be estimated as the mean of the current distribution. + * + * @field confidence: the associated confidence information. + * + * @category: Sensing information + * Revision: Created in V2.1.1 +*/ +ObjectDimension ::= SEQUENCE { + value ObjectDimensionValue, + confidence ObjectDimensionConfidence } /** - * Length of a vehicle. - * - The value shall be set to 1 022 if the vehicle length is equal to or greater than 102.2 metres. - * - The value shall be set to 1 023 if the information in unavailable. - * - * The DE is used in @ref VehicleLength DF as defined in clause A.131. + * This DF that represents a path with a set of path points. + * It may contain up to `40` @ref PathPoin. * - * @unit: 0.1 metre - * @category: Vehicle information + * 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. + * + * @category: GeoReference information, Vehicle information + * Revision: semantics updated in V2.1.1 */ -VehicleLengthValue ::= INTEGER {tenCentimeters(1), outOfRange(1022), unavailable(1023)} (1..1023) +PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint /** - * To indicate whether the presence of a trailer is detectable or whether its length is included in a - * reported vehicle length value. - * - When the information is not known, the value shall be set to `unavailable(4)`. - * - * The DE is used in @ref VehicleLength DF as defined in clause A.131. - * - * @category: Vehicle information + * This DF defines an offset waypoint position within a path. + * + * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. + * + * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. + * + * @category GeoReference information + * Revision: semantics updated in V2.1.1 */ -VehicleLengthConfidenceIndication ::= ENUMERATED {noTrailerPresent(0), trailerPresentWithKnownLength(1), trailerPresentWithUnknownLength(2), trailerPresenceIsUnknown(3), unavailable(4)} +PathPoint ::= SEQUENCE { + pathPosition DeltaReferencePosition, + pathDeltaTime PathDeltaTime OPTIONAL +} /** - * Width of a vehicle, including side mirrors. - * - For a vehicle width equal to or greater than 6.1 metres, the value shall be set to `61`. - * - The value shall be set to `62` if the information is unavailable. - * - * @unit: 0.1 metre - * @category: Vehicle information + * The DF that defines a waypoint position within a path. + * + * @field pathPosition: The waypoint position defined as an absolute position. + * + * @field pathDeltaTime: The optional delta time in which the waypoint will be occupied, from a reference time. + * + * @category GeoReference information + * Revision: created in V2.1.1 */ -VehicleWidth ::= INTEGER {tenCentimeters(1), outOfRange(61), unavailable(62)} (1..62) +PathPointAbsolute ::= SEQUENCE { + pathPosition ReferencePosition, + pathDeltaTime PathDeltaTime OPTIONAL -- tbd shall this really be optional +} -/** - * DF that defines a path with a set of path points. - * It may contain up to `40` path points. Each path point shall be presented as defined in clause A.118 @ref PathPoint. +/** + * This DF contains information about a perceived object including its kinematic and attitude representation, + * + * @field objectID: Identifier assigned to a detected object, using the DE Identifier,. + * + * @field timeOfMeasurement: 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. + * + * @field xCoordinate: X Coordinate, i.e. distance to detected object from the ITS-S's reference point to object reference point in x-direction at the time + * of measurement, in a pre-defined coordinate system. * - * It may be used to describe the historical path of a vehicle. + * @field yCoordinat: Y Coordinate, i.e. distance to detected object from the ITS-S's reference point to object reference point in y-direction at the time + * of measurement, in a pre-defined coordinate system. + * + * @field zCoordinate: Optional Z Coordinate, i.e. distance to detected object to object reference point from the ITS-S's reference point in z-direction at the time + * of measurement, in a pre-defined coordinate system. + * + * @field xSpeed: Speed of the detected object in the detecting ITS-S’s reference system in x-direction at the time + * of measurement, in a pre-defined coordinate system, using the DF SpeedExtended. * - * @category: GeoReference information, Vehicle information - */ -PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint - -/** - * It indicates the right of priority requested by an operating emergency vehicle. - * The right-of-priority bit shall be set to 1 if the corresponding right is requested. + * @field ySpeed: Speed of the detected object in the detecting ITS-S’s reference system in y-direction at the time + * of measurement, in a pre-defined coordinate system, using the DF SpeedExtended. + * + * @field zSpeed + * Optional Speed of the detected object in the detecting ITS-S’s reference system in z-direction at the time + * of measurement, in a pre-defined coordinate system, using the DF SpeedExtended. + * + * @field xAcceleration: optional Acceleration of the detected object from the ITS-S's reference point in x-direction + * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. * - * @category: Traffic information - */ -EmergencyPriority ::= BIT STRING {requestForRightOfWay(0), requestForFreeCrossingAtATrafficLight(1)} (SIZE(2)) - -/** - * Quality level of provided information. + * @field yAcceleration: optional Acceleration of the detected object from the ITS-S's reference point in y-direction + * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. + * + * @field zAcceleration: optional Acceleration of the detected object from the ITS-S's reference point in z-direction + * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. + * + * @field rollAngle: optional Roll angle of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * The angle is measured with positive values considering the object orientation turning counter-clockwise around the x-axis. + * + * @field pitchAngle: optional Pitch angle of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * The angle is measured with positive values considering the object orientation turning counter-clockwise around the y-axis. + * + * @field yawAngle: optional Yaw angle of object from the ITS-S's reference pointat the time of measurement, in a pre-defined coordinate system. + * The angle is measured with positive values considering the object orientation turning counter-clockwise around the z-axis. + * + * @field rollRate: optional Roll rate of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * The angular rate is measured with positive values considering the object orientation turning counter-clockwise around the x-axis. * - * The DE is used in @ref EventPoint DF as defined in clause A.111. + * @field pitchRate: optional Pitch rate of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * The angular rate is measured with positive values considering the object orientation turning counter-clockwise around the y-axis. + * + * @field yawRate: optional Yaw rate of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * The angular rate is measured with positive values considering the object orientation turning counter-clockwise around the z-axis. + * + * @field rollAcceleration: optional Roll acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the x-axis. + * + * @field @details pitchAcceleration: optional Pitch acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the y-axis. + * + * @field yawAcceleration: optional Yaw acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the z-axis. + * + * @field lowerTriangularCorrelationMatrixColumns: optional set of columns of a lower triangular positive semi definite correlation matrix for the + * kinematic state and attitude space provided for this object. + * The order of the columns and rows of the correlation matrix is as follows: + * - xCoordinate + * - yCoordinate + * - zCoordinate + * - xSpeed + * - ySpeed + * - zSpeed + * - xAcceleration + * - yAcceleration + * - zAcceleration + * - rollAngle + * - pitchAngle + * - yawAngle + * - rollRate + * - pitchRate + * - yawRate + * - rollAcceleration + * - pitchAcceleration + * - yawAcceleration + * The number of lowerTriangularCorrelationMatrixColumns to be included "k" is thereby the number of provided + * values "n" of the kinematic state and attitude space 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 space are not provided, they are omitted from + * the lowerTriangularCorrelationMatrixColumns. + * + * @field planarObjectDimension1: 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. + * + * @field planarObjectDimension2: 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. + * + * @field verticalObjectDimension: optionalvertical dimension of object as provided by the sensor or object model. * - * @category: Other information - * @note: Definition of quality level is out of scope of the present document. - */ -InformationQuality ::= INTEGER {unavailable(0), lowest(1), highest(7)} (0..7) - -/** - * Type of a road segment. + * @field objectRefPoint: 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. + * + * @field objectAge: the 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. + * + * @field objectConfidence: 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. + * + * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. + * + * @field dynamicStatus: optional dynamic capabilities of a detected object. + * + * @field classification: optional classification of the described object + * + * @field matchedPosition: optional map-matched position of an object. + * + * @category Sensing information + * Revision: created in V2.1.1 + */ + +PerceivedObject ::= SEQUENCE { + objectID Identifier, + timeOfMeasurement DeltaTimeMilliSecond, + xCoordinate CartesianCoordinateWithConfidence, --tbd is the range correct here? + yCoordinate CartesianCoordinateWithConfidence, + zCoordinate CartesianCoordinateWithConfidence OPTIONAL, + xSpeed SpeedExtended, + ySpeed SpeedExtended, + zSpeed SpeedExtended OPTIONAL, + xAcceleration Acceleration1d OPTIONAL, + yAcceleration Acceleration1d OPTIONAL, + zAcceleration Acceleration1d OPTIONAL, + rollAngle CartesianAngle OPTIONAL, + pitchAngle CartesianAngle OPTIONAL, + yawAngle CartesianAngle OPTIONAL, + rollRate CartesianAngularSpeed OPTIONAL, + pitchRate CartesianAngularSpeed OPTIONAL, + yawRate 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 DeltaTimeMilliSecond (0..1500), + objectConfidence ObjectConfidence OPTIONAL, + sensorIdList SequenceOfId OPTIONAL, + dynamicStatus ObjectDynamicStatus OPTIONAL, -- tbd delete optional + classification ObjectClassDescription OPTIONAL, + mapPosition MapPosition OPTIONAL, --changed from matchedPosition + ... +} +/** + * This DF represents an area delimited by a polygon and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. * - * @category: Road Topology Information - * > NOTE: Definition of road type is out of scope of the present document. + * @category GeoReference information + * Revision: created in V2.1.1 + * */ -RoadType ::= ENUMERATED { - urban-NoStructuralSeparationToOppositeLanes(0), - urban-WithStructuralSeparationToOppositeLanes(1), - nonUrban-NoStructuralSeparationToOppositeLanes(2), - nonUrban-WithStructuralSeparationToOppositeLanes(3)} +PolygonalArea ::= SequenceOfCartesianPosition3d (SIZE(3..16,...)) /** - * Steering wheel angle of the vehicle at certain point in time. - * - * @field steeringWheelAngleValue: steering wheel angle value. It shall be presented as defined in clause A.80, - * - * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. - * It shall be presented as defined in clause A.79. - * - * @category: Vehicle Information + * 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. + * + * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point + * and major axis point of the position accuracy ellipse. + * + * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point + * and minor axis point of the position accuracy ellipse. + * + * @field semiMajorOrientation: orientation direction of the ellipse major axis of the position accuracy + * ellipse with regards to the WGS84 north. + * + * + * @category GeoReference information + * Revision: V1.3.1 */ -SteeringWheelAngle ::= SEQUENCE { - steeringWheelAngleValue SteeringWheelAngleValue, - steeringWheelAngleConfidence SteeringWheelAngleConfidence +PosConfidenceEllipse ::= SEQUENCE { + semiMajorConfidence SemiAxisLength, + semiMinorConfidence SemiAxisLength, + semiMajorOrientation Wgs84AngleValue } /** - * Steering wheel angle of the vehicle at certain point in time. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - Positive values indicate that the steering wheel angle is turning counter-clockwise (i.e. to the left). - * - Negative values shall be used when the steering wheel angle is turning clockwise (i.e. to the right). - * - The value shall be set to `511` if the steering wheel angle is equal to or greater than 511 × 1,5 degrees = 766,5 degrees to the left. - * - The value shall be set to `-511` if the steering wheel angle is equal to or greater than 511 × 1,5 degrees = 766,5 degrees to the right. - * - When the information is not available, the value shall be set to `512`. + * This DF contains a list of distances @ref 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 DE is used in @ref SteeringWheelAngle DF as defined in clause A.127. - * @unit: 1.5 degree - * @category: Vehicle Information + * 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. + * + * @category: Vehicle information + * Revision: V1.3.1 */ -SteeringWheelAngleValue ::= INTEGER {straight(0), onePointFiveDegreesToRight(-1), onePointFiveDegreesToLeft(1), unavailable(512)} (-511..512) +PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar /** - * Absolute accuracy for a reported steering wheel angle value for a predefined confidence level (e.g. 95 %). - * The required confidence level is defined by the station applying this DE. - * - * The value shall be set to: - * - `1` if the steering wheel angle accuracy is equal to or less than 1,5 degrees, - * - `n (n > 1 and n < 125)` if the steering wheel angle accuracy is equal to or less than n × 1,5 degrees, - * - `125` if the steering wheel angle accuracy is equal to or less than 1,5 degrees ×125 = 187,5 degrees, - * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, - * - `127` if the accuracy information is not available. - * - * The DE is used in @ref SteeringWheelAngle DF as defined in clause A.127. - * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' - * can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. + * This DF describes a zone of protection inside which the ITSG5 communication should be restricted. * - * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', - * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. - * Such value is not useful for the application. + * @field protectedZoneType: type of the protected zone. * - * @unit: 1.5 degree - * @category: Vehicle Information -*/ -SteeringWheelAngleConfidence ::= INTEGER {equalOrWithinOnePointFiveDegree (1), outOfRange(126), unavailable(127)} (1..127) - -/** - * Number of milliseconds since `2004-01-01T00:00:00.000Z`, as specified in ISO 8601 [i.10]. + * @field expiryTime: optional time at which the validity of the protected communication zone will expire. * - * EXAMPLE: The value for TimestampIts for `2007-01-01T00:00:00.000Z` is `94 694 401 000` milliseconds, - * which includes one leap second insertion since `2004-01-01T00:00:00.000Z`. + * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. * - * The DE is used in @ref ProtectedCommunicationZone DF as defined in clause A.121. - * - * @unit: millisecond - * @category: Other Information - */ -TimestampIts ::= INTEGER {utcStartOf2004(0), oneMillisecAfterUTCStartOf2004(1)} (0..4398046511103) - -/** - * Role played by a vehicle at a point in time. - * The DE shall be set to: - * - 0 `default`: default vehicle role as indicated by the vehicle type, - * - 1 `publicTransport`: vehicle is used to operate public transport service, - * - 2 `specialTransport`: vehicle is used for special transport purpose, e.g. oversized trucks, - * - 3 `dangerousGoods`: vehicle is used for dangerous goods transportation, - * - 4 `roadWork`: vehicle is used to realize roadwork or road maintenance mission, - * - 5 `rescue`: vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, - * - 6 `emergency`: vehicle is used for emergency mission, e.g. ambulance, fire brigade, - * - 7 `safetyCar`: vehicle is used for public safety, e.g. patrol, - * - 8 `agriculture`: vehicle is used for agriculture, e.g. farm tractor as defined - * in CEN/TS 16157-3 [3], annex A, table A.137, - * - 9 `commercial`: vehicle is used for transportation of commercial goods as defined - * in CEN/TS 16157-3 [3], annex A, table A.137, - * - 10 `military`: vehicle is used for military purpose as defined in CEN/TS 16157-3 [3], annex A, table A.137, - * - 11 `roadOperator`: vehicle is used in road operator missions as defined in CEN/TS 16157-3 [3], annex A, table A.137, - * - 12 `taxi`: vehicle is used to provide an authorized taxi service as defined - * in CEN/TS 16157-3 [3], annex A, table A.137, - * - 13 `reserved`: reserved for future usage, - * - 14 `reserved`: reserved for future usage, - * - 15 `reserved`: reserved for future usage. + * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. * - * @category: Vehicle Information - */ -VehicleRole ::= ENUMERATED {default(0), publicTransport(1), specialTransport(2), dangerousGoods(3), roadWork(4), rescue(5), emergency(6), safetyCar(7), agriculture(8), commercial(9), military(10), roadOperator(11), taxi(12), reserved1(13), reserved2(14), reserved3(15)} - -/** - * Yaw rate of vehicle at a point in time. + * @field protectedZoneRadius: optional radius of the protected communication zone in metres. * - * @field yawRateValue: yaw rate value at a point in time. It shall be presented as defined in clause A.101, + * @field protectedZoneID: the optional ID of the protected communication zone. * - * @field vehicleLengthConfidenceIndication: accuracy of reported yaw rate value. - * It shall be presented as defined in clause A.100. + * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. * - * @category: Vehicle Information + * @category: Infrastructure information, Communication information + * Revision: V1.3.1 */ -YawRate::= SEQUENCE { - yawRateValue YawRateValue, - yawRateConfidence YawRateConfidence +ProtectedCommunicationZone ::= SEQUENCE { + protectedZoneType ProtectedZoneType, + expiryTime TimestampIts OPTIONAL, + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + protectedZoneRadius ProtectedZoneRadius OPTIONAL, + protectedZoneID ProtectedZoneID OPTIONAL, + ... } /** - * It denotes the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded - * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - The leading sign denotes the direction of rotation. - * - Positive values indicate that the rotation is anti-clockwise (i.e. to the left). - * - The value shall be set to `32 766` if the yaw rate is equal to or greater than 327.66 degrees/second to the left. - * - Negative values indicate that the rotation is clockwise (i.e. to the right). - * - The value shall be set to `-32 766` if the yaw rate is equal to or greater than 327,66 degrees/second to the right. - * - The value shall be set to `32 767` if the information is not available. - * - * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. - * The reading instant should be the same as for the vehicle acceleration. - * - * The DE is used in @ref YawRate DF as defined in clause A.132. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * -* @category: Vehicle Information -*/ -YawRateValue ::= INTEGER {straight(0), degSec-000-01ToRight(-1), degSec-000-01ToLeft(1), unavailable(32767)} (-32766..32767) + * This DF consist of a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). + * + * It may provide up to 16 protected communication zones information. + * + * @category: Infrastructure information, Communication information + * Revision: V1.3.1 + */ +ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone /** - * DE that denotes the absolute accuracy range for reported yaw rate value for a predefined confidence level (e.g. 95 %). - * The required confidence level is defined by the station applying this DE. - * - * The value shall be set to: - * - 0 if the accuracy is equal to or less than 0,01 degree/second - * - 1 if the accuracy is equal to or less than 0,05 degrees/second - * - 2 if the accuracy is equal to or less than 0,1 degree/second - * - 3 if the accuracy is equal to or less than 1 degree/second - * - 4 if the accuracy is equal to or less than 5 degrees/second - * - 5 if the accuracy is equal to or less than 10 degrees/second - * - 6 if the accuracy is equal to or less than 100 degrees/second - * - 7 if the accuracy is out of range, i.e. greater than 100 degrees/second - * - 8 if the accuracy information is unavailable - * - * The DE is used in @ref YawRate DF as defined in clause A.132. - * - * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by - * several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported yaw rate value may be valid and used by the application. - * - * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported - * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. + * 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). + * + * @field ptActivationType: type of activation. + * + * @field ptActicationData: data of activation. + * + * 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) + * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, + * destination, priority, etc. * - * @category: Traffic information + * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: + * - 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. + * @category: Vehicle information + * Revision: V1.3.1 */ -YawRateConfidence ::= ENUMERATED { - degSec-000-01 (0), - degSec-000-05 (1), - degSec-000-10 (2), - degSec-001-00 (3), - degSec-005-00 (4), - degSec-010-00 (5), - degSec-100-00 (6), - outOfRange (7), - unavailable (8) +PtActivation ::= SEQUENCE { + ptActivationType PtActivationType, + ptActivationData PtActivationData } /** - * DE that defines the type of a protected communication zone, so that an ITS-S is aware of the actions to do - * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). - * - * The protected zone type is defined in ETSI TS 102 792 [i.16]. + * This DF describes a radial area. The triangular or cone-shaped area is + * constructed by sweeping the provided range about the reference point of the ITS-S or about the + * point described by the sensor offset point (if provided) with respect to the reference point + * 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). + * + * It includes the following components: + * @field range: The radial range of the sensor from the reference point or sensor point offset. + * + * @field stationaryHorizontalOpeningAngleStart: The orientation indicating the beginning of the + * stationary sensor’s horizontal opening angle in positive angular direction with respect to the + * WGS84 coordinate system. + * + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary + * sensor’s horizontal opening angle in positive angular direction with respect to the WGS84 coordinate + * system. + * + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor’s + * 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor’s + * 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 using the DE CartesianAngleValue. + * + * @field sensorPositionOffset The offset of the mounting poinf of this sensor from the station's ReferencePosition. + * + * @field sensorHeight: the height of the sensor mounting point. + * + * @category GeoReference information + * Revision: created in V2.1.1 +*/ +RadialArea ::= SEQUENCE { -- tbd why is sensorHeight needed? + range StandardLength, + stationaryHorizontalOpeningAngleStart Wgs84AngleValue, --tbd shall this be cartesian? + stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, --tbd shall this be cartesian? + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, + sensorPositionOffset CartesianPosition3d OPTIONAL, + -- sensorHeight SensorHeight OPTIONAL, + ... +} + +/** + * This DF specifies a rectangular area that is centred on a reference position defined outside of the context of this DF. * - * The DE is used in @ref ProtectedCommunicationZone DF as defined in clause A.121. + * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field semiLength: represents half the length of the rectangle. * - * @category: Communication information + * @field semiBreadth: represents half the breadth of the rectangle. + * + * @field orientation: represents the orientation of the lenght of the rectangle in the WGS84 coordinate system. + * + * @category GeoReference information + * Revision: created in V2.1.1 */ -ProtectedZoneType::= ENUMERATED { permanentCenDsrcTolling (0), ..., temporaryCenDsrcTolling (1) } -/** - * DE describing a distance of relevance for information indicated in a message, for example, it may be used - * to describe the distance of relevance of an event indicated in a DENM as defined in ETSI EN 302 637-3 [i.3]. - * @category: GeoReference information - */ -RelevanceDistance ::= ENUMERATED {lessThan50m(0), lessThan100m(1), lessThan200m(2), lessThan500m(3), lessThan1000m(4), lessThan5km(5), lessThan10km(6), over10km(7)} +RectangularArea ::= SEQUENCE { -- tbd + centerPoint CartesianPosition3d OPTIONAL, + semiLength StandardLength, + semiBreadth StandardLength, + orientation Wgs84AngleValue + -- semiHeight SemiRangeLength OPTIONAL +} /** - * DE describing a traffic direction that is relevant to information indicated in a message. - * For example, it may be used to describe traffic direction which is relevant to an event indicated by a DENM - * as defined in ETSI EN 302 637-3 [i.3], - * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * A position within a geographic coordinate system together with a confidence indication. * - * @note: Upstream traffic corresponds to the incoming traffic towards the event position, - * and downstream traffic to the departing traffic away from the event position. + * @field latitude: the latitude of the geographical point. + * + * @field longitude: the longitude of the geographical point. + * + * @field positionConfidenceEllipse: the accuracy of the geographical position. + * + * @field altitude: the altitude and an altitude accuracy of the geographical point. * * @category: GeoReference information + * Revision: description updated in V2.1.1 */ -RelevanceTrafficDirection ::= ENUMERATED {allTrafficDirections(0), upstreamTraffic(1), downstreamTraffic(2), oppositeTraffic(3)} +ReferencePosition ::= SEQUENCE { + latitude Latitude, + longitude Longitude, + positionConfidenceEllipse PosConfidenceEllipse, + altitude Altitude +} /** - * Time interval between two consecutive message transmissions. + * This DF consist of a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. * - * @unit: milliseconds - * @category: Communication information + * @category: Infrastructure information, Traffic information + * Revision: V1.3.1 */ -TransmissionInterval ::= INTEGER {oneMilliSecond(1), tenSeconds(10000)} (1..10000) +RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType /** - * Duration of a traffic event validity. - * @unit: seconds - * @category: Traffic information + * This DF represents a unique id for a road segment + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the road segment + * + * @note: when the RoadRegulatorID is present, the RoadSegmentReferenceID is guaranteed to be globally unique. + * @category: GeoReference information + * Revision: created in V2.1.1 */ -ValidityDuration ::= INTEGER {timeOfDetection(0), oneSecondAfterDetection(1)} (0..86400) +RoadSegmentReferenceId ::= SEQUENCE { + region RoadRegulatorId OPTIONAL, + id RoadSegmentID +} /** - * Identifier used to describe a protocol action taken by an ITS-S. - * - * For example, it describes an action taken by an ITS-S to trigger a new DENM as defined in ETSI EN 302 637-3 [i.3] - * after detecting an event. + * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). * - * @field originatingStationID: ID of the ITS-S that takes the action. It shall be presented as defined in clause A.77, - * - * @field sequenceNumber: a sequence number. It shall be presented as defined in clause A.68. - * - * @category: Communication information + * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. + * + * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. + * + * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi^2 + LoDi^2 + VDi^2)/relative speed and represented in the nearest 100 ms. + * + * @category: tbd + * Revision: created in V2.1.1 */ -ActionID ::= SEQUENCE { - originatingStationID StationID, - sequenceNumber SequenceNumber +SafeDistanceIndication ::= SEQUENCE { + subjectStation StationID OPTIONAL, + safeDistanceIndicator SafeDistanceIndicator, + timeToCollision DeltaTimeHundredthOfSecond OPTIONAL, + ... } -/** - * A path being described with a list of waypoints, each waypoint is represented with geographical position - * as defined in clause A.124 @ref ReferencePosition. - * @category: GeoReference information - */ -ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition - -/** - * DF that describes a zone of protection inside which the ITSG5 communication should be restricted. - * - * @field protectedZoneType: Type of the protected zone. It shall be presented as defined in clause A.58, - * - * @field expiryTime: Time at which the validity of the protected communication zone will expire. - * It shall be presented as defined in clause A.82. - * This information is optional and shall be present when the protected zone is temporarily valid, - * - * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. - * It shall be presented as defined in clause A.41, +/** + * This DF represents a list of maximum `16` @ref CartesianPosition3d. * - * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. - * It shall be represented as defined in clause A.44, - * - * @field protectedZoneRadius: radius of the protected communication zone in metres. - * It shall be presented as defined in clause A.57. - * This DE is optional, it shall be present if the data is available, - * - * @field protectedZoneID: the ID of the protected communication zone. - * It shall be presented as defined in clause A.56. - * This DE is optional, it shall be present if the data is available. - * - * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. - * - * @category: Infrastructure information, Communication information + * @category GeoReference information + * Revision: created in V2.1.1 */ -ProtectedCommunicationZone ::= SEQUENCE { - protectedZoneType ProtectedZoneType, - expiryTime TimestampIts OPTIONAL, - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - protectedZoneRadius ProtectedZoneRadius OPTIONAL, - protectedZoneID ProtectedZoneID OPTIONAL, - ... -} +SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d + +/** + * The DF contains a list of identifiers. + * + * @category Basic information + * Revision: created in V2.1.1 +*/ +SequenceOfId ::= SEQUENCE SIZE(1..128, ...) OF Identifier /** - * One or more paths, each path is described using a list of waypoints in a predefined order. - * A path shall be presented as defined in clause A.117 @ref PathHistory. - * - * This DF may be used to describe location referencing information. + * This DF contains a list of DFs PathPointAbsolute * - * @category: GeoReference information + * @category GeoReference information + * Revision: created in V2.1.1 */ -Traces ::= SEQUENCE SIZE(1..7) OF PathHistory +SequenceOfPathPointAbsolute::= SEQUENCE OF PathPointAbsolute /** - * Number of occupants in a vehicle. - * - For values equal to or higher than 126, the value shall be set to `126`. - * - If the information is not available, the value shall be set to `127`. + * The DF contains a list of DF SafeDistanceIndication. * - * @unit: 1 person - * @category Other information - */ -NumberOfOccupants ::= INTEGER {oneOccupant (1), unavailable(127)} (0 .. 127) + * @category tbd + * Revision: created in V2.1.1 +*/ +SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..8)) OF SafeDistanceIndication /** - * Sequence number. - * - * The DE is used in @ref ActionID as defined in clause A.102. - * @category Other information - */ -SequenceNumber ::= INTEGER (0..65535) + * The DF contains a list of DF TrajectoryInterceptionIndication. + * + * @category tbd + * Revision: created in V2.1.1 +*/ +SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..8)) OF TrajectoryInterceptionIndication /** - * 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. + * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). * - * The DF contains a list of distances 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. + * @field speedValue: the speed value. * - * 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. + * @field speedConfidence: the accuracy of the reported speed value. * - * Each pillar position shall be presented as defined in clause A.54 @ref PosPillar. - * - * @category: Vehicle information + * @category: Kinematics information + * Revision: V1.3.1 */ -PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar +Speed ::= SEQUENCE { + speedValue SpeedValue, + speedConfidence SpeedConfidence +} /** - * List of ITS-S types to which a certain traffic restriction, e.g. the speed limit, applies. + * This DF describes the extended speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). * - * Each station type shall be presented as defined in clause A.78 @ref StationType. + * @field speedValue: the extended speed value. * - * @category: Infrastructure information, Traffic information + * @field speedConfidence: the accuracy of the reported speed value. + * + * @category: Kinematics information + * Revision: V2.1.1 */ -RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType +SpeedExtended ::= SEQUENCE { + speedValue SpeedValueExtended, + speedConfidence SpeedConfidence +} /** - * The DF consists of a list of event points which represents the dimension of a plain event in a predefined order. - * In case that the plain event is detected by a vehicle ITS-S, the DF consists of a list of event detection points - * along the path that the detecting ITS S has travelled over some past time and/or distance. + * This DF provides the indication of change in stability. * - * Each event point shall be presented as defined in clause A.111 @ref EventPoint. - * @category: GeoReference information, Traffic information + * @field lossProbability: the probability of stability loss. + * + * @field actionDeltaTime: accuracy of the reported speed value. + * + * @category: Kinematics information + * Revision: V2.1.1 */ -EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint +StabilityChangeIndication ::= SEQUENCE { + lossProbability StabilityLossProbability, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} /** - * DF that describes the position, time and corresponding information quality for an event point detected to describe - * a plain event. + * This DF represents the steering wheel angle of the vehicle at certain point in time. * - * @field eventPosition: Offset position of a detected event point with regards to the previous detected event point. - * It shall be presented as defined in clause A.109. + * @field steeringWheelAngleValue: steering wheel angle value. * - * @field eventDeltaTime: Time travelled by the detecting ITS-S since the previous detected event point. - * It shall be presented as defined in clause A.47. - * This field is optional, it shall be present if the information is available. - * - * @field informationQuality: Information quality of the detection for this event point. - * It shall be presented as defined in clause A.39. + * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. * - * This DF is used in @ref EventHistory DF as defined in clause A.110. - * @category: GeoReference information, Traffic information + * @category: Vehicle information + * Revision: Created in V2.1.1 */ -EventPoint ::= SEQUENCE { - eventPosition DeltaReferencePosition, - eventDeltaTime PathDeltaTime OPTIONAL, - informationQuality InformationQuality +SteeringWheelAngle ::= SEQUENCE { + steeringWheelAngleValue SteeringWheelAngleValue, + steeringWheelAngleConfidence SteeringWheelAngleConfidence } /** - * DF that describes a list of protected communication zones by a road side ITS-S (Road Side Unit RSU). - * - * It may provide up to 16 protected communication zones information. - * Each protected communication zone shall be presented as defined in clause A.121 @ref ProtectedCommunicationZone. - * @category: Infrastructure information, Communication information + * This DF represents one or more paths using @ref PathHistory. + * + * @category: GeoReference information + * Revision: V1.3.1 */ -ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone +Traces ::= SEQUENCE SIZE(1..7) OF PathHistory /** - * The DF describes the position of a CEN DSRC road side equipment. - * - * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. - * It shall be presented as defined in clause A.41, - * - * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. - * It shall be presented as defined in clause A.44, + * Ths DF represents the a position on a traffic island between two lanes. + * + * @field oneSide: represents one lane. * - * @field cenDsrcTollingZoneID: the ID of the CEN DSRC road side equipment. - * It shall be presented as defined in clause A.11. This DE is optional. + * @field otherSide: represents the other lane. * - * @category: Infrastructure information, Communication information + * @category: Road Topology information + * Revision: Created in V2.1.1 */ -CenDsrcTollingZone ::= SEQUENCE { - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, - ... +TrafficIslandPosition ::= SEQUENCE { + oneSide LanePositionAndType, + otherSide LanePositionAndType, + ... +} + +/** + * This DF provides detailed information about an attached trailer. + * + * It includes the following components: + * - @field refPointId: identifier of the reference point of the trailer. + * + * - @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the + * vehicle Reference Point. + * + * - @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer + is not overhanging to the front with respect to the trailer reference point. + * + * - @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the + trailer Reference Point indicated by the @see refPointID. + * + * - @field trailerWidth: optional width of the trailer. + * + * - @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x + * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of + * the segment having as end points the reference point of the trailer and the reference point of + * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane + * xy, described in the local Cartesian coordinate system of the preceding reference point. The + * angle is measured with negative values considering the trailer orientation turning clockwise + * starting from the segment direction. The angle value accuracy is provided with the + * confidence level of 95 %. + * + * @category: Vehicle information + * Revision: Created in V2.1.1 +*/ +TrailerData ::= SEQUENCE { + refPointId RefPointId, + hitchPointOffset StandardLengthSmall OPTIONAL, --tbd + frontOverhang StandardLengthSmall, + rearOverhang StandardLengthSmall, + trailerWidth VehicleWidth OPTIONAL, + hitchAngle CartesianAngle OPTIONAL, + ... } /** - * Radius of a protected communication zone. + * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. * - * This DE is used in @ref ProtectedCommunicationZone DF as defined in clause A.121. + * @field: subjectStation: indicates the subject station. * - * @unit: metre - * @category: Infrastructure information, Communication information + * @field: trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory with the trajectory of the station indicated in @field: subjectStation. + * + * @field: trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory with the trajectory of the station indicated in @field: subjectStation. + * + * @category tbd + * Revision: Created in V2.1.1 */ -ProtectedZoneRadius ::= INTEGER {oneMeter(1)} (1..255,...) +TrajectoryInterceptionIndication ::= SEQUENCE { + subjectStation StationID OPTIONAL, + trajectoryInterceptionProbability TrajectoryInterceptionProbability, + trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, + ... + } /** - * ID of a protected communication zone. + * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. + * + * @field: verticalAccelerationValue: vertical acceleration value at a point in time. * - * This DE is used in @ref CenDsrcTollingZoneID DE as defined in clause A.11 - * and in @ref ProtectedCommunicationZone DF as defined in clause A.121. + * @field: verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. * - * @category: Infrastructure information, Communication information + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead + * @category Vehicle information + * Revision: V1.3.1 */ -ProtectedZoneID ::= INTEGER (0.. 134217727) +VerticalAcceleration ::= SEQUENCE { + verticalAccelerationValue VerticalAccelerationValue, + verticalAccelerationConfidence AccelerationConfidence +} /** - * ID of a CEN DSRC tolling zone. It shall be presented as defined in clause A.56 ProtectedZoneID. + * This DF provides information related to the identification of a vehicle. * - * This DE is used in @ref CenDsrcTollingZone DF as defined in clause A.105. - * @category: Infrastructure information, Communication information + * @field wMInumber: World Manufacturer Identifier (WMI) code. + * + * @field vDS: Vehicle Descriptor Section (VDS). + * + * @category: Vehicle information + * Revision: V1.3.1 */ -CenDsrcTollingZoneID ::= ProtectedZoneID +VehicleIdentification ::= SEQUENCE { + wMInumber WMInumber OPTIONAL, + vDS VDS OPTIONAL, + ... +} /** - * Portion of digital map, described using a list of waypoints, described as - * @ref ReferencePosition as defined in clause A.124. + * This DF represents the length of vehicle and accuracy indication information. * - * @category: GeoReference information + * @field vehicleLengthValue: length of vehicle. + * + * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. + * + * @category: Vehicle information + * Revision: V1.3.1 */ -DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition +VehicleLength ::= SEQUENCE { + vehicleLengthValue VehicleLengthValue, + vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication +} + +/** + * This DF provides information about a VRU cluster. + * + * It includes the following components: + * @field clusterId: optional identifier of a VRU cluster . + * + * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. + * + * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. + * + * @field clusterProfiles: identifies all the VRU profile types that are believed to be within the cluster . + * + * @category: VRU information + * Revision: Created in V2.1.1 +*/ +VruClusterInformation ::= SEQUENCE { -- tbd generalize? + clusterId ClusterId OPTIONAL, + clusterBoundingArea Area (WITH COMPONENTS{..., radial ABSENT}) OPTIONAL, + clusterCardinalitySize ClusterCardinalitySize, + clusterProfiles VruClusterProfiles, + ... +} /** - * UTF8String description of a time period to describe the opening days and hours of a Point of Interest - * (for example local commerce). + * This DF indicates the profile of a VRU including sub-profile information * - * @category: Other information - */ -OpeningDaysHours ::= UTF8String + * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2: + * + * @fieldpedestrian: VRU Profile 1 - Pedestrian. + * + * @field lightVruVehicle: VRU Profile 2 - Bicyclist. + * + * @fieldmotorcyclist: VRU Profile 3 - Motorcyclist. + * + * @fieldanimal: VRU Profile 4 - Animals. + * + * @category: VRU information + * Revision: Created in V2.1.1 + */ +VruProfileAndSubprofile ::= CHOICE { + pedestrian VruSubProfilePedestrian, + lightVruVehicle VruSubProfilelightVruVehicle, --tbd name + motorcylist VruSubProfileMotorcyclist, + animal VruSubProfileAnimal, + ... +} + +/** + * This DF represents an angular component along with a confidence in the WGS84 coordinate system. + * + * @field value: the angle value which can be estimated as the mean of the current distribution. + * + * @field confidence: the accuracy associated to the provided value. + * + * @category: GeoReference information + * Revision: Created in V2.1.1 +*/ +Wgs84Angle ::= SEQUENCE { + value Wgs84AngleValue, + confidence Wgs84AngleConfidence +} + /** - * Phone number + * This DF represents a yaw rate of vehicle at a point in time. * - * @category: Other information + * @field yawRateValue: yaw rate value at a point in time. + * + * @field vehicleLengthConfidenceIndication: accuracy of reported yaw rate value. + * + * @category: Vehicle Information + * Revision: V1.3.1 */ -PhoneNumber ::= NumericString (SIZE(1..16)) +YawRate::= SEQUENCE { + yawRateValue YawRateValue, + yawRateConfidence YawRateConfidence +} END -- GitLab From 77c2e63e6d1917b2b978fa8922b5138ed60342eb Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Thu, 10 Feb 2022 05:20:29 +0000 Subject: [PATCH 05/91] Replace ITS-Container.asn --- ITS-Container.asn | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/ITS-Container.asn b/ITS-Container.asn index 736fe13..e889165 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1160,6 +1160,53 @@ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { fire(10) } (0..255) +/** + * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. + * + * The value shall be set to: + * - `1` if the heading accuracy is equal to or less than 0,1 degree, + * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n × 0,1 degree, + * - `125` if the heading accuracy is equal to or less than 12,5 degrees, + * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, + * - `127` if the heading accuracy information is not available. + * + * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, + * such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported heading value may be valid and used by the application. + * + * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported + * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @note: this DE is kept for backwards compatibiliyty reasons only. It is reccomended to use the @ref AccelerationValue instead. + * + * @unit: 0,1 degree + * @category: GeoReference information + * Revision: Description revised in V2.1.1 + */ +HeadingConfidence ::= INTEGER {equalOrWithinZeroPointOneDegree (1), equalOrWithinOneDegree (10), outOfRange(126), unavailable(127)} (1..127) + +/** +HeadingValue + * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. + * When the information is not available, the DE shall be set to 3 601. + * + * @note: this DE is kept for backwards compatibiliyty reasons only. It is reccomended to use the @ref AccelerationValue instead. + * + * Unit: 0,1 degree + * Categories: GeoReference information + * Revision: Description revised in V2.1.1 +*/ +HeadingValue ::= INTEGER { + wgs84North(0), + wgs84East(900), + wgs84South(1800), + wgs84West(2700), + unavailable(3601) +} (0..3601) + + /** * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle * rear to front). For values equal to or greater than 99 cm, the DE shall be set to 99. -- GitLab From 0a8ecb16077645a6ee7efa8adcda5000e512eef3 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Thu, 10 Feb 2022 05:21:07 +0000 Subject: [PATCH 06/91] Documentation update --- docs/ITS-Container.md | Bin 141110 -> 257571 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md index 0e7808e771d56b7a971cd2eac8ac7e98308df3c3..8a6ccbd7b043da7039d5fe625c4e9828722b1134 100644 GIT binary patch literal 257571 zcmeFa>vmknktX_^c#1vr>MyRB|9n)DaL zsyIGB>l{qR^Kvk*rW?h{@!{*@$3GT>`Jyu~Hn*P?gMKxh53UAPzcZO$m*c@7%K2b2 zE;gS%DXRHwpq1vc!^sFRip{+z#pmm8vDtl6%xCy#d*|gVRPFWq#pceF;!`!9q4{pH zx%;H}(~lb)zxq{iSkBAhXjqNV)9f|A{Hpk>EXL)i`lrYHyY^B274w@a0ac*S+sSM&AAG8|q(Q%OgKlpyuC6gBHrObB z$Dv+Nrgz1^U>8RC-kV_xSCc7!pNuiHi;IhLHtudTr~Uf%KNUyszJGgkx_^FjSo|># zt$JF-ffRo#2!!k1wz`w?6*s$=Tj5Y<7I|9TPPt>cAeXbra50yaSxn2`oh*2PI+N+V z>SNz;20h?gSWDuNEP3&HFu%b*6}`|&F|0mSLqd49_YZ!jwDRnx91e?1>`^r@<`dnZ zZhl|TmktFRRQ>lwIYfhEG6nP*2VIVf?WZ7wFK0WtZNT1f@!O(Xl;eIeF1{+d+uKhb z3VK}p@Bi^1|FhNu06r96ciW7#yS>7cCyP0ka7v;n23yruaXqboX;Ynh4d6}~SfAvG zC0mTkPvu}(UJi++K-2MLUcCm5fojSgR{y4)W2tgmiq=!m0Pwr7+iUh#H?H`#0Z%UR zP1IOc>%L3e>Q(^xV^wWG#y>i%F46&AJU;PC>Op0OI`^c65 zR89w6Jq&yT-YP=|ceyENm}Z5A3siBr0IRIFuD6PV{dWca0&ks8CsX47F)9M(cQMNu z`P1d(6DXT=3dEHms!@5zwFJ=&`hw4XO=WRzZ-?ZMph4*YtnuD$BuxxJ>}DsiUT!ll zfNLjLr^GbuW%tR&Q?BQzD#t=-x&=zWXvDpW1H*u(6?h#tUbYd#o=+DuaE-0vj2oUb z#5}GRL-1|4&vq&+aMG_Xr@#Hrnj z^P_K%PK!U@P6p%o$+&u3fzaMp)3d5~2G%pJ`Zy7R2kAOJwL~UV@F$$7#nu*B&(4$k z8TNcS8D`EyoaZPotU8{D+kWDOjVhj#gV{({b~qVdLj>p##-P3t5ROMP zQJT#iD+kX!Ct;CWIBdI}PCnrX0k0ok+y^ygo1f?b>4POx_9>=N`Njl{`=c|5EZ~In^%;0rY_hESsT|!x4g=xo#-?Z$X^Tucod1P8*~Y*INK%7a z5Qjt04N{*aEDYNm?cjMtpR|`8^8UE}BQf0w8E!0<;HWU5fXdvElcTqhY4CL7MD-wX zlFzI+xvf0cf~<-o9YVsSw;(XA=|=Mi&@W$nai9|UpqlYG_wg(rzpbbYLljb#`K%77}2s-B=4^g2Oi!Jc|W6 zWM-AUSS5qBtnplHWYrU;je^JH*T?6@+4<@5yKjp>ZV+`FOTq;Kf#9dM8e9u4$Swqz zL5o|~fGeOC;`BLr*C<2AoVS){Ce0~t;E+B${@0_;7fbtQPl|%b+37x4ArfC&gviB ziJXTQT|l7u>f60GAX;w+_1>Hxbw2F;Kg%obqT;*L<@MG%H4Y}D(PHcrEqg}d;7H1n zvje12(>WR&A~%xyj$Twg=B>MJMm3wGbX379FxMu=d=00-D~Ug8A9Up*L1Ai8}C5fb(y=$WvA zQcINCLA3X?J(kfy9eD#K=q_Ev+U&x(bwX;=K_daFg1&580QvP|mI9;(V^P5m!mklQ z!bBqgp$Yin0Pwr=59PE!Sk&`-uEw_;?j-jrjQ zmF-Up^qUf5It(z7*(a_oOjBc+qllm{NENdRwt%X?--4a!qy@GU7F>G)_!5Ji%?2~< zZLd1Tc2_jvq$5oL#{Gv$&o>nNJCQ|N3*c9soxQyl4F~G~T5`(yw7j|+(8vH~NUiJO zFz)MeHr(KHnUmjefgsQ3*gy~f67mhAtl#v2QiAqYkZquFkZ2oio9GziTVFRtE=ago zcl#Qh2zz4=n);_a<1>{eFl==1KU`T-_rC~DB0)hf~1@849kqhyYjHCp_P zN6tN?2uD#kACzmu=+v7IF2S~8ObQZ_x4{@pQ4)!SW^mJ6U(`hHST-!w#dJ~vu3Nd< z`QwfsL9K75lNrpBr>I_ILRlzI&6lRd72Em|utR6Exmr|12a;G)=Ml>QvuPb7*!*bG zPXN}q&N7H-S_cRwKO0XzClKT6@>E&|kWK3l!Q}_NDgn605Ye;_5RCnjw*gq$3 zrbPxUc=}|J?#&wGMAP~>!PAG63Bj@}yjSoYEARPNiJt!JavX>I$?fuW5jp zL3^E-y&D>>rjrp4RYB_6Vv5@(tQhQA`dJT0BHt_Q!mCMX8Sjc`TAjCq^DOd) zaF_++4(C^-&Twi4@(O2DN+01&3iut)q7*@K4CxV7LzK-|?z`DoT(~^&%sTpMK7~1| zewNvlbozA5+OGiMK_?odJ(cU1YfMwA@MW&HC-R5^{rmb{Ui_a<|(1flsLjHi8 z;qq#H{R2!AU`w$BGWeAsYJ1#IkNwHkFGuAy*xYxx_P%%kMBg4)yn`X>A7|SQ?xbJ> zP?`M!FhhI7!_hXskxL%%(&^|SW3=rF5@#Dgjm!Q7yd6Ie7@})WXmYR({y+stz&!xk z5_q_PGKHugFaeA_qq5QHiJ+SZTn8z)J0I24?E^!?03aQD?edUqpWo<$Q2E zn2X22>P)V+*)PD_lCk{x3@zgI5`Km&r?_l+9wrCrDIDioNVx$*Me`|IkUqQt=nO*Z z6}&{&gCe3Xn-LUP)ogM#U&8ttV`2Tk>Yn`#lWMa07JpYH(6CE^JmrgD^+2C~0YRQL z!>>mFCN>8E;jRlRE()g#aYB`_hmCHFOEKB)of!k-w-y7YWdEj}>_wP(5%r!P&so1UUk)^S9{% z`GVLHkSGWq1{s0^7xy)2aJ3D(-;#)X6*#Bi5~}90-1y$k1edwsShf=9k5F zHGvW177onthLg)(akGJIc^E*$W7+tzq|UM_eAv2vKxPQlodzW zmHcGW#b3uq*6ru9x@4qq>?V@=tmY>BEbk@joqFN?*y!bFbDULIPW3veIgG$yU4ZYw zB!=;Hwzs!C*7w{G5jP3A~J%D=_ zAnzaDl)J`lf1N2OGv?)^gSYcQc*%r$_vqm5JrG_pU*0wfye_u+Aq$wy7Du>3+j$@~ zH&>jx#6R9H%HZ}M2+mE_frBMkz;%Jn51T8(F^J3#9)c+p;LbwI!ZXxDKz~H`}7*(mC}TRfNZOb?J&`97aRIPR-dZ6zs9UIEea!?ludo zPiWvsEHFNyzQvxjFrJ`VKpw#s&Hi6W?o*>#_+LZ{9x zj1I2h+fH-@4Bz&mL#zJ=-V*G6{u{VOkh}di5PXol^&2;dTjVb7WvjVA+#UOkTf>bp z-(**~C+3@Mh-`=XD0_jA-cOM|>o(w{_s!);-2r^`8bn-teDn^vX5H}>js#h6G`ITV zfa$Cw_R|uv-&4EFI&`Qie)#t6D^c{x+7=t;z)H0J*AjFawzxX_dxlSzO4dzlai0wtR#Tp4-`E z&_C15-{7-@d+GyRQ4a)mP>T(2Zeq)@V`Anby5nbS%YVzn*^aM=O?5T>xUsR%4@G1t zihiw{s?=6IW@JZMz(Cs?<_Jah)n0LLFm3UNYC7@W(uWnWt_tqTSQP(-mL2&aZzeM^ zwCsyW{$M>2-a23TuxYw420h`P6P$A2vLAx&?mXRt8v%zo+bZ@!#5P9Ct5R?=HNr0ou^Y#G>JTU6CtcG3McQxu3NL{bAWuieE z^~#i~5@{5yQ0BElqhf_Jum2e(%a;We(5RWNOc8?TfjKGSp0dDbnr2B^;#5s@fMi&4 zUUBn7GdxOojQ#FeOufMKhxB`-@ASK&&!oUmnEh@kM83zx@CYuS%~Eh7fRuSvN>7Y^ zlNzVxl*(6;!wQ-X)S6nT&#Gq?C@^IBaWa~Uv+dU_fAup)`dsYKl2#NgOAuQ;2(aP<-r@GX<_CFA%VD3Px!Oa+8D}PZ*3Z9 zTW;`{fY$|IKYtW{lLNG#$?G3++C`I_v~=;ebHt_8%HzPOAvuC$mBxW*p|qTPu}bUl z7pt_Mf}u+LVd$&;3}<4Vxi32!{a~yVZ_cTt*zvNK;=qTp<&lwOiwz^lm0MEIlqa+( zCR?@axBIi(V11(%M|1kJw)6vvf3CdVjPiJD~A($Ap~eRBx`0% zrlwgyUF(OWbkN>#n_M7@^Jd;bmLFu85g?7G8gW6NC>-9s!E9EpW$as5F#TmM5oSY4 z`Mb|y&J$aN7Z<}C$F2O!+8oRXL}%cCbR5omP{x$8DcF$(iM9pT(()Y2ArePXu3qv@f?~ zX1c!_1a)H!7?%6R8om$3oSGlHw1v&r=W1Cp^3V;kQJ}u0rP$qh@%;JL7XQiG%IbJ+ zPo*X3-KcgymS>cXzax7c+5a0ZC?P1(xQ=XSuqukFt(a*(yC)4=u={W?NjL#vUCMCH z)+7)+GC`y)o!D9deRIDoA(z~=?x&jitU{-25syonagJ~*FLRhr8yn|1*qeI#C))LW z*qD05`g9yP7Lb9Hxw2Ni3EeJQBK0d=6G>W(xrX4w%Amnr7h$sIm)DYnBZP5r5cI|1 zIdwT^X27WCqo=GhL9iW;@v*_fK7-n;*bWjxlNYmLnha1?QUf5#Vc6AqF^$$1FMOh3*sH zfDqMgDwv`B#GxQ5tMs6Y{rtY=AU(9uS4+fW8y>ZW^Xf?G(b>{b3}ldH;nK)Y%lf1t zKnk4>o-NRmXs`CtsGTJVX|xXb)C>c2`JYTTu|xjW(kYuZ@TyKZ zJJ>5_N=P{FnLJMivyYi|0mL?tjLGqN znWt#2Fc|~}DWV*H7);d5Aq%x-nA#LUhOVu`1cM3VKZCQLY-bZ}3(U|I;*D!7$A*Yd zTTN%QS>5cZ}kul6kWDegzN1W;S5Sm9>s%(dr3D z(ko`)eN6|f3;tpUiB=FVw)3;OTjpsdqBp;rd*wt-W|_G=ZsYu3KxB1uo$TemF(p8j znH%LMde>z&HZZQs%?1s@i!H2AbF)cJrjiEcY9cQ#NiDN-HK|65&E>mF6|Dk^R9|6D zTZ95>Zq~7FOX5*4Ev$3+D#y1pGOJG_r3}gMJI2Ijj$$b?yB|m~o}g024Bm0{aI~@f zmD!JQFiC;g0(-hhnL*&l#vQYk3TA@>&uubuscJT-i9v@66PEgB&Vfmi!%CrkJ@z$v5jZXkREFCkTF;wQFRLy56fkPw}YWJ?v}5juP)te-E9b zrcZa>Mx!kxj+P;epkWdi$Zf%!~!WH}xAx8LD+Ra+V`N*|jsblUpnM^z*`HlsNQf2528$ z+3fH};bpj3$laJ#cMDLn_mxENzEdk@%Jk z!W$Y3B5eBo6t6r{QPM@qy&85f#Ybel86*CKb*OEL{S`UG70z#p?ppgXzwBe- z@!uzD2JZZ9!M`mE{?Xj!@^%1rsNvn4szmSrd`e<2m?g`3+;<46<3H|W^vC}3JvBSx zjWjJ>57X|M*>T@aWl7c=w-O=-EpAWcQLbdnNlE*jCpQkWg-rs!TK>9(FNS0@E5vER zFlsicrme*cBZj2BLD64Dgs$OEG5c7H4;9T2rV#sl(t+1UMVXC#*t>#goA8wbbPKAf z+fs~J`Xg_Ofj=Mx3g15SsxfVaOtOi~0QonR$P8d==^^*)4BAjSdUmz;3_K{)ebCHd zfZ;1@c;l_v(fU0(P`Qp^arv|u;)zSX$94*p@_T5=7jEg+oRUv09s%m55d_|;go8V< zZU4xg-~kkn(Z1(@G;FWqhWQp|^Zp56U-MiHPEveH>+8u+POs<`|Bh!u@M#|dVTx*Z zka&RduSVi_cnTr6I}_4>CSmVm=3nFO0OT=#Ti(vJs>p>MEMBj|gJ6>}`o10Ej)w;s zni}{Tx7%U3jRd_W!B%EjsA(Ck)-5q$)mMQPje@FMwQLR8z$mWSm0%sCz%E|`RyNA) zJ&VBFPM-}Lq%MDQrpQ6n2(mT{lo;$L&&+}l7r_7nMJ}7Gnqn@+r=$oxnXi`o5gB|wYBUPYZ>NdYsKASCBxLR1kXCg zG?#1@%ZwQ=ZV(Hs2~N!ZVNY0Ei)C`?W=QTKys^#}RDlS#eJ>F1(QV&#r_wi5BwF^-xt|`l|b-CFJZ!N*gE)KDFnY{ zSno0}dUAV?`~t8ijcyYzYQ7tFT{*8Qv)U)akNN6GR=e~3L$qhg)Xt$D}2ziF%>JOh-oTU$e-j|=}- z=AW|*P!4hsGRizfUM-CZv)91E*EjyO%;FRb(%`->e}U&)KI|oySp8Lb7GKKL7d5ld zsCb|p9&|9wNo9GI01QbOY#FAOT3_fJX$ivNFK=}dUTk>Or z0m9qnNewq@2oQonX3$AB&P|5zVqfIXoF$(rUet->6z)}YUiKK#C}<)?zz000`>7nv zI`6A;3OxopA6lCr)_z3}1w04Mq44X7OI1sJ{ zN%!)O=>wXM)YVTF3>R<%@=fT!G4si#01dA>4~Ly`bqxoTPgTeEi1kzda1qWVmh>A` zE_`J>DF7Nz>aEQN2p4dFGoluWP9cd02$%t^RA%o0Pcq?lfEWf$_|+!{lF`FJ1CxDb z^o$HKoyzEa<+U3OUNx6Uq$j6nBUVt_~mTl_mm+i(Lb zc^h_64toe}qS5SacxjaGWVuq2R3);(hw#k!SQAZnqHNxkcrOhHlNjq^q9dyZQA!8; z*eBi31hV&__4#ySfeX;VQ21}x1;J~q4~hod^eddsZ3&ARPs=bp+W;W zxwE(`;>i6}v6jV%@2r9;Eyi+pww@)~xuHP8w-=7?>$0mxzq++uZ78f}$%GxH3nM~^ znY&0Gc&|2>ATXjzIMCf85ylboO|mu3$32#T0y|#j<)8J-F_O{zwqr11(2FZn<2|1&`EQJKcXC9a=$k)1ubdW z#kttWBUJDqHb^t8L?X4fl`u!tQolo}*nsg3&uSv9La%6MPw|i)WR?=vG_V$;G2$X- zz!jIYu3rt&p)yAJRcSK55}l!DYx2O$O5?%?8ia-L@y{Llj4Nodfi`>cd`DSq=*vAZ z$@lxX?w?9XQ@E4Ez$a5TWJo|acr#NYh=MaRp4=@qe*|jrPer%*vN$dK15oxCRFAf|Q30acw8ACAR11L0gqQD5>rjk&?^F!0M)~_| zkZw9c2!Dh(tmN$~GBITMBq!omMsQWaQJm^CyG3-V+-=)IG!tilU3u<_p&y@}6fa-G z8UOb?|Hi?cCkv8Q`Kq5tn}hlA&I1w#&X%7fKsRJu^hX2I)?=yE>B+AS7HfnHbZiHF z3rgnu0C(&}jWp(M^iaCnJG&QPN;-eDSB-;BAbleziIbiCez9kW>l@0Uf&kqMC`kg7 zE0)Q2?8=vbyOihV$sYj?z;-aeHegbWHTI{j%+>iNvUjY=a4;HBQp3*sb)q*9&WR

!G$cD#e*Z6``VC;SF|K`3�@C^XZvJT;K|L?&dL>V$stMT#~&0P5P#F1^uY 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 delta 19381 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 -- GitLab From 0468c7748a050bea6f65e7ec70e2256a0f6c5702 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Mon, 14 Feb 2022 06:22:12 +0000 Subject: [PATCH 07/91] Replace ITS-Container.asn --- ITS-Container.asn | 1480 ++++++++++++++++++++++++++++----------------- 1 file changed, 922 insertions(+), 558 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index e889165..d68e647 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -22,21 +22,20 @@ BEGIN * - `accelerate` if the acceleration is positive. * - `decelerate` if the acceleration is negative. * - * @category Kinematics information + * @category: Kinematics information + * Revision: Created in V2.1.1 */ AccelerationChange::= ENUMERATED { accelerate, decelerate } -- tbd add values and/or extension? /** * This DE reprents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. * - * The value shall be set to: + * The following values are specified: * - `1` if the acceleration accuracy is equal to or less than 0,1 m/s2. - * - `n (n > 1 and n < 100)` if the acceleration accuracy is equal to or less than n × 0,1 m/s2. - * - `100` if the acceleration accuracy is equal to or less than 10 m/s2. + * - `n (n > 1 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and more than (n-1) x 0,1 m/s2. * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. * - `102` if the data is unavailable. * - * * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or @@ -48,8 +47,12 @@ AccelerationChange::= ENUMERATED { accelerate, decelerate } -- tbd add values an * * @unit 0,1 m/s2 * @category Kinematics information + * Revision: Description revised in V2.1.1 */ -AccelerationConfidence ::= INTEGER {pointOneMeterPerSecSquared(1), outOfRange(101), unavailable(102)} (0 .. 102) +AccelerationConfidence ::= INTEGER { + pointOneMeterPerSecSquared(1), + outOfRange(101), + unavailable(102)} (0 .. 102) /** * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. @@ -73,6 +76,7 @@ AccelerationConfidence ::= INTEGER {pointOneMeterPerSecSquared(1), outOfRange(10 * * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. * @category: Kinematics information + * Revision: V1.3.1 */ AccelerationControl ::= BIT STRING { brakePedalEngaged (0), @@ -86,10 +90,18 @@ AccelerationControl ::= BIT STRING { /** * This DE represents the value of an acceleration component in a defined coordinate system. - * The DE shall be set to `161` if the information is not available. * - * @unit 0,1 m/s2 + * The following values are specified: + * - `-160` for values equal to or greater than 16 m/s2. + * - `n (n > -160 and n < 0)` indicates negative acceleration of value n* 0,1 m/s2. + * - `0` indicates zero acceleration. + * - `n (n > 0 and n < 160)` indicates positive acceleration of value n* 0,1 m/s2. + * - `160` for acceleration equal to or greater than 16 m/s2. + * - `161` when the data is unavailable. + + * * @unit 0,1 m/s2 * @category: Kinematics information + * Revision: Created in V2.1.1 */ AccelerationValue ::= INTEGER { pointOneMeterPerSecSquared (1), @@ -108,6 +120,7 @@ AccelerationValue ::= INTEGER { * - `3`: NR-V2X access technology class. * * @category: Communication information + * Revision: Created in V2.1.1 */ AccessTechnologyClass ::= ENUMERATED { any(0), @@ -132,7 +145,9 @@ AccessTechnologyClass ::= ENUMERATED { * - 7 `unsecuredAccident` : in case the accident is not secured, * - 8 `assistanceRequested` : in case rescue and assistance are requested, * - 9-255 reserved for future usage. + * * @category: Traffic information + * Revision: V1.3.1 */ AccidentSubCauseCode ::= INTEGER { unavailable(0), @@ -164,6 +179,7 @@ AccidentSubCauseCode ::= INTEGER { * - 11-255 reserved for future usage * * @category: Traffic information + * Revision: V1.3.1 */ AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { unavailable(0), @@ -193,6 +209,7 @@ AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { * - 7-255 reserved for future usage * * @category: Traffic information + * Revision: V1.3.1 */ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { unavailable(0), @@ -215,6 +232,7 @@ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { * - 4-255 reserved for future usage * * @category: Traffic information + * Revision: V1.3.1 */ AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { unavailable(0), @@ -239,6 +257,7 @@ AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { * - 9-255 reserved for future usage * * @category: Traffic information + * Revision: V1.3.1 */ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { unavailable(0), @@ -265,7 +284,7 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. * - * The value shall be set to: + * The following values are specified: * - 0 `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre * - 1 `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre * - 2 `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre @@ -284,6 +303,7 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { * - 15 `unavailable` if the altitude accuracy information is unavailable * * @category: GeoReference information + * Revision: V1.3.1 */ AltitudeConfidence ::= ENUMERATED { alt-000-01 (0), @@ -314,6 +334,7 @@ AltitudeConfidence ::= ENUMERATED { * * @unit: 0.1 meter * @category: GeoReference information + * Revision: V1.3.1 */ AltitudeValue ::= INTEGER { referenceEllipsoidSurface(0), @@ -321,18 +342,18 @@ AltitudeValue ::= INTEGER { unavailable(800001) } (-100000..800001) -/** @brief Angle Confidence - * The absolute accuracy of an angle value for a predefined confidence level of 95 %. +/** + * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. + * + * The following values are specified: + * - `1` if the accuracy is equal to or less than 0,1 degrees. + * - `n (n > 1 and n < 126)` if the acceleration accuracy is n * 0,1 degrees + * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. + * - `127` if the accuracy information is not available * - * The value shall be set to: - * zeroPointOneDegree (1), - * oneDegree (10), - * outOfRange (126), --< if the accuracy is out of range, i.e. greater than - * --< 12,5 degrees. A corresponding reported angle value shall be - * --< considered invalid and cannot be trusted. - * unavailable (127) --< if the accuracy information is not available * @unit 0,1 degrees * @category: Kinematics information + * Revision: Created in V2.1.1 */ AngleConfidence ::= INTEGER { zeroPointOneDegree (1), @@ -343,20 +364,21 @@ AngleConfidence ::= INTEGER { /** * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. - * For correlation computation, maximum interval levels shall be assumed. + * For correlation computation, maximum interval levels can be assumed. * * The following values are specified: - * degSec-000-01 (0), --< if the accuracy is equal to or less than 0,01 degree/second - * degSec-000-05 (1), --< 1 if the accuracy is equal to or less than 0,05 degrees/second - * degSec-000-10 (2), --< if the accuracy is equal to or less than 0,1 degree/second - * degSec-001-00 (3), --< 3 if the accuracy is equal to or less than 1 degree/second - * degSec-005-00 (4), --< if the accuracy is equal to or less than 5 degrees/second - * degSec-010-00 (5), --< if the accuracy is equal to or less than 10 degrees/second - * degSec-100-00 (6), --< if the accuracy is equal to or less than 100 degrees/second - * outOfRange (7), --< if the accuracy is out of range, i.e. greater than 100 degrees/second - * unavailable (8) --< if the accuracy information is unavailable + * - 0 `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second + * - 1 `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second + * - 2 `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second + * - 3 `degSec-001-00` if the accuracy is equal to or less than 1 degree/second + * - 4 `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second + * - 5 `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second + * - 6 `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second + * - 7 `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second + * - 8 `unavailable` if the accuracy information is unavailable * * @category: Kinematics information + * Revision: Created in V2.1.1 */ AngularSpeedConfidence ::= ENUMERATED { degSec-000-01 (0), @@ -375,17 +397,18 @@ AngularSpeedConfidence ::= ENUMERATED { * For correlation computation, maximum interval levels shall be assumed. * * The following values are specified: - * degSecSquared-000-01 (0), --< if the accuracy is equal to or less than 0,01 degree/second^2 - * degSecSquared-000-05 (1), --< 1 if the accuracy is equal to or less than 0,05 degrees/second^2 - * degSecSquared-000-10 (2), --< if the accuracy is equal to or less than 0,1 degree/second^2 - * degSecSquared-001-00 (3), --< 3 if the accuracy is equal to or less than 1 degree/second^2 - * degSecSquared-005-00 (4), --< if the accuracy is equal to or less than 5 degrees/second^2 - * degSecSquared-010-00 (5), --< if the accuracy is equal to or less than 10 degrees/second^2 - * degSecSquared-100-00 (6), --< if the accuracy is equal to or less than 100 degrees/second^2 - * outOfRange (7), --< if the accuracy is out of range, i.e. greater than 100 degrees/second^2 - * unavailable (8) --< if the accuracy information is unavailable + * - 0 `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second^2 + * - 1 `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second^2 + * - 2 `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second^2 + * - 3 `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second^2 + * - 4 `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second^2 + * - 5 `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second^2 + * - 6 `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second^2 + * - 7 `outOfRange (7)` if the accuracy is out of range, i.e. greater than 100 degrees/second^2 + * - 8 unavailable (8)` if the accuracy information is unavailable * * @category: Kinematics information + * Revision: Created in V2.1.1 */ AngularAccelerationConfidence ::= ENUMERATED { degSecSquared-000-01 (0), @@ -403,8 +426,14 @@ AngularAccelerationConfidence ::= ENUMERATED { * This DE represenst an angle value described in a local Cartesian coordinate system, counted positive in * a right-hand local coordinate system from the abscissa. * + * The following values are specified: + * - `1` if the angle is equal to or less than 0,1 degrees. + * - `n (n > 1 and n < 3601)` if the angle is n * 0,1 degrees + * - `36001` if the accuracy information is not available + * * @unit 0,1 degrees * @category: Kinematics information + * Revision: Created in V2.1.1 */ CartesianAngleValue ::= INTEGER { zeroPointOneDegree (1), @@ -416,10 +445,14 @@ CartesianAngleValue ::= INTEGER { * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in * a right-hand local coordinate system from the abscissa. * + * * The following values are specified: + * - `0` if the speed is zero. + * * @unit 0,01 degrees/s * @category: Kinematics information + * Revision: Created in V2.1.1 */ -CartesianAngularSpeedValue ::= INTEGER { +CartesianAngularSpeedValue ::= INTEGER { --tbd noSpeed (0), oneDegreePerSecondAntiClockwise (100), oneDegreePerSecondClockwise (-100) @@ -431,8 +464,9 @@ CartesianAngularSpeedValue ::= INTEGER { * * @unit 0,01 degrees/s^2 (degrees per second squared) * @category: Kinematics information + * Revision: Created in V2.1.1 */ -CartesianAngularAccelerationValue ::= INTEGER { +CartesianAngularAccelerationValue ::= INTEGER { --tbd noAcceleration (0), oneDegreePerSecondSquaredAntiClockwise (100), oneDegreePerSecondSquaredClockwise (-100) @@ -480,6 +514,7 @@ CartesianAngularAccelerationValue ::= INTEGER { * - 100-255 are reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ CauseCodeType ::= INTEGER { reserved (0), @@ -513,64 +548,53 @@ CauseCodeType ::= INTEGER { } (0..255) /** - * This DF represents the value of a cartesian coordinate. + * This DF represents the value of a cartesian coordinate with a range of +- 327.68 meters. * * @unit 0,01 m + * @category: Basic information + * Revision: Created in V2.1.1 */ CartesianCoordinate::= INTEGER (-32768..32767) --- a range of +- 327.68 meters. 1cm unit /** * This DE represents the ID of a CEN DSRC tolling zone. * - * @category: Infrastructure information, Communication information + * @category: Communication information + * Revision: V1.3.1 */ CenDsrcTollingZoneID ::= ProtectedZoneID -- tbd to be deleted? /** * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 * - * @category: tbd + * @category: Cluster information + * Revision: Created in V2.1.1 */ ClusterCardinalitySize ::= INTEGER {unavailable(0), onlyLeader(1)} (0..255) --tbd make more generic? /** * Identifier of a cluster. * - * @category: tbd + * @category: Cluster information + * Revision: Created in V2.1.1 */ ClusterId ::= INTEGER(0..255) -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `collisionRisk`. - * - * The following values are specified: - * - 0 `unavailable` : in case information on the type of collision risk is unavailable, - * - 1 `longitudinalCollisionRisk`: in case the type of detected collision risk is longitudinal collision risk, - * e.g. forward collision or face to face collision, - * - 2 `crossingCollisionRisk` : in case the type of detected collision risk is crossing collision risk, - * - 3 `lateralCollisionRisk` : in case the type of detected collision risk is lateral collision risk, - * - 4 `vulnerableRoadUser` : in case the type of detected collision risk involves vulnerable road users - * e.g. pedestrians or bicycles, - * - 5-255 reserved for future usage. - * - * @category: Traffic information - */ - - /** * This DE indicates the reason why a cluster leader intends to break up the cluster. * * The following values are specified: - * - notProvided (0), - * - clusteringPurposeCompleted (1), - * - leaderMovedOutOfClusterBoundingBox (2), - * - joiningAnotherCluster (3), - * - enteringLowRiskAreaBasedOnMaps (4), - * - receptionOfCpmContainingCluster (5), - * - max(15) - * - */ + * - 0 `notProvided` + * - 1 `clusteringPurposeCompleted` + * - 2 `leaderMovedOutOfClusterBoundingBox` + * - 3 `joiningAnotherCluster` + * - 4 `enteringLowRiskAreaBasedOnMaps` + * - 5 `receptionOfCpmContainingCluster` + * - 6 to 15 reserved for future use + * + * @category: Cluster information + * Revision: Created in V2.1.1 +*/ ClusterBreakupReason ::= ENUMERATED { notProvided (0), clusteringPurposeCompleted (1), @@ -585,17 +609,19 @@ ClusterBreakupReason ::= ENUMERATED { * This DE indicates the reason why a cluster participant is leaving the cluster. * * The following values are specified: - * - notProvided (0), - * - clusterLeaderLost (1), - * - clusterDisbandedByLeader (2), - * - outOfClusterBoundingBox (3), - * - outOfClusterSpeedRange (4), - * - joiningAnotherCluster (5), - * - cancelledJoin (6), - * - failedJoin (7), - * - safetyCondition (8), - * - max (15): The value 15 is set to "max" in order to bound the size of the encoded field - * + * - 0 `notProvided ` + * - 1 `clusterLeaderLost` + * - 2 `clusterDisbandedByLeader` + * - 3 `outOfClusterBoundingBox` + * - 4 `outOfClusterSpeedRange` + * - 5 `joiningAnotherCluster` + * - 6 `cancelledJoin` + * - 7 `failedJoin` + * - 8 `safetyCondition` + * - 9 to 15 reserved for future use + * + * @category: Cluster information + * Revision: Created in V2.1.1 */ ClusterLeaveReason ::= ENUMERATED { notProvided (0), @@ -626,6 +652,7 @@ ClusterOpTimestamp::= INTEGER (1..255) --tbd what this is! * - 5-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ CollisionRiskSubCauseCode ::= INTEGER { unavailable(0), @@ -636,27 +663,38 @@ CollisionRiskSubCauseCode ::= INTEGER { }(0..255) /** - * This DE represnents the absolute accuracy of measurement to a confidence level of 95%. + * This DE represents the absolute accuracy of measurement to a confidence level of 95%. + * + * The following values are specified: + * - `1` if the accuracy is equal to or less than 0,01 meter. + * - `n (n > 1 and n < 4094)` if the accuracy is n * 0,01 meter. + * - `4094`if the accuracy information is greater than 40,93 meter. + * - `4095` if the accuracy information is not available. + * * @unit 0,01 m + * @category: Basic information + * Revision: Created in V2.1.1 */ CoordinateConfidence ::= INTEGER { zeroPointZeroOneMeter (1), - oneMeter (100), - outOfRange (4094), -- shall be set if the accuracy is out of range - unavailable (4095) -- shall be set if the accuracy data is unavailable + oneMeter (100), --tbd + outOfRange (4094), + unavailable (4095) } (0..4095) /** * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. - * The values is scaled by 100. * - * The following exemplary values are specified. - * full-negative-correlation (-100), --< Full negative correlation - * no-correlation (0), --< If not correlated or unavailable - * point-one (10), - * full-positive-correlation (100) --< Full positive correlation + * The following values are specified. + * - `100` indicates full negative correlation + * - `n (n > 100 and n < 0)` if the correlation is negative and equal to n*100. + * - `0` indicates not correlated or unavailable + * - `n (n > 0 and n < 100)` if the correlation is positive and equal to n*100. + * - `100` indicates full positive correlation * - * @category: Kinematics information + * @unit: the value is scaled by 100 + * @category: Sensing information + * Revision: Created in V2.1.1 */ CorrelationRowValue ::= INTEGER { full-negative-correlation (-100), @@ -665,41 +703,49 @@ CorrelationRowValue ::= INTEGER { full-positive-correlation (100) } (-100..100) - /** * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. * - * * The following values are specified: - * - yawRateUsed: when the yaw rate is used - * - yawRateNotUsed: when the yaw rate is not ued - * - unavailable: when the information of curvature calculation mode is unknown. + * - 0 `yawRateUsed`: when the yaw rate is used + * - 1 `yawRateNotUsed`: when the yaw rate is not ued + * - 2 `unavailable`: when the information of curvature calculation mode is unknown. * * @category: Vehicle information + * Revision: V1.3.1 */ -CurvatureCalculationMode ::= ENUMERATED {yawRateUsed(0), yawRateNotUsed(1), unavailable(2), ...} +CurvatureCalculationMode ::= ENUMERATED { + yawRateUsed(0), + yawRateNotUsed(1), + unavailable(2), + ... +} /** * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. - * * + * * The following values are specified: - * - 0 if the accuracy is less than or equal to 0,00002 m-1 - * - 1 if the accuracy is less than or equal to 0,0001 m-1 - * - 2 if the accuracy is less than or equal to 0,0005 m-1 - * - 3 if the accuracy is less than or equal to 0,002 m-1 - * - 4 if the accuracy is less than or equal to 0,01 m-1 - * - 5 if the accuracy is less than or equal to 0,1 m-1 - * - 6 if the accuracy is out of range, i.e. greater than 0,1 m-1 - * - 7 if the information is not available + * - 0 `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1 + * - 1 `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1 + * - 2 `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1 + * - 3 `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1 + * - 4 `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1 + * - 5 `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1 + * - 6 `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1 + * - 7 `unavailable` if the information is not available * * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by * several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. + * * In all 3 cases above, the reported curvature value may be valid and used by the application. * If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid and therefore cannot be trusted. Such value is not useful for the application. - */ + * + * @category: Vehicle information + * Revision: V1.3.1 +*/ CurvatureConfidence ::= ENUMERATED { onePerMeter-0-00002 (0), onePerMeter-0-0001 (1), @@ -721,19 +767,26 @@ CurvatureConfidence ::= ENUMERATED { * Positive values indicate a turning curve to the left hand side of the driver. * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. * - * The following exemplary values are explicitly defined: - * - The value shall be set to `0` when the vehicle is moving straight. - * - The value shall be set to `1023`, if the information is not available. - * - For calculated values smaller than `-1023`, the DE shall be set to `-1023`. - * - For calculated values bigger than `1022`, the DE shall be set to `1022`. - * + * The following values are specified: + * - `-1023` for values smaller than -1023. + * - `n (n > 1023 and n < 0)` for negative values of the turning curve. + * - `0` when the vehicle is moving straight. + * - `n (n > 0 and n < 1023)` for positive values of the turning curve. + * - `1022`, for values bigger than 1022. + * - `1023`, if the information is not available. * * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. * - * @unit 1 over 10 000 metres + * @unit: 1 over 10 000 metres * @category: Vehicle information + * Revision: editorial update in V2.1.1 */ -CurvatureValue ::= INTEGER {straight(0), unavailable(1023)} (-1023..1023) +CurvatureValue ::= INTEGER { + outOfRangeNegative (-1023), + straight(0), + outOfRangePositive (1022), + unavailable(1023) +} (-1023..1023) /** * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. @@ -747,8 +800,15 @@ CurvatureValue ::= INTEGER {straight(0), unavailable(1023)} (-1023..1023) * - 5-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ -DangerousEndOfQueueSubCauseCode ::= INTEGER {unavailable(0), suddenEndOfQueue(1), queueOverHill(2), queueAroundBend(3), queueInTunnel(4)} (0..255) +DangerousEndOfQueueSubCauseCode ::= INTEGER { + unavailable(0), + suddenEndOfQueue(1), + queueOverHill(2), + queueAroundBend(3), + queueInTunnel(4) +} (0..255) /** * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. @@ -757,8 +817,9 @@ DangerousEndOfQueueSubCauseCode ::= INTEGER {unavailable(0), suddenEndOfQueue(1) * * * @category Vehicle information + * Revision: V1.3.1 */ -DangerousGoodsBasic::= ENUMERATED { +DangerousGoodsBasic::= ENUMERATED { --tbd descrive values? explosives1(0), explosives2(1), explosives3(2), @@ -796,6 +857,7 @@ DangerousGoodsBasic::= ENUMERATED { * - 8-255: reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ DangerousSituationSubCauseCode ::= INTEGER { unavailable(0), @@ -812,16 +874,18 @@ DangerousSituationSubCauseCode ::= INTEGER { * This DE represents an offset altitude with regards to a defined altitude value. * It may be used to describe a geographical point with regards to a specific reference geographical position. * - * The followig values are specified: - * - Positive values are used for providing altitude offset above the reference position. - * - For values equal or greater than _127,99 metres_, the value shall be _12 799_. - * - Negative values are used for providing altitude offset below the reference position. - * - When the information is unavailable, the value shall be set to _12 800_. + * The following values are specified: + * - `n (n > -12700 and n < 0)` for providing altitude offset below the reference position. + * `0` for no altitudinal offset. + * - `n (n > 0 and n < 12799)` for providing altitude offset above the reference position. + * - `12799` for values equal or greater than 127,99 metres. + * - `12800` when the information is unavailable. * * @unit: 0.1 metre * @category: GeoReference information + * Revision: editorial update in V2.1.1 */ -DeltaAltitude ::= INTEGER { +DeltaAltitude ::= INTEGER { --tbd values oneCentimeterUp (1), oneCentimeterDown (-1), unavailable (12800) @@ -831,15 +895,17 @@ DeltaAltitude ::= INTEGER { * This DE represents an offset latitude with regards to a defined latitude value. * It may be used to describe a geographical point with regards to a specific reference geographical position. * - * The followig values are specified: - * - Positive values are used for providing offset towards the north from the reference position. - * - Negative values are used for providing offset towards the south from the reference position. - * - When the information is unavailable, the value shall be set to _131072_. + * The following values are specified: + * - n (n > -12700 and n < 0) for providing offset towards the south from the reference position. + * `0` for no latitudinal offset. + * - n (n > 0 and n < 12799) for providing offset towards the north from the reference position. + * - `131072` when the information is unavailable. * * @unit: 0.1 microdegree * @category: GeoReference information + * Revision: editorial update in V2.1.1 */ -DeltaLatitude ::= INTEGER { +DeltaLatitude ::= INTEGER { --tbd values oneMicrodegreeNorth (10), oneMicrodegreeSouth (-10) , unavailable (131072) @@ -849,13 +915,15 @@ DeltaLatitude ::= INTEGER { * This DE represents an offset longitude with regards to a defined longitude value. * It may be used to describe a geographical point with regards to a specific reference geographical position. * - * The followig values are specified: - * - Positive values are used for providing offset towards the east from the reference position. - * - Negative values are used for providing offset towards the west from the reference position. - * - When the information is unavailable, the value shall be set to _131072_. + * The following values are specified: + * - n (n > -12700 and n < 0) for providing offset towards the west from the reference position. + * `0` for no longitudinal offset. + * - n (n > 0 and n < 12799) for providing offset towards the east from the reference position. + * - `131072` when the information is unavailable. * * @unit: 0.1 microdegree * @category: GeoReference information + * Revision: editorial update in V2.1.1 */ DeltaLongitude ::= INTEGER { oneMicrodegreeEast (10), @@ -863,36 +931,64 @@ DeltaLongitude ::= INTEGER { unavailable (131072) } (-131071..131072) +/** + * This DE represents a difference in time with respect to a reference time. + + * Example: a time interval between two consecutive message transmissions. + * + * @unit: 1 ms + * @category: Basic information + * Revision: Created in V2.1.1 from the DE TransmissionInterval + */ +DeltaTimeMilliSecondPos ::= INTEGER { + oneMilliSecond(1), + tenSeconds(10000) +} (1..10000) + /** - * This DE represents a difference in time with respect to a reference time. + * This DE represents a difference in time with respect to a reference time. * - * @unit 1 ms + * @unit: 1 ms + * @category: Basic information + * Revision: Created in V2.1.1 */ -DeltaTimeMilliSecond ::= INTEGER { +DeltaTimeMilliSecondPosNeg ::= INTEGER { oneMilliSecond (1) } (-1500..1500) /** * This DE represents a difference in time with respect to a reference time. * - * @unit 0,01 s + * @unit: 0,01 s + * @category: Basic information + * Revision: Created in V2.1.1 */ -DeltaTimeHundredthOfSecond::= INTEGER {tenMilliSeconds(1)} (1..65535, ...) +DeltaTimeHundredthOfSecond::= INTEGER { + tenMilliSeconds(1) +} (1..65535, ...) /** * This DE represents a difference in time with respect to a reference time. * - * @unit 0,1 s + * @unit: 0,1 s + * @category: Basic information + * Revision: Created in V2.1.1 */ -DeltaTimeTenthOfSecond::= INTEGER {zero(0), hundredMs(1), twoHundredMs(2), unavailable (127) } (0..127) -- tbd which range? +DeltaTimeTenthOfSecond::= INTEGER { + zero(0), + hundredMs(1), + twoHundredMs(2), + unavailable (127) +} (0..127) -- tbd which range? /** * This DE represents a difference in time with respect to a reference time. * - * @unit 1 s + * @unit: 1 s + * @category: Basic information + * Revision: Created in V2.1.1 */ DeltaTimeSecond ::= INTEGER { -- tbd - timeOfDetection(0), oneSecondAfterDetection(1) } (0..86400) @@ -901,13 +997,17 @@ DeltaTimeSecond ::= INTEGER { -- tbd * This DE indicates in which direction something is moving. * * The following values are specified: - * - forward: it is moving forward - * - backwards: it is moving backwards - * - unavailable : the information is unavailable + * - 0 `forward`: it is moving forward. + * - 1 `backwards`: it is moving backwards. + * - 2 `unavailable` : the information is unavailable. * * @category: Kinematics information + * Revision: editorial update in V2.1.1 */ -DriveDirection ::= ENUMERATED {forward (0), backward (1), unavailable (2)} +DriveDirection ::= ENUMERATED { + forward (0), + backward (1), + unavailable (2)} /** * This DE indicates whether a driving lane is open to traffic. @@ -923,14 +1023,16 @@ DriveDirection ::= ENUMERATED {forward (0), backward (1), unavailable (2)} * @note: Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus as defined in clause A.29. * * @category: Traffic information + * Revision: V1.3.1 */ DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) /** * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. - * If it is the case, the value shall be set to TRUE, otherwise to FALSE + * If it is the case, the value is TRUE, otherwise FALSE. * * @category: Vehicle information + * Revision: editorial update in V2.1.1 */ EmbarkationStatus ::= BOOLEAN @@ -939,8 +1041,9 @@ EmbarkationStatus ::= BOOLEAN * The right-of-priority bit shall be set to 1 if the corresponding right is requested. * * @category: Traffic information + * Revision: V1.3.1 */ -EmergencyPriority ::= BIT STRING { +EmergencyPriority ::= BIT STRING {--tbd values requestForRightOfWay(0), requestForFreeCrossingAtATrafficLight(1) } (SIZE(2)) @@ -956,6 +1059,7 @@ EmergencyPriority ::= BIT STRING { * - value 3-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ EmergencyVehicleApproachingSubCauseCode ::= INTEGER { unavailable(0), @@ -969,8 +1073,9 @@ EmergencyVehicleApproachingSubCauseCode ::= INTEGER { * - Otherwise, the corresponding bit shall be set to `0`. * * @category: Vehicle information + * Revision: V1.3.1 */ -EnergyStorageType ::= BIT STRING { +EnergyStorageType ::= BIT STRING {-- tbd values hydrogenStorage(0), electricEnergyStorage(1), liquidPropaneGas(2), @@ -999,8 +1104,9 @@ EnergyStorageType ::= BIT STRING { * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. * * @category Vehicle information + * Revision: V1.3.1 */ -ExteriorLights ::= BIT STRING { +ExteriorLights ::= BIT STRING { -- tbd values lowBeamHeadlightsOn (0), highBeamHeadlightsOn (1), leftTurnSignalOn (2), @@ -1014,19 +1120,19 @@ ExteriorLights ::= BIT STRING { /** * This DE represents the confidence of the information indicating that an area is not occupied by a traffic participant or obstacle. * - * the following values are specified: - * - unknown (0), -- if the free space confidence is unknown for the described area - * - onePercent (1), - * - OneHundredPercent (100), - * - unavailable (101) -- if the confidence could not be computed and does not apply. + * The following values are specified: + * - `0` if the free space confidence is unknown for the described area. + * - `n (n > 1 and n < 100)` for confidence values of n %. + * - `101` if the confidence could not be computed and does not apply. * - * @category tbd + * @category Sensing Information + * Revision: Created in V2.1.1 */ -FreeSpaceConfidence ::= INTEGER { - unknown (0), -- if the free space confidence is unknown for the described area +FreeSpaceConfidence ::= INTEGER { --tbd values + unknown (0), onePercent (1), oneHundredPercent (100), - unavailable (101) -- if the confidence could not be computed and does not apply. + unavailable (101) } (0..101) @@ -1035,6 +1141,7 @@ FreeSpaceConfidence ::= INTEGER { * This means that generationDeltaTime = TimestampIts mod 65 536. * * @category Time information + * Revision: Created in V2.1.1 based on EN 302 637-2 */ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) @@ -1043,12 +1150,12 @@ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) * (e.g. for stopping or for driving) or closed for all vehicles. * * The following values are specified: - * - availableForStopping(0): if the hard shoulder is available for stopping in emergency situations. - * - closed(1): if the hard shoulder is closed and cannot / shall not be occupied in any case. - * - availableForDriving(2): if the hard shoulder is available for regular driving. -* - * + * - 0 `availableForStopping`: if the hard shoulder is available for stopping in emergency situations. + * - 1 `closed`: if the hard shoulder is closed and cannot be occupied in any case. + * - 2 `availableForDriving`: if the hard shoulder is available for regular driving. + * * @category: Traffic information + * Revision: Editorial update in V2.1.1 */ HardShoulderStatus ::= ENUMERATED { availableForStopping(0), @@ -1067,13 +1174,15 @@ HardShoulderStatus ::= ENUMERATED { * - 5-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { unavailable(0), wildAnimals(1), herdOfAnimals(2), smallAnimals(3), - largeAnimals(4)} (0..255) + largeAnimals(4) +} (0..255) /** * This DE represents the sub cause code of the @CauseCode `hazardousLocation-DangerousCurve`. @@ -1091,6 +1200,7 @@ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { * and vehicle speed driving on the curve. This definition is out of scope of the present document. * * @category: Traffic information + * Revision: V1.3.1 */ HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { unavailable(0), @@ -1116,6 +1226,7 @@ HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { * - 8-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { unavailable(0), @@ -1145,6 +1256,7 @@ HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { * - 10-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { unavailable(0), @@ -1163,9 +1275,9 @@ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { /** * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. * - * The value shall be set to: + * The value following values are specified: * - `1` if the heading accuracy is equal to or less than 0,1 degree, - * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n × 0,1 degree, + * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree * - `125` if the heading accuracy is equal to or less than 12,5 degrees, * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, * - `127` if the heading accuracy information is not available. @@ -1179,20 +1291,25 @@ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { * * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * @note: this DE is kept for backwards compatibiliyty reasons only. It is reccomended to use the @ref AccelerationValue instead. + * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleConfidence instead. * * @unit: 0,1 degree * @category: GeoReference information * Revision: Description revised in V2.1.1 */ -HeadingConfidence ::= INTEGER {equalOrWithinZeroPointOneDegree (1), equalOrWithinOneDegree (10), outOfRange(126), unavailable(127)} (1..127) +HeadingConfidence ::= INTEGER { --tbd values + equalOrWithinZeroPointOneDegree (1), + equalOrWithinOneDegree (10), + outOfRange(126), + unavailable(127) +} (1..127) /** HeadingValue * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. * When the information is not available, the DE shall be set to 3 601. * - * @note: this DE is kept for backwards compatibiliyty reasons only. It is reccomended to use the @ref AccelerationValue instead. + * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleValue instead. * * Unit: 0,1 degree * Categories: GeoReference information @@ -1209,13 +1326,19 @@ HeadingValue ::= INTEGER { /** * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle - * rear to front). For values equal to or greater than 99 cm, the DE shall be set to 99. - * If the value is unavailable, the DE shall be set to 100. + * rear to front). + +* The value following values are specified: + * - `1` if the height is equal to or less than 0,01 meter, + * - `n (n > 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter + * - `99` if the height is out of range, i.e. equal to or greater than 99 cm, + * - `100` if the height information is not available. * - * @unit 1 centimeter + * @unit 0,01 meter * @category Vehicle information + * Revision: Description revised in V2.1.1 */ -HeightLonCarr ::= INTEGER { +HeightLonCarr ::= INTEGER {--tbd values oneCentimeter(1), unavailable(100) } (1..100) @@ -1231,8 +1354,14 @@ HeightLonCarr ::= INTEGER { * - 4-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ -HumanPresenceOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), childrenOnRoadway(1), cyclistOnRoadway(2), motorcyclistOnRoadway(3)} (0..255) +HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { + unavailable(0), + childrenOnRoadway(1), + cyclistOnRoadway(2), + motorcyclistOnRoadway(3) +} (0..255) /** * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". @@ -1244,6 +1373,7 @@ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), childrenOnRoadwa * - 3-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ HumanProblemSubCauseCode ::= INTEGER { unavailable(0), @@ -1254,16 +1384,18 @@ HumanProblemSubCauseCode ::= INTEGER { /** * This DE is a general identifier. * - * @category: tbd + * @category: Basic information + * Revision: Created in V2.1.1 */ Identifier ::= INTEGER (0..255) /** * This DE represents the quality level of provided information. * - * - * @category: Other information * @note: Definition of quality level is out of scope of the present document. + * + * @category: Other information + * Revision: V1.3.1 */ InformationQuality ::= INTEGER { unavailable(0), @@ -1276,29 +1408,31 @@ InformationQuality ::= INTEGER { * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). * * The value are specified as following: - * - permanentCenDsrcTolling(0), --!< as specified in ETSI TS 102 792 - * - temporaryCenDsrcTolling(1), --!< as specified in ETSI TS 102 792 - * - unavailable(2), --!< default value. Set to 2 for backwards compatibility with DSRC tolling - * - urbanRail(3), --!< as specified in ETSI TS 103 724, clause 7 - * - satelliteStation(4), --!< as specified in ETSI TS 103 724, clause 7 - * - fixedLinks(5), --!< as specified in ETSI TS 103 724, clause 7 + * - 0 `permanentCenDsrcTolling` : as specified in ETSI TS 102 792 + * - 1 `temporaryCenDsrcTolling` : as specified in ETSI TS 102 792 + * - 2 `unavailable` : default value. Set to 2 for backwards compatibility with DSRC tolling + * - 3 `urbanRail(3)` : as specified in ETSI TS 103 724, clause 7 + * - 4 `satelliteStation` : as specified in ETSI TS 103 724, clause 7 + * - 5 `fixedLinks(5)` : as specified in ETSI TS 103 724, clause 7 * * @category: Communication information + * Revision: Created in V2.1.1 */ InterferenceManagementZoneType ::= ENUMERATED { - permanentCenDsrcTolling(0), --!< as specified in ETSI TS 102 792 - temporaryCenDsrcTolling(1), --!< as specified in ETSI TS 102 792 - unavailable(2), --!< default value. Set to 2 for backwards compatibility with DSRC tolling - urbanRail(3), --!< as specified in ETSI TS 103 724, clause 7 - satelliteStation(4), --!< as specified in ETSI TS 103 724, clause 7 - fixedLinks(5), --!< as specified in ETSI TS 103 724, clause 7 + permanentCenDsrcTolling(0), + temporaryCenDsrcTolling(1), + unavailable(2), + urbanRail(3), + satelliteStation(4), + fixedLinks(5), ... } /** * This DE represents the identifier of an intersection * - * @category: Communication information + * @category: Road topology information + * Revision: Created in V2.1.1 */ IntersectionID ::= INTEGER (0..65535) @@ -1309,6 +1443,7 @@ IntersectionID ::= INTEGER (0..65535) * carriageway in a left-land traffic (e.g. in UK). The value -1 denotes that the referenced position is outside the road. * * @category: Road topology information + * Revision: V1.3.1 */ LanePosition ::= INTEGER { offTheRoad(-1), @@ -1319,41 +1454,43 @@ LanePosition ::= INTEGER { } (-1..14) /** - *Thios DE represents the identifier of a lane. + * This DE represents the identifier of a lane. * * @note: the context of the identification (e.g. the intersection geometry of a MAPEM) is defined outside the DE * * @category: Road topology information + * Revision: Created in V2.1.1 */ LaneId ::= INTEGER (0..255) /** * This DE represents the type of a lane. The following values are specified: * - * - 0 traffic: Lane dedicated to the movement of vehicles. - * - 1 through: Lane dedicated to the movement of vehicles travelling ahead and not turning. - * - 2 reversible: Lane where the direction of traffic can be changed to match the peak flow. - * - 3 acceleration: Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. - * - 4 deceleration: Lane that allows vehicles exiting a road to decelerate before leaving it. - * - 5 leftHandTurning: Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. - * - 6 rightHandTurning: Lane reserved for slowing down and making a right turn so as not to disrupt traffic. - * - 7 dedicatedVehicle: Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. - * - 8 bus: Lane: dedicated to movement of buses providing public transportation. - * - 9 taxi: Lane dedicated to movement of taxis. - * - 10 hov: Carpooling lane or high occupancy vehicle lane. - * - 11 hot: High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. - * - 12 pedestrian: Lanes dedicated to pedestrians such as pedestrian sidewalk paths. - * - 13 bikeLane: Lane dedicated to exclusive or preferred use by bicycles. - * - 14 median: Lane not dedicated to movement of vehicles but representing medians and channelization such as the central median separating the two directional carriageways of the highway. - * - 15 striping: Lane not dedicated to movement of vehicles but covered with roadway markings. - * - 16 trackedVehicle: Lane dedicated to movement of trains and trolleys. - * - 17 parking: Lanes dedicated to vehicles parking, stopping and loading lanes. - * - 18 emergency: Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. - * - 19 verge: Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between the road surface edge and the boundary of a road. - * - 20 minimumRiskManoeuvre: Lane dedicated to automated vehicles making a minimum risk manoeuvre. - * - values 21 to 30: reserved for future use + * - 0 `traffic`: Lane dedicated to the movement of vehicles. + * - 1 `through`: Lane dedicated to the movement of vehicles travelling ahead and not turning. + * - 2 `reversible`: Lane where the direction of traffic can be changed to match the peak flow. + * - 3 `acceleration`: Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. + * - 4 `deceleration`: Lane that allows vehicles exiting a road to decelerate before leaving it. + * - 5 `leftHandTurning`: Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. + * - 6 `rightHandTurning`: Lane reserved for slowing down and making a right turn so as not to disrupt traffic. + * - 7 `dedicatedVehicle`: Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. + * - 8 `bus`: Lane: dedicated to movement of buses providing public transportation. + * - 9 `taxi`: Lane dedicated to movement of taxis. + * - 10 `hov`: Carpooling lane or high occupancy vehicle lane. + * - 11 `hot`: High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. + * - 12 `pedestrian`: Lanes dedicated to pedestrians such as pedestrian sidewalk paths. + * - 13 `bikeLane`: Lane dedicated to exclusive or preferred use by bicycles. + * - 14 `median`: Lane not dedicated to movement of vehicles but representing medians and channelization such as the central median separating the two directional carriageways of the highway. + * - 15 `striping`: Lane not dedicated to movement of vehicles but covered with roadway markings. + * - 16 `trackedVehicle`: Lane dedicated to movement of trains and trolleys. + * - 17 `parking`: Lanes dedicated to vehicles parking, stopping and loading lanes. + * - 18 `emergency`: Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. + * - 19 `verge`: Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between the road surface edge and the boundary of a road. + * - 20 `minimumRiskManoeuvre`: Lane dedicated to automated vehicles making a minimum risk manoeuvre. + * - values 21 to 30: reserved for future use * * @category: Road topology information + * Revision: V1.3.1 */ LaneType::= INTEGER{ traffic (0), @@ -1384,12 +1521,14 @@ LaneType::= INTEGER{ * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or * in south hemisphere. * + * The following values are specified: * - Positive values are used for latitude in north of the Equator, * - Negative values are used for latitude in south of the Equator. - * - When the information is unavailable, the value shall be set to _900 000 001_. + * - `900 000 001` when the information is unavailable. * * @unit: 0.1 microdegree * @category: GeoReference information + * Revision: V1.3.1 */ Latitude ::= INTEGER { oneMicrodegreeNorth (10), @@ -1398,29 +1537,40 @@ Latitude ::= INTEGER { } (-900000000..900000001) /** - * This DE represenst the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. + * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The following values are specified: + * - `-160` for values equal to or greater than 16 m/s2 towards the right. * - Negative value indicates that the vehicle is accelerating towards the right side with regards to the vehicle orientation. - * - For values equal to or greater than 16 m/s2 towards the right, the value shall be set to -160. * - Positive values indicate the acceleration to the left hand side with regards to the vehicle orientation. - * - For values equal to or greater than 16 m/s2 towards the left, the value shall be set to 160. - * - When the information is not available, the value shall be set to 161. - * + * - `160` for values equal to or greater than 16 m/s2 towards the left. + * - `161` when the information is not available. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * * @unit: 0.1 m/s2 * @category Vehicle information + * Revision: Editorial update in V2.1.1 */ -LateralAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredToRight(-1), pointOneMeterPerSecSquaredToLeft(1), unavailable(161)} (-160 .. 161) +LateralAccelerationValue ::= INTEGER {-- tbd values + pointOneMeterPerSecSquaredToRight(-1), + pointOneMeterPerSecSquaredToLeft(1), + unavailable(161) +} (-160 .. 161) /** * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. - * When the light bar or audible alarm is active, the corresponding bits shall be set to 1. - * Otherwise, it shall be set to 0. * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `lightBarActivated` : when the light bar is activated. + * - 1 `sirenActivated` : when the siren is activated. + * + * Otherwise, it shall be set to 0. * @category Vehicle information + * Revision: Editorial update in V2.1.1 */ LightBarSirenInUse ::= BIT STRING { lightBarActivated (0), @@ -1433,10 +1583,11 @@ LightBarSirenInUse ::= BIT STRING { * * - Negative values are used for longitudes to the west, * - Positive values are used for longitudes to the east. - * - When the information is unavailable, the value shall be set to _1 800 000 001_. + * - `1 800 000 001` when the information is unavailable. * * @unit: 0.1 microdegree * @category: GeoReference information + * Revision: Editorial update in V2.1.1 */ Longitude ::= INTEGER { oneMicrodegreeEast (10), @@ -1449,25 +1600,31 @@ Longitude ::= INTEGER { * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. * * The following values are specified: + * - `-160` for values equal to or greater than 16 m/s2. * - Negative values indicate that the vehicle is braking. - * - For values equal to or greater than 16 m/s2, the value shall be set to -160. * - Positive values indicate that the vehicle is accelerating. - * - For acceleration equal to or greater than 16 m/s2 the value shall be set to 160. - * - When the data is unavailable, the value shall be set to 161. + * - `160` for acceleration equal to or greater than 16 m/s2. + * - `161` when the data is unavailable. * * This acceleration is along the tangent plane of the road surface and does not include gravity components. + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * @category: Vehicle information */ -LongitudinalAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredForward(1), pointOneMeterPerSecSquaredBackward(-1), unavailable(161)} (-160 .. 161) +LongitudinalAccelerationValue ::= INTEGER { + pointOneMeterPerSecSquaredForward(1), + pointOneMeterPerSecSquaredBackward(-1), + unavailable(161) +} (-160 .. 161) /** * This DE represents the longitudinal offset of the map-matched position of a particular object along the - * matched lane, beginning from the lane’s starting point as defined in CEN ISO/TS 19091 + * matched lane, beginning from the lane’s starting point as defined in CEN ISO/TS 19091. * * @unit 0,1 m * @category: Road topology information + * Revision: Created in V2.1.1 */ LongitudinalLanePositionValue ::= INTEGER { zeroPointOneMeter (1) @@ -1477,13 +1634,14 @@ LongitudinalLanePositionValue ::= INTEGER { * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. * * The following values are specified: - * - zeroPointZeroOneMeter (1): examplary value of 0,01 meter - * - oneMeter (100): examplary value of 1 meter - * - outOfRange (101): if the accuracy is out of range - * - unavailable (102): if the accuracy data is unavailable + * - `1` if the accuracy is equal to or less than 0,01 m + * - `n (n > 1 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. + * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. + * - `102` if the data is unavailable. * - * @unit 0,01 m + * @unit 0,01 meter * @category: Road topology information + * Revision: Created in V2.1.1 */ LongitudinalLanePositionConfidence ::= INTEGER { zeroPointZeroOneMeter (1), @@ -1513,7 +1671,7 @@ LongitudinalLanePositionConfidence ::= INTEGER { * - 14-255: reserved for future usage, * * @category: Communication information - * Revision: Created in V2.1.1 + * Revision: Created in V2.1.1 from @ref ItsPduHeader */ MessageId::= INTEGER { denm(1), @@ -1536,27 +1694,31 @@ MessageId::= INTEGER { * This DE represents the number of occupants in a vehicle. * * The following values are specified: - * - For values equal to or higher than 126, the value shall be set to `126`. - * - If the information is not available, the value shall be set to `127`. + * - `n (n > 1 and n < 126)` for the number n of occupants. + * - `126` for values equal to or higher than 126. + * - `127` if information is not available.`. * * @unit: 1 person * @category: Vehicle information + * Revision: Editorial update in V2.1.1 */ -NumberOfOccupants ::= INTEGER {oneOccupant (1), unavailable(127)} (0 .. 127) +NumberOfOccupants ::= INTEGER { + oneOccupant (1), + unavailable(127) +} (0 .. 127) /** * This DE represents the confidence value for the type of a detected object. * * The following values are specified: * - * - unknown (0), --< in case the confidence value is unknown but the reported - * - --< classification is still valid. - * - onePercent (1), - * - oneHundredPercent (100), - * - unavailable (101) --< In case the class confidence value computation is not available - * --< for this object. Indicates that the class assignment is invalid. + * - `0` : in case the confidence value is unknown but the reported classification is still valid. + * - `n (n > 1 and n < 101) : for the confidence value in %. + * - `101` : in case the confidence value computation is not available for the object. Indicates that the class assignment is invalid. + * * @unit Percent * @category: Sensing information + * Revision: Created in V2.1.1 */ ObjectClassConfidence ::= INTEGER { unknown (0), @@ -1570,12 +1732,13 @@ ObjectClassConfidence ::= INTEGER { * * The following values are specified: * - * - noConfidence (0), --< No confidence in detected object, e.g. for "ghost"-objects or - * - --< if confidence could not be computed - * - fullConfidence (15) --< Full confidence in detected ObjectDescriptor - * - + * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. + * - `n (n > 0 and n < 15) : for the applicable confidence value. + * -`15 : if there is full confidence in the detected ObjectDescriptor. + * * @unit n/a * @category: Sensing information + * Revision: Created in V2.1.1 */ ObjectConfidence ::= INTEGER { noConfidence (0), @@ -1587,6 +1750,7 @@ ObjectConfidence ::= INTEGER { * * @unit 0,1 m * @category: Sensing information + * Revision: Created in V2.1.1 */ ObjectDimensionValue ::= INTEGER { zeroPointOneMeter (1), @@ -1596,8 +1760,15 @@ ObjectDimensionValue ::= INTEGER { /** * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. * + * The following values are specified: + * - `1` if the dimension accuracy is equal to or less than 0,01 m. + * - `n (n > 1 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. + * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. + * - `102` if the data is unavailable. + * * @unit 0,01 m * @category: Sensing information + * Revision: Created in V2.1.1 */ ObjectDimensionConfidence ::= INTEGER { zeroPointZeroOneMeter (1), @@ -1612,14 +1783,13 @@ ObjectDimensionConfidence ::= INTEGER { * position. * * The following values are specified: - * - dynamic (0), --< the object is moving - * - hasBeenDynamic (1), --< indicates whether an object has been dynamic before, e.g., a car - * - --< stopping at a traffic light - * - static (2) --< shall be used in case an object is identified to be not moving - * - --< throughout any previous observation + * - `0` dynamic : indicates that the object is moving. + * - `1` hasBeenDynamic : indicates whether an object has been dynamic before, e.g., a car stopping at a traffic light. + * - `2` static : indicates that an object has been detected to be not moving throughout any previous observation. * * @unit n/a * @category: Sensing information + * Revision: Created in V2.1.1 */ ObjectDynamicStatus ::= INTEGER { -- t.b.d add unavailable dynamic (0), @@ -1633,8 +1803,9 @@ ObjectDynamicStatus ::= INTEGER { -- t.b.d add unavailable * * @unit n/a * @category: Sensing information + * Revision: Created in V2.1.1 */ -ObjectRefPoint ::= INTEGER { +ObjectRefPoint ::= INTEGER {-- t.b.d specify values mid (0), bottomLeft (1), midLeft (2), @@ -1650,15 +1821,15 @@ ObjectRefPoint ::= INTEGER { * This DE represents positions with lane-level accuracy which are not on regular traffic lanes. * * The following values are specified: - * - unavailable(0): in case information on the lane position is unavailable, - * - sidewalk (1), - * - parkingLane (2), an area at the side of the road not intended for travel but for vehicular parking, - * - bikeLane (3), an area reserved for bicycles, - * - value 4-15: reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` : in case information on the lane position is unavailable. + * - 1 `sidewalk : in case the position is on the side-walk. + * - 2 `parkingLane : in case the position is on an area at the side of the road not intended for travel but for vehicular parking. + * - 3 `bikeLane` : in case the position is on an area reserved for bicycles. + * - value 4-15: : reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. * * @unit n/a * @category: Road topology information - + * Revision: Created in V2.1.1 */ OffRoadLanePosition ::= ENUMERATED { unavailable(0), @@ -1673,6 +1844,7 @@ OffRoadLanePosition ::= ENUMERATED { * (for example local commerce). * * @category: Time information + * Revision: V1.3.1 */ OpeningDaysHours ::= UTF8String @@ -1680,8 +1852,8 @@ OpeningDaysHours ::= UTF8String * This DE indicates the subclass of a detected object for object class "otherSubclass". * * The following values are specified: - * - unknown(0): the subclasss is unknown. - * - roadSideUnit (1): the object is a roadside unit. + * - `0` unknown : the subclasss is unknown. + * - `1` roadSideUnit : the object is a roadside unit. * * @category: Sensing information * Revision: Created in V2.1.1 @@ -1696,6 +1868,7 @@ OtherSubclass ::= INTEGER { * * @unit 0.01 second * @category GeoReference information + * Revision: same type as in V1.3.1 but now based on a basic type */ PathDeltaTime ::= DeltaTimeHundredthOfSecond @@ -1703,22 +1876,26 @@ PathDeltaTime ::= DeltaTimeHundredthOfSecond * This DE denotes the ability of an ITS-S to provide up-to-date information. * A performance class value is used to describe age of data. The exact values are out of scope of the present document. * - * As defined in ETSI TS 101 539-1 [i.6], performance class A shall be set to `1`, performance class B shall be set to 2. - * When the performance class is unknown, it shall be set to `0`. - * - * Values in the range `3 to 7` are reserved for future use. + * The following values are specified: + * - `0` if the performance class is unknown. + * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.6] + * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.6] + * - Values in the range `3 to 7` are reserved for future use. * * @category: Vehicle information + * Revision: Editorial update in V2.1.1 */ -PerformanceClass ::= INTEGER { --tbd semantics +PerformanceClass ::= INTEGER { unavailable(0), performanceClassA(1), - performanceClassB(2)} (0..7) + performanceClassB(2) +} (0..7) /** * This DE represents a telephone number * * @category: Other information + * Revision: V1.3.1 */ PhoneNumber ::= NumericString (SIZE(1..16)) @@ -1727,14 +1904,15 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * the vehicle bounding box of the empty load vehicle. * * The following values are specified: - * - The DE is set to any aplicable value between 0,1 meter and 6,2 meters. - * - For values equal to or higher than 6.2 metres, the data value be set to `62`. - * - The value shall be set to `63` if the information is unavailable. + * - `n (n > 0 and n < 62) for any aplicable value n between 0,1 meter and 6,2 meters. + * - `62` for values equal to or higher than 6.2 metres`. + * -`63 if the information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * * @unit 0,1 metre * @category Vehicle information + * Revision: Editorial update in V2.1.1 */ PosCentMass ::= INTEGER { tenCentimeters(1), @@ -1744,8 +1922,8 @@ PosCentMass ::= INTEGER { /** * This DE indicates the positioning technology being used to estimate a geographical position. * - * The followin values are specified: - * - o `noPositioningSolution`: no positioning solution used, + * The following values are specified: + * - 0 `noPositioningSolution`: no positioning solution used, * - 1 `sGNSS`: Global Navigation Satellite System used, * - 2 `dGNSS`: Differential GNSS used, * - 3 `sGNSSplusDR`: GNSS and dead reckoning used, @@ -1753,6 +1931,7 @@ PosCentMass ::= INTEGER { * - 5 `dR`: dead reckoning used. * * @category: GeoReference information + * Revision: V1.3.1 */ PositioningSolutionType ::= ENUMERATED { noPositioningSolution(0), @@ -1784,6 +1963,7 @@ PositioningSolutionType ::= ENUMERATED { * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. * * @category: Vehicle information + * Revision: V1.3.1 */ PositionOfOccupants ::= BIT STRING { row1LeftOccupied (0), @@ -1811,47 +1991,55 @@ PositionOfOccupants ::= BIT STRING { * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. * * The following values are specified: - * - The DE is set to any aplicable value between 0,1 meter and 1,9 meters. - * - For values equal to or higher than 1.9 metres, the DE shall be set to `19`. - * - The value shall bet set to `20` if the information is unavailable. + * - `n (n > 0 and n < 19) for any aplicable value between 0,1 meter and 1,9 meters. + * - `19` for values equal to or higher than 1.9 metres. + * - `20` if the information is unavailable. * * @category: Vehicle information * @unit 0.1 metre +* Revision: Editorial update in V2.1.1 */ -PosFrontAx ::= INTEGER {tenCentimeters(1), unavailable(20)} (1..20) +PosFrontAx ::= INTEGER { + tenCentimeters(1), + unavailable(20) +} (1..20) /** * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. * * The following values are specified: - * - The DE is set to any aplicable value between 0,01 meter and 1,26 meters. - * - For values equal to or higher than 1.26 metres, the value shall be set to `126`. - * - If the information is unavailable, the value shall be set to `127`. + * - `n (n > 0 and n < 126) for any aplicable value between 0,01 meter and 1,26 meters. + * - `126` for values equal to or higher than 1.26 metres. + * - `127` if the information is unavailable. * * @unit 0,01 metre * @category Vehicle information + * Revision: Editorial update in V2.1.1 */ -PosLonCarr ::= INTEGER {oneCentimeter(1), unavailable(127)} (1..127) +PosLonCarr ::= INTEGER { + oneCentimeter(1), + unavailable(127)} (1..127) /** * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the * middle point of the front line of the vehicle bounding box. * * The following values are specified: - * - The DE is set to any aplicable value between 0,1 meter and 2,9 meters. - * - For values equal to or greater than 2.9 metres, the value shall be set to `29`. - * - The value shall be set to `30` if the information is unavailable. + * - `n (n > 0 and n < 126) for any aplicable value between 0,1 meter and 2,9 meters. + * - `29` for values equal to or greater than 2.9 metres. + * - `30` if the information is unavailable. * * @unit 0,1 metre * @category Vehicle information + * Revision: Editorial update in V2.1.1 */ PosPillar ::= INTEGER {tenCentimeters(1), unavailable(30)} (1..30) /** * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . * -* The following values are specified: + * The following values are specified: * - 0 `unavailable`: in case further detailed information on post crash event is unavailable, * - 1 `accidentWithoutECallTriggered`: in case no eCall has been triggered for an accident, * - 2 `accidentWithECallManuallyTriggered`: in case eCall has been manually triggered and transmitted to eCall back end, @@ -1860,6 +2048,7 @@ PosPillar ::= INTEGER {tenCentimeters(1), unavailable(30)} (1..30) * - 5-255: reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ PostCrashSubCauseCode ::= INTEGER { unavailable(0), @@ -1874,6 +2063,7 @@ PostCrashSubCauseCode ::= INTEGER { * * * @category: Infrastructure information, Communication information + * Revision: V1.3.1 */ ProtectedZoneID ::= INTEGER (0.. 134217727) @@ -1883,6 +2073,7 @@ ProtectedZoneID ::= INTEGER (0.. 134217727) * * @unit: metre * @category: Infrastructure information, Communication information + * Revision: V1.3.1 */ ProtectedZoneRadius ::= INTEGER {oneMeter(1)} (1..255,...) @@ -1894,6 +2085,7 @@ ProtectedZoneRadius ::= INTEGER {oneMeter(1)} (1..255,...) * * * @category: Communication information + * Revision: V1.3.1 */ ProtectedZoneType::= ENUMERATED { permanentCenDsrcTolling (0), @@ -1910,6 +2102,8 @@ ProtectedZoneType::= ENUMERATED { * traffic congestion. Other usage of the DE is the provision of information like the public transport line number * or the schedule delay of a public transport vehicle. * + * @category: Vehicle information + * Revision: V1.3.1 */ PtActivationData ::= OCTET STRING (SIZE(1..20)) @@ -1917,26 +2111,43 @@ PtActivationData ::= OCTET STRING (SIZE(1..20)) * This DE indicates a certain coding type of the PtActivationData data. * * The folowing value are specified: - * - `0`: undefined coding type, - * - `1`: coding of PtActivationData conform to VDV recommendation 420 [i.8], - * - `2`: coding of PtActivationData based on VDV recommendation 420 [i.8]. + * - `0` undefinedCodingType : undefined coding type, + * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.8], + * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.8]. * - values 3 to 255 are reserved for alternative and future use. * * @category: Vehicle information + * Revision: V1.3.1 */ -PtActivationType ::= INTEGER {undefinedCodingType(0), r09-16CodingType(1), vdv-50149CodingType(2)} (0..255) +PtActivationType ::= INTEGER { + undefinedCodingType(0), + r09-16CodingType(1), + vdv-50149CodingType(2)} (0..255) /** * This DE represents a reference point counter for a trailer. - * @unit n/a + * + * @category: Vehicle information + * Revision: Created in V2.1.1 */ RefPointId ::= INTEGER (0..255) /** * This DE describes a distance of relevance for information indicated in a message. * + * The following values are specified: + * - 0 `lessThan50m` for distances below 50 m. + * - 1 `lessThan100m` for distances below 100 m. + * - 2 `lessThan200m` for distances below 200 m. + * - 3 `lessThan500m` for distances below 300 m. + * - 4 `lessThan1000m` for distances below 1000 m. + * - 5 `lessThan5km` for distances below 5000 m. + * - 6 `lessThan10km` for distances below 10000 m. + * - 7 `over10km`for distances over 10000 m. + * @category: GeoReference information - */ + * Revision: Editorial update in V2.1.1 + */ RelevanceDistance ::= ENUMERATED { lessThan50m(0), lessThan100m(1), @@ -1951,24 +2162,37 @@ RelevanceDistance ::= ENUMERATED { /** * This DE indicates a traffic direction that is relevant to information indicated in a message. * + * The following values are specified: + * - 0 `allTrafficDirections` for all traffic directions + * - 1 `upstreamTraffic` for upstream traffic. + * - 2 `downstreamTraffic` for downstream traffic. + * - 3 `oppositeTraffic` for opposite traffic. + * * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. * * @note: Upstream traffic corresponds to the incoming traffic towards the event position, * and downstream traffic to the departing traffic away from the event position. * * @category: GeoReference information + * Revision: Editorial update in V2.1.1 */ RelevanceTrafficDirection ::= ENUMERATED { allTrafficDirections(0), upstreamTraffic(1), downstreamTraffic(2), - oppositeTraffic(3)} + oppositeTraffic(3) +} /** * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from * ITS-S after receiving request from other ITS-Ss. * + * The following values are specified: + * - 0 `request` for a request message. + * - 1 `response` for a response message. + * * @category Communication information + * Revision: Editorial update in V2.1.1 */ RequestResponseIndication ::= ENUMERATED { request(0), @@ -1988,6 +2212,7 @@ RequestResponseIndication ::= ENUMERATED { * - 6-255: reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { unavailable(0), @@ -2002,20 +2227,29 @@ RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { * This DE represents A unique identifier assigned to an entity. * * @category: Road Topology Information + * Revision: Created in V2.1.1 */ RoadRegulatorId ::= INTEGER (0..65535) /** - * This DE represnets an identifier assigned to a section of roadway. + * This DE represents an identifier assigned to a section of roadway. * * @category: Road Topology Information + * Revision: Created in V2.1.1 */ RoadSegmentID ::= INTEGER (0..65535) /** * This DE indicates the type of a road segment. * + * The following value are specified: + * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. + * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. + * * @category: Road Topology Information + * Revision: Editorial update in V2.1.1 */ RoadType ::= ENUMERATED { urban-NoStructuralSeparationToOppositeLanes(0), @@ -2037,6 +2271,7 @@ RoadType ::= ENUMERATED { * - 7-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ RoadworksSubCauseCode ::= INTEGER { unavailable(0), @@ -2081,6 +2316,9 @@ SafeDistanceIndicator::= BOOLEAN * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful * for the application. + + * @category: GeoReference Information + * Revision: V1.3.1 */ SemiAxisLength ::= INTEGER{oneCentimeter(1), outOfRange(4094), unavailable(4095)} (0..4095) @@ -2088,19 +2326,21 @@ SemiAxisLength ::= INTEGER{oneCentimeter(1), outOfRange(4094), unavailable(4095) * This DE indicates the type of sensor. * * The following values are specified: - * - undefined (0), - * - radar (1), - * - lidar (2), - * - monovideo (3), - * - stereovision (4), - * - nightvision (5), - * - ultrasonic (6), - * - pmd (7), - * - fusion (8), --< object information provided from sensor data fusion system - * - inductionloop (9), - * - sphericalCamera (10), - * - itssaggregation (11) --< object information gathered from other received ITS messages - * @unit n/a + * - `0` undefined : in case the sensor type is undefined. + * - `1` radar : in case the sensor is a radar. + * - `2` lidar : in case the sensor is a lidar. + * - `3` monovideo : in case the sensor is mono video. + * - `4` stereovision : in case the sensor is stereo vision. + * - `5` nightvision : in case the sensor is night vision. + * - `6` ultrasonic : in case the sensor is ultrasonic. + * - `7` pmd : in case the sensor is pmd. + * - `8` fusion : in case the information provided by a sensor data fusion system + * - `9` inductionloop : in case the sensor is an induction loop. + * - `10` sphericalCamera : in case the sensor is a spherical camera. + * - `11` itssaggregation : in case the information is gathered from other received ITS messages + * + * @category: Sensing Information + * Revision: created in V2.1.1 */ SensorType ::= INTEGER { undefined (0), @@ -2120,12 +2360,13 @@ SensorType ::= INTEGER { /** * This DE represents a sequence number. * - * @category Other information + * @category: Basic information + * Revision: V1.3.1 */ SequenceNumber ::= INTEGER (0..65535) /** - * This DE represenst thevalue of the sub cause codes of the @ref CauseCode `signalViolation`. + * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. * * The following values are specified: * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, @@ -2135,6 +2376,7 @@ SequenceNumber ::= INTEGER (0..65535) * - 4-255: reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ SignalViolationSubCauseCode ::= INTEGER { unavailable(0), @@ -2160,6 +2402,7 @@ SignalViolationSubCauseCode ::= INTEGER { * - 9-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ SlowVehicleSubCauseCode ::= INTEGER { unavailable(0), @@ -2174,11 +2417,17 @@ SlowVehicleSubCauseCode ::= INTEGER { } (0..255) /** - * The DE indicates if a vehicle is carrying goods with heavy load, excess width, excess length or excess height. - * The corresponding bit shall be set to 1 when the special transport applies to the corresponding case. - * Otherwise, the corresponding bit shall be set to 0. + * The DE indicates if a vehicle is carrying goods in the special transport conditions. + + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load. + * - 1 `excessWidth` : the vehicle is carrying goods in excess of width. + * - 2 `excessLength` : the vehicle is carrying goods in excess of length. + * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. * + * Otherwise, the corresponding bit shall be set to 0. * @category Vehicle information + * Revision: Description revised in V2.1.1 */ SpecialTransportType ::= BIT STRING { heavyLoad(0), @@ -2191,7 +2440,7 @@ SpecialTransportType ::= BIT STRING { * This DE represents the absolute accuracy of a speed value information for a predefined confidence level. * The required confidence level is defined by the station applying this DE. * - * The value shall be set to: + * The following values are specified: * - `1` if the speed accuracy is equal to or less than `1 cm/s`. * - `n (n > 1 and n < 125)` if the speed accuracy is equal to or less than `n cm/s`. * - `125` if the speed accuracy is equal to or less than `125 cm/s`. @@ -2209,6 +2458,7 @@ SpecialTransportType ::= BIT STRING { * * @unit cm/s * @category: Vehicle information + * Revision: V1.3.1 */ SpeedConfidence ::= INTEGER { equalOrWithinOneCentimeterPerSec(1), @@ -2222,6 +2472,7 @@ SpeedConfidence ::= INTEGER { * * @unit: km/h * @category: Infrastructure information, Traffic information + * Revision: V1.3.1 */ SpeedLimit ::= INTEGER { oneKmPerHour(1) @@ -2231,29 +2482,35 @@ SpeedLimit ::= INTEGER { * This DE represents a speed value. * * The following values are specified: - * - standstill(0): this value is set for a standstill situation. - * - In case of movement, DE is set to the applicable value between `0,01` and `163,82 m/s`. - * - oneCentimeterPerSec(1): is an examplary value for 0,01 m/s - * - For values equal to or greater than `163,82 m/s`, the value shall be set to `16 382`. - * - When the information is not available, the value shall be set to `16 383`. - * - * The DE is used in @ref Speed DF as defined in clause A.126. + * - `0` in a standstill situation. + * - `n (n > 0 and n < 16383)` if the applicable speed value n is between `0,01` and `163,82 m/s`. + * - `16382` for speed values equal to or greater than 163,82 m/s. + * - `16383` if the speed accuracy information is not available. * * @unit: 0,01 m/s - * @category: Vehicle information + * @category: Kinematics information + * Revision: Description revised in V2.1.1 */ -SpeedValue ::= INTEGER {standstill(0), oneCentimeterPerSec(1), unavailable(16383)} (0..16383) +SpeedValue ::= INTEGER { + standstill(0), + oneCentimeterPerSec(1), + unavailable(16383) +} (0..16383) /** * This DE represents a speed value with extended range. * * The following values are specified: - * - negativeSpeedMaximum (-16383), - this value is set in case of speed values equal to or smaller than -163,83 m/s - * - standstill (0), this value is set in case of stanstill. - * - oneCentimeterPerSec (1), this is an exemplary value 0,01 m/s - * - speedMaximum (16382), --< this value is setfor values equal to or greater than 163,82 m/s - * - unavailable (16383) --< this value is set if information is not available - * @unit 0,01 m/s + * - `-16383` if the speed is equal to or smaller than -163,83 m/s + * - `n (n > -16383 and n < 0)` if the applicable value n is between `-163,82` and `-0,01` m/s. + * - `0` in a standstill situation. + * - `n (n > 0 and n < 16383)` if the applicable value n is between `0,01` and `163,82` m/s. + * - `16382` for speed values equal to or greater than 163,82 m/s. + * - `16383` if the speed accuracy information is not available. + * + * @unit: 0,01 m/s + * @category: Kinematics information + * Revision: Created in V2.1.1 */ SpeedValueExtended ::= INTEGER { negativeSpeedMaximum (-16383), @@ -2265,18 +2522,18 @@ SpeedValueExtended ::= INTEGER { /** - * This DE indicates the estimated probability of a stability level LOSS? : OR the actual estimated stability level??? tbd. + * This DE indicates the estimated probability of a stability level and the converesely also the probability of a stability loss. * * The following values are specified: - * - zero(0): this value indicates stable. - * - Values between 1 and 50 indicate the actual stability level. - * - twoPercent (1): an exemplary value for 2 percent. - * - hundredPercent(50): this value indicates total stability. + * - `0` indicates stable. + * - `n (n > 0 and n < 50)` indicates the actual stability level. + * - `50` indicates total stability. * - the values between 51 and 62 are reserved. - * - unavailable (63): this value indicates that the information is unavailable.. + * - `63`: this value indicates that the information is unavailable. * * @unit: 2% * @category: Kinematics information + * Revision: Created in V2.1.1 */ StabilityLossProbability ::= INTEGER { zero(0), @@ -2286,31 +2543,34 @@ StabilityLossProbability ::= INTEGER { } (0..63) /** - * Length as a measure of distance between points or objects used in the definition of various other types. + * The DE represents length as a measure of distance between points or objects used in the definition of various other types. * * @unit: 0.1 meter * @category: Basic information + * Revision: Created in V2.1.1 */ StandardLength::= INTEGER (0..16383) /** - * Length as a measure of distance between points or objects used in the definition of various other types + * This DE represents length as a measure of distance between points or objects used in the definition of various other types. * - * The DE is used in @ref tbd * @unit: 0.1 meter * @category: Basic information + * Revision: Created in V2.1.1 */ StandardLengthSmall::= INTEGER (0..255) /** - * This DE indicates the duration in minutes of a something being stationary. + * This DE indicates the duration in minutes since which something is stationary. * * The following values are specified: - * - lessThan1Minute(0: being stationary since less than 1 minute. - * - lessThan2Minutes(1): being stationary since less than 2 minute and for equal to or more 1 minute. - * - lessThan15Minutes(2)´: being stationary since less than 15 minutes and for equal to or more than 1 minute. - * - equalOrGreater15Minutes(3): being stationary since equal to or greater than 15 minutes. + * - 0 `lessThan1Minute` for being stationary since less than 1 minute. + * - 1 `lessThan2Minutes` for being stationary since less than 2 minute and for equal to or more 1 minute. + * - 2 `lessThan15Minutes` for being stationary since less than 15 minutes and for equal to or more than 1 minute. + * - 3 `equalOrGreater15Minutes` for being stationary since equal to or more than 15 minutes. + * * @category: Kinematics information + * Revision: Created in V2.1.1 */ StationarySince ::= ENUMERATED { lessThan1Minute(0), @@ -2332,6 +2592,7 @@ StationarySince ::= ENUMERATED { * - 7-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ StationaryVehicleSubCauseCode ::= INTEGER { unavailable(0), @@ -2348,6 +2609,7 @@ StationaryVehicleSubCauseCode ::= INTEGER { * The ITS-S ID may be a pseudonym. It may change over space and/or over time. * * @category: Basic information + * Revision: V1.3.1 */ StationID ::= INTEGER(0..4294967295) @@ -2375,7 +2637,8 @@ StationID ::= INTEGER(0..4294967295) * - 16 16-255: reserved for future usage. * * - * @category Vehicle information tbd. + * @category: Communication information. + * Revision: V1.3.1 */ StationType ::= INTEGER { unknown(0), @@ -2401,8 +2664,8 @@ StationType ::= INTEGER { * * The following values are specified: * - `1` if the steering wheel angle accuracy is equal to or less than 1,5 degrees, - * - `n (n > 1 and n < 125)` if the steering wheel angle accuracy is equal to or less than n × 1,5 degrees, - * - `125` if the steering wheel angle accuracy is equal to or less than 1,5 degrees ×125 = 187,5 degrees, + * - `n (n > 1 and n < 125)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, + * - `125` if the steering wheel angle accuracy is equal to or less than 1,5 degrees x 125 = 187,5 degrees, * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, * - `127` if the accuracy information is not available. * @@ -2419,6 +2682,7 @@ StationType ::= INTEGER { * * @unit: 1.5 degree * @category: Vehicle Information + * Revision: Description revised in V2.1.1 */ SteeringWheelAngleConfidence ::= INTEGER { equalOrWithinOnePointFiveDegree (1), @@ -2431,15 +2695,16 @@ SteeringWheelAngleConfidence ::= INTEGER { * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. * * The following values are specified: - * - Positive values indicate that the steering wheel angle is turning counter-clockwise (i.e. to the left). - * - Negative values shall be used when the steering wheel angle is turning clockwise (i.e. to the right). - * - The value shall be set to `511` if the steering wheel angle is equal to or greater than 511 × 1,5 degrees = 766,5 degrees to the left. - * - The value shall be set to `-511` if the steering wheel angle is equal to or greater than 511 × 1,5 degrees = 766,5 degrees to the right. - * - When the information is not available, the value shall be set to `512`. + * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. + * - `n (n > -511 and n < 0)` if the steering wheel angle is turning clockwise (i.e. to the right). + * - `0` if the steering wheel angle is in the straight position. + * - `n (n > 1 and n < 511)` if the steering wheel angle is turning counter-clockwise (i.e. to the left). + * - `511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the left. + * - `512` if information is not available. * * The DE is used in @ref SteeringWheelAngle DF as defined in clause A.127. * @unit: 1.5 degree - * @category: Vehicle Information + * Revision: Description revised in V2.1.1 */ SteeringWheelAngleValue ::= INTEGER { straight(0), @@ -2454,16 +2719,21 @@ SteeringWheelAngleValue ::= INTEGER { * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode * * @category: Traffic information + * Revision: V1.3.1 */ SubCauseCodeType ::= INTEGER (0..255) /** * This DE indicates a temperature value. - * - For temperature equal to or less than -60 °C, the value shall be set to `60`. - * - For temperature equal to or greater than 67 °C, the value shall be set to `67`. + + * The following values are specified: + * - `-60` for temperature equal to or less than -60 °C. + * - `n (n > -60 and n < 67)` for the actual temperature n in °C. + * - `67` for temperature equal to or greater than 67 °C. * * @unit: °C * @category: Basic information + * Revision: Description revised in V2.1.1 */ Temperature ::= INTEGER { equalOrSmallerThanMinus60Deg (-60), @@ -2471,16 +2741,19 @@ Temperature ::= INTEGER { equalOrGreaterThan67Deg(67)} (-60..67) /** - * This DE represenst the number of milliseconds since `2004-01-01T00:00:00.000Z`, as specified in ISO 8601 [i.10]. + * This DE represents the number of milliseconds since `2004-01-01T00:00:00.000Z`, as specified in ISO 8601 [i.10]. * * EXAMPLE: The value for TimestampIts for `2007-01-01T00:00:00.000Z` is `94 694 401 000` milliseconds, * which includes one leap second insertion since `2004-01-01T00:00:00.000Z`. * - * * @unit: millisecond * @category: Basic Information + * Revision: V1.3.1 */ -TimestampIts ::= INTEGER {utcStartOf2004(0), oneMillisecAfterUTCStartOf2004(1)} (0..4398046511103) +TimestampIts ::= INTEGER { + utcStartOf2004(0), + oneMillisecAfterUTCStartOf2004(1) +} (0..4398046511103) /** * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. @@ -2498,6 +2771,7 @@ TimestampIts ::= INTEGER {utcStartOf2004(0), oneMillisecAfterUTCStartOf2004(1)} * - 9-255: reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ TrafficConditionSubCauseCode ::= INTEGER { unavailable(0), @@ -2515,12 +2789,13 @@ TrafficConditionSubCauseCode ::= INTEGER { * This DE indicates traffic rules that apply to vehicles at a certain position. * * The following values are specified: - * - If overtaking is prohibited for all vehicles, the DE shall be set to `0`. - * - If overtaking is prohibited for trucks, the DE shall be set to `1`. - * - If vehicles should pass to the right lane, the DE shall be set to `2`. - * - If vehicles should pass to the left lane, the DE shall be set to `3`. + * - `0` if overtaking is prohibited for all vehicles. + * - `1` if overtaking is prohibited for trucks. + * - `2` if vehicles should pass to the right lane. + * - `3` if vehicles should pass to the left lane. * * @category: Infrastructure information, Traffic information + * Revision: Editorial update in V2.1.1 */ TrafficRule ::= ENUMERATED { noPassing(0), @@ -2531,7 +2806,13 @@ TrafficRule ::= ENUMERATED { /** * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. * + * The following values are specified: + * - `n (n >= 0 and n <= 50)` indicates the actual stability level. + * - the values between 51 and 62 are reserved. + * - `63`: this value indicates that the information is unavailable. + * * @category: Kinematics information + * Revision: Created in V2.1.1 */ TrajectoryInterceptionProbability ::= INTEGER { zero(0), @@ -2542,8 +2823,15 @@ TrajectoryInterceptionProbability ::= INTEGER { /** * This DE defines the confidence level of the trajectoryInterceptionProbability. + * + * The following values are specified: + * - `0` indicates less than 50 % + * - `1`indicates greater than or equal to 50 % and less than 70 %. + * - `2`indicates greater than or equal to 70 % and less than 90 %. + * - `3` indicates greater than or equal to 90%. * * @category: Kinematics information + * Revision: Created in V2.1.1 */ TrajectoryInterceptionConfidence ::= INTEGER { lessthan50percent(0), @@ -2552,20 +2840,14 @@ TrajectoryInterceptionConfidence ::= INTEGER { above90Percent(3) } (0..3) /** - * This DE represents a time interval between two consecutive message transmissions. + * This DE provides the turning direction. * - * @unit: milliseconds - * @category: Basic information - */ -TransmissionInterval ::= INTEGER { - oneMilliSecond(1), - tenSeconds(10000) -} (1..10000) - -/** - * This DE provides the turning direction. - * - * @category: + * The following values are specified: + * - `left` for turning to te left. + * - `right`for turing to the right. + * + * @category: Kinematics information + * Revision: Created in V2.1.1 */ TurningDirection::= ENUMERATED { left, @@ -2576,14 +2858,15 @@ TurningDirection::= ENUMERATED { * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. * * The following values are specified: - * - The DE is set to the applicable value in the range of 1 to 253 meters. - * - The value shall be set to `254` if the turning radius is equal to or greater than 254 x 0.4 metre = 101.6 metres. - * - The value shall be set to `255` if the information is unavailable. + * - `n (n >= 0 and n <= 253)` indicates the applicable value in the range of 1 to 253 meters. + * - `254` indicates that the turning radius is equal to or greater than 254 x 0.4 metre = 101.6 metres. + * - `255` indicates that the information is unavailable. * * For vehicle with tracker, the turning radius applies to the vehicle only. * * @category: Vehicle information * @unit 0.4 metre + * Revision: Description revised in V2.1.1 */ TurningRadius ::= INTEGER { point4Meters(1), @@ -2594,6 +2877,7 @@ TurningRadius ::= INTEGER { * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. * * @category: Vehicle information + * Revision: V1.3.1 */ VDS ::= IA5String (SIZE(6)) @@ -2614,6 +2898,7 @@ VDS ::= IA5String (SIZE(6)) * - 10-255: reserved for future usage. * * @category: Traffic information + */ VehicleBreakdownSubCauseCode ::= INTEGER { unavailable(0), @@ -2635,18 +2920,19 @@ VehicleBreakdownSubCauseCode ::= INTEGER { * equipment which may result in varying height, the largest possible height shall be used. * * @unit 5 cm (DE ranges to 6.35 m) + * Revision: V1.3.1 */ -VehicleHeight ::= INTEGER (0..127) --tbd +VehicleHeight ::= INTEGER (0..127) /** * This DE provides information about the presence of a trailer. * * The following values are specified: - * - noTrailerPresent(0): used when no trailer is present. - * - trailerPresentWithKnownLength(1): used when a trailer is present and the length is included in a reported vehicle length value. - * - trailerPresentWithUnknownLength(2): used when a trailer is present and the length is not included in a reported vehicle length value. - * - trailerPresenceIsUnknown(3): used when the trailer presence is unknown. - * - unavailable(4): value used when the information is not known. + * - 0 `noTrailerPresent`: indicates that no trailer is present. + * - 1 `trailerPresentWithKnownLength`: indicates that a trailer is present and the length is included in a reported vehicle length value. + * - 2 `trailerPresentWithUnknownLength`: indicates that a trailer is present and the length is not included in a reported vehicle length value. + * - 3 `trailerPresenceIsUnknown`: indicates that the trailer presence is unknown. + * - 4 `unavailable`: indicates that the information is not known. * * @category: Vehicle information * Revision: Editorial update in V2.1.1 @@ -2662,9 +2948,9 @@ VehicleLengthConfidenceIndication ::= ENUMERATED { * This DE represents the length of a vehicle. * * The following values are specified: - * - The DE is set to the applicable value in the range of 1 cm and 102,2 meters. - * - The DE is set to 1 022 if the vehicle length is equal to or greater than 102.2 metres. - * - The DE is set to 1 023 if the information in unavailable. + * - `n (n > 1 and n < 1023)` indicates the applicable value n in the range of 1 cm and 102,2 meters. + * - `1 022`indicates that the vehicle length is equal to or greater than 102.2 metres. + * - `1 023`indicates that the information in unavailable. * * * @unit: 0.1 metre @@ -2681,9 +2967,9 @@ VehicleLengthValue ::= INTEGER { * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. * * The following values are specified: - * - The DE is set to the applicable value in the range of 100 kg and 102 200 kg. - * - The value shall be set to `1 023` if the vehicle mass is equal to or greater than `102 300 kg`. - * - The value shall be set to `1 024` when the vehicle mass information is unavailable. + * - `n (n > 1 and n < 1023)` indicates applicable value in the range of 100 kg and 102 200 kg. + * - `1 023` indicates that the vehicle mass is equal to or greater than `102 300 kg`. + * - `1 024` indicates the vehicle mass information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * @@ -2697,7 +2983,8 @@ VehicleMass ::= INTEGER { /** * This DE indicates the role played by a vehicle at a point in time. - * The DE shall be set to: + * + * The following values are specified: * - 0 `default`: default vehicle role as indicated by the vehicle type, * - 1 `publicTransport`: vehicle is used to operate public transport service, * - 2 `specialTransport`: vehicle is used for special transport purpose, e.g. oversized trucks, @@ -2741,29 +3028,21 @@ VehicleRole ::= ENUMERATED { /** * This DE describes the subclass of a vehicle. - - unknown (0), -- < the type of vehicle is unknown - passengerCar (1), --< the detected object is a small passenger car as defined in - --< UNECE/TRANS/WP.29/78/Rev.4 class M1 - bus (2), --< the detected object is a large passenger vehicle as defined - --< in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3 - lightTruck (3), --< the detected object is a light goods vehicle as defined - --< in UNECE/TRANS/WP.29/78/Rev.4 class N1 - heavyTruck (4), --< the detected object is a heavy goods vehicle as defined - --< in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3 - trailer (5), --< the detected object is an unpowered vehicle that is intended - --< to be towed by a powered vehicle as defined in - --< UNECE/TRANS/WP.29/78/Rev.4 class O - specialVehicles (6), --< the detected object is a vehicle which has a special purpose - --< other than the above (e.g. moving road works vehicle) - tram (7), --< the detected object is a vehicle running on tracks along - --< public streets - emergencyVehicle (8), --< the detected object is a vehicle used in an emergency situation - --< such as an ambulance, police car or fire engine - agricultural (9) --< the detected object is a vehicle used for agricultural purposes - - - * @unit n/a + * + * The following values are specified: + * - `0` unknown : indicates that the type of vehicle is unknown. + * - `1` passengerCar : indicates a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. + * - `2` bus : indicates a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. + * - `3` lightTruck : indicates a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. + * - `4` heavyTruck : indicates a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. + * - `5` trailer : indicates an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. + * - `6` specialVehicles : indicates a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). + * - `7` tram : indicates a vehicle running on tracks along public streets. + * - `8` emergencyVehicle : indicates a vehicle used in an emergency situation such as an ambulance, police car or fire engine. + * - `9` agricultural : indicates a vehicle used for agricultural purposes. + * - Values 10 to 255 are reserved for future use. + * + * @category: Vehicle information * Revision: V1.3.1 */ VehicleSubclass ::= INTEGER { @@ -2780,46 +3059,61 @@ VehicleSubclass ::= INTEGER { } (0..255) /** - * Width of a vehicle, excluding side mirrors and possible similar extensions. - * - For a vehicle width equal to or greater than 6.1 metres, the value shall be set to `61`. - * - The value shall be set to `62` if the information is unavailable. + * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. + + * The following values are specified: + * - `n (n > 1 and n < 61)` indicates the applicable value n in the range of 10 cm and 6,1 meters. + * - `61`indicates that the vehicle width is equal to or greater than 6,1 metres. + * - `62`indicates that the information in unavailable. * * @unit: 0.1 metre * @category: Vehicle information + * Revision: Editorial update in V2.1.1 */ -VehicleWidth ::= INTEGER {tenCentimeters(1), outOfRange(61), unavailable(62)} (1..62) +VehicleWidth ::= INTEGER { + tenCentimeters(1), + outOfRange(61), + unavailable(62) +} (1..62) /** - * Vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. + * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - Positive values indicate that the vehicle is accelerating upwards. - * - The value shall be set to `160` if the upwards acceleration is equal to or greater than 16 m/s2.- - * - Negative values indicate the vehicle is accelerating downwards. - * - The value shall be set to `-160` if the downwards acceleration is equal to or greater than 16 m/s2. - * - The value shall be set to `161` if the information is not available. - * - * The DE is used in @ref VerticalAcceleration DF as defined in clause A.129. + * + * The following values are specified: + * - `n (n > -160 and n < 0)` indicates the vehicle is accelerating downwards. + * - `0`indicates that the vehicle is not accelerating vertically. + * - `n (n > 1 and n < 160)` that the vehicle is accelerating upwards. + * - `160`indicates that the upwards acceleration is equal to or greater than 16 m/s2. + * - `161`indicates that the information in unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * - * @category Vehicle information + * @category: Vehicle information * @unit: 0.1 m/s2 + * Revision: Editorial update in V2.1.1 * - */ -VerticalAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredUp(1), pointOneMeterPerSecSquaredDown(-1), unavailable(161)} (-160 .. 161) +*/ +VerticalAccelerationValue ::= INTEGER { + pointOneMeterPerSecSquaredUp(1), + pointOneMeterPerSecSquaredDown(-1), + unavailable(161) +} (-160 .. 161) /** - * Identifies all the VRU profile types that are believed to be within the cluster - * Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). + * This DE Identifies all the VRU profile types that are believed to be within a cluster. + * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). * * The corresponding bit shall be set to 1 under the following conditions: - * - pedestrian (0): The VRU cluster contains at least one pedestrian VRU, - * - bicycle(1): The VRU cluster contains at least one bicycle VRU member, - * - motorcycle(2): The VRU cluster contains at least one motorcycle VRU member, - * - animal(3): The VRU cluster contains at least one animal VRU member, + * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU. + * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member. + * - 2 `motorcycle` : indicates that the VRU cluster contains at least one motorcycle VRU member. + * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. * * Otherwise, the corresponding bit shall be set to 0. * + * @category: VRU information + * Revision: Created in V2.1.1 */ VruClusterProfiles ::= BIT STRING { pedestrian(0), @@ -2829,61 +3123,99 @@ VruClusterProfiles ::= BIT STRING { } (SIZE(4)) /** - * value of the possible VRU usage conditions - * - The VRU usage conditions are described as follows: - * - unavailable (0), -- Not specified, - * - other (1), -- Used for states not defined below, - * - idle (2), -- Human is not interacting with device, - * - listeningToAudio (3), -- Any audio source other than calling, - * - typing (4), -- Including texting, entering addresses and other manual input activity, - * - calling (5), - * - playingGames (6), - * - reading (7), - * - viewing (8) -- Watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, + * This DE represents the possible VRU usage conditions. + + * - The following values are specified: + * - 0 `unavailable` : indicates that the usage conditions are unavailable. + * - 0 `other (1)` : indicates that the VRU is in a state not defined below. + * - 0 `idle (2)` : indicates that the human is currently not interacting with the device. + * - 0 `listeningToAudio` : indicates that any audio source other than calling is in use. + * - 0 `typing (4)` : indicates that the human is texting, entering addresses and other manual input activity. + * - 0 `calling (5)` : indicates that the VRU device is currently received a call. + * - 0 `playingGames (6)` : indicates that the human spoiling his time by playing games. + * - 0 `reading (7)` : indicates that the human is reading on the VRU device. + * - 0 `viewing (8)` : indicates that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, * - value 9 to 255: reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. * * @category: VRU information + * Revision: Created in V2.1.1 */ -VruDeviceUsage ::= ENUMERATED {unavailable(0), other(1), idle(2), listeningToAudio(3), typing(4), calling(5), playingGames(6), reading(7), viewing(8), max(255)} +VruDeviceUsage ::= ENUMERATED { + unavailable(0), + other(1), + idle(2), + listeningToAudio(3), + typing(4), + calling(5), + playingGames(6), + reading(7), + viewing(8), + max(255) +} /** - * value of the possible VRU environment conditions. - * The VRU environment conditions are described as follows: - * - unavailable (0): in case information on the type of environment is unavailable, - * - intersectionCrossing (1), - * - zebraCrossing (2), - * - sidewalk (3), - * - onVehicleRoad (4), + * This DE represents the possible VRU environment conditions. + * + * - The following values are specified: + * - 0 `unavailable` : indicates that the information on the type of environment is unavailable, + * - 1 `intersectionCrossing` : indicates that the VRU is on an intersection or crossing. + * - 2 `zebraCrossing` : indicates that the VRU is on a zebra crossing (crosswalk). + * - 3 `sidewalk` : indicates that the VRU is on a sidewalk. + * - 4 `onVehicleRoad` : indicates that the VRU is on a traffic lane. * - value 6 to 255: reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information + * Revision: Created in V2.1.1 */ -VruEnvironment ::= ENUMERATED {unavailable (0), intersectionCrossing(1), zebraCrossing(2), sidewalk (3), onVehicleRoad(4), protectedGeographicArea(5), max (255)} +VruEnvironment ::= ENUMERATED { + unavailable (0), + intersectionCrossing(1), + zebraCrossing(2), + sidewalk (3), + onVehicleRoad(4), + protectedGeographicArea(5), + max (255) +} /** - * Status of the possible human control over a VRU vehicle. - * - unavailable (0): in case information on is unavailable, - * - braking (1): the VRU is braking - * - hardBraking (2): the VRU is braking hard - * - stopPedaling (3): the VRU stopped pedaling - * - brakingAndStopPedaling (4): the VRU stopped pedaling an is braking - * - hardBrakingAndStopPedaling (5): the VRU stopped pedaling an is braking hard - * - noReaction (6): the VRU is not changing its behavior + * This DE indicates the status of the possible human control over a VRU vehicle. + * + * The following values are specified: + * - 0 `unavailable` : indicates that the information on is unavailable. + * - 1 `braking` : indicates that the VRU is braking. + * - 2 `hardBraking` : indicates that the VRU is braking hard. + * - 3 `stopPedaling` : indicates that the VRU stopped pedaling. + * - 4 `brakingAndStopPedaling` : indicates that the VRU stopped pedaling an is braking. + * - 5 `hardBrakingAndStopPedaling` : indicates that the VRU stopped pedaling an is braking hard. + * - 6 `noReaction` : indicates that the VRU is not changing its behavior. * - value 5 to 255: reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information + * Revision: Created in V2.1.1 */ -VruMovementControl ::= ENUMERATED {unavailable (0), braking(1), hardBraking(2), stopPedaling (3), brakingAndStopPedaling(4), hardBrakingAndStopPedaling (5), noReaction(6), max (255)} +VruMovementControl ::= ENUMERATED { + unavailable (0), + braking(1), + hardBraking(2), + stopPedaling (3), + brakingAndStopPedaling(4), + hardBrakingAndStopPedaling (5), + noReaction(6), + max (255) +} /** - * Profile of a pedestrian - * - unavailable (0): in case information on is unavailable, - * - ordinary-pedestrian(1): a pedestrian to which no more-specific profile applies - * - road-worker(2): a pedestrian with the role of a road worker - * - first-responder(3): a pedestrian with the role of a first responder + * This DE indicates the profile of a pedestrian. + * + * The following values are specified: + * - 0 `unavailable` : indicates that the information on is unavailable. + * - 1 `ordinary-pedestrian` : indicates a pedestrian to which no more-specific profile applies. + * - 2 `road-worker` : indicates a pedestrian with the role of a road worker. + * - 3 `first-responder` : indicates a pedestrian with the role of a first responder. * - value 4 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information + * Revision: Created in V2.1.1 */ VruSubProfilePedestrian ::= ENUMERATED { unavailable(0), @@ -2894,22 +3226,24 @@ VruSubProfilePedestrian ::= ENUMERATED { } /** - * Profile of a VRU and its light VRU vehicle / animal. - * The corresponding value shall be set as follows: - * - unavailable (0): in case information on is unavailable, - * - bicyclist (1): cycle and bicyclist - * - wheelchair-user(2): wheelchair and its user - * - horse-and-rider(3): horse and rider - * - rollerskater(4): rolleskater and skater - * - e-scooter(5): e-scooter and rider - * - personal-transporter(6): personal-transporter - * - pedelec(7): pedelec and rider - * - speed-pedelec(8): speed-pedelec rider + * This DE indicates the profile of a VRU and its light VRU vehicle / animal. + * + * The following values are specified: + * - 0 `unavailable` : indicates that the information is unavailable. + * - 1 `bicyclist ` : indicates a cycle and bicyclist. + * - 2 `wheelchair-user` : indicates a wheelchair and its user. + * - 3 `horse-and-rider` : indicates a horse and rider. + * - 4 `rollerskater` : indicates a rolleskater and skater. + * - 5 `e-scooter` : indicates an e-scooter and rider. + * - 6 `personal-transporter` : indicates a personal-transporter. + * - 7 `pedelec` : indicates a pedelec and rider. + * - 8 `speed-pedelec` : indicates a speed-pedelec rider. * - value 9 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information + * Revision: Created in V2.1.1 */ -VruSubProfilelightVruVehicle ::= ENUMERATED { +VruSubProfileBicyclist ::= ENUMERATED { unavailable(0), bicyclist(1), wheelchair-user(2), @@ -2923,16 +3257,18 @@ VruSubProfilelightVruVehicle ::= ENUMERATED { } /** - * Profile of a motorcyclist and corresponding vehicle. - * The corresponding value shall be set as follows: - * - unavailable (0): in case information on is unavailable, - * - moped (1): moped and rider - * - motorcycle(2): motorcycle and rider - * - motorcycle-and-sidecar-right(3): - * - motorcycle-and-sidecar-left(4): + * This DE indicates the profile of a motorcyclist and corresponding vehicle. + * + * The following values are specified: + * - 0 `unavailable ` : indicates that the information is unavailable. + * - 1 `moped (1)` : indicates a moped and rider. + * - 2 `motorcycle` : indicates a motorcycle and rider. + * - 3 `motorcycle-and-sidecar-right` : indicates a motorcycle with sidecar on the right and rider. + * - 4 `motorcycle-and-sidecar-left` : indicates a motorcycle with sidecar on the left and rider. * - value 5 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information + * Revision: Created in V2.1.1 */ VruSubProfileMotorcyclist ::= ENUMERATED { unavailable(0), @@ -2944,15 +3280,17 @@ VruSubProfileMotorcyclist ::= ENUMERATED { } /** - * Profile of a animal - * The corresponding value shall be set as follows: - * - unavailable (0): in case information on is unavailable, - * - wild-animal (1): in case of a animal living in the wildness. - * - farm-animal(2): in case of an animal beloning to a farm. - * - service-animal(3): in case of an animal that supports a human being. + * This DE indicates the profile of a animal + * + * The following values are specified: + * - 0 `unavailable` : indicates that the information is unavailable. + * - 1 `wild-animal` : indicates a animal living in the wildness. + * - 2 `farm-animal` : indicates an animal beloning to a farm. + * - 3 `service-animal` : indicates an animal that supports a human being. * - value 4 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information + * Revision: Created in V2.1.1 */ VruSubProfileAnimal ::= ENUMERATED { unavailable(0), @@ -2963,15 +3301,17 @@ VruSubProfileAnimal ::= ENUMERATED { } /** - * Size of a VRU including the VRU vehicle used. - * The corresponding value shall be set as follows: - * - unavailable(0): There is no matched size class or due to privacy reasons in profile 1. - * - low (1): the VRU size class is low depending on the VRU profile - * - medium (2): the VRU size class is medium depending on the VRU profile - * - high (3): the VRU size class is high depending on the VRU profile + * This DE indicates the approximate size of a VRU including the VRU vehicle used. + * + * The following values are specified: + * - 0 `unavailable(0): There is no matched size class or due to privacy reasons in profile 1. + * - 1 `low (1): the VRU size class is low depending on the VRU profile.. + * - 2 `medium (2): the VRU size class is medium depending on the VRU profile. + * - 3 `high (3): the VRU size class is high depending on the VRU profile. * - value 4 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information + * Revision: Created in V2.1.1 */ VruSizeClass ::= ENUMERATED { unavailable (0), @@ -2986,15 +3326,18 @@ VruSizeClass ::= ENUMERATED { * The DE is an extension of the existing vehicular DE ExteriorLight. * The value of each bit indicates the state of the switch, which commands the corresponding light. * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU or automatically by a vehicle or VRU system. - * - Bit unavailable (0) corresponds to no information available. - * - Bit backFlashLight (1),corresponds to the back flash light. - * - Bit helmetLight (2), corresponds to the helmet light. - * - Bit armLight (3), corresponds to the arm light. - * - Bit legLight (4), corresponds to the leg leight. - * - Bit wheelLight (5) corresponds to wheel light. + * - 0 `unavailable` : indicates no information available. + * - 1 `backFlashLight ` : indicates the status of the back flash light. + * - 2 `helmetLight` : indicates the status of the helmet light. + * - 3 `armLight` : indicates the status of the arm light. + * - 4 `legLight` : indicates the status of the leg leight. + * - 5 `wheelLight` : indicates the status of the wheel light. * - Bits 6 to 8: reserved for future use. * The bit values do not indicate if the corresponding lamps are alight or not. * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. + * + * @category: VRU information + * Revision: Created in V2.1.1 */ VruSpecificExteriorLights ::= BIT STRING { unavailable (0), @@ -3007,24 +3350,34 @@ VruSpecificExteriorLights ::= BIT STRING { /** * Perpendicular distance between front and rear axle of the wheel base of vehicle. - * - The value shall be set to `126` if the wheel base distance is equal to or greater than 12.6 metres. - * - The value shall be set to `127` if the information is unavailable. * - * @category: Vehicle information + * The following values are specified: + * - `n (n > 1 and n < 126)` if the value is equal to or less than `n x 0.1 metres` and more than `(n-1) x 0.1 metres`. + * - `126` indicates that the wheel base distance is equal to or greater than 12.6 metres. + * - `127` indicates that the information is unavailable. + * * @unit 0.1 metre + * @category: Vehicle information + * Revision: Created in V2.1.1 */ -WheelBaseVehicle ::= INTEGER {tenCentimeters(1), unavailable(127)} (1..127) +WheelBaseVehicle ::= INTEGER { + tenCentimeters(1), + unavailable(127)} (1..127) -/** @brief WGS84Angle Confidence - * The absolute accuracy of a reported angle value for a predefined confidence level (e.g. 95 %). +/** + * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. * The required confidence level is defined by the corresponding standards applying this DE. - * zeroPointOneDegree (1), - * oneDegree (10), - * outOfRange (126), --< if the accuracy is out of range, i.e. greater than - * --< 12,5 degrees. A corresponding reported angle value shall be - * --< considered invalid and cannot be trusted. - * unavailable (127) --< if the accuracy information is not available + * + * The following values are specified: + * - `1` if the angle accuracy is equal to or less than `0,1 degrees`. + * - `n (n > 1 and n < 126)` if the speed accuracy is equal to or less than `n degrees`. + * - `126` if the angle accuracy is out of range, i.e. greater than `12,5 degrees`. + * - `127` if the angle accuracy information is not available. + * + * * @unit 0,1 degrees + * @category: GeoReference Information + * Revision: Created in V2.1.1 */ Wgs84AngleConfidence ::= INTEGER { zeroPointOneDegree (1), @@ -3034,9 +3387,12 @@ Wgs84AngleConfidence ::= INTEGER { } (1..127) -/** @brief WGS 84 Angle Value - * An angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. +/** + * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. + * * @unit 0,1 degrees + * @category: GeoReference Information + * Revision: Created in V2.1.1 */ Wgs84AngleValue ::= INTEGER { wgs84North (0), @@ -3047,47 +3403,46 @@ Wgs84AngleValue ::= INTEGER { } (0..3601) /** - * World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. + * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. * - * The DE is used in @ref VehicleIdentification DF as defined in clause A.130. * * @category: Vehicle information */ WMInumber ::= IA5String (SIZE(1..3)) /** - * Encoded value of the sub cause codes of the event type `wrongWayDriving` as defined in clause A.10. - * Definition of the sub event cause is defined and the value is assigned according - * to clause 7.1.4 of ETSI EN 302 637-3 [i.3]. + * This DE represents the sub cause codes of the @?CauseCode `wrongWayDriving` . * - * The sub causes are described as following: + * The following values are specified: * - 0 `unavailable`: in case further detailed information on wrong way driving event is unavailable, * - 1 `wrongLane`: in case vehicle is driving on a lane for which it has no authorization to use, * - 2 `wrongDirection`: in case vehicle is driving in a direction that it is not allowed, * - 3-255 reserved for future usage. * * @category: Traffic information + * Revision: V1.3.1 */ -WrongWayDrivingSubCauseCode ::= INTEGER {unavailable(0), wrongLane(1), wrongDirection(2)} (0..255) +WrongWayDrivingSubCauseCode ::= INTEGER { + unavailable(0), + wrongLane(1), + wrongDirection(2) +} (0..255) /** - * DE that denotes the absolute accuracy range for reported yaw rate value for a predefined confidence level (e.g. 95 %). - * The required confidence level is defined by the station applying this DE. + * This DE denotes the absolute accuracy range for reported yaw rate value for a confidence level of 95%. * - * The value shall be set to: - * - 0 if the accuracy is equal to or less than 0,01 degree/second - * - 1 if the accuracy is equal to or less than 0,05 degrees/second - * - 2 if the accuracy is equal to or less than 0,1 degree/second - * - 3 if the accuracy is equal to or less than 1 degree/second - * - 4 if the accuracy is equal to or less than 5 degrees/second - * - 5 if the accuracy is equal to or less than 10 degrees/second - * - 6 if the accuracy is equal to or less than 100 degrees/second - * - 7 if the accuracy is out of range, i.e. greater than 100 degrees/second - * - 8 if the accuracy information is unavailable - * - * The DE is used in @ref YawRate DF as defined in clause A.132. - * - * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by + * The following value are specified: + * - `0` indicates that the accuracy is equal to or less than 0,01 degree/second. + * - `1` indicates that the accuracy is equal to or less than 0,05 degrees/second. + * - `2` indicates that the accuracy is equal to or less than 0,1 degree/second. + * - `3` indicates that the accuracy is equal to or less than 1 degree/second. + * - `4` indicates that the accuracy is equal to or less than 5 degrees/second. + * - `5` indicates that the accuracy is equal to or less than 10 degrees/second. + * - `6` indicates that the accuracy is equal to or less than 100 degrees/second. + * - `7` indicates that the accuracy is out of range, i.e. greater than 100 degrees/second. + * - `8` indicates that the accuracy information is unavailable + * + * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by * several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or @@ -3098,6 +3453,7 @@ WrongWayDrivingSubCauseCode ::= INTEGER {unavailable(0), wrongLane(1), wrongDire * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. * * @category: Traffic information + * Revision: Description revised in V2.1.1 */ YawRateConfidence ::= ENUMERATED { degSec-000-01 (0), @@ -3112,27 +3468,33 @@ YawRateConfidence ::= ENUMERATED { } /** - * It denotes the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded + * This DE represents the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The following value are specified: * - The leading sign denotes the direction of rotation. - * - Positive values indicate that the rotation is anti-clockwise (i.e. to the left). - * - The value shall be set to `32 766` if the yaw rate is equal to or greater than 327.66 degrees/second to the left. - * - Negative values indicate that the rotation is clockwise (i.e. to the right). - * - The value shall be set to `-32 766` if the yaw rate is equal to or greater than 327,66 degrees/second to the right. - * - The value shall be set to `32 767` if the information is not available. + * - `-32 766` indicates that the yaw rate is equal to or greater than 327,66 degrees/second to the right. + * - `n (n > -32 766 and n < 0)` indicates that the rotation is clockwise (i.e. to the right). + * - `0` indicates that there is no rotation. + * - `n (n > 0 and n < 32 766)` indicates that the rotation is anti-clockwise (i.e. to the left). + * - `32 766` indicates that the yaw rate is equal to or greater than 327.66 degrees/second to the left. + * - `32 767` indicates that the information is not available. * * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. * The reading instant should be the same as for the vehicle acceleration. * - * The DE is used in @ref YawRate DF as defined in clause A.132. - * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * * @unit: 0,01 degree per second. - * * @category: Vehicle Information + * Revision: Editorial update in V2.1.1 */ -YawRateValue ::= INTEGER {straight(0), degSec-000-01ToRight(-1), degSec-000-01ToLeft(1), unavailable(32767)} (-32766..32767) +YawRateValue ::= INTEGER { + straight(0), + degSec-000-01ToRight(-1), + degSec-000-01ToLeft(1), + unavailable(32767) +} (-32766..32767) ---------------------------------------- -- Specification of CDD Data Frames: @@ -4359,7 +4721,7 @@ PathPointAbsolute ::= SEQUENCE { PerceivedObject ::= SEQUENCE { objectID Identifier, - timeOfMeasurement DeltaTimeMilliSecond, + timeOfMeasurement DeltaTimeMilliSecondPosNeg, xCoordinate CartesianCoordinateWithConfidence, --tbd is the range correct here? yCoordinate CartesianCoordinateWithConfidence, zCoordinate CartesianCoordinateWithConfidence OPTIONAL, @@ -4383,7 +4745,7 @@ PerceivedObject ::= SEQUENCE { planarObjectDimension2 ObjectDimension OPTIONAL, verticalObjectDimension ObjectDimension OPTIONAL, objectRefPoint ObjectRefPoint DEFAULT 0, - objectAge DeltaTimeMilliSecond (0..1500), + objectAge DeltaTimeMilliSecondPosNeg (0..1500), objectConfidence ObjectConfidence OPTIONAL, sensorIdList SequenceOfId OPTIONAL, dynamicStatus ObjectDynamicStatus OPTIONAL, -- tbd delete optional @@ -4636,9 +4998,11 @@ RoadSegmentReferenceId ::= SEQUENCE { * * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. * - * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. + * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. + * If @field subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant in @field subjectStation is safe. * * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi^2 + LoDi^2 + VDi^2)/relative speed and represented in the nearest 100 ms. + * This field may be present only if @field subjectStation is present. * * @category: tbd * Revision: created in V2.1.1 @@ -4680,7 +5044,7 @@ SequenceOfPathPointAbsolute::= SEQUENCE OF PathPointAbsolute * @category tbd * Revision: created in V2.1.1 */ -SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..8)) OF SafeDistanceIndication +SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication /** * The DF contains a list of DF TrajectoryInterceptionIndication. @@ -4688,7 +5052,7 @@ SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..8)) OF SafeDistanceIndicat * @category tbd * Revision: created in V2.1.1 */ -SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..8)) OF TrajectoryInterceptionIndication +SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication /** * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). @@ -4922,7 +5286,7 @@ VruClusterInformation ::= SEQUENCE { -- tbd generalize? */ VruProfileAndSubprofile ::= CHOICE { pedestrian VruSubProfilePedestrian, - lightVruVehicle VruSubProfilelightVruVehicle, --tbd name + lightVruVehicle VruSubProfileBicyclist, motorcylist VruSubProfileMotorcyclist, animal VruSubProfileAnimal, ... @@ -4949,7 +5313,7 @@ Wgs84Angle ::= SEQUENCE { * * @field yawRateValue: yaw rate value at a point in time. * - * @field vehicleLengthConfidenceIndication: accuracy of reported yaw rate value. + * @field yawRateConfidence: accuracy of reported yaw rate value. * * @category: Vehicle Information * Revision: V1.3.1 -- GitLab From 2bfff2ad6c2dfc2db255b09cbd75a81c5e4ab776 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Mon, 14 Feb 2022 06:22:59 +0000 Subject: [PATCH 08/91] Documentation update --- docs/ITS-Container.md | Bin 257571 -> 269458 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md index 8a6ccbd7b043da7039d5fe625c4e9828722b1134..f41c03291ee091514a7ee50bba3f29f4744d45af 100644 GIT binary patch delta 21931 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 X82I6z@j~0_mDED(%<#y^Chz|Oo0Zuu delta 14764 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 -- GitLab From 3090fbe0468085a4e67726e6bd0ba2d941420192 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Mon, 14 Feb 2022 09:35:09 +0000 Subject: [PATCH 09/91] Replace ITS-Container.asn --- ITS-Container.asn | 96 +++++++++++++++++++++++------------------------ 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index d68e647..125ec36 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,6 +1,6 @@ -- Draft CDD ASN.1 module Release 2 (Version 3) -- Based on the official version available at @https://forge.etsi.org/rep/ITS/asn1/cdd_ts102894_2 --- prepared by Jasja Tijink for ETSI TC ITS WG1 (date 13.01.2022) +-- prepared by Jasja Tijink for ETSI TC ITS WG1 (date 14.02.2022) -- Note: some descriptions of the data type still need to be harmonized and cleaned up. ITS-Container { @@ -46,7 +46,7 @@ AccelerationChange::= ENUMERATED { accelerate, decelerate } -- tbd add values an * If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @unit 0,1 m/s2 - * @category Kinematics information + * @category: Kinematics information * Revision: Description revised in V2.1.1 */ AccelerationConfidence ::= INTEGER { @@ -225,10 +225,10 @@ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. * * The sub causes are described as following: - * - 0 `unavailable`: in case information on the type of precipitation is unavailable - * - 1 `heavyRain`: in case the type of precipitation is heavy rain - * - 2 `heavySnowfall`: in case the type of precipitation is heavy snow fall - * - 3 `softHail`: in case the type of precipitation is soft hail + * - 0 `unavailable` : in case information on the type of precipitation is unavailable + * - 1 `heavyRain` : in case the type of precipitation is heavy rain + * - 2 `heavySnowfall` : in case the type of precipitation is heavy snow fall + * - 3 `softHail` : in case the type of precipitation is soft hail * - 4-255 reserved for future usage * * @category: Traffic information @@ -328,11 +328,12 @@ AltitudeConfidence ::= ENUMERATED { * This DE represents the altitude value in a WGS84 co-ordinate system. * * The following values are specified: - * - When the information is not available, the DE shall be set to _800 001_. - * - For altitude equal or greater than _8 000 m_, the DE shall be set to _800 000_. - * - For altitude equal or less than _-1 000_ m, the DE shall be set to _100 000_. + * - `-100 000` indicates altitude equal or less than "-1 000 m". + * - `n (n > -100 000 and n < 800 000)` indicates the altitude value is "n x 0.01 meters" + * - `800 000` indicates altitude values equal or greater than `8 000 m`. + * - `800 001` indicates that the information is not available. * - * @unit: 0.1 meter + * @unit: 0.01 meter * @category: GeoReference information * Revision: V1.3.1 */ @@ -876,7 +877,7 @@ DangerousSituationSubCauseCode ::= INTEGER { * * The following values are specified: * - `n (n > -12700 and n < 0)` for providing altitude offset below the reference position. - * `0` for no altitudinal offset. + * - `0` for no altitudinal offset. * - `n (n > 0 and n < 12799)` for providing altitude offset above the reference position. * - `12799` for values equal or greater than 127,99 metres. * - `12800` when the information is unavailable. @@ -916,9 +917,9 @@ DeltaLatitude ::= INTEGER { --tbd values * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The following values are specified: - * - n (n > -12700 and n < 0) for providing offset towards the west from the reference position. - * `0` for no longitudinal offset. - * - n (n > 0 and n < 12799) for providing offset towards the east from the reference position. + * - `n (n > -12700 and n < 0)` for providing offset towards the west from the reference position. + * - `0` for no longitudinal offset. + * - `n (n > 0 and n < 12799`) for providing offset towards the east from the reference position. * - `131072` when the information is unavailable. * * @unit: 0.1 microdegree @@ -1713,7 +1714,7 @@ NumberOfOccupants ::= INTEGER { * The following values are specified: * * - `0` : in case the confidence value is unknown but the reported classification is still valid. - * - `n (n > 1 and n < 101) : for the confidence value in %. + * - `n (n > 1 and n < 101)` : for the confidence value in %. * - `101` : in case the confidence value computation is not available for the object. Indicates that the class assignment is invalid. * * @unit Percent @@ -1822,12 +1823,11 @@ ObjectRefPoint ::= INTEGER {-- t.b.d specify values * * The following values are specified: * - 0 `unavailable` : in case information on the lane position is unavailable. - * - 1 `sidewalk : in case the position is on the side-walk. - * - 2 `parkingLane : in case the position is on an area at the side of the road not intended for travel but for vehicular parking. + * - 1 `sidewalk` : in case the position is on the side-walk. + * - 2 `parkingLane` : in case the position is on an area at the side of the road not intended for travel but for vehicular parking. * - 3 `bikeLane` : in case the position is on an area reserved for bicycles. - * - value 4-15: : reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. + * - value 4-15 : reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. * - * @unit n/a * @category: Road topology information * Revision: Created in V2.1.1 */ @@ -1840,7 +1840,7 @@ OffRoadLanePosition ::= ENUMERATED { } /** - * This DE represents a time period to describe the opening days and hours of a Point of Interest + * This DE represents a time period to describe the opening days and hours of a Point of Interest. * (for example local commerce). * * @category: Time information @@ -1904,9 +1904,9 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * the vehicle bounding box of the empty load vehicle. * * The following values are specified: - * - `n (n > 0 and n < 62) for any aplicable value n between 0,1 meter and 6,2 meters. - * - `62` for values equal to or higher than 6.2 metres`. - * -`63 if the information is unavailable. + * - `n (n > 0 and n < 62)` for any aplicable value n between `0,1 meter` and `6,2 meters`. + * - `62` for values equal to or higher than `6.2 metres`. + * -`63` if the information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * @@ -2009,8 +2009,8 @@ PosFrontAx ::= INTEGER { * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. * * The following values are specified: - * - `n (n > 0 and n < 126) for any aplicable value between 0,01 meter and 1,26 meters. - * - `126` for values equal to or higher than 1.26 metres. + * - `n (n > 0 and n < 126) for any aplicable value between `0,01 meter` and `1,26 meters`. + * - `126` for values equal to or higher than `1.26 metres`. * - `127` if the information is unavailable. * * @unit 0,01 metre @@ -2026,8 +2026,8 @@ PosLonCarr ::= INTEGER { * middle point of the front line of the vehicle bounding box. * * The following values are specified: - * - `n (n > 0 and n < 126) for any aplicable value between 0,1 meter and 2,9 meters. - * - `29` for values equal to or greater than 2.9 metres. + * - `n (n > 0 and n < 126)` for any aplicable value between `0,1 meter` and `2,9 meters`. + * - `29` for values equal to or greater than `2.9 metres`. * - `30` if the information is unavailable. * * @unit 0,1 metre @@ -2242,7 +2242,7 @@ RoadSegmentID ::= INTEGER (0..65535) /** * This DE indicates the type of a road segment. * - * The following value are specified: + * The following values are specified: * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. @@ -3503,9 +3503,9 @@ YawRateValue ::= INTEGER { /** * This DF represents general Data Frame to describe an acceleration component along with a confidence with a predefined confidence level of 95% for the component. * - * @details value: the acceleration value which can be estimated as the mean of the current distribution. + * @field value: the acceleration value which can be estimated as the mean of the current distribution. * - * @details value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * @field value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. * * @category: Kinematic Information * Revision: Created in V2.1.1 @@ -3518,9 +3518,9 @@ Acceleration1d ::= SEQUENCE { /** * This DF represents information associated to changes in acceleration. * - * @details accelOrDecel: the indication of an acceleration change. + * @field accelOrDecel: the indication of an acceleration change. * - * @details value actionDeltaTime: the period in which the acceleration change action is performed. + * @field value actionDeltaTime: the period in which the acceleration change action is performed. * * @category: Kinematic Information * Revision: Created in V2.1.1 @@ -3590,9 +3590,9 @@ Area::= CHOICE { /** * This DE represents a general container for usage in various types of messages. * - * @details stationType: The type of station that has generated the message that contains the basic container. + * @field stationType: The type of station that has generated the message that contains the basic container. * - * @details referencePosition: the reference position of the station that has generated the message that contains the basic container. + * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. * * @category: Basic information * Revision: Created in V2.1.1 @@ -3607,9 +3607,9 @@ BasicContainer ::= SEQUENCE { * This DF represents a general Data Frame to describe an angle component along with a confidence with a predefined * confidence level of 95% for the component in a Cartesian coordinate system. * - * @details value: The angle value which can be estimated as the mean of the current distribution. + * @field value: The angle value which can be estimated as the mean of the current distribution. * - * @details confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * @field confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. * * @category: Kinematics information * Revision: Created in V2.1.1 @@ -3623,9 +3623,9 @@ CartesianAngle ::= SEQUENCE { * This DF represents a general Data Frame to describe an angular speed component along with a confidence with a predefined * confidence level of 95% for the component in a Cartesian coordinate system. * - * @details value: The angular speed (rate) value which can be estimated as the mean of the current distribution. + * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. * - * @details confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * @field confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. * * @category: Kinematics information * Revision: Created in V2.1.1 @@ -3639,9 +3639,9 @@ CartesianAngularSpeed ::= SEQUENCE { * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence with a predefined * confidence level of 95% for the component in a Cartesian coordinate system. * - * @details value: The angular acceleration value which can be estimated as the mean of the current distribution. + * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. * - * @details confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * @field confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. * * @category: Kinematics information * Revision: Created in V2.1.1 @@ -3997,11 +3997,11 @@ DangerousGoodsExtended ::= SEQUENCE { /** * This DF represents a position in a two- or three-dimensional cartesian coordinate system. * - * @details xCoordinate: the X coordinate value using the DE CartesianCoordinate. + * @field xCoordinate: the X coordinate value using the DE CartesianCoordinate. * - * @details yCoordinate: the Y coordinate value using the DE CartesianCoordinate. + * @field yCoordinate: the Y coordinate value using the DE CartesianCoordinate. * - * @details xCoordinate: the optional Z coordinate value using the DE CartesianCoordinate. + * @field xCoordinate: the optional Z coordinate value using the DE CartesianCoordinate. * * @category: GeoReference information * Revision: Created in V2.1.1 @@ -4016,9 +4016,9 @@ CartesianPosition3d::=SEQUENCE{ /** * This DF represents a coordinate in a cartesian reference system * - * @details value: the coordinate value which can be estimated as the mean of the current distribution. + * @field value: the coordinate value which can be estimated as the mean of the current distribution. * - * @details confidence: the coordinate accuracy associated to the provided value at a predefined confidence level of 95%. + * @field confidence: the coordinate accuracy associated to the provided value at a predefined confidence level of 95%. * * @category: GeoReference information * Revision: Created in V2.1.1 @@ -4189,10 +4189,10 @@ HeadingChangeIndication ::= SEQUENCE { * @field centreFrequency: the centre frequency of the channel * @unit: 10exp+2 Hz (where exp is exponent) * - * @details channelWidth: width of the channel + * @field channelWidth: width of the channel * @unit: 10exp Hz (where exp is exponent) * - * @details exponent of the power of 10 + * @field exponent of the power of 10 * @unit: N/A * * @category: Communication information @@ -4654,7 +4654,7 @@ PathPointAbsolute ::= SEQUENCE { * @field rollAcceleration: optional Roll acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. * The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the x-axis. * - * @field @details pitchAcceleration: optional Pitch acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * @field @field pitchAcceleration: optional Pitch acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. * The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the y-axis. * * @field yawAcceleration: optional Yaw acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. -- GitLab From 08d7270273ee997c2a86d3580df39a8664046a55 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Mon, 14 Feb 2022 09:35:51 +0000 Subject: [PATCH 10/91] Documentation update --- docs/ITS-Container.md | Bin 269458 -> 269675 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md index f41c03291ee091514a7ee50bba3f29f4744d45af..46511f95db7200d71d77600795dad323f838bb2a 100644 GIT binary patch delta 1312 zcmZ`(T}+!*7|uC|S}0`<`jxhZu~RnYC~fz(NM(!^2)ZsYO1I(IE_A1~hqR=8Eo~9P zE+875AWO)O+sihCj>Jq7M`(KS>24s=#HiB@FBUJ1xOnByVq#ppG3wVJ2u8g+Ip6a> z&-=Vj&i7vaaPLod_O6-q;CzG}Laz0L|4(!rrXxs~o73O7i`A*aVvnOn7*;FA*ZYjR zQ=yo`#HPh0x|+&0#3HtuZHNj_Q=N8`1+qycq$bB5&zj=Q<&kA7%QB-eB@zpVGCWN~ z@k}f;7U7hSj)mehk)m;)PSZ>@q|io}CtprS8r=r!qD-NO73!zkGBl(_s6snwdr`J| zmoCWlMDoSbv{9jSg34~$Lq~Xqr_zlDsS;%ugYH-n_g5Osti9Np6*fWaTMc-;0Y}`dhh}I+5*(D7lSFUemT@PD+RDOBIF4k_F#EI+y74x`@c)o#pVFFoj(Xze%Uq-#oquWaG`6P0inb%$TvTcsC zR+;UXt5W3)sO6xTp0cW`x6#B8F!LL3(VlY!Je0gj@9=6X*(nXeXY;rlK79i>L*=iePaU{~k5s_-$4Cow5fp%pd2E1>0ej%}tN4W~ zgTX;le2AyG66Ub^3h5A=**bW16`xi+7V#j0g@uBVlSSs%b$kq#uHinoWh<)%#|`X2 z{SchRvAioujo!eK|KOM*C`bi#F5wpV@-6&Qkv+bI+jp_8VxeEB-d(~o|EEv}-z^d& ztSw_5FgMb{kN33ew>NP;>5p>JeYPHkCrLNFXDh1#!!kZzQdc!^^P~AuMu5)YeX!q5 zdf=2qdV!fquPzhi^c*mWv}qwvLd`{DhgmCmTzz0B0R$)i(rj-?$0kI8Ws%9vM)8P?!o3y~>^Op>)thGJk42 WD454!_!{{GzPO_OTlN_;3V#Fgd8{-5 delta 1218 zcmZ{jZ)h839LIT{r(M=FYtkiKYGv&+w_2N~*(IxCi&ER#tYsh$+nG4j%k}QI+(_=y z>t(jOvAwX$q|>qo^3!SCZ7QSqhjkSW75@xGaYLBC@WtLVf-mMDgfWI97QMTSYQ;Tp z@ca9DzR&NT=jRXoCqM9?4|up9Ni>xMx-mf+8r%pUA0=LR=MS_CmSj}B_=V@Y&1~_cI1Ge*h&m)=0uGOJM40v7KDiHE3`jF$8usmPe&9w zrkK>!?FtvkuOOMPdsC;-8FLy1TDWZ^6=JtK*~Q6D@K;D5D;jGd`y6Ux*|$A#^D6Sa zarwc6i(k)w;$bhmn`B=uY+=9HpXa@ui@PthP9tg+`_S`2cD+3Sm($1xjcG*Tqcmy* zA&t(hNm6G)gNW~ecm{RD`vU2JN*6j(t8Ehn&bppK6j|%{p<*2rOXyB`T|yk?BQaV~ zoFRysOcRlK)f;oCmQBQAp@dokiKrVll(DRn$R@T^@Gs*~`4IB4V$B+hmr**ng^%$6 zro|%h#421Yo^W_=o@(4+-}eTgaT)vA^o4rMH-WAp*guXox2#qbkL+B9iNpC4Y6AXS zw2q5M-JGq=(w{|{t?<(`H~@ZvYpkU?H2!04()pWk<1`+sr;@JiS7k+$6gyg;#VQPY zaToZe@E)kVitFHq<2XvfRDz>iP0G6RBEAFRB!#&t+#aW*WU9K>ujEZ}SS>gR`9>f2OPVK z2Ff?>m+*NRZ-d={Q`YZ*N8J7II)xu``u>{12OZvFI2IwCBl&*FpTbG7m9DiKU&BSW zJUxS-`v39`>_oaA%qyh9HTKM44_GsJ&;@`E@LES^@k~XRcdV-|MdU699aL=cP$gr=9m2};ZRZTPj&Eg^G^Wo@!QTCM9Lr;jb z!>1wA?@DBu(EwEDN&UH(8%Z-4rpkCx*A&f!(F6&4V)wN_Fk*DWQZH$-mJ{UC!`7dZ HM2EitTx^sy -- GitLab From 2c50b301cbb56a4d308f96b7bd3547fdd0363801 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Thu, 3 Mar 2022 10:07:42 +0000 Subject: [PATCH 11/91] Replace ITS-Container.asn --- ITS-Container.asn | 2149 ++++++++++++++++++++++++++++----------------- 1 file changed, 1342 insertions(+), 807 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 125ec36..4e4490c 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,6 +1,6 @@ -- Draft CDD ASN.1 module Release 2 (Version 3) -- Based on the official version available at @https://forge.etsi.org/rep/ITS/asn1/cdd_ts102894_2 --- prepared by Jasja Tijink for ETSI TC ITS WG1 (date 14.02.2022) +-- prepared by Jasja Tijink for ETSI TC ITS WG1 (date 03.03.2022) -- Note: some descriptions of the data type still need to be harmonized and cleaned up. ITS-Container { @@ -18,21 +18,24 @@ BEGIN /** * This DE indicates a change of acceleration. * - * The following values are specified: + * The value shall be set to: * - `accelerate` if the acceleration is positive. * - `decelerate` if the acceleration is negative. * * @category: Kinematics information * Revision: Created in V2.1.1 */ -AccelerationChange::= ENUMERATED { accelerate, decelerate } -- tbd add values and/or extension? +AccelerationChange::= ENUMERATED { + accelerate (0), + decelerate (1) +} /** * This DE reprents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. * - * The following values are specified: + * The value shall be set to: * - `1` if the acceleration accuracy is equal to or less than 0,1 m/s2. - * - `n (n > 1 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and more than (n-1) x 0,1 m/s2. + * - `n (n > 1 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. * - `102` if the data is unavailable. * @@ -40,10 +43,9 @@ AccelerationChange::= ENUMERATED { accelerate, decelerate } -- tbd add values an * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * * In all 3 cases above, the reported acceleration value may be valid and used by the application. * - * If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @note: If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @unit 0,1 m/s2 * @category: Kinematics information @@ -52,7 +54,8 @@ AccelerationChange::= ENUMERATED { accelerate, decelerate } -- tbd add values an AccelerationConfidence ::= INTEGER { pointOneMeterPerSecSquared(1), outOfRange(101), - unavailable(102)} (0 .. 102) + unavailable(102) +} (0 .. 102) /** * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. @@ -91,14 +94,14 @@ AccelerationControl ::= BIT STRING { /** * This DE represents the value of an acceleration component in a defined coordinate system. * - * The following values are specified: - * - `-160` for values equal to or greater than 16 m/s2. - * - `n (n > -160 and n < 0)` indicates negative acceleration of value n* 0,1 m/s2. + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n < 0)` to indicate negative acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. * - `0` indicates zero acceleration. - * - `n (n > 0 and n < 160)` indicates positive acceleration of value n* 0,1 m/s2. - * - `160` for acceleration equal to or greater than 16 m/s2. + * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. - + * * * @unit 0,1 m/s2 * @category: Kinematics information * Revision: Created in V2.1.1 @@ -113,11 +116,11 @@ AccelerationValue ::= INTEGER { /** * This DE indicates an access technology. * - * The following values are specified: - * - `0`: any access technology class (see clause 7 of TS 103 724). - * - `1`: ITS-G5 access technology class. - * - `2`: LTE-V2X access technology class. - * - `3`: NR-V2X access technology class. + * The value shall be set to: + * - `0`: in case of any access technology class (see clause 7 of TS 103 724). + * - `1`: in case of ITS-G5 access technology class. + * - `2`: in case of LTE-V2X access technology class. + * - `3`: in case of NR-V2X access technology class. * * @category: Communication information * Revision: Created in V2.1.1 @@ -133,7 +136,7 @@ AccessTechnologyClass ::= ENUMERATED { /** * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. * - * The following values are specified: + * The value shall be set to: * - 0 `unavailable` : in case the information on the sub cause of the accident is unavailable, * - 1 `multiVehicleAccident` : in case more than two vehicles are involved in accident, * - 2 `heavyAccident` : in case the airbag of the vehicle involved in the accident is triggered, @@ -164,19 +167,19 @@ AccidentSubCauseCode ::= INTEGER { /** * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. * - * The sub causes are described as following: - * - 0 `unavailable` : in case information on the cause of the low road adhesion is unavailable - * - 1 `heavyFrostOnRoad`: in case the low road adhesion is due to heavy frost on the road - * - 2 `fuelOnRoad` : in case the low road adhesion is due to fuel on the road - * - 3 `mudOnRoad` : in case the low road adhesion is due to mud on the road - * - 4 `snowOnRoad` : in case the low road adhesion is due to snow on the road - * - 5 `iceOnRoad` : in case the low road adhesion is due to ice on the road - * - 6 `blackIceOnRoad` : in case the low road adhesion is due to black ice on the road - * - 7 `oilOnRoad` : in case the low road adhesion is due to oil on the road - * - 8 `looseChippings` : in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard - * - 9 `instantBlackIce` : in case the low road adhesion is due to instant black ice on the road surface - * - 10 `roadsSalted` : when the low road adhesion is due to salted road - * - 11-255 reserved for future usage + * The value shall be set to: + * - 0 `unavailable` : in case information on the cause of the low road adhesion is unavailabl. + * - 1 `heavyFrostOnRoad`: in case the low road adhesion is due to heavy frost on the road. + * - 2 `fuelOnRoad` : in case the low road adhesion is due to fuel on the road. + * - 3 `mudOnRoad` : in case the low road adhesion is due to mud on the road. + * - 4 `snowOnRoad` : in case the low road adhesion is due to snow on the road. + * - 5 `iceOnRoad` : in case the low road adhesion is due to ice on the road. + * - 6 `blackIceOnRoad` : in case the low road adhesion is due to black ice on the road. + * - 7 `oilOnRoad` : in case the low road adhesion is due to oil on the road. + * - 8 `looseChippings` : in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. + * - 9 `instantBlackIce` : in case the low road adhesion is due to instant black ice on the road surface. + * - 10 `roadsSalted` : when the low road adhesion is due to salted road. + * - 11-255 : are reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -198,15 +201,15 @@ AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { /** * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. * - * The sub causes are described as following: - * - 0 `unavailable` : in case information on the type of extreme weather condition is unavailable - * - 1 `strongWinds` : in case the type of extreme weather condition is strong wind - * - 2 `damagingHail`: in case the type of extreme weather condition is damaging hail - * - 3 `hurricane` : in case the type of extreme weather condition is hurricane - * - 4 `thunderstorm`: in case the type of extreme weather condition is thunderstorm - * - 5 `tornado` : in case the type of extreme weather condition is tornado - * - 6 `blizzard` : in case the type of extreme weather condition is blizzard - * - 7-255 reserved for future usage + * The value shall be set to: + * - 0 `unavailable` : in case information on the type of extreme weather condition is unavailable. + * - 1 `strongWinds` : in case the type of extreme weather condition is strong wind. + * - 2 `damagingHail`: in case the type of extreme weather condition is damaging hail. + * - 3 `hurricane` : in case the type of extreme weather condition is hurricane. + * - 4 `thunderstorm`: in case the type of extreme weather condition is thunderstorm. + * - 5 `tornado` : in case the type of extreme weather condition is tornado. + * - 6 `blizzard` : in case the type of extreme weather condition is blizzard. + * - 7-255 : are reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -224,12 +227,12 @@ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { /** * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. * - * The sub causes are described as following: - * - 0 `unavailable` : in case information on the type of precipitation is unavailable - * - 1 `heavyRain` : in case the type of precipitation is heavy rain - * - 2 `heavySnowfall` : in case the type of precipitation is heavy snow fall - * - 3 `softHail` : in case the type of precipitation is soft hail - * - 4-255 reserved for future usage + * The value shall be set to: + * - 0 `unavailable` : in case information on the type of precipitation is unavailable. + * - 1 `heavyRain` : in case the type of precipitation is heavy rain. + * - 2 `heavySnowfall` : in case the type of precipitation is heavy snow fall. + * - 3 `softHail` : in case the type of precipitation is soft hail. + * - 4-255 : are reserved for future usage * * @category: Traffic information * Revision: V1.3.1 @@ -244,17 +247,17 @@ AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { /** * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. * - * The sub causes are described as following: - * - 0 `unavailable` : in case information on the cause of low visibility is unavailable - * - 1 `fog` : in case the cause of low visibility is fog - * - 2 `smoke` : in case the cause of low visibility is smoke - * - 3 `heavySnowfall` : in case the cause of low visibility is heavy snow fall - * - 4 `heavyRain` : in case the cause of low visibility is heavy rain - * - 5 `heavyHail` : in case the cause of low visibility is heavy hail - * - 6 `lowSunGlare` : in case the cause of low visibility is sun glare - * - 7 `sandstorms` : in case the cause of low visibility is sand storm - * - 8 `swarmsOfInsects`: in case the cause of low visibility is swarm of insects - * - 9-255 reserved for future usage + * The value shall be set to: + * - 0 `unavailable` : in case information on the cause of low visibility is unavailable. + * - 1 `fog` : in case the cause of low visibility is fog. + * - 2 `smoke` : in case the cause of low visibility is smoke. + * - 3 `heavySnowfall` : in case the cause of low visibility is heavy snow fall. + * - 4 `heavyRain` : in case the cause of low visibility is heavy rain. + * - 5 `heavyHail` : in case the cause of low visibility is heavy hail. + * - 6 `lowSunGlare` : in case the cause of low visibility is sun glare. + * - 7 `sandstorms` : in case the cause of low visibility is sand storm. + * - 8 `swarmsOfInsects`: in case the cause of low visibility is swarm of insects. + * - 9-255 : are reserved for future usage * * @category: Traffic information * Revision: V1.3.1 @@ -274,6 +277,24 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { /** * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. * + * The value shall be set to: + * - 0 `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. + * - 1 `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. + * - 2 `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. + * - 3 `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. + * - 4 `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. + * - 5 `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. + * - 6 `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. + * - 7 `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. + * - 8 `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. + * - 9 `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. + * - 10 `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. + * - 11 `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. + * - 12 `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. + * - 13 `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. + * - 14 `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. + * - 15 `unavailable` if the altitude accuracy information is unavailable + * * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused * by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, @@ -282,25 +303,7 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { * In all 3 cases above, the reported altitude value may be valid and used by the application. * * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported - * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * - * The following values are specified: - * - 0 `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre - * - 1 `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre - * - 2 `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre - * - 3 `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre - * - 4 `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre - * - 5 `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre - * - 6 `alt-001-00` if the altitude accuracy is equal to or less than 1 metre - * - 7 `alt-002-00` if the altitude accuracy is equal to or less than 2 metres - * - 8 `alt-005-00` if the altitude accuracy is equal to or less than 5 metres - * - 9 `alt-010-00` if the altitude accuracy is equal to or less than 10 metres - * - 10 `alt-020-00` if the altitude accuracy is equal to or less than 20 metres - * - 11 `alt-050-00` if the altitude accuracy is equal to or less than 50 metres - * - 12 `alt-100-00` if the altitude accuracy is equal to or less than 100 metres - * - 13 `alt-200-00` if the altitude accuracy is equal to or less than 200 metres - * - 14 `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres - * - 15 `unavailable` if the altitude accuracy information is unavailable + * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @category: GeoReference information * Revision: V1.3.1 @@ -327,15 +330,15 @@ AltitudeConfidence ::= ENUMERATED { /** * This DE represents the altitude value in a WGS84 co-ordinate system. * - * The following values are specified: - * - `-100 000` indicates altitude equal or less than "-1 000 m". - * - `n (n > -100 000 and n < 800 000)` indicates the altitude value is "n x 0.01 meters" - * - `800 000` indicates altitude values equal or greater than `8 000 m`. - * - `800 001` indicates that the information is not available. + * The value shall be set to: + * - `-100 000` if the altitude is equal to or less than "-1 000 m". + * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than `n x 0.01 meters` and greater than `(n-1) x 0,01` meters. + * - `800 000` if the altitude greater than `7 999 m`. + * - `800 001` if the information is not available. * * @unit: 0.01 meter * @category: GeoReference information - * Revision: V1.3.1 + * Revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) */ AltitudeValue ::= INTEGER { referenceEllipsoidSurface(0), @@ -346,11 +349,11 @@ AltitudeValue ::= INTEGER { /** * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. * - * The following values are specified: + * The value shall be set to: * - `1` if the accuracy is equal to or less than 0,1 degrees. - * - `n (n > 1 and n < 126)` if the acceleration accuracy is n * 0,1 degrees + * - `n (n > 1 and n < 126)` if the accuracy is equal to or less than `n * 0,1 degrees` and greater than `(n-1) x * 0,1 degrees` meters. * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. - * - `127` if the accuracy information is not available + * - `127` if the accuracy information is not available. * * @unit 0,1 degrees * @category: Kinematics information @@ -367,7 +370,7 @@ AngleConfidence ::= INTEGER { * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. * For correlation computation, maximum interval levels can be assumed. * - * The following values are specified: + * The value shall be set to: * - 0 `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second * - 1 `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second * - 2 `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second @@ -397,7 +400,7 @@ AngularSpeedConfidence ::= ENUMERATED { * Tis DE represents the absolute accuracy of a reported angular acceleration value for a confidence level of 95%. * For correlation computation, maximum interval levels shall be assumed. * - * The following values are specified: + * The value shall be set to: * - 0 `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second^2 * - 1 `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second^2 * - 2 `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second^2 @@ -427,9 +430,9 @@ AngularAccelerationConfidence ::= ENUMERATED { * This DE represenst an angle value described in a local Cartesian coordinate system, counted positive in * a right-hand local coordinate system from the abscissa. * - * The following values are specified: + * The value shall be set to: * - `1` if the angle is equal to or less than 0,1 degrees. - * - `n (n > 1 and n < 3601)` if the angle is n * 0,1 degrees + * - `n (n > 1 and n < 3601)` if the angle is equal to or less than `n x 0,1 degrees`, and greater than `(n-1) x 0,1 degrees`. * - `36001` if the accuracy information is not available * * @unit 0,1 degrees @@ -442,77 +445,94 @@ CartesianAngleValue ::= INTEGER { unavailable (3601) } (0..3601) -/** +/** * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in * a right-hand local coordinate system from the abscissa. * - * * The following values are specified: + * The value shall be set to: + * - `-32766` if the speed is equal to or less than `327,66 degrees/s` + * - `n (n > -32766 and n < 0)` if the speed is equal to or less than `n x 0,01 degrees/s`, and greater than `(n-1) x 0,01 degrees/s`. * - `0` if the speed is zero. + * - `n (n > 0 and n < 32766)` if the speed is equal to or less than `n x 0,01 degrees/s`, and greater than `(n-1) x 0,01 degrees/s`. + * - 32766` if the speed is greater than `327,65 degrees/s` + * - 32767 if the information is unavailable * * @unit 0,01 degrees/s * @category: Kinematics information * Revision: Created in V2.1.1 */ -CartesianAngularSpeedValue ::= INTEGER { --tbd +CartesianAngularSpeedValue ::= INTEGER { + negativeOutofRange (-32766), noSpeed (0), - oneDegreePerSecondAntiClockwise (100), - oneDegreePerSecondClockwise (-100) + positiveOutOfRange (32766), + unavailable (32767) } (-32766..32767) -/** +/** * This DE represents an angular acceleration value described in a local Cartesian coordinate system, counted positive in * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `-32766` if the acceleration is equal to or less than `327,66 degrees/s^2` + * - `n (n > -32766 and n < 0)` if the acceleration is equal to or less than `n x 0,01 degrees/s^2`, and greater than `(n-1) x 0,01 degrees/s^2`. + * - `0` if the acceleration is zero. + * - `n (n > 0 and n < 32766)` if the acceleration is equal to or less than `n x 0,01 degrees/s^2`, and greater than `(n-1) x 0,01 degrees/s^2`. + * - 32766` if the acceleration is greater than `327,65 degrees/s^2` + * - 32767 if the information is unavailable * * @unit 0,01 degrees/s^2 (degrees per second squared) * @category: Kinematics information * Revision: Created in V2.1.1 */ -CartesianAngularAccelerationValue ::= INTEGER { --tbd - noAcceleration (0), - oneDegreePerSecondSquaredAntiClockwise (100), - oneDegreePerSecondSquaredClockwise (-100) +CartesianAngularAccelerationValue ::= INTEGER { + negativeOutofRange (-32766), + noSpeed (0), + positiveOutOfRange (32766), + unavailable (32767) } (-32766..32767) /** *The DE represents the value of the cause code of an event. * - * The following values are specified: + * The value shall be set to: * - 0 reserved for future use, - * - 1 `trafficCondition` : the type of event is an abnormal traffic condition, - * - 2 `accident` : the type of event is a road accident, - * - 3 `roadworks` : the type of event is roadwork, + * - 1 `trafficCondition` : in case the type of event is an abnormal traffic condition, + * - 2 `accident` : in case the type of event is a road accident, + * - 3 `roadworks` : in case the type of event is roadwork, * - 4 reserved for future usage, - * - 5 `impassability` : the type of event is unmanaged road blocking, referring to any - * blocking of a road, partial or total, which has not been adequately - * secured and signposted, - * - 6 `adverseWeatherCondition-Adhesion` : the type of event is low adhesion, - * - 7 `aquaplaning` : danger of aquaplaning on the road, + * - 5 `impassability` : in case the type of event is unmanaged road blocking, referring to any + * blocking of a road, partial or total, which has not been adequately + * secured and signposted, + * - 6 `adverseWeatherCondition-Adhesion` : in case the type of event is low adhesion, + * - 7 `aquaplaning` : danger of aquaplaning on the road, * - 8 reserved for future usage, - * - 9 `hazardousLocation-SurfaceCondition` : the type of event is abnormal road surface condition, - * - 10 `hazardousLocation-ObstacleOnTheRoad`: the type of event is obstacle on the road, - * - 11 `hazardousLocation-AnimalOnTheRoad` : the type of event is animal on the road, - * - 12 `humanPresenceOnTheRoad` : the type of event is human presence on the road, + * - 9 `hazardousLocation-SurfaceCondition` : in case the type of event is abnormal road surface condition, + * - 10 `hazardousLocation-ObstacleOnTheRoad` : in case the type of event is obstacle on the road, + * - 11 `hazardousLocation-AnimalOnTheRoad` : in case the type of event is animal on the road, + * - 12 `humanPresenceOnTheRoad` : in case the type of event is human presence on the road, * - 13 reserved for future usage, - * - 14 `wrongWayDriving` : the type of the event is vehicle driving in wrong way, - * - 15 `rescueAndRecoveryWorkInProgress` : the type of event is rescue and recovery work for accident or for a road hazard in progress, + * - 14 `wrongWayDriving` : in case the type of the event is vehicle driving in wrong way, + * - 15 `rescueAndRecoveryWorkInProgress` : in case the type of event is rescue and recovery work for accident or for a road hazard in progress, * - 16 reserved for future usage, - * - 17 `adverseWeatherCondition-ExtremeWeatherCondition`: the type of event is extreme weather condition, - * - 18 `adverseWeatherCondition-Visibility` : the type of event is low visibility, - * - 19 `adverseWeatherCondition-Precipitation` : the type of event is precipitation, - * - 20-25 reserved for future usage, - * - 26 `slowVehicle` : the type of event is slow vehicle driving on the road, - * - 27 `dangerousEndOfQueue` : the type of event is dangerous end of vehicle queue, + * - 17 `adverseWeatherCondition-ExtremeWeatherCondition`: in case the type of event is extreme weather condition, + * - 18 `adverseWeatherCondition-Visibility` : in case the type of event is low visibility, + * - 19 `adverseWeatherCondition-Precipitation` : in case the type of event is precipitation, + * - 20 `violence` : in case the the type of event is human violence on or near the road, + * - 21-25 reserved for future usage, + * - 26 `slowVehicle` : in case the type of event is slow vehicle driving on the road, + * - 27 `dangerousEndOfQueue` : in case the type of event is dangerous end of vehicle queue, * - 28-90 are reserved for future usage, - * - 91 `vehicleBreakdown` : the type of event is break down vehicle on the road, - * - 92 `postCrash` : the type of event is a detected crash, - * - 93 `humanProblem` : the type of event is human health problem in vehicles involved in traffic, - * - 94 `stationaryVehicle` : the type of event is stationary vehicle, - * - 95 `emergencyVehicleApproaching` : the type of event is approaching vehicle operating emergency mission, - * - 96 `hazardousLocation-DangerousCurve` : the type of event is dangerous curve, - * - 97 `collisionRisk` : the type of event is a collision risk, - * - 98 `signalViolation` : the type of event is signal violation, - * - 99 `dangerousSituation` : the type of event is dangerous situation in which autonomous safety system in vehicle is activated, - * - 100-255 are reserved for future usage. + * - 91 `vehicleBreakdown` : in case the type of event is break down vehicle on the road, + * - 92 `postCrash` : in case the type of event is a detected crash, + * - 93 `humanProblem` : in case the type of event is human health problem in vehicles involved in traffic, + * - 94 `stationaryVehicle` : in case the type of event is stationary vehicle, + * - 95 `emergencyVehicleApproaching` : in case the type of event is approaching vehicle operating emergency mission, + * - 96 `hazardousLocation-DangerousCurve` : in case the type of event is dangerous curve, + * - 97 `collisionRisk` : in case the type of event is a collision risk, + * - 98 `signalViolation` : in case the type of event is signal violation, + * - 99 `dangerousSituation` : in case the type of event is dangerous situation in which autonomous safety system in vehicle is activated, + * - 100 `railwayLevelCrossing` : in case the type of event is a railway level crossing. + * - 101-255 are reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -545,11 +565,27 @@ CauseCodeType ::= INTEGER { hazardousLocation-DangerousCurve (96), collisionRisk (97), signalViolation (98), - dangerousSituation (99) + dangerousSituation (99), + railwayLevelCrossing (100) } (0..255) /** - * This DF represents the value of a cartesian coordinate with a range of +- 327.68 meters. + * This DF represents the value of a cartesian coordinate with a range of - 30,94 meters to +10 meters. + * + * @unit 0,01 m + * @category: Basic information + * Revision: Created in V2.1.1 +*/ +CartesianCoordinateSmall::= INTEGER { + negativeZeroPointZeroOneMeter (-1), + negativeOneMeter (-100), + negativeOutOfRange (-3094), + positiveOneMeter (100), + positiveOutOfRange (1001) +} (-3094..1001) + +/** + * This DF represents the value of a cartesian coordinate with a range of +- 327,68 meters. * * @unit 0,01 m * @category: Basic information @@ -557,24 +593,38 @@ CauseCodeType ::= INTEGER { */ CartesianCoordinate::= INTEGER (-32768..32767) +/** + * This DF represents the value of a cartesian coordinate with a range of +- 1 327,68 meters. + * + * @unit 0,01 m + * @category: Basic information + * Revision: Created in V2.1.1 +*/ +CartesianCoordinateExtended::= INTEGER (-132768..132767) + /** * This DE represents the ID of a CEN DSRC tolling zone. * * @category: Communication information * Revision: V1.3.1 */ -CenDsrcTollingZoneID ::= ProtectedZoneID -- tbd to be deleted? +CenDsrcTollingZoneID::= ProtectedZoneID /** - * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 + * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 . * + * The value shall be set to `0` if the information is unavailable + * * @category: Cluster information * Revision: Created in V2.1.1 */ -ClusterCardinalitySize ::= INTEGER {unavailable(0), onlyLeader(1)} (0..255) --tbd make more generic? +ClusterCardinalitySize::= INTEGER { + unavailable(0), + onlyLeader(1) +} (0..255) /** - * Identifier of a cluster. + * This DE represents the identifier of a cluster. * * @category: Cluster information * Revision: Created in V2.1.1 @@ -584,14 +634,14 @@ ClusterId ::= INTEGER(0..255) /** * This DE indicates the reason why a cluster leader intends to break up the cluster. * - * The following values are specified: - * - 0 `notProvided` - * - 1 `clusteringPurposeCompleted` - * - 2 `leaderMovedOutOfClusterBoundingBox` - * - 3 `joiningAnotherCluster` - * - 4 `enteringLowRiskAreaBasedOnMaps` - * - 5 `receptionOfCpmContainingCluster` - * - 6 to 15 reserved for future use + * The value shall be set to: + * - 0 `notProvided` : if the information is not provided. + * - 1 `clusteringPurposeCompleted` : if the cluster purposes has been completed. + * - 2 `leaderMovedOutOfClusterBoundingBox` : if the leader moved out o fthe cluster bounding box. + * - 3 `joiningAnotherCluster` : if the cluster leader is about to join another cluster. + * - 4 `enteringLowRiskAreaBasedOnMaps` : if the cluster is entering an area idenrified as low risk based on the use of maps. + * - 5 `receptionOfCpmContainingCluster` : if the leader received a Collective Perception Message containing information about the same cluster. + * - 6 to 15 : are reserved for future use * * @category: Cluster information * Revision: Created in V2.1.1 @@ -609,23 +659,23 @@ ClusterBreakupReason ::= ENUMERATED { /** * This DE indicates the reason why a cluster participant is leaving the cluster. * - * The following values are specified: - * - 0 `notProvided ` - * - 1 `clusterLeaderLost` - * - 2 `clusterDisbandedByLeader` - * - 3 `outOfClusterBoundingBox` - * - 4 `outOfClusterSpeedRange` - * - 5 `joiningAnotherCluster` - * - 6 `cancelledJoin` - * - 7 `failedJoin` - * - 8 `safetyCondition` - * - 9 to 15 reserved for future use + * The value shall be set to: + * - 0 `notProvided ` : if the information is not provided. + * - 1 `clusterLeaderLost` : if the cluster leader cannot be found anymore. + * - 2 `clusterDisbandedByLeader` : if the cluster has been disbounded by the leader. + * - 3 `outOfClusterBoundingBox` : if the participants moved out of the cluster´s bounding box. + * - 4 `outOfClusterSpeedRange` : if the cluster speed moved out of adefined range. + * - 5 `joiningAnotherCluster` : if the participant is joining another cluster. + * - 6 `cancelledJoin` : if the participant is cancelling a joining procedure. + * - 7 `failedJoin` : if the participant failed to join the cluster. + * - 8 `safetyCondition` : if a safety condition applies. + * - 9 to 15 : are reserved for future use * * @category: Cluster information * Revision: Created in V2.1.1 */ ClusterLeaveReason ::= ENUMERATED { - notProvided (0), + notProvided (0), clusterLeaderLost (1), clusterDisbandedByLeader (2), outOfClusterBoundingBox (3), @@ -637,12 +687,10 @@ ClusterLeaveReason ::= ENUMERATED { max(15) } -ClusterOpTimestamp::= INTEGER (1..255) --tbd what this is! - /** * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. * - * The following values are specified: + * The value shall be set to: * - 0 `unavailable` : in case information on the type of collision risk is unavailable, * - 1 `longitudinalCollisionRisk`: in case the type of detected collision risk is longitudinal collision risk, * e.g. forward collision or face to face collision, @@ -650,7 +698,7 @@ ClusterOpTimestamp::= INTEGER (1..255) --tbd what this is! * - 3 `lateralCollisionRisk` : in case the type of detected collision risk is lateral collision risk, * - 4 `vulnerableRoadUser` : in case the type of detected collision risk involves vulnerable road users * e.g. pedestrians or bicycles, - * - 5-255 reserved for future usage. + * - 5-255 : are reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -666,10 +714,10 @@ CollisionRiskSubCauseCode ::= INTEGER { /** * This DE represents the absolute accuracy of measurement to a confidence level of 95%. * - * The following values are specified: - * - `1` if the accuracy is equal to or less than 0,01 meter. - * - `n (n > 1 and n < 4094)` if the accuracy is n * 0,01 meter. - * - `4094`if the accuracy information is greater than 40,93 meter. + * The value shall be set to: + * - `1` if the accuracy is equal to or less than `0,01 meter`. + * - `n (n > 1 and n < 4094)` if the accuracy is is equal to or less than `n x 0,01 meter`, and greater than `(n-1) x 0,1 meter`. + * - `4094` if the accuracy information is greater than 40,93 meter. * - `4095` if the accuracy information is not available. * * @unit 0,01 m @@ -678,7 +726,6 @@ CollisionRiskSubCauseCode ::= INTEGER { */ CoordinateConfidence ::= INTEGER { zeroPointZeroOneMeter (1), - oneMeter (100), --tbd outOfRange (4094), unavailable (4095) } (0..4095) @@ -687,8 +734,8 @@ CoordinateConfidence ::= INTEGER { * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. * * The following values are specified. - * - `100` indicates full negative correlation - * - `n (n > 100 and n < 0)` if the correlation is negative and equal to n*100. + * - `-100` indicates full negative correlation + * - `n (n > -100 and n < 0)` if the correlation is negative and equal to n*100. * - `0` indicates not correlated or unavailable * - `n (n > 0 and n < 100)` if the correlation is positive and equal to n*100. * - `100` indicates full positive correlation @@ -707,10 +754,10 @@ CorrelationRowValue ::= INTEGER { /** * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. * - * The following values are specified: - * - 0 `yawRateUsed`: when the yaw rate is used - * - 1 `yawRateNotUsed`: when the yaw rate is not ued - * - 2 `unavailable`: when the information of curvature calculation mode is unknown. + * The value shall be set to: + * - 0 `yawRateUsed` : if the yaw rate is used. + * - 1 `yawRateNotUsed` : if the yaw rate is not used. + * - 2 `unavailable` : if the information of curvature calculation mode is unknown. * * @category: Vehicle information * Revision: V1.3.1 @@ -725,27 +772,27 @@ CurvatureCalculationMode ::= ENUMERATED { /** * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. * - * The following values are specified: - * - 0 `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1 - * - 1 `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1 - * - 2 `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1 - * - 3 `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1 - * - 4 `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1 - * - 5 `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1 - * - 6 `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1 - * - 7 `unavailable` if the information is not available + * The value shall be set to: + * - 0 `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. + * - 1 `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. + * - 2 `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. + * - 3 `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. + * - 4 `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. + * - 5 `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. + * - 6 `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. + * - 7 `unavailable` if the information is not available. * * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by * several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * * In all 3 cases above, the reported curvature value may be valid and used by the application. - * If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @category: Vehicle information - * Revision: V1.3.1 + * Revision: description revised in V2.1.1 */ CurvatureConfidence ::= ENUMERATED { onePerMeter-0-00002 (0), @@ -763,24 +810,24 @@ CurvatureConfidence ::= ENUMERATED { * * Value = 1 / Radius * 10000 * - * wherein radius is the vehicle turning curve radius. + * wherein radius is the vehicle turning curve radius in meters. * * Positive values indicate a turning curve to the left hand side of the driver. * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. * - * The following values are specified: + * The value shall be set to: * - `-1023` for values smaller than -1023. - * - `n (n > 1023 and n < 0)` for negative values of the turning curve. + * - `n (n > -1023 and n < 0)` for negative values equal to or less than `n`, and greater than `(n-1)`. * - `0` when the vehicle is moving straight. - * - `n (n > 0 and n < 1023)` for positive values of the turning curve. - * - `1022`, for values bigger than 1022. + * - `n (n > 0 and n < 1022)` for positive values equal to or less than `n`, and greater than `(n-1)`. + * - `1022`, for values bigger than 1021. * - `1023`, if the information is not available. * * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. * * @unit: 1 over 10 000 metres * @category: Vehicle information - * Revision: editorial update in V2.1.1 + * Revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) */ CurvatureValue ::= INTEGER { outOfRangeNegative (-1023), @@ -820,7 +867,7 @@ DangerousEndOfQueueSubCauseCode ::= INTEGER { * @category Vehicle information * Revision: V1.3.1 */ -DangerousGoodsBasic::= ENUMERATED { --tbd descrive values? +DangerousGoodsBasic::= ENUMERATED { explosives1(0), explosives2(1), explosives3(2), @@ -846,16 +893,16 @@ DangerousGoodsBasic::= ENUMERATED { --tbd descrive values? /** * This DE represents the value of the sub cause codes of the @ ref CauseCode `dangerousSituation` * - * The following values are specified: - * - 0 `unavailable`: in case information on the type of dangerous situation is unavailable, - * - 1 `emergencyElectronicBrakeEngaged`: in case emergency electronic brake is engaged, - * - 2 `preCrashSystemEngaged`: in case pre-crash system is engaged, - * - 3 `espEngaged`: in case Electronic Stability Program (ESP) system is engaged, - * - 4 `absEngaged`: in case Anti-lock braking system (ABS) is engaged, - * - 5 `aebEngaged`: in case Autonomous Emergency Braking (AEB) system is engaged, - * - 6 `brakeWarningEngaged`: in case brake warning is engaged, - * - 7 `collisionRiskWarningEngaged`: in case collision risk warning is engaged, - * - 8-255: reserved for future usage. + * The value shall be set to: + * - 0 `unavailable` : in case information on the type of dangerous situation is unavailable, + * - 1 `emergencyElectronicBrakeEngaged` : in case emergency electronic brake is engaged, + * - 2 `preCrashSystemEngaged` : in case pre-crash system is engaged, + * - 3 `espEngaged` : in case Electronic Stability Program (ESP) system is engaged, + * - 4 `absEngaged` : in case Anti-lock braking system (ABS) is engaged, + * - 5 `aebEngaged` : in case Autonomous Emergency Braking (AEB) system is engaged, + * - 6 `brakeWarningEngaged` : in case brake warning is engaged, + * - 7 `collisionRiskWarningEngaged` : in case collision risk warning is engaged, + * - 8-255: : are reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -875,18 +922,19 @@ DangerousSituationSubCauseCode ::= INTEGER { * This DE represents an offset altitude with regards to a defined altitude value. * It may be used to describe a geographical point with regards to a specific reference geographical position. * - * The following values are specified: - * - `n (n > -12700 and n < 0)` for providing altitude offset below the reference position. + * The value shall be set to: + * - `-12700` for values equal to or lower than `-127 metres`. + * - `n (n > -12700 and n < 0)` for altitude offset `n x 0,01 meter` below the reference position. * - `0` for no altitudinal offset. - * - `n (n > 0 and n < 12799)` for providing altitude offset above the reference position. - * - `12799` for values equal or greater than 127,99 metres. + * - `n (n > 0 and n < 12799)` for altitude offset `n x 0,01 meter` above the reference position. + * - `12799` for values equal to or greater than `127,99 metres`. * - `12800` when the information is unavailable. * - * @unit: 0.1 metre + * @unit: 0.01 metre * @category: GeoReference information * Revision: editorial update in V2.1.1 */ -DeltaAltitude ::= INTEGER { --tbd values +DeltaAltitude ::= INTEGER { oneCentimeterUp (1), oneCentimeterDown (-1), unavailable (12800) @@ -896,17 +944,17 @@ DeltaAltitude ::= INTEGER { --tbd values * This DE represents an offset latitude with regards to a defined latitude value. * It may be used to describe a geographical point with regards to a specific reference geographical position. * - * The following values are specified: - * - n (n > -12700 and n < 0) for providing offset towards the south from the reference position. - * `0` for no latitudinal offset. - * - n (n > 0 and n < 12799) for providing offset towards the north from the reference position. + * The value shall be set to: + * - n (n >= -131071 and n < 0) for offset `n x 0,1 microdegrees` towards the south from the reference position. + * - `0` for no latitudinal offset. + * - n (n > 0 and n < 131072) for offset `n x 0,1 microdegrees` towards the north from the reference position. * - `131072` when the information is unavailable. * * @unit: 0.1 microdegree * @category: GeoReference information * Revision: editorial update in V2.1.1 */ -DeltaLatitude ::= INTEGER { --tbd values +DeltaLatitude ::= INTEGER { oneMicrodegreeNorth (10), oneMicrodegreeSouth (-10) , unavailable (131072) @@ -916,10 +964,10 @@ DeltaLatitude ::= INTEGER { --tbd values * This DE represents an offset longitude with regards to a defined longitude value. * It may be used to describe a geographical point with regards to a specific reference geographical position. * - * The following values are specified: - * - `n (n > -12700 and n < 0)` for providing offset towards the west from the reference position. + * The value shall be set to: + * - `n (n >= -131071 and n < 0)` for offset `n x 0,1 microdegrees` towards the west from the reference position. * - `0` for no longitudinal offset. - * - `n (n > 0 and n < 12799`) for providing offset towards the east from the reference position. + * - `n (n > 0 and n < 131072`) for offset `n x 0,1 microdegrees` towards the east from the reference position. * - `131072` when the information is unavailable. * * @unit: 0.1 microdegree @@ -932,6 +980,17 @@ DeltaLongitude ::= INTEGER { unavailable (131072) } (-131071..131072) +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 0,01 s + * @category: Basic information + * Revision: Created in V2.1.1 +*/ +DeltaTimeHundredthOfSecond::= INTEGER { + tenMilliSeconds(1) +} (1..65535, ...) + /** * This DE represents a difference in time with respect to a reference time. @@ -958,15 +1017,14 @@ DeltaTimeMilliSecondPosNeg ::= INTEGER { } (-1500..1500) /** - * This DE represents a difference in time with respect to a reference time. + * This DE represents a difference in time with respect to a reference time. + * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert a VruClusterOpTimestamp to a GenerationDeltaTime, multiply by 256 (i.e. append a "00" byte) * - * @unit: 0,01 s + * @unit: 256 milliseconds * @category: Basic information * Revision: Created in V2.1.1 -*/ -DeltaTimeHundredthOfSecond::= INTEGER { - tenMilliSeconds(1) -} (1..65535, ...) + */ +DeltaTimeQuarterSecond::= INTEGER (1..255) /** * This DE represents a difference in time with respect to a reference time. @@ -994,13 +1052,33 @@ DeltaTimeSecond ::= INTEGER { -- tbd oneSecondAfterDetection(1) } (0..86400) +/** + * This DE indicates a direction with respect to a defined reference direction. + * Example: a reference direction may be implicitly defined by the definition of a geographical zone. + * + * The value shall be set to: + * - 0 `sameDirection` : to indicate the same direction as the reference direction. + * - 1 `oppositeDirection` : to indicateopposite direction as the reference direction. + * - 2 `bothDirections` : to indicate both directions, i.e. the same and the opposite direction. + * - 3 `unavailable` : to indicate that the information is unavailable. + * + * @category: GeoReference information + * Revision: Created in V2.1.1 + */ +Direction::= INTEGER{ + sameDirection(0), + oppositeDirection(1), + bothDirections(2), + unavailable(3) + } (0..3) + /** * This DE indicates in which direction something is moving. * - * The following values are specified: - * - 0 `forward`: it is moving forward. - * - 1 `backwards`: it is moving backwards. - * - 2 `unavailable` : the information is unavailable. + * The value shall be set to: + * - 0 `forward` : to indicate it is moving forward. + * - 1 `backwards` : to indicate it is moving backwards. + * - 2 `unavailable` : to indicate that the information is unavailable. * * @category: Kinematics information * Revision: editorial update in V2.1.1 @@ -1021,7 +1099,7 @@ DriveDirection ::= ENUMERATED { * * If a lane is closed to traffic, the corresponding bit shall be set to 1. Otherwise, it shall be set to 0. * - * @note: Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus as defined in clause A.29. + * @note:Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. * * @category: Traffic information * Revision: V1.3.1 @@ -1030,7 +1108,7 @@ DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) /** * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. - * If it is the case, the value is TRUE, otherwise FALSE. + * If that is the case, the value is TRUE, otherwise FALSE. * * @category: Vehicle information * Revision: editorial update in V2.1.1 @@ -1052,12 +1130,12 @@ EmergencyPriority ::= BIT STRING {--tbd values /** * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". * - * The sub causes are described as following: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on the emergency vehicle approaching event * is unavailable, * - 1 `emergencyVehicleApproaching` : in case an operating emergency vehicle is approaching, * - 2 `prioritizedVehicleApproaching`: in case a prioritized vehicle (e.g. bus) is approaching, - * - value 3-255 reserved for future usage. + * - value : are 3-255 reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -1086,6 +1164,42 @@ EnergyStorageType ::= BIT STRING {-- tbd values ammonia(6)} (SIZE(7)) +/** + * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * Revision: V2.1.1 + */ +EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } + +/** + * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * Revision: V2.1.1 + */ +EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} + +/** + * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * Revision: V2.1.1 + */ +EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} + +/** + * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * Revision: V2.1.1 + */ +EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} + /** * This DE describes the status of the exterior light switches of a vehicle. * @@ -1121,17 +1235,17 @@ ExteriorLights ::= BIT STRING { -- tbd values /** * This DE represents the confidence of the information indicating that an area is not occupied by a traffic participant or obstacle. * - * The following values are specified: + * The value shall be set to: * - `0` if the free space confidence is unknown for the described area. * - `n (n > 1 and n < 100)` for confidence values of n %. + * - `100` to indicate a 100% certainty. * - `101` if the confidence could not be computed and does not apply. * * @category Sensing Information * Revision: Created in V2.1.1 */ -FreeSpaceConfidence ::= INTEGER { --tbd values +FreeSpaceConfidence ::= INTEGER { unknown (0), - onePercent (1), oneHundredPercent (100), unavailable (101) } (0..101) @@ -1150,8 +1264,8 @@ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) * This DE indicates the current status of a hard shoulder: whether it is available for special usage * (e.g. for stopping or for driving) or closed for all vehicles. * - * The following values are specified: - * - 0 `availableForStopping`: if the hard shoulder is available for stopping in emergency situations. + * The value shall be set to: + * - 0 `availableForStopping`: if the hard shoulder is available for stopping in e.g. emergency situations. * - 1 `closed`: if the hard shoulder is closed and cannot be occupied in any case. * - 2 `availableForDriving`: if the hard shoulder is available for regular driving. * @@ -1166,7 +1280,7 @@ HardShoulderStatus ::= ENUMERATED { /** * This DE represents the value of the sub cause code of the @CauseCode `hazardousLocation-AnimalOnTheRoad`. * - * The following values are specified: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on the animal on the road event is unavailable, * - 1 `wildAnimals` : in case wild animals are detected on the road, * - 2 `herdOfAnimals`: in case herd of animals are detected on the road, @@ -1188,14 +1302,14 @@ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { /** * This DE represents the sub cause code of the @CauseCode `hazardousLocation-DangerousCurve`. * - * The following values are specified: - * - 0 `unavailable` : in case further detailed information on the dangerous curve is unavailable, - * - 1 `dangerousLeftTurnCurve` : in case the dangerous curve is a left turn curve, - * - 2 `dangerousRightTurnCurve` : in case the dangerous curve is a right turn curve, - * - 3 `multipleCurvesStartingWithUnknownTurningDirection`: in case of multiple curves for which the starting curve turning direction is not known, - * - 4 `multipleCurvesStartingWithLeftTurn`: in case of multiple curves starting with a left turn curve, - * - 5 `multipleCurvesStartingWithRightTurn`: in case of multiple curves stating with a right turn curve, - * - value 6-255 reserved for future usage. + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on the dangerous curve is unavailable, + * - 1 `dangerousLeftTurnCurve` : in case the dangerous curve is a left turn curve, + * - 2 `dangerousRightTurnCurve` : in case the dangerous curve is a right turn curve, + * - 3 `multipleCurvesStartingWithUnknownTurningDirection` : in case of multiple curves for which the starting curve turning direction is not known, + * - 4 `multipleCurvesStartingWithLeftTurn` : in case of multiple curves starting with a left turn curve, + * - 5 `multipleCurvesStartingWithRightTurn` : in case of multiple curves stating with a right turn curve, + * - values 6-255 : are reserved for future usage. * * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass * and vehicle speed driving on the curve. This definition is out of scope of the present document. @@ -1215,7 +1329,7 @@ HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { /** * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. * - * The following values are specified: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on the detected obstacle is unavailable, * - 1 `shedLoad` : in case detected obstacle is large amount of obstacles (shedload), * - 2 `partsOfVehicles`: in case detected obstacles are parts of vehicles, @@ -1243,7 +1357,7 @@ HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { /** * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. * - * The sub causes are described as following: +The value shall be set to: * - 0 `unavailable` : in case further detailed information on the road surface condition is unavailable, * - 1 `rockfalls` : in case rock falls are detected on the road surface, * - 2 `earthquakeDamage`: in case the road surface is damaged by earthquake, @@ -1254,7 +1368,8 @@ HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { * - 7 `burstPipe` : in case road surface is damaged due to pipe burst, * - 8 `volcanoEruption` : in case road surface is damaged due to volcano eruption, * - 9 `fallingIce` : in case road surface damage is due to falling ice, - * - 10-255 reserved for future usage. + * - 10 `fire` : in case there is fire on or near to the road surface, + * - 11-255 reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -1274,11 +1389,11 @@ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. + * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. * - * The value following values are specified: +The value shall be set to: * - `1` if the heading accuracy is equal to or less than 0,1 degree, - * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree + * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, * - `125` if the heading accuracy is equal to or less than 12,5 degrees, * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, * - `127` if the heading accuracy information is not available. @@ -1298,7 +1413,7 @@ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { * @category: GeoReference information * Revision: Description revised in V2.1.1 */ -HeadingConfidence ::= INTEGER { --tbd values +HeadingConfidence ::= INTEGER { equalOrWithinZeroPointOneDegree (1), equalOrWithinOneDegree (10), outOfRange(126), @@ -1328,18 +1443,17 @@ HeadingValue ::= INTEGER { /** * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle * rear to front). - -* The value following values are specified: - * - `1` if the height is equal to or less than 0,01 meter, - * - `n (n > 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter - * - `99` if the height is out of range, i.e. equal to or greater than 99 cm, + * +The value shall be set to: + * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter. + * - `99` if the height is out of range, i.e. equal to or greater than 98 cm. * - `100` if the height information is not available. * * @unit 0,01 meter * @category Vehicle information - * Revision: Description revised in V2.1.1 + * Revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) */ -HeightLonCarr ::= INTEGER {--tbd values +HeightLonCarr ::= INTEGER { oneCentimeter(1), unavailable(100) } (1..100) @@ -1347,12 +1461,12 @@ HeightLonCarr ::= INTEGER {--tbd values /** * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. * - * The following values are specified: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on human presence on the road is unavailable, * - 1 `childrenOnRoadway` : in case children are detected on the road event, * - 2 `cyclistOnRoadway` : in case cyclist presence is detected on the road, * - 3 `motorcyclistOnRoadway`: in case motorcyclist presence is detected on the road, - * - 4-255 reserved for future usage. + * - 4-255 : are reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -1367,7 +1481,7 @@ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { /** * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". * - * The following values are specified: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on human health problem is unavailable, * - 1 `glycemiaProblem`: in case human problem is due to glycaemia problem, * - 2 `heartProblem` : in case human problem is due to heart problem, @@ -1393,9 +1507,9 @@ Identifier ::= INTEGER (0..255) /** * This DE represents the quality level of provided information. * - * @note: Definition of quality level is out of scope of the present document. + * @note: Definition of quality level is out of scope of the present document. * - * @category: Other information + * @category: Basic information * Revision: V1.3.1 */ InformationQuality ::= INTEGER { @@ -1408,13 +1522,13 @@ InformationQuality ::= INTEGER { * This DE defines the type of an interference management zone, so that an ITS-S can * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). * - * The value are specified as following: - * - 0 `permanentCenDsrcTolling` : as specified in ETSI TS 102 792 - * - 1 `temporaryCenDsrcTolling` : as specified in ETSI TS 102 792 + * The value shall be set to: + * - 0 `permanentCenDsrcTolling` : as specified in ETSI TS 102 792 [i.23] + * - 1 `temporaryCenDsrcTolling` : as specified in ETSI TS 102 792 [i.23] * - 2 `unavailable` : default value. Set to 2 for backwards compatibility with DSRC tolling - * - 3 `urbanRail(3)` : as specified in ETSI TS 103 724, clause 7 - * - 4 `satelliteStation` : as specified in ETSI TS 103 724, clause 7 - * - 5 `fixedLinks(5)` : as specified in ETSI TS 103 724, clause 7 + * - 3 `urbanRail(3)` : as specified in ETSI TS 103 724 [i.24], clause 7 + * - 4 `satelliteStation` : as specified in ETSI TS 103 724 [i.24], clause 7 + * - 5 `fixedLinks(5)` : as specified in ETSI TS 103 724 [i.24], clause 7 * * @category: Communication information * Revision: Created in V2.1.1 @@ -1437,6 +1551,103 @@ InterferenceManagementZoneType ::= ENUMERATED { */ IntersectionID ::= INTEGER (0..65535) +/** + * This DE represents the vehicle type according to ISO 3833 [4]. + * A “term No” refers to the number of the corresponding term and its definition in ISO 3833. + * + * The value shall be set to: + * - 0 `passengerCar` : term No 3.1.1 + * - 1 `saloon` : term No 3.1.1.1 (sedan) + * - 2 `convertibleSaloon` : term No 3.1.1.2 + * - 3 `pullmanSaloon` : term No 3.1.1.3 + * - 4 `stationWagon` : term No 3.1.1.4 + * - 5 `truckStationWagon` : term No 3.1.1.4.1 + * - 6 `coupe ` : term No 3.1.1.5 (coupé) + * - 7 `convertible` : term No 3.1.1.6 (open tourer, roadstar, spider) + * - 8 `multipurposePassengerCar` : term No 3.1.1.7 + * - 9 `forwardControlPassengerCar`: term No 3.1.1.8 + * - 10 `specialPassengerCar` : term No 3.1.1.9 + * - 11 `bus (11)` : term No 3.1.2 + * - 12 `minibus` : term No 3.1.2.1 + * - 13 `urbanBus` : term No 3.1.2.2 + * - 14 `interurbanCoach` : term No 3.1.2.3 + * - 15 `longDistanceCoach` : term No 3.1.2.4 + * - 16 `articulatedBus` : term No 3.1.2.5 + * - 17 `trolleyBus ` : term No 3.1.2.6 + * - 18 `specialBus` : term No 3.1.2.7 + * - 19 `commercialVehicle ` : term No 3.1.3 + * - 20 `specialCommercialVehicle` : term No 3.1.3.1 + * - 21 `specialVehicle ` : term No 3.1.4 + * - 22 `trailingTowingVehicle ` : term No 3.1.5 (draw-bar tractor) + * - 23 `semiTrailerTowingVehicle` : term No 3.1.6 (fifth wheel tractor) + * - 24 `trailer` : term No 3.2.1 + * - 25 `busTrailer` : term No 3.2.1.1 + * - 26 `generalPurposeTrailer` : term No 3.2.1.2 + * - 27 `caravan` : term No 3.2.1.3 + * - 28 `specialTrailer` : term No 3.2.1.4 + * - 29 `semiTrailer` : term No 3.2.2 + * - 30 `busSemiTrailer ` : term No 3.2.2.1 + * - 31 `generalPurposeSemiTrailer` : term No 3.2.2.2 + * - 32 `specialSemiTrailer` : term No 3.2.2.3 + * - 33 `roadTrain` : term No 3.3.1 + * - 34 `passengerRoadTrain ` : term No 3.3.2 + * - 35 `articulatedRoadTrain` : term No 3.3.3 + * - 36 `doubleRoadTrain` : term No 3.3.4 + * - 37 `compositeRoadTrain` : term No 3.3.5 + * - 38 `specialRoadTrain` : term No 3.3.6 + * - 39 `moped` : term No 3.4 + * - 40 `motorCycle` : term No 3.5 + * + * Values 41 to 255 are reserved for future use + * + * @category: Vehicle information + * Revision: Created in V2.1.1 + */ + +Iso3833VehicleType ::= INTEGER { + passengerCar (0), + saloon (1), + convertibleSaloon (2), + pullmanSaloon (3), + stationWagon (4), + truckStationWagon (5), + coupe (6), + convertible (7), + multipurposePassengerCar (8), + forwardControlPassengerCar (9), + specialPassengerCar (10), + bus (11), + minibus (12), + urbanBus (13), + interurbanCoach (14), + longDistanceCoach (15), + articulatedBus (16), + trolleyBus (17), + specialBus (18), + commercialVehicle (19), + specialCommercialVehicle (20), + specialVehicle (21), + trailingTowingVehicle (22), + semiTrailerTowingVehicle (23), + trailer (24), + busTrailer (25), + generalPurposeTrailer (26), + caravan (27), + specialTrailer (28), + semiTrailer (29), + busSemiTrailer (30), + generalPurposeSemiTrailer (31), + specialSemiTrailer (32), + roadTrain (33), + passengerRoadTrain (34), + articulatedRoadTrain (35), + doubleRoadTrain (36), + compositeRoadTrain (37), + specialRoadTrain (38), + moped (39), + motorCycle (40) + } (0..255) + /** * This DE indicates the transversal position information on the road in resolution of lanes, counted from * the inside border of the road for a given traffic direction. For example, the innermostDrivingLane corresponds @@ -1465,8 +1676,9 @@ LanePosition ::= INTEGER { LaneId ::= INTEGER (0..255) /** - * This DE represents the type of a lane. The following values are specified: - * + * This DE represents the type of a lane. + * + * The value shall be set to: * - 0 `traffic`: Lane dedicated to the movement of vehicles. * - 1 `through`: Lane dedicated to the movement of vehicles travelling ahead and not turning. * - 2 `reversible`: Lane where the direction of traffic can be changed to match the peak flow. @@ -1491,7 +1703,7 @@ LaneId ::= INTEGER (0..255) * - values 21 to 30: reserved for future use * * @category: Road topology information - * Revision: V1.3.1 + * Revision: V2.1.1 */ LaneType::= INTEGER{ traffic (0), @@ -1522,14 +1734,15 @@ LaneType::= INTEGER{ * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or * in south hemisphere. * - * The following values are specified: - * - Positive values are used for latitude in north of the Equator, - * - Negative values are used for latitude in south of the Equator. + * The value shall be set to: + * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitude in south of the Equator. + * - `0` is used for the latitude of the equator. + * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitude in north of the Equator. * - `900 000 001` when the information is unavailable. * * @unit: 0.1 microdegree * @category: GeoReference information - * Revision: V1.3.1 + * Revision: Editorial update in V2.1.1 */ Latitude ::= INTEGER { oneMicrodegreeNorth (10), @@ -1540,26 +1753,25 @@ Latitude ::= INTEGER { /** * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n < 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation + * with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `0` indicates zero acceleration. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation + with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. * - * The following values are specified: - * - `-160` for values equal to or greater than 16 m/s2 towards the right. - * - Negative value indicates that the vehicle is accelerating towards the right side with regards to the vehicle orientation. - * - Positive values indicate the acceleration to the left hand side with regards to the vehicle orientation. - * - `160` for values equal to or greater than 16 m/s2 towards the left. - * - `161` when the information is not available. - * * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * * @unit: 0.1 m/s2 * @category Vehicle information - * Revision: Editorial update in V2.1.1 + * Revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. */ -LateralAccelerationValue ::= INTEGER {-- tbd values - pointOneMeterPerSecSquaredToRight(-1), - pointOneMeterPerSecSquaredToLeft(1), - unavailable(161) -} (-160 .. 161) +LateralAccelerationValue ::= AccelerationValue /** * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. @@ -1570,6 +1782,7 @@ LateralAccelerationValue ::= INTEGER {-- tbd values * - 1 `sirenActivated` : when the siren is activated. * * Otherwise, it shall be set to 0. + * * @category Vehicle information * Revision: Editorial update in V2.1.1 */ @@ -1582,13 +1795,17 @@ LightBarSirenInUse ::= BIT STRING { * This DE represents the absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees * to the east or to the west of the prime meridian. * - * - Negative values are used for longitudes to the west, - * - Positive values are used for longitudes to the east. + * The value shall be set to: + * - `n (n > -1800000000 and n < 0)`, i.e. negative values for longitudes to the west. + * - `0` to indicate the prime meridian. + * - `n (n > 0 and n < 1800000001)`, i.e. positive values for longitudes to the east. * - `1 800 000 001` when the information is unavailable. * + * The value -1800000000 shall not be used. + * * @unit: 0.1 microdegree * @category: GeoReference information - * Revision: Editorial update in V2.1.1 + * Revision: Description revised in V2.1.1 */ Longitude ::= INTEGER { oneMicrodegreeEast (10), @@ -1600,24 +1817,22 @@ Longitude ::= INTEGER { * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. * - * The following values are specified: - * - `-160` for values equal to or greater than 16 m/s2. - * - Negative values indicate that the vehicle is braking. - * - Positive values indicate that the vehicle is accelerating. - * - `160` for acceleration equal to or greater than 16 m/s2. - * - `161` when the data is unavailable. +* The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n < 0)` to indicate that the the vehicle is braking with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `0` indicates zero acceleration. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. * * This acceleration is along the tangent plane of the road surface and does not include gravity components. * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * @category: Vehicle information + * Revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. */ -LongitudinalAccelerationValue ::= INTEGER { - pointOneMeterPerSecSquaredForward(1), - pointOneMeterPerSecSquaredBackward(-1), - unavailable(161) -} (-160 .. 161) +LongitudinalAccelerationValue::= AccelerationValue /** * This DE represents the longitudinal offset of the map-matched position of a particular object along the @@ -1634,7 +1849,7 @@ LongitudinalLanePositionValue ::= INTEGER { /** * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. * - * The following values are specified: + * The value shall be set to: * - `1` if the accuracy is equal to or less than 0,01 m * - `n (n > 1 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. @@ -1654,22 +1869,25 @@ LongitudinalLanePositionConfidence ::= INTEGER { /** * This DE represents the type of facility layer message. * - * The following values are specified: - * - 1 `denm`: Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], - * - 2 `cam`: Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], - * - 3 `poi`: Point of Interest message as specified in ETSI TS 101 556-1 [i.11], - * - 4 `spatem`: Signal Phase And Timing (SPAT) message as specified in SAE J2735 [i.12] and in ETSI TS 103 301 [i.17], - * - 5 `mapem`: MAP message as specified in SAE J2735 [i.12] and in ETSI TS 103 301 [i.17], - * - 6 `ivim`: In Vehicle Information (IVI) message as defined in ISO TS 19321 [i.13], - * - 7 `ev-rsr`: Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], - * - 8 `tistpgtransaction`: messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 i.15, - * - 9 `srem`: Traffic light Signal Request Message as specified in ETSI TS 103 301 [i.17], - * - 10 `ssem`: Traffic Light Signal Request Status Message as specified in ETSI TS 103 301 [i.17]. - * - 11 `evcsn`: Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], - * - 12 `saem`: Services Announcement Extended Message as specified in ETSI TS 102 890-1 i.19, - * - 13 `rtcmem`: Radio Technical Commission for Maritime Services (RTCM) Message as specified in ETSI TS 103 301 [i.17], - * - 14 `vam` : Vulnerable Road User Awareness Message as specified in ETS TS 130 300-3 - * - 14-255: reserved for future usage, + * The value shall be set to: + * - 1 `denm` : for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], + * - 2 `cam` : for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], + * - 3 `poi` : for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], + * - 4 `spatem` : for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], + * - 5 `mapem` : for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], + * - 6 `ivim` : for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], + * - 7 `ev-rsr` : for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], + * - 8 `tistpgtransaction` : for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], + * - 9 `srem` : for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], + * - 10 `ssem` : for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], + * - 11 `evcsn` : for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], + * - 12 `saem` : for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], + * - 13 `rtcmem` : for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], + * - 14 `cpm` : for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], + * - 15 `imzm` : for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], + * - 16 `vam` : for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], + * - 17 `dsm` : for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. + * - 18-255: reserved for future usage, * * @category: Communication information * Revision: Created in V2.1.1 from @ref ItsPduHeader @@ -1694,7 +1912,7 @@ MessageId::= INTEGER { /** * This DE represents the number of occupants in a vehicle. * - * The following values are specified: + * The value shall be set to: * - `n (n > 1 and n < 126)` for the number n of occupants. * - `126` for values equal to or higher than 126. * - `127` if information is not available.`. @@ -1711,11 +1929,11 @@ NumberOfOccupants ::= INTEGER { /** * This DE represents the confidence value for the type of a detected object. * - * The following values are specified: + * The value shall be set to: * * - `0` : in case the confidence value is unknown but the reported classification is still valid. * - `n (n > 1 and n < 101)` : for the confidence value in %. - * - `101` : in case the confidence value computation is not available for the object. Indicates that the class assignment is invalid. + * - `101` : in case the confidence value computation is not available for the object. Indicates that the class assignment is invalid. * * @unit Percent * @category: Sensing information @@ -1731,7 +1949,7 @@ ObjectClassConfidence ::= INTEGER { /** * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. * - * The following values are specified: + * The value shall be set to: * * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. * - `n (n > 0 and n < 15) : for the applicable confidence value. @@ -1759,11 +1977,11 @@ ObjectDimensionValue ::= INTEGER { } (0..1023) /** - * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. + * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. * - * The following values are specified: + * The value shall be set to: * - `1` if the dimension accuracy is equal to or less than 0,01 m. - * - `n (n > 1 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. + * - `n (n > 1 and n < 101)` if the dimension accuracy is equal to or less than `n x 0,01 meter`, and more than `(n-1) x 0,01 meter` . * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. * - `102` if the data is unavailable. * @@ -1783,30 +2001,30 @@ ObjectDimensionConfidence ::= INTEGER { * This value indicates whether an object has the general capability to move, i.e. change its * position. * - * The following values are specified: + * The value shall be set to: * - `0` dynamic : indicates that the object is moving. * - `1` hasBeenDynamic : indicates whether an object has been dynamic before, e.g., a car stopping at a traffic light. * - `2` static : indicates that an object has been detected to be not moving throughout any previous observation. + * - `3` unavailable : indicates that the information is unavailable. * - * @unit n/a * @category: Sensing information * Revision: Created in V2.1.1 */ -ObjectDynamicStatus ::= INTEGER { -- t.b.d add unavailable +ObjectDynamicStatus ::= INTEGER { dynamic (0), hasBeenDynamic (1), - static (2) -} (0..2) + static (2), + unavailable (3) +} (0..3) /** * This DE indicate the approximate position of the reference point of measurement for the object dimensions. * The point is included in the plane perpendicular to the direction of the object´s @ref yawAngleValue. * - * @unit n/a * @category: Sensing information * Revision: Created in V2.1.1 */ -ObjectRefPoint ::= INTEGER {-- t.b.d specify values +ObjectRefPoint ::= INTEGER { mid (0), bottomLeft (1), midLeft (2), @@ -1818,14 +2036,33 @@ ObjectRefPoint ::= INTEGER {-- t.b.d specify values topRight (8) } (0..8) +/** + * This DE indicates an object’s section. + * The object is assumed to have a length that is greater than its width, with the sides of the object being divided into front, rear, sideLeftFront, sideLeftBack, sideRightFront, sideRightBack. + * + * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. + * + * @category: Basic information + * Revision: V2.1.1 + */ +ObjectSection ::= ENUMERATED { + unavailable(0), + rear(1), + front(2), + sideLeftFront(3), + sideLeftBack(4), + sideRightFront(5), + sideRightBack(6) +} + /** * This DE represents positions with lane-level accuracy which are not on regular traffic lanes. * - * The following values are specified: - * - 0 `unavailable` : in case information on the lane position is unavailable. - * - 1 `sidewalk` : in case the position is on the side-walk. - * - 2 `parkingLane` : in case the position is on an area at the side of the road not intended for travel but for vehicular parking. - * - 3 `bikeLane` : in case the position is on an area reserved for bicycles. + * The value shall be set to: + * - 0 `unavailable` : if information on the lane position is unavailable. + * - 1 `sidewalk` : if the position is on the side-walk. + * - 2 `parkingLane` : if the position is on an area at the side of the road not intended for travel but for vehicular parking. + * - 3 `bikeLane` : if the position is on an area reserved for bicycles. * - value 4-15 : reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. * * @category: Road topology information @@ -1851,9 +2088,9 @@ OpeningDaysHours ::= UTF8String /** * This DE indicates the subclass of a detected object for object class "otherSubclass". * - * The following values are specified: - * - `0` unknown : the subclasss is unknown. - * - `1` roadSideUnit : the object is a roadside unit. + * The value shall be set to: + * - `0` unknown : if the subclass is unknown. + * - `1` roadSideUnit : if the object is a roadside unit. * * @category: Sensing information * Revision: Created in V2.1.1 @@ -1876,7 +2113,7 @@ PathDeltaTime ::= DeltaTimeHundredthOfSecond * This DE denotes the ability of an ITS-S to provide up-to-date information. * A performance class value is used to describe age of data. The exact values are out of scope of the present document. * - * The following values are specified: + * The value shall be set to: * - `0` if the performance class is unknown. * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.6] * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.6] @@ -1894,7 +2131,7 @@ PerformanceClass ::= INTEGER { /** * This DE represents a telephone number * - * @category: Other information + * @category: Basic information * Revision: V1.3.1 */ PhoneNumber ::= NumericString (SIZE(1..16)) @@ -1903,10 +2140,10 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * This DE indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of * the vehicle bounding box of the empty load vehicle. * - * The following values are specified: + * The value shall be set to: * - `n (n > 0 and n < 62)` for any aplicable value n between `0,1 meter` and `6,2 meters`. * - `62` for values equal to or higher than `6.2 metres`. - * -`63` if the information is unavailable. + * - `63` if the information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * @@ -1922,20 +2159,21 @@ PosCentMass ::= INTEGER { /** * This DE indicates the positioning technology being used to estimate a geographical position. * - * The following values are specified: - * - 0 `noPositioningSolution`: no positioning solution used, - * - 1 `sGNSS`: Global Navigation Satellite System used, - * - 2 `dGNSS`: Differential GNSS used, - * - 3 `sGNSSplusDR`: GNSS and dead reckoning used, - * - 4 `dGNSSplusDR`: Differential GNSS and dead reckoning used, - * - 5 `dR`: dead reckoning used. + * The value shall be set to: + * - 0 `noPositioningSolution` : no positioning solution used, + * - 1 `sGNSS` : Global Navigation Satellite System used, + * - 2 `dGNSS` : Differential GNSS used, + * - 3 `sGNSSplusDR` : GNSS and dead reckoning used, + * - 4 `dGNSSplusDR` : Differential GNSS and dead reckoning used, + * - 5 `dR` : dead reckoning used. * * @category: GeoReference information * Revision: V1.3.1 */ PositioningSolutionType ::= ENUMERATED { noPositioningSolution(0), - sGNSS(1), dGNSS(2), + sGNSS(1), + dGNSS(2), sGNSSplusDR(3), dGNSSplusDR(4), dR(5), ...} @@ -1990,14 +2228,14 @@ PositionOfOccupants ::= BIT STRING { /** * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. * - * The following values are specified: + * The value shall be set to: * - `n (n > 0 and n < 19) for any aplicable value between 0,1 meter and 1,9 meters. * - `19` for values equal to or higher than 1.9 metres. * - `20` if the information is unavailable. * * @category: Vehicle information * @unit 0.1 metre -* Revision: Editorial update in V2.1.1 + * Revision: Editorial update in V2.1.1 */ PosFrontAx ::= INTEGER { tenCentimeters(1), @@ -2008,7 +2246,7 @@ PosFrontAx ::= INTEGER { * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. * - * The following values are specified: + * The value shall be set to: * - `n (n > 0 and n < 126) for any aplicable value between `0,01 meter` and `1,26 meters`. * - `126` for values equal to or higher than `1.26 metres`. * - `127` if the information is unavailable. @@ -2025,8 +2263,8 @@ PosLonCarr ::= INTEGER { * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the * middle point of the front line of the vehicle bounding box. * - * The following values are specified: - * - `n (n > 0 and n < 126)` for any aplicable value between `0,1 meter` and `2,9 meters`. + * The value shall be set to: + * - `n (n > 0 and n < 29)` for any aplicable value between `0,1 meter` and `2,9 meters`. * - `29` for values equal to or greater than `2.9 metres`. * - `30` if the information is unavailable. * @@ -2034,18 +2272,21 @@ PosLonCarr ::= INTEGER { * @category Vehicle information * Revision: Editorial update in V2.1.1 */ -PosPillar ::= INTEGER {tenCentimeters(1), unavailable(30)} (1..30) +PosPillar ::= INTEGER { + tenCentimeters(1), + unavailable(30) +} (1..30) /** * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . * - * The following values are specified: - * - 0 `unavailable`: in case further detailed information on post crash event is unavailable, - * - 1 `accidentWithoutECallTriggered`: in case no eCall has been triggered for an accident, - * - 2 `accidentWithECallManuallyTriggered`: in case eCall has been manually triggered and transmitted to eCall back end, - * - 3 `accidentWithECallAutomaticallyTriggered`: in case eCall has been automatically triggered and transmitted to eCall back end, - * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork`: in case eCall has been triggered but cellular network is not accessible from triggering vehicle, - * - 5-255: reserved for future usage. + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on post crash event is unavailable, + * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, + * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, + * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, + * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle, + * - 5-255 : reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -2075,7 +2316,9 @@ ProtectedZoneID ::= INTEGER (0.. 134217727) * @category: Infrastructure information, Communication information * Revision: V1.3.1 */ -ProtectedZoneRadius ::= INTEGER {oneMeter(1)} (1..255,...) +ProtectedZoneRadius ::= INTEGER { + oneMeter(1) +} (1..255,...) /** * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do @@ -2114,7 +2357,7 @@ PtActivationData ::= OCTET STRING (SIZE(1..20)) * - `0` undefinedCodingType : undefined coding type, * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.8], * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.8]. - * - values 3 to 255 are reserved for alternative and future use. + * - values 3 to 255 : reserved for alternative and future use. * * @category: Vehicle information * Revision: V1.3.1 @@ -2124,6 +2367,29 @@ PtActivationType ::= INTEGER { r09-16CodingType(1), vdv-50149CodingType(2)} (0..255) +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . + * + * The value shall be set to: + * - 0 `unavailable` : in case no further detailed information on the railway level crossing status is available, + * - 1 `doNotCrossAbnormalSituation` : in case when something wrong is detected by equation or sensors of the railway level crossing, + including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), + * - 2 `closed` : in case the crossing is closed (barriers down), + * - 3 `unguarded` : in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), + * - 4 `nominal` : in case the barriers are up and lights are off. + * - 5-255: reserved for future usage. + * + * @category: Traffic information + * Revision: V1.3.1 + */ +RailwayLevelCrossingSubCauseCode ::= INTEGER { + unavailable(0), + doNotCrossAbnormalSituation(1), + closed(2), + nominal(3), + unguarded(4) +} (0..255) + /** * This DE represents a reference point counter for a trailer. * @@ -2135,16 +2401,16 @@ RefPointId ::= INTEGER (0..255) /** * This DE describes a distance of relevance for information indicated in a message. * - * The following values are specified: - * - 0 `lessThan50m` for distances below 50 m. - * - 1 `lessThan100m` for distances below 100 m. - * - 2 `lessThan200m` for distances below 200 m. - * - 3 `lessThan500m` for distances below 300 m. - * - 4 `lessThan1000m` for distances below 1000 m. - * - 5 `lessThan5km` for distances below 5000 m. - * - 6 `lessThan10km` for distances below 10000 m. - * - 7 `over10km`for distances over 10000 m. - + * The value shall be set to: + * - 0 `lessThan50m` : for distances below 50 m. + * - 1 `lessThan100m` : for distances below 100 m. + * - 2 `lessThan200m` : for distances below 200 m. + * - 3 `lessThan500m` : for distances below 300 m. + * - 4 `lessThan1000m` : for distances below 1000 m. + * - 5 `lessThan5km` : for distances below 5000 m. + * - 6 `lessThan10km` : for distances below 10000 m. + * - 7 `over10km` : for distances over 10000 m. + * * @category: GeoReference information * Revision: Editorial update in V2.1.1 */ @@ -2162,11 +2428,11 @@ RelevanceDistance ::= ENUMERATED { /** * This DE indicates a traffic direction that is relevant to information indicated in a message. * - * The following values are specified: - * - 0 `allTrafficDirections` for all traffic directions - * - 1 `upstreamTraffic` for upstream traffic. - * - 2 `downstreamTraffic` for downstream traffic. - * - 3 `oppositeTraffic` for opposite traffic. + * The value shall be set to: + * - 0 `allTrafficDirections` : for all traffic directions. + * - 1 `upstreamTraffic` : for upstream traffic. + * - 2 `downstreamTraffic` : for downstream traffic. + * - 3 `oppositeTraffic` : for traffic in the opposite direction. * * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. * @@ -2187,9 +2453,9 @@ RelevanceTrafficDirection ::= ENUMERATED { * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from * ITS-S after receiving request from other ITS-Ss. * - * The following values are specified: - * - 0 `request` for a request message. - * - 1 `response` for a response message. + * The value shall be set to: + * - 0 `request` : for a request message. + * - 1 `response` : for a response message. * * @category Communication information * Revision: Editorial update in V2.1.1 @@ -2224,7 +2490,7 @@ RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents A unique identifier assigned to an entity. + * This DE represents a unique identifier assigned to an entity. * * @category: Road Topology Information * Revision: Created in V2.1.1 @@ -2242,7 +2508,7 @@ RoadSegmentID ::= INTEGER (0..65535) /** * This DE indicates the type of a road segment. * - * The following values are specified: + * The value shall be set to: * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. @@ -2260,7 +2526,7 @@ RoadType ::= ENUMERATED { /** * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. * - * The sub causes are described as following: +The value shall be set to: * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, * - 1 `majorRoadworks` : in case a major roadworks is ongoing, * - 2 `roadMarkingWork` : in case a road marking work is ongoing, @@ -2286,11 +2552,12 @@ RoadworksSubCauseCode ::= INTEGER { /** * This DE indicates if a distance is safe * This DE is FALSE if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} simultaneously satisfied with confidence of 90 % or more. - * Otherwise stationSafeDistanceIndication is set as TRUE 3 + * Otherwise stationSafeDistanceIndication is set to TRUE. * * @Note: the ebbreviations 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) - * @category: tbd + * + * @category: Traffic information, Kinematics information * Revision: created in V2.1.1 */ SafeDistanceIndicator::= BOOLEAN @@ -2306,7 +2573,6 @@ SafeDistanceIndicator::= BOOLEAN * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, * - `4 095` if the accuracy information is unavailable. * - * * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' * can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, @@ -2317,6 +2583,7 @@ SafeDistanceIndicator::= BOOLEAN * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful * for the application. + * @unit 0,01 meter * @category: GeoReference Information * Revision: V1.3.1 */ @@ -2325,19 +2592,20 @@ SemiAxisLength ::= INTEGER{oneCentimeter(1), outOfRange(4094), unavailable(4095) /** * This DE indicates the type of sensor. * - * The following values are specified: - * - `0` undefined : in case the sensor type is undefined. - * - `1` radar : in case the sensor is a radar. - * - `2` lidar : in case the sensor is a lidar. - * - `3` monovideo : in case the sensor is mono video. - * - `4` stereovision : in case the sensor is stereo vision. - * - `5` nightvision : in case the sensor is night vision. - * - `6` ultrasonic : in case the sensor is ultrasonic. - * - `7` pmd : in case the sensor is pmd. - * - `8` fusion : in case the information provided by a sensor data fusion system - * - `9` inductionloop : in case the sensor is an induction loop. + * The value shall be set to: + * - `0` undefined : in case the sensor type is undefined. + * - `1` radar : in case the sensor is a radar. + * - `2` lidar : in case the sensor is a lidar. + * - `3` monovideo : in case the sensor is mono video. + * - `4` stereovision : in case the sensor is stereo vision. + * - `5` nightvision : in case the sensor is night vision. + * - `6` ultrasonic : in case the sensor is ultrasonic. + * - `7` pmd : in case the sensor is pmd. + * - `8` fusion : in case the information provided by a sensor data fusion system + * - `9` inductionloop : in case the sensor is an induction loop. * - `10` sphericalCamera : in case the sensor is a spherical camera. * - `11` itssaggregation : in case the information is gathered from other received ITS messages + * - `12` uwb : in case the sensor is ultra wide band. * * @category: Sensing Information * Revision: created in V2.1.1 @@ -2354,7 +2622,8 @@ SensorType ::= INTEGER { fusion (8), inductionloop (9), sphericalCamera (10), - itssaggregation (11) + itssaggregation (11), + uwb (12) } (0..15) /** @@ -2368,12 +2637,12 @@ SequenceNumber ::= INTEGER (0..65535) /** * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. * - * The following values are specified: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, * - 1 `stopSignViolation` : in case a stop sign violation is detected, * - 2 `trafficLightViolation` : in case a traffic light violation is detected, * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, - * - 4-255: reserved for future usage. + * - 4-255 : reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -2388,7 +2657,7 @@ SignalViolationSubCauseCode ::= INTEGER { /** * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". * - * The following values are specified: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is * unavailable, * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, @@ -2399,7 +2668,7 @@ SignalViolationSubCauseCode ::= INTEGER { * - 6 `snowplough` : in case of slow driving snow plough on the road, * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road, - * - 9-255 reserved for future usage. + * - 9-255 : reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -2440,7 +2709,7 @@ SpecialTransportType ::= BIT STRING { * This DE represents the absolute accuracy of a speed value information for a predefined confidence level. * The required confidence level is defined by the station applying this DE. * - * The following values are specified: + * The value shall be set to: * - `1` if the speed accuracy is equal to or less than `1 cm/s`. * - `n (n > 1 and n < 125)` if the speed accuracy is equal to or less than `n cm/s`. * - `125` if the speed accuracy is equal to or less than `125 cm/s`. @@ -2479,17 +2748,17 @@ SpeedLimit ::= INTEGER { } (1..255) /** - * This DE represents a speed value. + * This DE represents a speed value, i.e. the magnitude of the horizontal velocity-vector. * - * The following values are specified: + * The value shall be set to: * - `0` in a standstill situation. - * - `n (n > 0 and n < 16383)` if the applicable speed value n is between `0,01` and `163,82 m/s`. - * - `16382` for speed values equal to or greater than 163,82 m/s. + * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than `n x 0,01 m/s`, and greater than `(n-1) x 0,01 m/s`. + * - `16382` for speed values greater than 163,81 m/s. * - `16383` if the speed accuracy information is not available. * * @unit: 0,01 m/s * @category: Kinematics information - * Revision: Description revised in V2.1.1 + * Revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) */ SpeedValue ::= INTEGER { standstill(0), @@ -2500,12 +2769,12 @@ SpeedValue ::= INTEGER { /** * This DE represents a speed value with extended range. * - * The following values are specified: + * The value shall be set to: * - `-16383` if the speed is equal to or smaller than -163,83 m/s - * - `n (n > -16383 and n < 0)` if the applicable value n is between `-163,82` and `-0,01` m/s. + * - `n (n > -16383 and n < 0)` if the applicable value is equal to or less than `n x 0,01 m/s`, and greater than `(n-1) x `0,01 m/s`. * - `0` in a standstill situation. - * - `n (n > 0 and n < 16383)` if the applicable value n is between `0,01` and `163,82` m/s. - * - `16382` for speed values equal to or greater than 163,82 m/s. + * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than `n x 0,01 m/s`, and greater than `(n-1) x `0,01 m/s`. + * - `16382` for speed values equal to or greater than 163,81 m/s. * - `16383` if the speed accuracy information is not available. * * @unit: 0,01 m/s @@ -2522,24 +2791,23 @@ SpeedValueExtended ::= INTEGER { /** - * This DE indicates the estimated probability of a stability level and the converesely also the probability of a stability loss. + * This DE indicates the estimated probability of a stability level and converesely also the probability of a stability loss. * - * The following values are specified: - * - `0` indicates stable. - * - `n (n > 0 and n < 50)` indicates the actual stability level. - * - `50` indicates total stability. - * - the values between 51 and 62 are reserved. + * The value shall be set to: + * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable". + * - `n (n > 0 and n < 50)` to indicate the actual stability level. + * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability". + * - the values between 51 and 62 are reserved for future use. * - `63`: this value indicates that the information is unavailable. * * @unit: 2% * @category: Kinematics information * Revision: Created in V2.1.1 */ -StabilityLossProbability ::= INTEGER { - zero(0), - twoPercent (1), - hundredPercent(50), - unavailable (63) +StabilityLossProbability ::= INTEGER { + stable (0), + totalLossofStability (50), + unavailable (63) } (0..63) /** @@ -2549,7 +2817,7 @@ StabilityLossProbability ::= INTEGER { * @category: Basic information * Revision: Created in V2.1.1 */ -StandardLength::= INTEGER (0..16383) +StandardLength::= INTEGER (0..4095) --tbd check range /** * This DE represents length as a measure of distance between points or objects used in the definition of various other types. @@ -2563,11 +2831,11 @@ StandardLengthSmall::= INTEGER (0..255) /** * This DE indicates the duration in minutes since which something is stationary. * - * The following values are specified: - * - 0 `lessThan1Minute` for being stationary since less than 1 minute. - * - 1 `lessThan2Minutes` for being stationary since less than 2 minute and for equal to or more 1 minute. - * - 2 `lessThan15Minutes` for being stationary since less than 15 minutes and for equal to or more than 1 minute. - * - 3 `equalOrGreater15Minutes` for being stationary since equal to or more than 15 minutes. + * The value shall be set to: + * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. + * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more 1 minute. + * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. + * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. * * @category: Kinematics information * Revision: Created in V2.1.1 @@ -2579,9 +2847,9 @@ StationarySince ::= ENUMERATED { equalOrGreater15Minutes(3)} /** - * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle" + * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". * - * The following values are specified: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, @@ -2662,10 +2930,9 @@ StationType ::= INTEGER { * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. * The required confidence level is defined by the station applying this DE. * - * The following values are specified: + * The value shall be set to: * - `1` if the steering wheel angle accuracy is equal to or less than 1,5 degrees, - * - `n (n > 1 and n < 125)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, - * - `125` if the steering wheel angle accuracy is equal to or less than 1,5 degrees x 125 = 187,5 degrees, + * - `n (n > 1 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, * - `127` if the accuracy information is not available. * @@ -2694,19 +2961,18 @@ SteeringWheelAngleConfidence ::= INTEGER { * This DE represents the steering wheel angle of the vehicle at certain point in time. * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. * - * The following values are specified: + * The value shall be set to: * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. - * - `n (n > -511 and n < 0)` if the steering wheel angle is turning clockwise (i.e. to the right). + * - `n (n > -511 and n < 0)` if the steering wheel angle is equal to or less than `n x 1,5 degrees`, and greater than `(n-1) x 1,5 degrees`, turning clockwise (i.e. to the right). * - `0` if the steering wheel angle is in the straight position. - * - `n (n > 1 and n < 511)` if the steering wheel angle is turning counter-clockwise (i.e. to the left). - * - `511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the left. + * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than `n x 0,1 degrees`, and greater than `(n-1) x 0,1 degrees`, is turning counter-clockwise (i.e. to the left). + * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. * - `512` if information is not available. - * - * The DE is used in @ref SteeringWheelAngle DF as defined in clause A.127. + * * @unit: 1.5 degree - * Revision: Description revised in V2.1.1 + * Revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). */ -SteeringWheelAngleValue ::= INTEGER { +SteeringWheelAngleValue ::= INTEGER { straight(0), onePointFiveDegreesToRight(-1), onePointFiveDegreesToLeft(1), @@ -2714,26 +2980,26 @@ SteeringWheelAngleValue ::= INTEGER { } (-511..512) /** - * This DE indicates the sub cause of a detected event. + * This DE indicates the generic sub cause of a detected event. * * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode * * @category: Traffic information - * Revision: V1.3.1 + * Revision: Description revised in V2.1.1 (this is the generic sub cause type) */ SubCauseCodeType ::= INTEGER (0..255) /** * This DE indicates a temperature value. - * The following values are specified: + * The value shall be set to: * - `-60` for temperature equal to or less than -60 °C. * - `n (n > -60 and n < 67)` for the actual temperature n in °C. * - `67` for temperature equal to or greater than 67 °C. * * @unit: °C * @category: Basic information - * Revision: Description revised in V2.1.1 + * Revision: Editorial update in V2.1.1 */ Temperature ::= INTEGER { equalOrSmallerThanMinus60Deg (-60), @@ -2747,7 +3013,7 @@ Temperature ::= INTEGER { * which includes one leap second insertion since `2004-01-01T00:00:00.000Z`. * * @unit: millisecond - * @category: Basic Information + * @category: Basic information * Revision: V1.3.1 */ TimestampIts ::= INTEGER { @@ -2758,7 +3024,7 @@ TimestampIts ::= INTEGER { /** * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. * - * The following values are specified: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, @@ -2788,7 +3054,7 @@ TrafficConditionSubCauseCode ::= INTEGER { /** * This DE indicates traffic rules that apply to vehicles at a certain position. * - * The following values are specified: + * The value shall be set to: * - `0` if overtaking is prohibited for all vehicles. * - `1` if overtaking is prohibited for trucks. * - `2` if vehicles should pass to the right lane. @@ -2806,10 +3072,10 @@ TrafficRule ::= ENUMERATED { /** * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. * - * The following values are specified: - * - `n (n >= 0 and n <= 50)` indicates the actual stability level. + * The value shall be set to: + * - `n (n >= 0 and n <= 50)` to indicate the actual stability level. * - the values between 51 and 62 are reserved. - * - `63`: this value indicates that the information is unavailable. + * - `63`: to indicate that the information is unavailable. * * @category: Kinematics information * Revision: Created in V2.1.1 @@ -2824,11 +3090,11 @@ TrajectoryInterceptionProbability ::= INTEGER { /** * This DE defines the confidence level of the trajectoryInterceptionProbability. * - * The following values are specified: - * - `0` indicates less than 50 % - * - `1`indicates greater than or equal to 50 % and less than 70 %. - * - `2`indicates greater than or equal to 70 % and less than 90 %. - * - `3` indicates greater than or equal to 90%. + * The value shall be set to: + * - `0` to indicate confidence less than 50 % + * - `1` to indicate confidence greater than or equal to 50 % and less than 70 %. + * - `2` to indicate confidence greater than or equal to 70 % and less than 90 %. + * - `3` to indicate confidence greater than or equal to 90%. * * @category: Kinematics information * Revision: Created in V2.1.1 @@ -2837,12 +3103,13 @@ TrajectoryInterceptionConfidence ::= INTEGER { lessthan50percent(0), between50and70Percent(1), between70and90Percent(2), - above90Percent(3) } (0..3) + above90Percent(3) +} (0..3) /** * This DE provides the turning direction. * - * The following values are specified: + * The value shall be set to: * - `left` for turning to te left. * - `right`for turing to the right. * @@ -2857,16 +3124,16 @@ TurningDirection::= ENUMERATED { /** * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. * - * The following values are specified: - * - `n (n >= 0 and n <= 253)` indicates the applicable value in the range of 1 to 253 meters. - * - `254` indicates that the turning radius is equal to or greater than 254 x 0.4 metre = 101.6 metres. + * The value shall be set to: + * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than `n x 0,4 meter`, and greater than `(n-1) x 0,4 meters`. + * - `254` indicates that the turning radius is greater than 253 x 0.4 metre = 101.2 metres. * - `255` indicates that the information is unavailable. * * For vehicle with tracker, the turning radius applies to the vehicle only. * * @category: Vehicle information * @unit 0.4 metre - * Revision: Description revised in V2.1.1 + * Revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) */ TurningRadius ::= INTEGER { point4Meters(1), @@ -2884,7 +3151,7 @@ VDS ::= IA5String (SIZE(6)) /** * This DE represents the value of the sub cause codes of the @CauseCode `vehicleBreakdown`. * - * The following values are specified: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, @@ -2895,7 +3162,8 @@ VDS ::= IA5String (SIZE(6)) * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, * - 8 `tyrePuncture` : in case vehicle break down is caused by tire puncture, * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, - * - 10-255: reserved for future usage. + * - 10 `vehicleOnFire` : in case the vehicle is on fire, + * - 11-255: reserved for future usage. * * @category: Traffic information @@ -2927,12 +3195,12 @@ VehicleHeight ::= INTEGER (0..127) /** * This DE provides information about the presence of a trailer. * - * The following values are specified: - * - 0 `noTrailerPresent`: indicates that no trailer is present. - * - 1 `trailerPresentWithKnownLength`: indicates that a trailer is present and the length is included in a reported vehicle length value. - * - 2 `trailerPresentWithUnknownLength`: indicates that a trailer is present and the length is not included in a reported vehicle length value. - * - 3 `trailerPresenceIsUnknown`: indicates that the trailer presence is unknown. - * - 4 `unavailable`: indicates that the information is not known. + * The value shall be set to: + * - 0 `noTrailerPresent` : to indicate that no trailer is present. + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer is present and the length is included in a reported vehicle length value. + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer is present and the length is not included in a reported vehicle length value. + * - 3 `trailerPresenceIsUnknown` : to indicate that the trailer presence is unknown. + * - 4 `unavailable` : to indicate that the information is not known. * * @category: Vehicle information * Revision: Editorial update in V2.1.1 @@ -2947,15 +3215,15 @@ VehicleLengthConfidenceIndication ::= ENUMERATED { /** * This DE represents the length of a vehicle. * - * The following values are specified: - * - `n (n > 1 and n < 1023)` indicates the applicable value n in the range of 1 cm and 102,2 meters. - * - `1 022`indicates that the vehicle length is equal to or greater than 102.2 metres. - * - `1 023`indicates that the information in unavailable. + * The value shall be set to: + * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than `n x 0,1 meter`, and greater than `(n-1) x 0,1 meter`. + * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. + * - `1 023` to indicate that the information in unavailable. * * * @unit: 0.1 metre * @category: Vehicle information - * Revision: Editorial update in V2.1.1 + * Revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). */ VehicleLengthValue ::= INTEGER { tenCentimeters(1), @@ -2966,16 +3234,16 @@ VehicleLengthValue ::= INTEGER { /** * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. * - * The following values are specified: - * - `n (n > 1 and n < 1023)` indicates applicable value in the range of 100 kg and 102 200 kg. - * - `1 023` indicates that the vehicle mass is equal to or greater than `102 300 kg`. + * The value shall be set to: + * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than `n x 100 kg`, and greater than `(n-1) x 100 kg`. + * - `1 023` indicates that the vehicle mass is greater than `102 200 kg`. * - `1 024` indicates the vehicle mass information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * * @unit: 100kg * @category: Vehicle information - * Revision: Editorial update in V2.1.1 + * Revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). */ VehicleMass ::= INTEGER { hundredKg(1), @@ -2984,29 +3252,26 @@ VehicleMass ::= INTEGER { /** * This DE indicates the role played by a vehicle at a point in time. * - * The following values are specified: - * - 0 `default`: default vehicle role as indicated by the vehicle type, - * - 1 `publicTransport`: vehicle is used to operate public transport service, - * - 2 `specialTransport`: vehicle is used for special transport purpose, e.g. oversized trucks, - * - 3 `dangerousGoods`: vehicle is used for dangerous goods transportation, - * - 4 `roadWork`: vehicle is used to realize roadwork or road maintenance mission, - * - 5 `rescue`: vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, - * - 6 `emergency`: vehicle is used for emergency mission, e.g. ambulance, fire brigade, - * - 7 `safetyCar`: vehicle is used for public safety, e.g. patrol, - * - 8 `agriculture`: vehicle is used for agriculture, e.g. farm tractor as defined - * in CEN/TS 16157-3 [3], annex A, table A.137, - * - 9 `commercial`: vehicle is used for transportation of commercial goods as defined - * in CEN/TS 16157-3 [3], annex A, table A.137, - * - 10 `military`: vehicle is used for military purpose as defined in CEN/TS 16157-3 [3], annex A, table A.137, - * - 11 `roadOperator`: vehicle is used in road operator missions as defined in CEN/TS 16157-3 [3], annex A, table A.137, - * - 12 `taxi`: vehicle is used to provide an authorized taxi service as defined - * in CEN/TS 16157-3 [3], annex A, table A.137, - * - 13 `reserved`: reserved for future usage, - * - 14 `reserved`: reserved for future usage, - * - 15 `reserved`: reserved for future usage. + * The value shall be set to: + * - 0 `default` : to indicate the default vehicle role as indicated by the vehicle type, + * - 1 `publicTransport` : to indicate that the vehicle is used to operate public transport service, + * - 2 `specialTransport` : to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, + * - 3 `dangerousGoods` : to indicate that the vehicle is used for dangerous goods transportation, + * - 4 `roadWork` : to indicate that the vehicle is used to realize roadwork or road maintenance mission, + * - 5 `rescue` : to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, + * - 6 `emergency` : to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, + * - 7 `safetyCar` : to indicate that the vehicle is used for public safety, e.g. patrol, + * - 8 `agriculture` : to indicate that the vehicle is used for agriculture, e.g. farm tractor, + * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, + * - 10 `military` : to indicate that the vehicle is used for military purpose, + * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, + * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service, + * - 13 `reserved` : reserved for future usage, + * - 14 `reserved` : reserved for future usage, + * - 15 `reserved` : reserved for future usage. * * @category: Vehicle Information - * Revision: V1.3.1 + * Revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) */ VehicleRole ::= ENUMERATED { default(0), @@ -3029,21 +3294,21 @@ VehicleRole ::= ENUMERATED { /** * This DE describes the subclass of a vehicle. * - * The following values are specified: - * - `0` unknown : indicates that the type of vehicle is unknown. - * - `1` passengerCar : indicates a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. - * - `2` bus : indicates a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. - * - `3` lightTruck : indicates a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. - * - `4` heavyTruck : indicates a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. - * - `5` trailer : indicates an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. - * - `6` specialVehicles : indicates a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). - * - `7` tram : indicates a vehicle running on tracks along public streets. - * - `8` emergencyVehicle : indicates a vehicle used in an emergency situation such as an ambulance, police car or fire engine. - * - `9` agricultural : indicates a vehicle used for agricultural purposes. + * The value shall be set to: + * - `0` unknown : to indicate that the type of vehicle is unknown. + * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. + * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. + * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. + * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. + * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. + * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). + * - `7` tram : to indicate a vehicle running on tracks along public streets. + * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. + * - `9` agricultural : to indicate a vehicle used for agricultural purposes. * - Values 10 to 255 are reserved for future use. * * @category: Vehicle information - * Revision: V1.3.1 + * Revision: Created in V2.1.1 */ VehicleSubclass ::= INTEGER { unknown (0), @@ -3061,14 +3326,14 @@ VehicleSubclass ::= INTEGER { /** * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. - * The following values are specified: - * - `n (n > 1 and n < 61)` indicates the applicable value n in the range of 10 cm and 6,1 meters. - * - `61`indicates that the vehicle width is equal to or greater than 6,1 metres. + * The value shall be set to: + * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than `n x 0,1 meter`, and greater than `(n-1) x 0,1 meter`. + * - `61`indicates that the vehicle width is greater than 6,0 metres. * - `62`indicates that the information in unavailable. * * @unit: 0.1 metre * @category: Vehicle information - * Revision: Editorial update in V2.1.1 + * Revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). */ VehicleWidth ::= INTEGER { tenCentimeters(1), @@ -3080,25 +3345,22 @@ VehicleWidth ::= INTEGER { * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. * - * The following values are specified: - * - `n (n > -160 and n < 0)` indicates the vehicle is accelerating downwards. - * - `0`indicates that the vehicle is not accelerating vertically. - * - `n (n > 1 and n < 160)` that the vehicle is accelerating upwards. - * - `160`indicates that the upwards acceleration is equal to or greater than 16 m/s2. - * - `161`indicates that the information in unavailable. + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n < 0)` to indicate downwards acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `0` indicates zero acceleration. + * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * * @category: Vehicle information * @unit: 0.1 m/s2 - * Revision: Editorial update in V2.1.1 + * Revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. * */ -VerticalAccelerationValue ::= INTEGER { - pointOneMeterPerSecSquaredUp(1), - pointOneMeterPerSecSquaredDown(-1), - unavailable(161) -} (-160 .. 161) +VerticalAccelerationValue ::= AccelerationValue /** * This DE Identifies all the VRU profile types that are believed to be within a cluster. @@ -3125,17 +3387,17 @@ VruClusterProfiles ::= BIT STRING { /** * This DE represents the possible VRU usage conditions. - * - The following values are specified: - * - 0 `unavailable` : indicates that the usage conditions are unavailable. - * - 0 `other (1)` : indicates that the VRU is in a state not defined below. - * - 0 `idle (2)` : indicates that the human is currently not interacting with the device. - * - 0 `listeningToAudio` : indicates that any audio source other than calling is in use. - * - 0 `typing (4)` : indicates that the human is texting, entering addresses and other manual input activity. - * - 0 `calling (5)` : indicates that the VRU device is currently received a call. - * - 0 `playingGames (6)` : indicates that the human spoiling his time by playing games. - * - 0 `reading (7)` : indicates that the human is reading on the VRU device. - * - 0 `viewing (8)` : indicates that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, - * - value 9 to 255: reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. + * - The value shall be set to: + * - 0 `unavailable` : to indicate that the usage conditions are unavailable. + * - 1 `other (1)` : to indicate that the VRU is in a state not defined below. + * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device. + * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use. + * - 4 `typing (4)` : to indicate that the human is texting, entering addresses and other manual input activity. + * - 5 `calling (5)` : to indicate that the VRU device is currently received a call. + * - 6 `playingGames (6)` : to indicate that the human is playing games. + * - 7 `reading (7)` : to indicate that the human is reading on the VRU device. + * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, + * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. * * @category: VRU information * Revision: Created in V2.1.1 @@ -3156,13 +3418,14 @@ VruDeviceUsage ::= ENUMERATED { /** * This DE represents the possible VRU environment conditions. * - * - The following values are specified: - * - 0 `unavailable` : indicates that the information on the type of environment is unavailable, - * - 1 `intersectionCrossing` : indicates that the VRU is on an intersection or crossing. - * - 2 `zebraCrossing` : indicates that the VRU is on a zebra crossing (crosswalk). - * - 3 `sidewalk` : indicates that the VRU is on a sidewalk. - * - 4 `onVehicleRoad` : indicates that the VRU is on a traffic lane. - * - value 6 to 255: reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * - The value shall be set to: + * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, + * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing. + * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). + * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. + * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. + + - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * Revision: Created in V2.1.1 @@ -3180,15 +3443,15 @@ VruEnvironment ::= ENUMERATED { /** * This DE indicates the status of the possible human control over a VRU vehicle. * - * The following values are specified: - * - 0 `unavailable` : indicates that the information on is unavailable. - * - 1 `braking` : indicates that the VRU is braking. - * - 2 `hardBraking` : indicates that the VRU is braking hard. - * - 3 `stopPedaling` : indicates that the VRU stopped pedaling. - * - 4 `brakingAndStopPedaling` : indicates that the VRU stopped pedaling an is braking. - * - 5 `hardBrakingAndStopPedaling` : indicates that the VRU stopped pedaling an is braking hard. - * - 6 `noReaction` : indicates that the VRU is not changing its behavior. - * - value 5 to 255: reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information on is unavailable. + * - 1 `braking` : to indicate that the VRU is braking. + * - 2 `hardBraking` : to indicate that the VRU is braking hard. + * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling. + * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking. + * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard. + * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. + * - value 7 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * Revision: Created in V2.1.1 @@ -3207,12 +3470,12 @@ VruMovementControl ::= ENUMERATED { /** * This DE indicates the profile of a pedestrian. * - * The following values are specified: - * - 0 `unavailable` : indicates that the information on is unavailable. - * - 1 `ordinary-pedestrian` : indicates a pedestrian to which no more-specific profile applies. - * - 2 `road-worker` : indicates a pedestrian with the role of a road worker. - * - 3 `first-responder` : indicates a pedestrian with the role of a first responder. - * - value 4 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information on is unavailable. + * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies. + * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker. + * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * Revision: Created in V2.1.1 @@ -3226,19 +3489,19 @@ VruSubProfilePedestrian ::= ENUMERATED { } /** - * This DE indicates the profile of a VRU and its light VRU vehicle / animal. + * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. * - * The following values are specified: - * - 0 `unavailable` : indicates that the information is unavailable. - * - 1 `bicyclist ` : indicates a cycle and bicyclist. - * - 2 `wheelchair-user` : indicates a wheelchair and its user. - * - 3 `horse-and-rider` : indicates a horse and rider. - * - 4 `rollerskater` : indicates a rolleskater and skater. - * - 5 `e-scooter` : indicates an e-scooter and rider. - * - 6 `personal-transporter` : indicates a personal-transporter. - * - 7 `pedelec` : indicates a pedelec and rider. - * - 8 `speed-pedelec` : indicates a speed-pedelec rider. - * - value 9 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information is unavailable. + * - 1 `bicyclist ` : to indicate a cycle and bicyclist. + * - 2 `wheelchair-user` : to indicate a wheelchair and its user. + * - 3 `horse-and-rider` : to indicate a horse and rider. + * - 4 `rollerskater` : to indicate a rolleskater and skater. + * - 5 `e-scooter` : to indicate an e-scooter and rider. + * - 6 `personal-transporter` : to indicate a personal-transporter and rider. + * - 7 `pedelec` : to indicate a pedelec and rider. + * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. + * - value 9 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * Revision: Created in V2.1.1 @@ -3259,13 +3522,13 @@ VruSubProfileBicyclist ::= ENUMERATED { /** * This DE indicates the profile of a motorcyclist and corresponding vehicle. * - * The following values are specified: - * - 0 `unavailable ` : indicates that the information is unavailable. - * - 1 `moped (1)` : indicates a moped and rider. - * - 2 `motorcycle` : indicates a motorcycle and rider. - * - 3 `motorcycle-and-sidecar-right` : indicates a motorcycle with sidecar on the right and rider. - * - 4 `motorcycle-and-sidecar-left` : indicates a motorcycle with sidecar on the left and rider. - * - value 5 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * The value shall be set to: + * - 0 `unavailable ` : to indicate that the information is unavailable. + * - 1 `moped (1)` : to indicate a moped and rider. + * - 2 `motorcycle` : to indicate a motorcycle and rider. + * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider. + * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. + * - value 5 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * Revision: Created in V2.1.1 @@ -3282,12 +3545,12 @@ VruSubProfileMotorcyclist ::= ENUMERATED { /** * This DE indicates the profile of a animal * - * The following values are specified: - * - 0 `unavailable` : indicates that the information is unavailable. - * - 1 `wild-animal` : indicates a animal living in the wildness. - * - 2 `farm-animal` : indicates an animal beloning to a farm. - * - 3 `service-animal` : indicates an animal that supports a human being. - * - value 4 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information is unavailable. + * - 1 `wild-animal` : to indicate a animal living in the wildness. + * - 2 `farm-animal` : to indicate an animal beloning to a farm. + * - 3 `service-animal` : to indicate an animal that supports a human being. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * Revision: Created in V2.1.1 @@ -3303,17 +3566,17 @@ VruSubProfileAnimal ::= ENUMERATED { /** * This DE indicates the approximate size of a VRU including the VRU vehicle used. * - * The following values are specified: - * - 0 `unavailable(0): There is no matched size class or due to privacy reasons in profile 1. - * - 1 `low (1): the VRU size class is low depending on the VRU profile.. - * - 2 `medium (2): the VRU size class is medium depending on the VRU profile. - * - 3 `high (3): the VRU size class is high depending on the VRU profile. - * - value 4 to 15: reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * The value shall be set to: + * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1. + * - 1 `low (1)` : the VRU size class is low depending on the VRU profile. + * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile. + * - 3 `high (3)` : the VRU size class is high depending on the VRU profile. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * Revision: Created in V2.1.1 */ -VruSizeClass ::= ENUMERATED { +VruSizeClass ::= ENUMERATED { unavailable (0), low(1), medium(2), @@ -3324,15 +3587,16 @@ VruSizeClass ::= ENUMERATED { /** * This DE describes the status of the exterior light switches of a vehicle or a VRU. * The DE is an extension of the existing vehicular DE ExteriorLight. + * * The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU or automatically by a vehicle or VRU system. + * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU or automatically by a vehicle or VRU system: * - 0 `unavailable` : indicates no information available. * - 1 `backFlashLight ` : indicates the status of the back flash light. * - 2 `helmetLight` : indicates the status of the helmet light. * - 3 `armLight` : indicates the status of the arm light. * - 4 `legLight` : indicates the status of the leg leight. * - 5 `wheelLight` : indicates the status of the wheel light. - * - Bits 6 to 8: reserved for future use. + * - Bits 6 to 8 : reserved for future use. * The bit values do not indicate if the corresponding lamps are alight or not. * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. * @@ -3351,9 +3615,9 @@ VruSpecificExteriorLights ::= BIT STRING { /** * Perpendicular distance between front and rear axle of the wheel base of vehicle. * - * The following values are specified: - * - `n (n > 1 and n < 126)` if the value is equal to or less than `n x 0.1 metres` and more than `(n-1) x 0.1 metres`. - * - `126` indicates that the wheel base distance is equal to or greater than 12.6 metres. + * The value shall be set to: + * - `n (n >= 1 and n < 126)` if the value is equal to or less than `n x 0.1 metres` and more than `(n-1) x 0.1 metres`. + * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. * - `127` indicates that the information is unavailable. * * @unit 0.1 metre @@ -3368,9 +3632,8 @@ WheelBaseVehicle ::= INTEGER { * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. * The required confidence level is defined by the corresponding standards applying this DE. * - * The following values are specified: - * - `1` if the angle accuracy is equal to or less than `0,1 degrees`. - * - `n (n > 1 and n < 126)` if the speed accuracy is equal to or less than `n degrees`. + * The value shall be set to: + * - `n (n >=1 and n < 126)` is equal to or less than `n x 0.1 degrees` and more than `(n-1) x 0.1 degrees`. * - `126` if the angle accuracy is out of range, i.e. greater than `12,5 degrees`. * - `127` if the angle accuracy information is not available. * @@ -3407,17 +3670,18 @@ Wgs84AngleValue ::= INTEGER { * * * @category: Vehicle information + * Revision: V1.3.1 */ WMInumber ::= IA5String (SIZE(1..3)) /** * This DE represents the sub cause codes of the @?CauseCode `wrongWayDriving` . * - * The following values are specified: - * - 0 `unavailable`: in case further detailed information on wrong way driving event is unavailable, - * - 1 `wrongLane`: in case vehicle is driving on a lane for which it has no authorization to use, - * - 2 `wrongDirection`: in case vehicle is driving in a direction that it is not allowed, - * - 3-255 reserved for future usage. + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on wrong way driving event is unavailable, + * - 1 `wrongLane` : in case vehicle is driving on a lane for which it has no authorization to use, + * - 2 `wrongDirection` : in case vehicle is driving in a direction that it is not allowed, + * - 3-255 : reserved for future usage. * * @category: Traffic information * Revision: V1.3.1 @@ -3431,7 +3695,7 @@ WrongWayDrivingSubCauseCode ::= INTEGER { /** * This DE denotes the absolute accuracy range for reported yaw rate value for a confidence level of 95%. * - * The following value are specified: + * The value shall be set to: * - `0` indicates that the accuracy is equal to or less than 0,01 degree/second. * - `1` indicates that the accuracy is equal to or less than 0,05 degrees/second. * - `2` indicates that the accuracy is equal to or less than 0,1 degree/second. @@ -3469,16 +3733,15 @@ YawRateConfidence ::= ENUMERATED { /** * This DE represents the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded - * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. The leading sign denotes the direction of rotation. * - * The following value are specified: - * - The leading sign denotes the direction of rotation. - * - `-32 766` indicates that the yaw rate is equal to or greater than 327,66 degrees/second to the right. - * - `n (n > -32 766 and n < 0)` indicates that the rotation is clockwise (i.e. to the right). + * The value shall be set to: + * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. + * - `n (n > -32 766 and n < 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than `n x 0,01 degrees/s`, and greater than `(n-1) x 0,01 degrees/s`.. * - `0` indicates that there is no rotation. - * - `n (n > 0 and n < 32 766)` indicates that the rotation is anti-clockwise (i.e. to the left). - * - `32 766` indicates that the yaw rate is equal to or greater than 327.66 degrees/second to the left. - * - `32 767` indicates that the information is not available. + * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than `n x 0,01 degrees/s`, and greater than `(n-1) x 0,01 degrees/s`. + * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. + * - `32 767` to indicate that the information is not available. * * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. * The reading instant should be the same as for the vehicle acceleration. @@ -3487,7 +3750,7 @@ YawRateConfidence ::= ENUMERATED { * * @unit: 0,01 degree per second. * @category: Vehicle Information - * Revision: Editorial update in V2.1.1 + * Revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). */ YawRateValue ::= INTEGER { straight(0), @@ -3501,7 +3764,9 @@ YawRateValue ::= INTEGER { ---------------------------------------- /** - * This DF represents general Data Frame to describe an acceleration component along with a confidence with a predefined confidence level of 95% for the component. + * This DF represents an acceleration component along with a confidence with a predefined confidence level of 95% for the component. + * + * It includes the following components: * * @field value: the acceleration value which can be estimated as the mean of the current distribution. * @@ -3518,6 +3783,8 @@ Acceleration1d ::= SEQUENCE { /** * This DF represents information associated to changes in acceleration. * + * It includes the following components: + * * @field accelOrDecel: the indication of an acceleration change. * * @field value actionDeltaTime: the period in which the acceleration change action is performed. @@ -3534,7 +3801,8 @@ AccelerationChangeIndication ::= SEQUENCE { /** * This DF represents an identifier used to describe a protocol action taken by an ITS-S. * - * + * It includes the following components: + * * @field originatingStationID: ID of the ITS-S that takes the action. * * @field sequenceNumber: a sequence number. @@ -3550,6 +3818,8 @@ ActionID ::= SEQUENCE { /** * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. * + * It includes the following components: + * * @field altitudeValue: altitude of a geographical point. * * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. @@ -3562,35 +3832,12 @@ Altitude ::= SEQUENCE { altitudeConfidence AltitudeConfidence } -/** - * This DF provides the definition of a geographical area, based on different options. - * - * @field rectangle: definition of an area of rectangular shape. - * - * @field circle: definition of an area of cicrular shape. - * - * @field polygon: definition of an area of polygonal shape. - * - * @field ellipse: definition of an area of ellipse shape. - * - * @category: GeoReference information - * Revision: Created in V2.1.1 - */ - -Area::= CHOICE { - rectangle RectangularArea, - circle CircularArea, - polygon PolygonalArea, - ellipse EllipticalArea, - radial RadialArea, - -- radialVehicle - ... -} - /** * This DE represents a general container for usage in various types of messages. * - * @field stationType: The type of station that has generated the message that contains the basic container. + * It includes the following components: + * + * @field stationType: the type of station that has generated the message that contains the basic container. * * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. * @@ -3604,12 +3851,13 @@ BasicContainer ::= SEQUENCE { } /** - * This DF represents a general Data Frame to describe an angle component along with a confidence with a predefined - * confidence level of 95% for the component in a Cartesian coordinate system. + * This DF represents a general Data Frame to describe an angle component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: * * @field value: The angle value which can be estimated as the mean of the current distribution. * - * @field confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * @field confidence: The accuracy associated to the provided value. * * @category: Kinematics information * Revision: Created in V2.1.1 @@ -3620,12 +3868,13 @@ CartesianAngle ::= SEQUENCE { } /** - * This DF represents a general Data Frame to describe an angular speed component along with a confidence with a predefined - * confidence level of 95% for the component in a Cartesian coordinate system. + * This DF represents a general Data Frame to describe an angular speed component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: * * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. * - * @field confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * @field confidence: The accuracy associated to the provided value. * * @category: Kinematics information * Revision: Created in V2.1.1 @@ -3636,12 +3885,13 @@ CartesianAngularSpeed ::= SEQUENCE { } /** - * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence with a predefined - * confidence level of 95% for the component in a Cartesian coordinate system. + * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: * * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. * - * @field confidence: The accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * @field confidence: The accuracy associated to the provided value. * * @category: Kinematics information * Revision: Created in V2.1.1 @@ -3654,6 +3904,8 @@ CartesianAngularAcceleration ::= SEQUENCE { /** * This DF is a representation of the cause code value of a traffic event. * + * It includes the following components: + * * @field causeCode: the main cause of a detected event. * * @field subCauseCode: the subordinate cause of a detected event. @@ -3661,6 +3913,8 @@ CartesianAngularAcceleration ::= SEQUENCE { * The semantics of the entire DF are completely defined by the component causeCode. * The interpretation of the subCauseCode may provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. + * * @category: Traffic information * Revision: Editorial update in V2.1.1 */ @@ -3673,11 +3927,13 @@ CauseCode ::= SEQUENCE { /** * This DF is an alternative representation of the cause code value of a traffic event. * + * It includes the following components: + * * @field causeCode: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. * * The semantics of the entire DF are completely defined by the component causeCode. * The interpretation of the subCauseCode may provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. - * + * * @category: Traffic information * Revision: Created in V2.1.1 */ @@ -3687,7 +3943,7 @@ CauseCodeV2 ::= SEQUENCE { reserved SubCauseCodeType, trafficCondition TrafficConditionSubCauseCode, accident AccidentSubCauseCode, - roadworks-3 RoadworksSubCauseCode, + roadworks RoadworksSubCauseCode, reserved4 SubCauseCodeType, impassability SubCauseCodeType, adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, @@ -3784,7 +4040,7 @@ CauseCodeV2 ::= SEQUENCE { collisionRisk CollisionRiskSubCauseCode, signalViolation SignalViolationSubCauseCode, dangerousSituation DangerousSituationSubCauseCode, - reserved100 SubCauseCodeType, + railwayLevelCrossing RailwayLevelCrossingSubCauseCode, reserved101 SubCauseCodeType, reserved102 SubCauseCodeType, reserved103 SubCauseCodeType, @@ -3819,6 +4075,8 @@ CauseCodeV2 ::= SEQUENCE { /** * The DF describes the position of a CEN DSRC road side equipment. + * + * It includes the following components: * * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. * @@ -3838,22 +4096,31 @@ CenDsrcTollingZone ::= SEQUENCE { /** * - * This DF defines a circular area that is centred on a reference position defined outside of the context of this DF. + * This DF represents the shape of a circular area or a right cylinder that is centred on a reference position defined outside of the context of this DF. + * + * It includes the following components: * - * @field centerPoint: optional offset point which the rectangle is centred on with respect to the reference position. + * @field nodeCenterPoint: optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field radius: the radius of the circular area. + * + * @field height: the optional height, present if the shape is a right cylinder extending in the positive z-axis. * - * @field radius: the radius of the circular area, using the DE StandardLength. * * @category: GeoReference information * Revision: Created in V2.1.1 */ -CircularArea ::= SEQUENCE { +CircularShape ::= SEQUENCE { nodeCenterPoint CartesianPosition3d OPTIONAL, - radius StandardLength + radius StandardLength, + height StandardLength OPTIONAL, + ... } /** * This DF indicates the opening/closure status of a lane or a set of lanes. + * + * It includes the following components: * * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. * It indicates the open/closing status of inner hard shoulder lanes. @@ -3871,12 +4138,14 @@ CircularArea ::= SEQUENCE { ClosedLanes ::= SEQUENCE { innerhardShoulderStatus HardShoulderStatus OPTIONAL, outerhardShoulderStatus HardShoulderStatus OPTIONAL, - drivingLaneStatus DrivingLaneStatus OPTIONAL, + drivingLaneStatus DrivingLaneStatus OPTIONAL, ... } /** - * The DF provides information about the breakup of a cluster. + * This DF provides information about the breakup of a cluster. + * + * It includes the following components: * * @field clusterBreakupReason: indicates the reason for breakup. * @@ -3887,12 +4156,14 @@ ClosedLanes ::= SEQUENCE { */ ClusterBreakupInfo ::= SEQUENCE { clusterBreakupReason ClusterBreakupReason, - breakupTime ClusterOpTimestamp, + breakupTime DeltaTimeQuarterSecond, ... } /** - * The DF provides information about the joining of a cluster. + * This DF provides information about the joining of a cluster. + * + * It includes the following components: * * @field clusterId: indicates the identifier of the cluster. * @@ -3903,12 +4174,14 @@ ClusterBreakupInfo ::= SEQUENCE { */ ClusterJoinInfo ::= SEQUENCE { clusterId ClusterId, - joinTime ClusterOpTimestamp, + joinTime DeltaTimeQuarterSecond, ... } /** * The DF provides information about the leaving of a cluster. + * + * It includes the following components: * * @field clusterId: indicates the cluster. * @@ -3932,11 +4205,13 @@ ClusterLeaveInfo ::= SEQUENCE { * @category: Sensing Information * Revision: Created in V2.1.1 */ -CorrelationColumn ::= SEQUENCE SIZE (1..17) OF CorrelationRowValue -- tbd extension to be defined? +CorrelationColumn ::= SEQUENCE SIZE (1..17) OF CorrelationRowValue /** * This DF represents the curvature of the vehicle trajectory and the accuracy. * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. + * + * It includes the following components: * * @field curvatureValue: Detected curvature of the vehicle trajectory. * @@ -3952,8 +4227,10 @@ Curvature ::= SEQUENCE { /** * This DF provides a description of dangerous goods being carried by a heavy vehicle. + * + * It includes the following components: * - * @field dangerousGoodsType: Type of dangerous goods, I + * @field dangerousGoodsType: Type of dangerous goods. * * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], @@ -3968,14 +4245,13 @@ Curvature ::= SEQUENCE { * If yes, the value shall be set to TRUE, * * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency - * service should deal with an incident. This DE is optional; it shall be present if the information is available, + * service should deal with an incident. This component is optional; it shall be present if the information is available, * * @field phoneNumber: contact phone number of assistance service in case of incident or accident. - * This DE is optional, it shall be present if the information is available. - * It shall be presented as defined in clause A.135, + * This component is optional, it shall be present if the information is available. * * @field companyName: name of company that manages the transportation of the dangerous goods. - * This DE is optional; it shall be present if the information is available. + * This component is optional; it shall be present if the information is available. * * @category Vehicle information * Revision: V1.3.1 @@ -3992,16 +4268,16 @@ DangerousGoodsExtended ::= SEQUENCE { ... } - - /** * This DF represents a position in a two- or three-dimensional cartesian coordinate system. * - * @field xCoordinate: the X coordinate value using the DE CartesianCoordinate. + * It includes the following components: + * + * @field xCoordinate: the X coordinate value. * - * @field yCoordinate: the Y coordinate value using the DE CartesianCoordinate. + * @field yCoordinate: the Y coordinate value. * - * @field xCoordinate: the optional Z coordinate value using the DE CartesianCoordinate. + * @field zCoordinate: the optional Z coordinate value. * * @category: GeoReference information * Revision: Created in V2.1.1 @@ -4009,29 +4285,31 @@ DangerousGoodsExtended ::= SEQUENCE { CartesianPosition3d::=SEQUENCE{ xCoordinate CartesianCoordinate, yCoordinate CartesianCoordinate, - zCoordinate CartesianCoordinate OPTIONAL -- tbd keep optional? + zCoordinate CartesianCoordinate OPTIONAL } - /** * This DF represents a coordinate in a cartesian reference system + * + * It includes the following components: * * @field value: the coordinate value which can be estimated as the mean of the current distribution. * - * @field confidence: the coordinate accuracy associated to the provided value at a predefined confidence level of 95%. + * @field confidence: the coordinate accuracy associated to the provided value. * * @category: GeoReference information * Revision: Created in V2.1.1 */ CartesianCoordinateWithConfidence ::= SEQUENCE { - value CartesianCoordinate, + value CartesianCoordinateExtended, confidence CoordinateConfidence } - /** * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. * + * It includes the following components: + * * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. * * @field deltaLongitude: A delta longitude offset with regards to the longitude value of the reference position. @@ -4048,7 +4326,7 @@ DeltaReferencePosition ::= SEQUENCE { } /** - * This DF represnets a portion of digital map, described using a list of waypoints @ref ReferencePosition. + * This DF represents a portion of digital map, described using a list of waypoints @ref ReferencePosition. * * @category: GeoReference information * Revision: V1.3.1 @@ -4057,34 +4335,81 @@ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition /** * - * This DF represents an elliptical area that is centred on a reference position which is defined outside of the context of this DF. + * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on a reference position which is defined outside of the context of this DF. + * + * It includes the following components: * - * @field centerPoint: optional offset point which the rectangle is centred on with respect to the reference position. + * @field centerPoint: optional offset point which the ellipse is centred on with respect to the reference position. * - * @field semiMajorAxisLenght: half length of the major axis of the ellipse. + * @field semiMajorAxisLength: half length of the major axis of the ellipse. * - * @field semiMinorAxisLenght: half length of the minor axis of the ellipse. + * @field semiMinorAxisLength: half length of the minor axis of the ellipse. * * @field orientation: orientation of the major axis of the ellipse in the WGS84 coordinate system. - + * + * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. + * * @category: GeoReference information * Revision: Created in V2.1.1 */ -EllipticalArea ::= SEQUENCE { +EllipticalShape ::= SEQUENCE { centerPoint CartesianPosition3d OPTIONAL, - semiMajorAxisLenght StandardLength, - semiMinorAxisLenght StandardLength, - orientation Wgs84AngleValue - -- semiHeight SemiRangeLength OPTIONAL + semiMajorAxisLength StandardLength, + semiMinorAxisLength StandardLength, + orientation Wgs84AngleValue, + height StandardLength OPTIONAL, + ... } +/** + * + * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * The following options are available: + * + * @field euVehicleCategoryL: indicates a vehicle in the L category. + * + * @field euVehicleCategoryM: indicates a vehicle in the M category. + * + * @field euVehicleCategoryN: indicates a vehicle in the N category. + * + * @field euVehicleCategoryO: indicates a vehicle in the O category. + * + * @field euVehicleCategoryT: indicates a vehicle in the T category. + * + * @field euVehicleCategoryG: indicates a vehicle in the G category. + * + * @category: Vehicle information + * Revision: Created in V2.1.1 +*/ +EuVehicleCategoryCode ::= CHOICE { + euVehicleCategoryL EuVehicleCategoryL, + euVehicleCategoryM EuVehicleCategoryM, + euVehicleCategoryN EuVehicleCategoryN, + euVehicleCategoryO EuVehicleCategoryO, + euVehicleCategoryT NULL, + euVehicleCategoryG NULL + } + /** - * The DF consists of a list of @Ref EventPoint. - * The eventPosition of each @Ref EventPoint is defined with respect to the previous @Ref EventPoint in the list. - * Except for the first @Ref EventPoint which is defined with respect to a position outside of the context of this DF. + * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime or do not contain the COMPONENT eventDeltaTime. + * The eventPosition of each @ref EventPoint is defined with respect to the previous @Ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. * * @category: GeoReference information, Traffic information + * Revision: created in V2.1.1 based on EventHistory + */ +EventZone::= EventHistory + ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | + (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) + +/** + * The DF consists of a list of @ref EventPoint. + * The eventPosition of each @ref EventPoint is defined with respect to the previous @Ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref EventZone instead. * Revision: Generalized the semantics in V2.1.1 */ EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint @@ -4092,6 +4417,8 @@ EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint /** * This DF provides information related to an event at a defined position. + * + * It includes the following components: * * @field eventPosition: offset position of a detected event point to a defined position. * @@ -4110,12 +4437,14 @@ EventPoint ::= SEQUENCE { /** * This DF represents the status of the exterior light switches of a traffic participant. + * + * It includes the following components: * * @field vehicular: represents the status of the exterior light switches of a road vehicle. * * @field vruSpecific: represents the status of the exterior light switches of a VRU. * - * @category: tbd + * @category: VRU information * Revision: created in V2.1.1 */ ExteriorLightsExtended ::= SEQUENCE { @@ -4152,13 +4481,15 @@ GeneralizedLanePosition::= CHOICE { /** * This DF represents the Heading in a WGS84 co-ordinates system. + * + * It includes the following components: * * @field headingValue: the heading value. * * @field headingConfidence: the accuracy of the reported heading value with a predefined confidence level. * - * @note: this DF is kept for backwards compatibiliyty reasons only. It is reccomended to use the @ref Wgs84Angle instead. - * @category: GeoReference information, Vehicle information, Road topology information + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84Angle instead. + * @category: Kinematics Information * Revision: V1.3.1 */ Heading ::= SEQUENCE { @@ -4169,12 +4500,14 @@ Heading ::= SEQUENCE { /** * This DF provides information associated to heading change indicators such as a change of direction. + * + * It includes the following components: * * @field direction: the direction of heading change value. * * @field actionDeltaTime: the period over which a direction change action is performed. * - * @category: t.b.d. + * @category: Kinematics Information * Revision: created in V2.1.1 */ HeadingChangeIndication ::= SEQUENCE { @@ -4186,6 +4519,8 @@ HeadingChangeIndication ::= SEQUENCE { /** * This DF represents a frequency channel * + * It includes the following components: + * * @field centreFrequency: the centre frequency of the channel * @unit: 10exp+2 Hz (where exp is exponent) * @@ -4208,6 +4543,8 @@ InterferenceManagementChannel ::= SEQUENCE { * * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. * + * It includes the following components: + * * @field zoneDefinition: contains the geographical definition of the zone. * * @field managementInfo: contains interference management information applicable in the zone defined in @field zoneDefinition. @@ -4223,6 +4560,8 @@ InterferenceManagementZone ::= SEQUENCE { /** * This DF represents the geographical definition of the zone where band sharing occurs. * + * It includes the following components: + * * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. * * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. @@ -4241,12 +4580,12 @@ InterferenceManagementZoneDefinition::= SEQUENCE{ interferenceManagementZoneLongitude Longitude, interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, interferenceManagementZoneID ProtectedZoneID OPTIONAL, - interferenceManagementZoneShape Area (WITH COMPONENTS{..., radial ABSENT}) OPTIONAL, + interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, ... } /** - * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. + * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. * * @category: Communication information. * Revision: created in V2.1.1 @@ -4257,6 +4596,8 @@ InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManageme /** * This DF contains interference management information for one affected frequency channel. * + * It includes the following components: + * * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management * * @field interferenceManagementZoneType: type of the interference management zone. @@ -4272,12 +4613,15 @@ InterferenceManagementInfoPerChannel ::= SEQUENCE { interferenceManagementChannel InterferenceManagementChannel, interferenceManagementZoneType InterferenceManagementZoneType, interferenceManagementMitigationType InterferenceManagementMitigationType OPTIONAL, - expiryTime TimestampIts OPTIONAL, -- from ITS-Container + expiryTime TimestampIts OPTIONAL, ... } /** * This DF provides information and commands defining the required mitigation type in the defined interference management zone. + * + * It includes the following options: + * * @field unavailable: this is the default choice to be used when information is not available * * @field mitigationForTechnologies: it indicates the type of mitigation and the parameters to be used to protect the @@ -4292,17 +4636,19 @@ InterferenceManagementMitigationType ::= CHOICE { } /** - * This DF consist of a list of up to 16 interference interference management zones. + * 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. - * Communication information + * **EXAMPLE**: An interference management communication zone may be defined around a CEN DSRC road side equipment or an urban rail operational area. + * + * @category: Communication information * Revision: created in V2.1.1 */ InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone /** - * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301. + * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.17]. + * + * It includes the following components: * * @field region: 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 @ref Id is unique within the region. @@ -4330,6 +4676,8 @@ ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition * 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: + * * @field protocolVersion: version of the ITS message. * * @field messageId: type of the ITS message. @@ -4347,6 +4695,8 @@ ItsPduHeader ::= SEQUENCE { /** * This DF indicates a transversal position in resolution of lanes and the associated lane type. + * + * It includes the following components: * * @field: transversalPosition: the transversal position. * @@ -4363,6 +4713,8 @@ LanePositionAndType::= SEQUENCE { /** * This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. + * + * It includes the following components: * * @field: lateralAccelerationValue: lateral acceleration value at a point in time. * @@ -4380,6 +4732,8 @@ LateralAcceleration ::= SEQUENCE { /** * This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. * + * It includes the following components: + * * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined @@ -4396,14 +4750,15 @@ LongitudinalAcceleration ::= SEQUENCE { /** * This DF represents the estimated position along the longitudinal length of a particular lane. * + * It includes the following components: + * * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. * * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. - * @category: Vehicle information - * Revision: V1.3.1 -*/ + * @category: Road topology information + * Revision: created in V2.1.1 + */ LongitudinalLanePosition ::= SEQUENCE { longitudinalLanePositionValue LongitudinalLanePositionValue, longitudinalLanePositionConfidence LongitudinalLanePositionConfidence @@ -4416,15 +4771,17 @@ LongitudinalLanePosition ::= SEQUENCE { * @category: Vehicle information * Revision: V1.3.1 */ -LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..17) OF CorrelationColumn -- tbd extension to be addded? +LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..17) OF CorrelationColumn /** - * This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301. + * 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: * * @field mapReference: optionally identifies the MAPEM carrying the topology. * It is absent if the MAPEM topology is known from the context. * - * @field lane: identifies the lane in the topology. + * @field laneId: identifies the lane in the topology. * * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane. * @@ -4439,7 +4796,8 @@ MapPosition ::= SEQUENCE { } /** - * This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301. + * 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: * * @field roadsegment: option that identifies the description of a road segment contained in a MAPEM. @@ -4457,15 +4815,16 @@ MapReference::= CHOICE { /** * - * This DF represents a list @ref MitigationPerTechnologyClass. + * This DF represents a list of @ref MitigationPerTechnologyClass. * @category: Communication information * Revision: Created in V2.1.1 */ -MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyClass -- tbd extension needed? +MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyClass /** - * - * This DF represents a set of mitigation parameters for a specific technology, as specified in ETSI TS 103 724, clause 7.. + * 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: * * @field accessTechnologyClass: channel access technology to which this mitigation is applied. * @@ -4475,14 +4834,14 @@ MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyCl * @field powerReduction: the delta value of power to be reduced. * @unit: dB * - * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175. + * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.25]. * @unit: ms * - * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571. + * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.26]. * @unit: ms * * @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, clause 7. + * interference management zone types. Specification details are in ETSI TS 103 724 [i.24], clause 7. * * @category: Communication information * Revision: Created in V2.1.1 @@ -4497,13 +4856,15 @@ MitigationPerTechnologyClass ::= SEQUENCE { } /** - * This DF indicates both the class and associated subclass that best describes an object, based on different options: + * This DF indicates both the class and associated subclass that best describes an object. + * + * The following options are available: * * @field vehicleSubclass: the object is a road vehicle. * * @field vruSubclass: the object is a VRU. * - * @field groupSubClass: the object is a VRU CLuster. + * @field groupSubClass: the object is a VRU group or cluster. * * @field otherSubclass: the object is of a different types as the above. * @@ -4513,7 +4874,7 @@ MitigationPerTechnologyClass ::= SEQUENCE { ObjectClass ::= CHOICE { vehicleSubclass VehicleSubclass, vruSubclass VruProfileAndSubprofile, - groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingArea ABSENT}), + groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), otherSubclass OtherSubclass, ... } @@ -4524,14 +4885,16 @@ ObjectClass ::= CHOICE { * @category: Sensing information * Revision: Created in V2.1.1 */ -ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence --tbd added extension? +ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence /** -* This DF represents the classification of a detected object together with a confidence indication. + * This DF represents the classification of a detected object together with a confidence indication. + * + * It includes the following components: * * @field objectClass: the class of the object. * - * @field confidence: the associated confidence information. + * @field ObjectClassConfidence: the associated confidence information. * * @category: Sensing information * Revision: Created in V2.1.1 @@ -4541,28 +4904,43 @@ ObjectClassWithConfidence ::= SEQUENCE { confidence ObjectClassConfidence } /** - * This DF represents a dimension of an object together with a confidence indication + * This DF represents a dimension of an object together with a confidence indication. + * + * It includes the following components: * - * @field value: the object dimension value which can be estimated as the mean of the current distribution. + * @field ObjectDimensionValue: the object dimension value which can be estimated as the mean of the current distribution. * - * @field confidence: the associated confidence information. + * @field ObjectDimensionValue: the associated confidence information. * * @category: Sensing information * Revision: Created in V2.1.1 */ ObjectDimension ::= SEQUENCE { value ObjectDimensionValue, - confidence ObjectDimensionConfidence + confidence ObjectDimensionValue } /** * This DF that represents a path with a set of path points. - * It may contain up to `40` @ref PathPoin. + * It may contain up to `40` @ref 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. + * + * @category: GeoReference information, Vehicle information + * Revision: created in V2.1.1 based on PathHistory + */ +Path::= SEQUENCE (SIZE(0..40)) OF PathPoint + +/** + * This DF that represents a path with a set of path points. + * It may contain up to `40` @ref 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. * * @category: GeoReference information, Vehicle information + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead * Revision: semantics updated in V2.1.1 */ PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint @@ -4570,6 +4948,8 @@ PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint /** * This DF defines an offset waypoint position within a path. * + * It includes the following components: + * * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. * * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. @@ -4585,6 +4965,8 @@ PathPoint ::= SEQUENCE { /** * The DF that defines a waypoint position within a path. * + * It includes the following components: + * * @field pathPosition: The waypoint position defined as an absolute position. * * @field pathDeltaTime: The optional delta time in which the waypoint will be occupied, from a reference time. @@ -4594,13 +4976,15 @@ PathPoint ::= SEQUENCE { */ PathPointAbsolute ::= SEQUENCE { pathPosition ReferencePosition, - pathDeltaTime PathDeltaTime OPTIONAL -- tbd shall this really be optional + pathDeltaTime PathDeltaTime OPTIONAL } /** - * This DF contains information about a perceived object including its kinematic and attitude representation, + * This DF contains information about a perceived object including its kinematic and attitude representation. * - * @field objectID: Identifier assigned to a detected object, using the DE Identifier,. + * It includes the following components: + * + * @field objectID: Identifier assigned to a detected object. * * @field timeOfMeasurement: 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. @@ -4625,16 +5009,16 @@ PathPointAbsolute ::= SEQUENCE { * of measurement, in a pre-defined coordinate system, using the DF SpeedExtended. * * @field xAcceleration: optional Acceleration of the detected object from the ITS-S's reference point in x-direction - * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. + * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. * * @field yAcceleration: optional Acceleration of the detected object from the ITS-S's reference point in y-direction - * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. + * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. * * @field zAcceleration: optional Acceleration of the detected object from the ITS-S's reference point in z-direction - * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. + * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. * * @field rollAngle: optional Roll angle of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. - * The angle is measured with positive values considering the object orientation turning counter-clockwise around the x-axis. + * The angle is measured with positive values considering the object orientation turning counter-clockwise around the x-axis. * * @field pitchAngle: optional Pitch angle of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. * The angle is measured with positive values considering the object orientation turning counter-clockwise around the y-axis. @@ -4722,7 +5106,7 @@ PathPointAbsolute ::= SEQUENCE { PerceivedObject ::= SEQUENCE { objectID Identifier, timeOfMeasurement DeltaTimeMilliSecondPosNeg, - xCoordinate CartesianCoordinateWithConfidence, --tbd is the range correct here? + xCoordinate CartesianCoordinateWithConfidence, yCoordinate CartesianCoordinateWithConfidence, zCoordinate CartesianCoordinateWithConfidence OPTIONAL, xSpeed SpeedExtended, @@ -4745,28 +5129,40 @@ PerceivedObject ::= SEQUENCE { planarObjectDimension2 ObjectDimension OPTIONAL, verticalObjectDimension ObjectDimension OPTIONAL, objectRefPoint ObjectRefPoint DEFAULT 0, - objectAge DeltaTimeMilliSecondPosNeg (0..1500), + objectAge DeltaTimeMilliSecondPosNeg (0..1500),--tbd is it optional or not? objectConfidence ObjectConfidence OPTIONAL, sensorIdList SequenceOfId OPTIONAL, dynamicStatus ObjectDynamicStatus OPTIONAL, -- tbd delete optional classification ObjectClassDescription OPTIONAL, - mapPosition MapPosition OPTIONAL, --changed from matchedPosition + mapPosition MapPosition OPTIONAL, ... } /** - * This DF represents an area delimited by a polygon and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * This DF represents the shape of a polygonal area or of a right prism. + * + * It includes the following components: + * + * @field polygon: the polygonal area and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * + * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. * * @category GeoReference information * Revision: created in V2.1.1 * */ -PolygonalArea ::= SequenceOfCartesianPosition3d (SIZE(3..16,...)) +PolygonalShape ::= SEQUENCE { + polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), + height StandardLength OPTIONAL, + ... +} /** * 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: + * * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point * and major axis point of the position accuracy ellipse. * @@ -4804,6 +5200,8 @@ PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar /** * This DF describes a zone of protection inside which the ITSG5 communication should be restricted. + * + * It includes the following components: * * @field protectedZoneType: type of the protected zone. * @@ -4878,19 +5276,21 @@ PtActivation ::= SEQUENCE { } /** - * This DF describes a radial area. The triangular or cone-shaped area is - * constructed by sweeping the provided range about the reference point of the ITS-S or about the - * point described by the sensor offset point (if provided) with respect to the reference point - * between a horizontal start and a horizontal end angle in positive angular direction of the WGS84 + * This DF describes a radial shape. 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). * * It includes the following components: - * @field range: The radial range of the sensor from the reference point or sensor point offset. + * + * @field sensorPositionOffset: the optional offset opoint. + * + * @field range: the radial range of the sensor from the reference point or sensor point offset. * - * @field stationaryHorizontalOpeningAngleStart: The orientation indicating the beginning of the + * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the * stationary sensor’s horizontal opening angle in positive angular direction with respect to the * WGS84 coordinate system. * @@ -4906,26 +5306,99 @@ PtActivation ::= SEQUENCE { * 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 using the DE CartesianAngleValue. * - * @field sensorPositionOffset The offset of the mounting poinf of this sensor from the station's ReferencePosition. - * - * @field sensorHeight: the height of the sensor mounting point. - * - * @category GeoReference information + * @category Sensing information * Revision: created in V2.1.1 */ -RadialArea ::= SEQUENCE { -- tbd why is sensorHeight needed? +RadialShape ::= SEQUENCE { + offsetPoint CartesianPosition3d OPTIONAL, range StandardLength, - stationaryHorizontalOpeningAngleStart Wgs84AngleValue, --tbd shall this be cartesian? - stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, --tbd shall this be cartesian? + stationaryHorizontalOpeningAngleStart Wgs84AngleValue, + stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, verticalOpeningAngleStart CartesianAngleValue OPTIONAL, verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, - sensorPositionOffset CartesianPosition3d OPTIONAL, - -- sensorHeight SensorHeight OPTIONAL, + ... +} + + +/** + * This DF describes a list of radial shapes. + * + * It includes the following components: + + * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). + * + * @field xCoordinate: the x-coordinate of the offset point. + * + * @field yCoordinate: the y-coordinate of the offset point. + * + * @field zCoordinate: the optional z-coordinate of the offset point. + * + * @field radialShapesList: the list of radial shape details. + * + * @category: Georeference information + * Revision: created in V2.1.1 + */ +RadialShapes ::= SEQUENCE { + refPointId RefPointId DEFAULT 0, + xCoordinate CartesianCoordinateSmall, + yCoordinate CartesianCoordinateSmall, + zCoordinate CartesianCoordinateSmall OPTIONAL, + radialShapesList RadialShapesList, + ... +} + +/** + * The DF contains a list of @ref RadialShapeDetails. + * + * @category: Georeference information + * Revision: created in V2.1.1 + */ + +RadialShapesList ::= SEQUENCE SIZE(1..10) OF 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). + * + * It includes the following components: + * + * @field range: the radial range of the sensor from the reference point or sensor point offset. + * + * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the + * stationary sensor’s horizontal opening angle in positive angular direction. + * + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary + * sensor’s horizontal opening angle in positive angular direction. + * + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor’s + * 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor’s + * 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. + * + * @category: Georeference information + * Revision: created in V2.1.1 + */ +RadialShapeDetails ::= SEQUENCE { + range StandardLength, + horizontalOpeningAngleStart CartesianAngleValue, + horizontalOpeningAngleEnd CartesianAngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, ... } /** - * This DF specifies a rectangular area that is centred on a reference position defined outside of the context of this DF. + * 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. + * + * It includes the following components: * * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. * @@ -4935,21 +5408,24 @@ RadialArea ::= SEQUENCE { -- tbd why is sensorHeight needed? * * @field orientation: represents the orientation of the lenght of the rectangle in the WGS84 coordinate system. * + * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. + * * @category GeoReference information * Revision: created in V2.1.1 */ - -RectangularArea ::= SEQUENCE { -- tbd +RectangularShape ::= SEQUENCE { centerPoint CartesianPosition3d OPTIONAL, - semiLength StandardLength, - semiBreadth StandardLength, - orientation Wgs84AngleValue - -- semiHeight SemiRangeLength OPTIONAL + semiLength StandardLength, -- tbd use StandardLengthSmall instead? + semiBreadth StandardLength,-- tbd use StandardLengthSmall instead? + orientation Wgs84AngleValue, + height StandardLength OPTIONAL -- tbd use StandardLengthSmall instead? } /** * A position within a geographic coordinate system together with a confidence indication. * + * It includes the following components: + * * @field latitude: the latitude of the geographical point. * * @field longitude: the longitude of the geographical point. @@ -4979,6 +5455,8 @@ RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType /** * This DF represents a unique id for a road segment * + * It includes the following components: + * * @field region: 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 @ref Id is unique within the region. * @@ -4995,16 +5473,18 @@ RoadSegmentReferenceId ::= SEQUENCE { /** * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). + * + * It includes the following components: * * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. * * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. - * If @field subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant in @field subjectStation is safe. + * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant in @field subjectStation is safe. * * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi^2 + LoDi^2 + VDi^2)/relative speed and represented in the nearest 100 ms. - * This field may be present only if @field subjectStation is present. + * This field may be present only if subjectStation is present. * - * @category: tbd + * @category: Traffic information, Kinematics information * Revision: created in V2.1.1 */ SafeDistanceIndication ::= SEQUENCE { @@ -5017,7 +5497,7 @@ SafeDistanceIndication ::= SEQUENCE { /** * This DF represents a list of maximum `16` @ref CartesianPosition3d. * - * @category GeoReference information + * @category: GeoReference information * Revision: created in V2.1.1 */ SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d @@ -5025,23 +5505,24 @@ SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPositi /** * The DF contains a list of identifiers. * - * @category Basic information + * @category: Basic information * Revision: created in V2.1.1 */ SequenceOfId ::= SEQUENCE SIZE(1..128, ...) OF Identifier /** - * This DF contains a list of DFs PathPointAbsolute + * This DF contains a list of DFs PathPointAbsolute. + * The component pathDeltaTime shall be either present in all elements of the list or be absent in all elements. * - * @category GeoReference information + * @category: GeoReference information * Revision: created in V2.1.1 */ -SequenceOfPathPointAbsolute::= SEQUENCE OF PathPointAbsolute +SequenceOfPathPointAbsolute::= SEQUENCE (SIZE(1..16,...)) OF PathPointAbsolute /** * The DF contains a list of DF SafeDistanceIndication. * - * @category tbd + * @category: Traffic information, Kinematics information * Revision: created in V2.1.1 */ SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication @@ -5049,13 +5530,46 @@ SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceInd /** * The DF contains a list of DF TrajectoryInterceptionIndication. * - * @category tbd + * @category: Traffic information, Kinematics information * Revision: created in V2.1.1 */ SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication +/** + * This DF provides the definition of a geographical area or volume, based on different options. + * + * It includes the following components: + * + * @field rectangle: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. + * + * @field circle: definition of an area of circular shape or a right circular cylinder. + * + * @field polygon: definition of an area of polygonal shape or a right prism. + * + * @field ellipse: definition of an area of elliptical shape or a right elliptical cylinder. + * + * @field radial: definition of a radial shape. + * + * @field radialShapes: definition of list of radial shapes. + * + * @category: GeoReference information + * Revision: Created in V2.1.1 + */ + +Shape::= CHOICE { + rectangle RectangularShape, + circle CircularShape, + polygon PolygonalShape, + ellipse EllipticalShape, + radial RadialShape, + radialShapes RadialShapes, + ... +} + /** * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * + * It includes the following components: * * @field speedValue: the speed value. * @@ -5071,6 +5585,8 @@ Speed ::= SEQUENCE { /** * This DF describes the extended speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * + * It includes the following components: * * @field speedValue: the extended speed value. * @@ -5086,6 +5602,8 @@ SpeedExtended ::= SEQUENCE { /** * This DF provides the indication of change in stability. + * + * It includes the following components: * * @field lossProbability: the probability of stability loss. * @@ -5102,6 +5620,8 @@ StabilityChangeIndication ::= SEQUENCE { /** * This DF represents the steering wheel angle of the vehicle at certain point in time. + * + * It includes the following components: * * @field steeringWheelAngleValue: steering wheel angle value. * @@ -5119,13 +5639,15 @@ SteeringWheelAngle ::= SEQUENCE { * This DF represents one or more paths using @ref PathHistory. * * @category: GeoReference information - * Revision: V1.3.1 + * Revision: Revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory */ -Traces ::= SEQUENCE SIZE(1..7) OF PathHistory +Traces ::= SEQUENCE SIZE(1..7) OF Path /** * Ths DF represents the a position on a traffic island between two lanes. * + * It includes the following components: + * * @field oneSide: represents one lane. * * @field otherSide: represents the other lane. @@ -5142,7 +5664,8 @@ TrafficIslandPosition ::= SEQUENCE { /** * This DF provides detailed information about an attached trailer. * - * It includes the following components: + * It includes the following components: + * * - @field refPointId: identifier of the reference point of the trailer. * * - @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the @@ -5171,9 +5694,9 @@ TrafficIslandPosition ::= SEQUENCE { */ TrailerData ::= SEQUENCE { refPointId RefPointId, - hitchPointOffset StandardLengthSmall OPTIONAL, --tbd - frontOverhang StandardLengthSmall, - rearOverhang StandardLengthSmall, + hitchPointOffset CartesianCoordinateSmall OPTIONAL, -- tbd or use standardLengthSmall + frontOverhang CartesianCoordinateSmall, -- tbd or use standardLengthSmall + rearOverhang CartesianCoordinateSmall, -- tbd or use standardLengthSmall trailerWidth VehicleWidth OPTIONAL, hitchAngle CartesianAngle OPTIONAL, ... @@ -5181,6 +5704,8 @@ TrailerData ::= SEQUENCE { /** * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. + * + * It includes the following components: * * @field: subjectStation: indicates the subject station. * @@ -5188,7 +5713,7 @@ TrailerData ::= SEQUENCE { * * @field: trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory with the trajectory of the station indicated in @field: subjectStation. * - * @category tbd + * @category: Vehicle information * Revision: Created in V2.1.1 */ TrajectoryInterceptionIndication ::= SEQUENCE { @@ -5200,6 +5725,8 @@ TrajectoryInterceptionIndication ::= SEQUENCE { /** * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. + * + * It includes the following components: * * @field: verticalAccelerationValue: vertical acceleration value at a point in time. * @@ -5216,6 +5743,8 @@ VerticalAcceleration ::= SEQUENCE { /** * This DF provides information related to the identification of a vehicle. + * + * It includes the following components: * * @field wMInumber: World Manufacturer Identifier (WMI) code. * @@ -5232,6 +5761,8 @@ VehicleIdentification ::= SEQUENCE { /** * This DF represents the length of vehicle and accuracy indication information. + * + * It includes the following components: * * @field vehicleLengthValue: length of vehicle. * @@ -5248,7 +5779,8 @@ VehicleLength ::= SEQUENCE { /** * This DF provides information about a VRU cluster. * - * It includes the following components: + * It includes the following components: + * * @field clusterId: optional identifier of a VRU cluster . * * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. @@ -5260,9 +5792,9 @@ VehicleLength ::= SEQUENCE { * @category: VRU information * Revision: Created in V2.1.1 */ -VruClusterInformation ::= SEQUENCE { -- tbd generalize? +VruClusterInformation ::= SEQUENCE { clusterId ClusterId OPTIONAL, - clusterBoundingArea Area (WITH COMPONENTS{..., radial ABSENT}) OPTIONAL, + clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, clusterCardinalitySize ClusterCardinalitySize, clusterProfiles VruClusterProfiles, ... @@ -5270,31 +5802,32 @@ VruClusterInformation ::= SEQUENCE { -- tbd generalize? /** * This DF indicates the profile of a VRU including sub-profile information + * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.22]: * - * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2: + * @field pedestrian: VRU Profile 1 - Pedestrian. * - * @fieldpedestrian: VRU Profile 1 - Pedestrian. + * @field bicyclistAndlightVruVehicle: VRU Profile 2 - Bicyclist. * - * @field lightVruVehicle: VRU Profile 2 - Bicyclist. + * @field motorcyclist: VRU Profile 3 - Motorcyclist. * - * @fieldmotorcyclist: VRU Profile 3 - Motorcyclist. - * - * @fieldanimal: VRU Profile 4 - Animals. + * @field animal: VRU Profile 4 - Animals. * * @category: VRU information * Revision: Created in V2.1.1 */ VruProfileAndSubprofile ::= CHOICE { - pedestrian VruSubProfilePedestrian, - lightVruVehicle VruSubProfileBicyclist, - motorcylist VruSubProfileMotorcyclist, - animal VruSubProfileAnimal, + pedestrian VruSubProfilePedestrian, + bicyclistAndlightVruVehicle VruSubProfileBicyclist, + motorcylist VruSubProfileMotorcyclist, + animal VruSubProfileAnimal, ... } /** * This DF represents an angular component along with a confidence in the WGS84 coordinate system. * + * It includes the following components: + * * @field value: the angle value which can be estimated as the mean of the current distribution. * * @field confidence: the accuracy associated to the provided value. @@ -5310,6 +5843,8 @@ Wgs84Angle ::= SEQUENCE { /** * This DF represents a yaw rate of vehicle at a point in time. + * + * It includes the following components: * * @field yawRateValue: yaw rate value at a point in time. * -- GitLab From fdd89a1d09c21a878b0f5ccaaa396423c38f0a60 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Thu, 3 Mar 2022 10:29:25 +0000 Subject: [PATCH 12/91] Documentation update --- docs/ITS-Container.md | Bin 269675 -> 299139 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md index 46511f95db7200d71d77600795dad323f838bb2a..360e58e44e73ddd3c120343e9b8c71836b63fb53 100644 GIT binary patch delta 33917 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 Date: Fri, 4 Mar 2022 09:44:20 +0000 Subject: [PATCH 13/91] Replace ITS-Container.asn --- ITS-Container.asn | 181 ++++++++++++++++++++++++---------------------- 1 file changed, 96 insertions(+), 85 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 4e4490c..002ece7 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,10 +1,9 @@ -- Draft CDD ASN.1 module Release 2 (Version 3) -- Based on the official version available at @https://forge.etsi.org/rep/ITS/asn1/cdd_ts102894_2 --- prepared by Jasja Tijink for ETSI TC ITS WG1 (date 03.03.2022) --- Note: some descriptions of the data type still need to be harmonized and cleaned up. +-- prepared by Jasja Tijink for ETSI TC ITS WG1 (date 04.03.2022) ITS-Container { -itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) version3 (3) +itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) version3 (3) -- Note: the final OID is still to be agreed. } DEFINITIONS AUTOMATIC TAGS ::= @@ -96,8 +95,7 @@ AccelerationControl ::= BIT STRING { * * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n < 0)` to indicate negative acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `0` indicates zero acceleration. + * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. @@ -451,9 +449,7 @@ CartesianAngleValue ::= INTEGER { * * The value shall be set to: * - `-32766` if the speed is equal to or less than `327,66 degrees/s` - * - `n (n > -32766 and n < 0)` if the speed is equal to or less than `n x 0,01 degrees/s`, and greater than `(n-1) x 0,01 degrees/s`. - * - `0` if the speed is zero. - * - `n (n > 0 and n < 32766)` if the speed is equal to or less than `n x 0,01 degrees/s`, and greater than `(n-1) x 0,01 degrees/s`. + * - `n (n > -32766 and n < 32766)` if the speed is equal to or less than `n x 0,01 degrees/s`, and greater than `(n-1) x 0,01 degrees/s`. * - 32766` if the speed is greater than `327,65 degrees/s` * - 32767 if the information is unavailable * @@ -463,7 +459,6 @@ CartesianAngleValue ::= INTEGER { */ CartesianAngularSpeedValue ::= INTEGER { negativeOutofRange (-32766), - noSpeed (0), positiveOutOfRange (32766), unavailable (32767) } (-32766..32767) @@ -474,9 +469,7 @@ CartesianAngularSpeedValue ::= INTEGER { * * The value shall be set to: * - `-32766` if the acceleration is equal to or less than `327,66 degrees/s^2` - * - `n (n > -32766 and n < 0)` if the acceleration is equal to or less than `n x 0,01 degrees/s^2`, and greater than `(n-1) x 0,01 degrees/s^2`. - * - `0` if the acceleration is zero. - * - `n (n > 0 and n < 32766)` if the acceleration is equal to or less than `n x 0,01 degrees/s^2`, and greater than `(n-1) x 0,01 degrees/s^2`. + * - `n (n > -32766 and n < 32766)` if the acceleration is equal to or less than `n x 0,01 degrees/s^2`, and greater than `(n-1) x 0,01 degrees/s^2`. * - 32766` if the acceleration is greater than `327,65 degrees/s^2` * - 32767 if the information is unavailable * @@ -530,7 +523,8 @@ CartesianAngularAccelerationValue ::= INTEGER { * - 96 `hazardousLocation-DangerousCurve` : in case the type of event is dangerous curve, * - 97 `collisionRisk` : in case the type of event is a collision risk, * - 98 `signalViolation` : in case the type of event is signal violation, - * - 99 `dangerousSituation` : in case the type of event is dangerous situation in which autonomous safety system in vehicle is activated, + * - 99 `dangerousSituation` : in case the type of event is dangerous situation in which autonomous safety system in vehicle + is activated, * - 100 `railwayLevelCrossing` : in case the type of event is a railway level crossing. * - 101-255 are reserved for future usage. * @@ -789,7 +783,8 @@ CurvatureCalculationMode ::= ENUMERATED { * - there has been a vehicle bus (e.g. CAN bus) error. * In all 3 cases above, the reported curvature value may be valid and used by the application. * - * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid + * and therefore cannot be trusted. Such value is not useful for the application. * * @category: Vehicle information * Revision: description revised in V2.1.1 @@ -820,7 +815,7 @@ CurvatureConfidence ::= ENUMERATED { * - `n (n > -1023 and n < 0)` for negative values equal to or less than `n`, and greater than `(n-1)`. * - `0` when the vehicle is moving straight. * - `n (n > 0 and n < 1022)` for positive values equal to or less than `n`, and greater than `(n-1)`. - * - `1022`, for values bigger than 1021. + * - `1022`, for values greater than 1021. * - `1023`, if the information is not available. * * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. @@ -924,7 +919,7 @@ DangerousSituationSubCauseCode ::= INTEGER { * * The value shall be set to: * - `-12700` for values equal to or lower than `-127 metres`. - * - `n (n > -12700 and n < 0)` for altitude offset `n x 0,01 meter` below the reference position. + * - `n (n > -12700 and n <= 0)` for altitude offset `n x 0,01 meter` below the reference position. * - `0` for no altitudinal offset. * - `n (n > 0 and n < 12799)` for altitude offset `n x 0,01 meter` above the reference position. * - `12799` for values equal to or greater than `127,99 metres`. @@ -1018,7 +1013,8 @@ DeltaTimeMilliSecondPosNeg ::= INTEGER { /** * This DE represents a difference in time with respect to a reference time. - * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert a VruClusterOpTimestamp to a GenerationDeltaTime, multiply by 256 (i.e. append a "00" byte) + * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert a VruClusterOpTimestamp to a GenerationDeltaTime, + * multiply by 256 (i.e. append a "00" byte) * * @unit: 256 milliseconds * @category: Basic information @@ -1679,27 +1675,29 @@ LaneId ::= INTEGER (0..255) * This DE represents the type of a lane. * * The value shall be set to: - * - 0 `traffic`: Lane dedicated to the movement of vehicles. - * - 1 `through`: Lane dedicated to the movement of vehicles travelling ahead and not turning. - * - 2 `reversible`: Lane where the direction of traffic can be changed to match the peak flow. - * - 3 `acceleration`: Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. - * - 4 `deceleration`: Lane that allows vehicles exiting a road to decelerate before leaving it. - * - 5 `leftHandTurning`: Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. - * - 6 `rightHandTurning`: Lane reserved for slowing down and making a right turn so as not to disrupt traffic. - * - 7 `dedicatedVehicle`: Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. - * - 8 `bus`: Lane: dedicated to movement of buses providing public transportation. - * - 9 `taxi`: Lane dedicated to movement of taxis. - * - 10 `hov`: Carpooling lane or high occupancy vehicle lane. - * - 11 `hot`: High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. - * - 12 `pedestrian`: Lanes dedicated to pedestrians such as pedestrian sidewalk paths. - * - 13 `bikeLane`: Lane dedicated to exclusive or preferred use by bicycles. - * - 14 `median`: Lane not dedicated to movement of vehicles but representing medians and channelization such as the central median separating the two directional carriageways of the highway. - * - 15 `striping`: Lane not dedicated to movement of vehicles but covered with roadway markings. - * - 16 `trackedVehicle`: Lane dedicated to movement of trains and trolleys. - * - 17 `parking`: Lanes dedicated to vehicles parking, stopping and loading lanes. - * - 18 `emergency`: Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. - * - 19 `verge`: Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between the road surface edge and the boundary of a road. - * - 20 `minimumRiskManoeuvre`: Lane dedicated to automated vehicles making a minimum risk manoeuvre. + * - 0 `traffic`: Lane dedicated to the movement of vehicles. + * - 1 `through`: Lane dedicated to the movement of vehicles travelling ahead and not turning. + * - 2 `reversible`: Lane where the direction of traffic can be changed to match the peak flow. + * - 3 `acceleration`: Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. + * - 4 `deceleration`: Lane that allows vehicles exiting a road to decelerate before leaving it. + * - 5 `leftHandTurning`: Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. + * - 6 `rightHandTurning`: Lane reserved for slowing down and making a right turn so as not to disrupt traffic. + * - 7 `dedicatedVehicle`: Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. + * - 8 `bus`: Lane: dedicated to movement of buses providing public transportation. + * - 9 `taxi`: Lane dedicated to movement of taxis. + * - 10 `hov`: Carpooling lane or high occupancy vehicle lane. + * - 11 `hot`: High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. + * - 12 `pedestrian`: Lanes dedicated to pedestrians such as pedestrian sidewalk paths. + * - 13 `bikeLane`: Lane dedicated to exclusive or preferred use by bicycles. + * - 14 `median`: Lane not dedicated to movement of vehicles but representing medians and channelization such as the central median + separating the two directional carriageways of the highway. + * - 15 `striping`: Lane not dedicated to movement of vehicles but covered with roadway markings. + * - 16 `trackedVehicle`: Lane dedicated to movement of trains and trolleys. + * - 17 `parking`: Lanes dedicated to vehicles parking, stopping and loading lanes. + * - 18 `emergency`: Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. + * - 19 `verge`: Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between + the road surface edge and the boundary of a road. + * - 20 `minimumRiskManoeuvre`: Lane dedicated to automated vehicles making a minimum risk manoeuvre. * - values 21 to 30: reserved for future use * * @category: Road topology information @@ -1756,9 +1754,8 @@ Latitude ::= INTEGER { * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n < 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation * with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `0` indicates zero acceleration. * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. * - `160` for acceleration or greater than 15,9 m/s2. @@ -1819,8 +1816,7 @@ Longitude ::= INTEGER { * * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n < 0)` to indicate that the the vehicle is braking with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `0` indicates zero acceleration. + * - `n (n > -160 and n <= 0)` to indicate that the the vehicle is braking with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. @@ -2038,7 +2034,8 @@ ObjectRefPoint ::= INTEGER { /** * This DE indicates an object’s section. - * The object is assumed to have a length that is greater than its width, with the sides of the object being divided into front, rear, sideLeftFront, sideLeftBack, sideRightFront, sideRightBack. + * The object is assumed to have a length that is greater than its width, with the sides of the object being divided into: + * front, rear, sideLeftFront, sideLeftBack, sideRightFront, sideRightBack. * * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. * @@ -2723,7 +2720,8 @@ SpecialTransportType ::= BIT STRING { * - there has been a vehicle bus (e.g. CAN bus) error. * In all 3 cases above, the reported speed value may be valid and used by the application. * - * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid and therefore cannot be trusted. Such is not useful for the application. + * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid + * and therefore cannot be trusted. Such is not useful for the application. * * @unit cm/s * @category: Vehicle information @@ -2771,9 +2769,7 @@ SpeedValue ::= INTEGER { * * The value shall be set to: * - `-16383` if the speed is equal to or smaller than -163,83 m/s - * - `n (n > -16383 and n < 0)` if the applicable value is equal to or less than `n x 0,01 m/s`, and greater than `(n-1) x `0,01 m/s`. - * - `0` in a standstill situation. - * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than `n x 0,01 m/s`, and greater than `(n-1) x `0,01 m/s`. + * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than `n x 0,01 m/s`, and greater than `(n-1) x `0,01 m/s`. * - `16382` for speed values equal to or greater than 163,81 m/s. * - `16383` if the speed accuracy information is not available. * @@ -2889,24 +2885,26 @@ StationID ::= INTEGER(0..4294967295) * - 0 `unknown`: information about the ITS-S context is not provided, * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, - * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class L1, L2 (VRU Profile 3) - * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class L3, L4, L5, L6, L7 (VRU Profile 3) + * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + class L1, L2 (VRU Profile 3) + * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + class L3, L4, L5, L6, L7 (VRU Profile 3) * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, - * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, - * ***NOTE***: Only to be used when not towed. + * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in + UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) - * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), * - 16 16-255: reserved for future usage. * - * * @category: Communication information. - * Revision: V1.3.1 + * Revision: revised in V2.1.1 (note to value 9 deleted) */ StationType ::= INTEGER { unknown(0), @@ -2963,9 +2961,10 @@ SteeringWheelAngleConfidence ::= INTEGER { * * The value shall be set to: * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. - * - `n (n > -511 and n < 0)` if the steering wheel angle is equal to or less than `n x 1,5 degrees`, and greater than `(n-1) x 1,5 degrees`, turning clockwise (i.e. to the right). - * - `0` if the steering wheel angle is in the straight position. - * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than `n x 0,1 degrees`, and greater than `(n-1) x 0,1 degrees`, is turning counter-clockwise (i.e. to the left). + * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than `n x 1,5 degrees`, and greater than `(n-1) x 1,5 degrees`, + turning clockwise (i.e. to the right). + * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than `n x 0,1 degrees`, and greater than `(n-1) x 0,1 degrees`, + turning counter-clockwise (i.e. to the left). * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. * - `512` if information is not available. * @@ -3007,19 +3006,24 @@ Temperature ::= INTEGER { equalOrGreaterThan67Deg(67)} (-60..67) /** - * This DE represents the number of milliseconds since `2004-01-01T00:00:00.000Z`, as specified in ISO 8601 [i.10]. + * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. + * The ITS epoch is `00:00:00.000 UTC, 1 January 2004’ + * ‘Elapsed’ means that the true number of milliseconds is continuously counted without interruption, + * i.e. it is not altered by leap seconds, which occur in UTC. * - * EXAMPLE: The value for TimestampIts for `2007-01-01T00:00:00.000Z` is `94 694 401 000` milliseconds, - * which includes one leap second insertion since `2004-01-01T00:00:00.000Z`. + * @note: International Atomic Time (TAI) is the time reference coordinate on the basis of the readings of atomic clocks, + * operated in accordance with the definition of the second, the unit of time of the International System of Units. + * TAI is a continuous time scale. UTC has discontinuities, as it is occasionally adjusted by leap seconds. + * As of 1 January, 2022, TimestampIts is 5 seconds ahead of UTC, because since the ITS epoch on 1 January 2004 00:00:00.000 UTC, + * further 5 leap seconds have been inserted in UTC. * + * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, + * which includes one leap second insertion since the ITS epoch. * @unit: millisecond * @category: Basic information - * Revision: V1.3.1 + * Revision: Description revised in in V2.1.1 */ -TimestampIts ::= INTEGER { - utcStartOf2004(0), - oneMillisecAfterUTCStartOf2004(1) -} (0..4398046511103) +TimestampIts ::= INTEGER (0..4398046511103) /** * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. @@ -3347,8 +3351,7 @@ VehicleWidth ::= INTEGER { * * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n < 0)` to indicate downwards acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `0` indicates zero acceleration. + * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. @@ -3589,7 +3592,8 @@ VruSizeClass ::= ENUMERATED { * The DE is an extension of the existing vehicular DE ExteriorLight. * * The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU or automatically by a vehicle or VRU system: + * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU + * or automatically by a vehicle or VRU system: * - 0 `unavailable` : indicates no information available. * - 1 `backFlashLight ` : indicates the status of the back flash light. * - 2 `helmetLight` : indicates the status of the helmet light. @@ -3737,9 +3741,10 @@ YawRateConfidence ::= ENUMERATED { * * The value shall be set to: * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. - * - `n (n > -32 766 and n < 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than `n x 0,01 degrees/s`, and greater than `(n-1) x 0,01 degrees/s`.. - * - `0` indicates that there is no rotation. - * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than `n x 0,01 degrees/s`, and greater than `(n-1) x 0,01 degrees/s`. + * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than `n x 0,01 degrees/s`, + and greater than `(n-1) x 0,01 degrees/s`. + * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than `n x 0,01 degrees/s`, + and greater than `(n-1) x 0,01 degrees/s`. * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. * - `32 767` to indicate that the information is not available. * @@ -3910,8 +3915,8 @@ CartesianAngularAcceleration ::= SEQUENCE { * * @field subCauseCode: the subordinate cause of a detected event. * - * The semantics of the entire DF are completely defined by the component causeCode. - * The interpretation of the subCauseCode may provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. * * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. * @@ -3931,8 +3936,8 @@ CauseCode ::= SEQUENCE { * * @field causeCode: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. * - * The semantics of the entire DF are completely defined by the component causeCode. - * The interpretation of the subCauseCode may provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. * * @category: Traffic information * Revision: Created in V2.1.1 @@ -4392,7 +4397,9 @@ EuVehicleCategoryCode ::= CHOICE { } /** - * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime or do not contain the COMPONENT eventDeltaTime. + * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime + * or do not contain the COMPONENT eventDeltaTime. + * * The eventPosition of each @ref EventPoint is defined with respect to the previous @Ref EventPoint in the list. * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. * @@ -4405,6 +4412,7 @@ EventZone::= EventHistory /** * The DF consists of a list of @ref EventPoint. + * * The eventPosition of each @ref EventPoint is defined with respect to the previous @Ref EventPoint in the list. * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. * @@ -4604,7 +4612,8 @@ InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManageme * * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. * - * @field expiryTime: 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 + * @field expiryTime: 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 * * @category: Communication information * Revision: created in V2.1.1 @@ -4995,8 +5004,8 @@ PathPointAbsolute ::= SEQUENCE { * @field yCoordinat: Y Coordinate, i.e. distance to detected object from the ITS-S's reference point to object reference point in y-direction at the time * of measurement, in a pre-defined coordinate system. * - * @field zCoordinate: Optional Z Coordinate, i.e. distance to detected object to object reference point from the ITS-S's reference point in z-direction at the time - * of measurement, in a pre-defined coordinate system. + * @field zCoordinate: Optional Z Coordinate, i.e. distance to detected object to object reference point from the ITS-S's reference point in z-direction + * at the time of measurement, in a pre-defined coordinate system. * * @field xSpeed: Speed of the detected object in the detecting ITS-S’s reference system in x-direction at the time * of measurement, in a pre-defined coordinate system, using the DF SpeedExtended. @@ -5038,8 +5047,8 @@ PathPointAbsolute ::= SEQUENCE { * @field rollAcceleration: optional Roll acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. * The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the x-axis. * - * @field @field pitchAcceleration: optional Pitch acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. - * The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the y-axis. + * @field @field pitchAcceleration: optional Pitch acceleration of object from the ITS-S's reference point at the time of measurement, in a + * pre-defined coordinate system. The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the y-axis. * * @field yawAcceleration: optional Yaw acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. * The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the z-axis. @@ -5481,8 +5490,8 @@ RoadSegmentReferenceId ::= SEQUENCE { * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant in @field subjectStation is safe. * - * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi^2 + LoDi^2 + VDi^2)/relative speed and represented in the nearest 100 ms. - * This field may be present only if subjectStation is present. + * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi^2 + LoDi^2 + VDi^2)/relative speed + * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. * * @category: Traffic information, Kinematics information * Revision: created in V2.1.1 @@ -5709,9 +5718,11 @@ TrailerData ::= SEQUENCE { * * @field: subjectStation: indicates the subject station. * - * @field: trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory with the trajectory of the station indicated in @field: subjectStation. + * @field: trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory + * with the trajectory of the station indicated in @field: subjectStation. * - * @field: trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory with the trajectory of the station indicated in @field: subjectStation. + * @field: trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory + * with the trajectory of the station indicated in @field: subjectStation. * * @category: Vehicle information * Revision: Created in V2.1.1 -- GitLab From 9618642bc1b14620ac14dd870a11da82efc66280 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Fri, 4 Mar 2022 09:45:44 +0000 Subject: [PATCH 14/91] Documentation update --- docs/ITS-Container.md | Bin 299139 -> 299209 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md index 360e58e44e73ddd3c120343e9b8c71836b63fb53..c0b787342753c7a99bddb1ee5bef920cc7da576f 100644 GIT binary patch delta 1852 zcmZuxU2GIp6wbY~Eix6#wg#jadQj2QZrg38A-083cDH4Vwn%>@5(2lgx80$;Gu!!T zDG3yU4<-`D?!zT$j7`Ku5;eMs6HF6?#26Hb7>qt>fW+WKV}ST9dhYCQZ3|74o%8pd zbG~!VJvmcxWv1fvsrveQ=rJAM3Qm&4ux_vv^v0v0+h99-Dg}-SLmb$M#d)IP^Eba; zMYd-51jn<(XDf0Kf`7+yZ|}W8vNsOADsJ7PYWCu5v0T%>`y}_%{&PX1<_?>0v=H@+ zbMKXuAOv%AADkZyDqA6(Ju+L9gW2`cY1ZE;wz+_E_{YN$&rfrsQC}^Str>OoEM89 z0^Qe(XS+z{qhi{-NW0juTB#JfyGWHd(?#?}MF)10{>O_@@>lHJN#f-THBvbmCynBl zon!}5MOB>iEDk{{Usedomvb*pHZEmtZ8zy#9A|cuL#vjg0`Yq{Nnx7qU8I+QcXk)K zxtwejUw=od#I`Y7Cf*+)SLE2U4}wAO(?PPotZ3diL=G1%0xcW75{>MuqphlU@GbK6 zQKC+td*1uFjMgp_AC*(h`?Zp;T#dQ@+(h3cs&}%M9;PU=T3SPUL*76=JuT%sjdWK0 z_!X%W*TS?@jB!%=q=CySmvWq?Tn;Znf~UB{6PvuMCi;ym_+~40F?OJh)@8p`g5r9c zFW66HwFN5#I!9Ty@>%nrS3(@pVJP9C#1${yvChOfA`< zLVrQ#QkM5|FdT06{~N;LFbwoZLeK==%y5}C3C-c~=F8J6Tz)5(Pjq=2(wrGK;xY%E zQbcnsS6tgc*G?fAW_EPLHC;P3iGpijPcWf7Nz-*eN6E6>jH8=INCnUvcmwFDw*lz@ zmO?YS4^2XfvkVma2*E^B$5KsAb1lS>B{rxkY?lj*rp$x;P?RPvdbb|zLk(~b|2H9f=$o`1o|d)&^tI*CI^vQg zwt(M!L$=0JNFq`K$th+-LbnSe!2H|}0qXJ$BYoJQiTF4fmN?{Mj)%C$R2_cL^BWMt z6=-e_`GndIOK0K^BHGYW91pN0awUtM@^@#5Ys|IzlI_cH8xk@P?5`F)w0kNHyB5yN z!VC+y0FrE+;}gyeq}}FLf&aoT#P)W)ygTqxtQAB{gjQEC%ChC5EW(J;z7@sG@N3Hk zFV$!79o;N;A0TV8*OxVm(I{>5Zbj)>J6_`}C+LKH8oUQ5=wEes>vNybpP$M<9OFdI zHtlUhb5MNvJw28ey**cHPnDRtL#6xGJM^Mb5CjUxy)AQe$Lo0Dlcv(-owAf^B2Led zb>85ZvV};+@r~m8pz?%QeMb2=f{q(*E7hX$xj=~*`AwM(i1U9a+eKzO%F)}(g*1Bn q(-WvI#{L&w(YyJabD?sc3 delta 1356 zcmah}T})g>6waBu3+zHE3#JIgWuj@iyDZDyMrw;xps*AO<)SP|3gTXt3*2V+ZhQB# z&?Z%D`{09(tyew%#I$I5@TF=tGATB(eQDAzX*BV{2aHJktu_>W@I{GpmyN9n36n`? z&Np+ub7syrb91)z%xvlTS3h02QDUBUrQBkKs@j+ul?^3HPbzwX%F(D2Q*_x-6Iy!B zRoD)q34`&9h_!W`8j}j8$zzH#M%4`ubInzr{`=W0VD1}Hw{Uq_$VcA~~$yc<%5XVT|~p-V)7QNE+xe~cya*`c@HSNAOgsn6%@k-{N9G*C&4ouEd7jw*C2$<;PJsc6=Xaco){3$S<%IZrs(dM&wX znm_vS_MA|G>j6^x1{9b*D@AOqjxYyS?I%+O)R@vWRhz(`3~}cNoV1q94Tts+cNJH$ zs%2%JG;~>=m^A3IL{hcnAHWOSUpsvSD2t>C3Kf9t~YhMCPaF3BqpNA0k1N-i5pabjpbK8M1Cj<5s2~(d(zyHB*|< zl*4K)rY4nW%ebNF{o&RJHwL}VQ%nsJy%CpAlj$ug&p!Y!OTA2%YRu_7)l9!k=Bw^Y zXFWrTP|A>AvuUsf0+_f?DqXr_y=pB%^@NfAX{=8KmowxAzN?O%TO?8?IC1GGQo{;< zCSM3S1G({%*?)Ny?;Q~y!FPTk#q+Ebzr$ ztov=Dv<)M71P^}sn_$P~RUw6+|0+0`^IM_bhRzkC89!;Z+1c6eg)4D Date: Mon, 7 Mar 2022 10:30:58 +0000 Subject: [PATCH 15/91] Replace ITS-Container.asn --- ITS-Container.asn | 1498 +++++++++++++++++++++++---------------------- 1 file changed, 753 insertions(+), 745 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 002ece7..ba3013b 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,6 +1,4 @@ -- Draft CDD ASN.1 module Release 2 (Version 3) --- Based on the official version available at @https://forge.etsi.org/rep/ITS/asn1/cdd_ts102894_2 --- prepared by Jasja Tijink for ETSI TC ITS WG1 (date 04.03.2022) ITS-Container { itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) version3 (3) -- Note: the final OID is still to be agreed. @@ -18,11 +16,11 @@ BEGIN * This DE indicates a change of acceleration. * * The value shall be set to: - * - `accelerate` if the acceleration is positive. - * - `decelerate` if the acceleration is negative. + * - 0 - `accelerate` - if the acceleration is positive. + * - 1 - `decelerate` - if the acceleration is negative. * * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ AccelerationChange::= ENUMERATED { accelerate (0), @@ -30,12 +28,12 @@ AccelerationChange::= ENUMERATED { } /** - * This DE reprents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. + * This DE represents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. * * The value shall be set to: - * - `1` if the acceleration accuracy is equal to or less than 0,1 m/s2. - * - `n (n > 1 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. + * - `1` if the acceleration accuracy is equal to or less than 0,1 m/s2. + * - `n (n > 1 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. * - `102` if the data is unavailable. * * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: @@ -46,9 +44,9 @@ AccelerationChange::= ENUMERATED { * * @note: If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. * - * @unit 0,1 m/s2 + * @unit 0,1 m/s2 * @category: Kinematics information - * Revision: Description revised in V2.1.1 + * @revision: Description revised in V2.1.1 */ AccelerationConfidence ::= INTEGER { pointOneMeterPerSecSquared(1), @@ -64,21 +62,21 @@ AccelerationConfidence ::= INTEGER { * control system, cruise control system and speed limiter system. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `brakePedalEngaged` : Driver is stepping on the brake pedal, - * - 1 `gasPedalEngaged` : Driver is stepping on the gas pedal, - * - 2 `emergencyBrakeEngaged` : emergency brake system is engaged, - * - 3 `collisionWarningEngaged`: collision warning system is engaged, - * - 4 `accEngaged` : ACC is engaged, - * - 5 `cruiseControlEngaged` : cruise control is engaged, - * - 6 `speedLimiterEngaged` : speed limiter is engaged. - * - 7 : reserved for future use + * - 0 - `brakePedalEngaged` - Driver is stepping on the brake pedal, + * - 1 - `gasPedalEngaged` - Driver is stepping on the gas pedal, + * - 2 - `emergencyBrakeEngaged` - emergency brake system is engaged, + * - 3 - `collisionWarningEngaged`- collision warning system is engaged, + * - 4 - `accEngaged` - ACC is engaged, + * - 5 - `cruiseControlEngaged` - cruise control is engaged, + * - 6 - `speedLimiterEngaged` - speed limiter is engaged. + * - 7 - reserved for future use * * Otherwise (for example when the corresponding system is not available due to non equipped system * or information is unavailable), the corresponding bit shall be set to _0_. * * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. * @category: Kinematics information - * Revision: V1.3.1 + * @revision: V1.3.1 */ AccelerationControl ::= BIT STRING { brakePedalEngaged (0), @@ -94,15 +92,16 @@ AccelerationControl ::= BIT STRING { * This DE represents the value of an acceleration component in a defined coordinate system. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `160` for acceleration or greater than 15,9 m/s2. + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * - * * @unit 0,1 m/s2 + * @note: zero acceleration is indicated using n=0. + * @unit 0,1 m/s2 * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ AccelerationValue ::= INTEGER { pointOneMeterPerSecSquared (1), @@ -121,7 +120,7 @@ AccelerationValue ::= INTEGER { * - `3`: in case of NR-V2X access technology class. * * @category: Communication information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ AccessTechnologyClass ::= ENUMERATED { any(0), @@ -135,20 +134,20 @@ AccessTechnologyClass ::= ENUMERATED { * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. * * The value shall be set to: - * - 0 `unavailable` : in case the information on the sub cause of the accident is unavailable, - * - 1 `multiVehicleAccident` : in case more than two vehicles are involved in accident, - * - 2 `heavyAccident` : in case the airbag of the vehicle involved in the accident is triggered, - * the accident requires important rescue and/or recovery work, - * - 3 `accidentInvolvingLorry` : in case the accident involves a lorry, - * - 4 `accidentInvolvingBus` : in case the accident involves a bus, - * - 5 `accidentInvolvingHazardousMaterials`: in case the accident involves hazardous material, - * - 6 `accidentOnOppositeLane` : in case the accident happens on opposite lanes, - * - 7 `unsecuredAccident` : in case the accident is not secured, - * - 8 `assistanceRequested` : in case rescue and assistance are requested, - * - 9-255 reserved for future usage. + * - 0 - `unavailable` - in case the information on the sub cause of the accident is unavailable, + * - 1 - `multiVehicleAccident` - in case more than two vehicles are involved in accident, + * - 2 - `heavyAccident` - in case the airbag of the vehicle involved in the accident is triggered, + * the accident requires important rescue and/or recovery work, + * - 3 - `accidentInvolvingLorry` - in case the accident involves a lorry, + * - 4 - `accidentInvolvingBus` - in case the accident involves a bus, + * - 5 - `accidentInvolvingHazardousMaterials`- in case the accident involves hazardous material, + * - 6 - `accidentOnOppositeLane` - in case the accident happens on opposite lanes, + * - 7 - `unsecuredAccident` - in case the accident is not secured, + * - 8 - `assistanceRequested` - in case rescue and assistance are requested, + * - 9-255 - reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ AccidentSubCauseCode ::= INTEGER { unavailable(0), @@ -166,21 +165,21 @@ AccidentSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. * * The value shall be set to: - * - 0 `unavailable` : in case information on the cause of the low road adhesion is unavailabl. - * - 1 `heavyFrostOnRoad`: in case the low road adhesion is due to heavy frost on the road. - * - 2 `fuelOnRoad` : in case the low road adhesion is due to fuel on the road. - * - 3 `mudOnRoad` : in case the low road adhesion is due to mud on the road. - * - 4 `snowOnRoad` : in case the low road adhesion is due to snow on the road. - * - 5 `iceOnRoad` : in case the low road adhesion is due to ice on the road. - * - 6 `blackIceOnRoad` : in case the low road adhesion is due to black ice on the road. - * - 7 `oilOnRoad` : in case the low road adhesion is due to oil on the road. - * - 8 `looseChippings` : in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. - * - 9 `instantBlackIce` : in case the low road adhesion is due to instant black ice on the road surface. - * - 10 `roadsSalted` : when the low road adhesion is due to salted road. - * - 11-255 : are reserved for future usage. + * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailabl. + * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road. + * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road. + * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road. + * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road. + * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road. + * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road. + * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road. + * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. + * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface. + * - 10 - `roadsSalted` - when the low road adhesion is due to salted road. + * - 11-255 - are reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { unavailable(0), @@ -200,17 +199,17 @@ AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. * * The value shall be set to: - * - 0 `unavailable` : in case information on the type of extreme weather condition is unavailable. - * - 1 `strongWinds` : in case the type of extreme weather condition is strong wind. - * - 2 `damagingHail`: in case the type of extreme weather condition is damaging hail. - * - 3 `hurricane` : in case the type of extreme weather condition is hurricane. - * - 4 `thunderstorm`: in case the type of extreme weather condition is thunderstorm. - * - 5 `tornado` : in case the type of extreme weather condition is tornado. - * - 6 `blizzard` : in case the type of extreme weather condition is blizzard. - * - 7-255 : are reserved for future usage. + * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable. + * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind. + * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail. + * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane. + * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm. + * - 5 - `tornado` - in case the type of extreme weather condition is tornado. + * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. + * - 7-255 - are reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { unavailable(0), @@ -226,14 +225,14 @@ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. * * The value shall be set to: - * - 0 `unavailable` : in case information on the type of precipitation is unavailable. - * - 1 `heavyRain` : in case the type of precipitation is heavy rain. - * - 2 `heavySnowfall` : in case the type of precipitation is heavy snow fall. - * - 3 `softHail` : in case the type of precipitation is soft hail. - * - 4-255 : are reserved for future usage + * - 0 - `unavailable` : in case information on the type of precipitation is unavailable. + * - 1 - `heavyRain` : in case the type of precipitation is heavy rain. + * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall. + * - 3 - `softHail` : in case the type of precipitation is soft hail. + * - 4-255 : are reserved for future usage * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { unavailable(0), @@ -246,19 +245,19 @@ AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. * * The value shall be set to: - * - 0 `unavailable` : in case information on the cause of low visibility is unavailable. - * - 1 `fog` : in case the cause of low visibility is fog. - * - 2 `smoke` : in case the cause of low visibility is smoke. - * - 3 `heavySnowfall` : in case the cause of low visibility is heavy snow fall. - * - 4 `heavyRain` : in case the cause of low visibility is heavy rain. - * - 5 `heavyHail` : in case the cause of low visibility is heavy hail. - * - 6 `lowSunGlare` : in case the cause of low visibility is sun glare. - * - 7 `sandstorms` : in case the cause of low visibility is sand storm. - * - 8 `swarmsOfInsects`: in case the cause of low visibility is swarm of insects. - * - 9-255 : are reserved for future usage + * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable. + * - 1 - `fog` - in case the cause of low visibility is fog. + * - 2 - `smoke` - in case the cause of low visibility is smoke. + * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall. + * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain. + * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail. + * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare. + * - 7 - `sandstorms` - in case the cause of low visibility is sand storm. + * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. + * - 9-255 - are reserved for future usage * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { unavailable(0), @@ -276,22 +275,22 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. * * The value shall be set to: - * - 0 `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. - * - 1 `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. - * - 2 `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. - * - 3 `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. - * - 4 `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. - * - 5 `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. - * - 6 `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. - * - 7 `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. - * - 8 `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. - * - 9 `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. - * - 10 `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. - * - 11 `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. - * - 12 `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. - * - 13 `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. - * - 14 `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. - * - 15 `unavailable` if the altitude accuracy information is unavailable + * - 0 - `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. + * - 1 - `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. + * - 2 - `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. + * - 3 - `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. + * - 4 - `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. + * - 5 - `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. + * - 6 - `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. + * - 7 - `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. + * - 8 - `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. + * - 9 - `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. + * - 10 - `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. + * - 11 - `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. + * - 12 - `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. + * - 13 - `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. + * - 14 - `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. + * - 15 - `unavailable` if the altitude accuracy information is unavailable * * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused * by several reasons, such as: @@ -304,7 +303,7 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @category: GeoReference information - * Revision: V1.3.1 + * @revision: V1.3.1 */ AltitudeConfidence ::= ENUMERATED { alt-000-01 (0), @@ -329,14 +328,14 @@ AltitudeConfidence ::= ENUMERATED { * This DE represents the altitude value in a WGS84 co-ordinate system. * * The value shall be set to: - * - `-100 000` if the altitude is equal to or less than "-1 000 m". + * - `-100 000` if the altitude is equal to or less than `-1 000 m`. * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than `n x 0.01 meters` and greater than `(n-1) x 0,01` meters. * - `800 000` if the altitude greater than `7 999 m`. * - `800 001` if the information is not available. * * @unit: 0.01 meter * @category: GeoReference information - * Revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) + * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) */ AltitudeValue ::= INTEGER { referenceEllipsoidSurface(0), @@ -349,13 +348,13 @@ AltitudeValue ::= INTEGER { * * The value shall be set to: * - `1` if the accuracy is equal to or less than 0,1 degrees. - * - `n (n > 1 and n < 126)` if the accuracy is equal to or less than `n * 0,1 degrees` and greater than `(n-1) x * 0,1 degrees` meters. + * - `n (n > 1 and n < 126)` if the accuracy is equal to or less than `n * 0,1 degrees` and greater than `(n-1) x * 0,1 degrees`. * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. * - `127` if the accuracy information is not available. * * @unit 0,1 degrees * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ AngleConfidence ::= INTEGER { zeroPointOneDegree (1), @@ -369,18 +368,18 @@ AngleConfidence ::= INTEGER { * For correlation computation, maximum interval levels can be assumed. * * The value shall be set to: - * - 0 `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second - * - 1 `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second - * - 2 `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second - * - 3 `degSec-001-00` if the accuracy is equal to or less than 1 degree/second - * - 4 `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second - * - 5 `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second - * - 6 `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second - * - 7 `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second - * - 8 `unavailable` if the accuracy information is unavailable + * - 0 - `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second + * - 1 - `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second + * - 2 - `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second + * - 3 - `degSec-001-00` if the accuracy is equal to or less than 1 degree/second + * - 4 - `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second + * - 5 - `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second + * - 6 - `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second + * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second + * - 8 - `unavailable` if the accuracy information is unavailable * * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ AngularSpeedConfidence ::= ENUMERATED { degSec-000-01 (0), @@ -399,18 +398,18 @@ AngularSpeedConfidence ::= ENUMERATED { * For correlation computation, maximum interval levels shall be assumed. * * The value shall be set to: - * - 0 `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second^2 - * - 1 `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second^2 - * - 2 `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second^2 - * - 3 `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second^2 - * - 4 `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second^2 - * - 5 `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second^2 - * - 6 `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second^2 - * - 7 `outOfRange (7)` if the accuracy is out of range, i.e. greater than 100 degrees/second^2 - * - 8 unavailable (8)` if the accuracy information is unavailable + * - 0 - `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second2 + * - 1 - `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second2 + * - 2 - `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second2 + * - 3 - `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second2 + * - 4 - `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second2 + * - 5 - `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second2 + * - 6 - `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second2 + * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second2 + * - 8 - `unavailable` if the accuracy information is unavailable * * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ AngularAccelerationConfidence ::= ENUMERATED { degSecSquared-000-01 (0), @@ -431,13 +430,13 @@ AngularAccelerationConfidence ::= ENUMERATED { * The value shall be set to: * - `1` if the angle is equal to or less than 0,1 degrees. * - `n (n > 1 and n < 3601)` if the angle is equal to or less than `n x 0,1 degrees`, and greater than `(n-1) x 0,1 degrees`. - * - `36001` if the accuracy information is not available + * - `36001` if the accuracy information is not available * * @unit 0,1 degrees * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ -CartesianAngleValue ::= INTEGER { +CartesianAngleValue ::= INTEGER { -- tbd define the value 0 vs 3600 zeroPointOneDegree (1), oneDegree (10), unavailable (3601) @@ -448,14 +447,14 @@ CartesianAngleValue ::= INTEGER { * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `-32766` if the speed is equal to or less than `327,66 degrees/s` - * - `n (n > -32766 and n < 32766)` if the speed is equal to or less than `n x 0,01 degrees/s`, and greater than `(n-1) x 0,01 degrees/s`. - * - 32766` if the speed is greater than `327,65 degrees/s` - * - 32767 if the information is unavailable + * - `-32766` if the speed is equal to or less than `327,66` degrees/s + * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than `n` x 0,01 degrees/s, and greater than `(n-1)` x 0,01 degrees/s. + * - `32766` if the speed is greater than `327,65 degrees/s` + * - `32767` if the information is unavailable * * @unit 0,01 degrees/s * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CartesianAngularSpeedValue ::= INTEGER { negativeOutofRange (-32766), @@ -468,14 +467,15 @@ CartesianAngularSpeedValue ::= INTEGER { * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `-32766` if the acceleration is equal to or less than `327,66 degrees/s^2` - * - `n (n > -32766 and n < 32766)` if the acceleration is equal to or less than `n x 0,01 degrees/s^2`, and greater than `(n-1) x 0,01 degrees/s^2`. - * - 32766` if the acceleration is greater than `327,65 degrees/s^2` - * - 32767 if the information is unavailable + * - `-32766` if the acceleration is equal to or less than `327,66` degrees/s2 + * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than `n` x 0,01 degrees/s2, + and greater than `(n-1)` x 0,01 degrees/s2. + * - `32766` if the acceleration is greater than `327,65` degrees/s2 + * - `32767` if the information is unavailable * - * @unit 0,01 degrees/s^2 (degrees per second squared) + * @unit 0,01 degrees/s2 (degrees per second squared) * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CartesianAngularAccelerationValue ::= INTEGER { negativeOutofRange (-32766), @@ -488,48 +488,48 @@ CartesianAngularAccelerationValue ::= INTEGER { *The DE represents the value of the cause code of an event. * * The value shall be set to: - * - 0 reserved for future use, - * - 1 `trafficCondition` : in case the type of event is an abnormal traffic condition, - * - 2 `accident` : in case the type of event is a road accident, - * - 3 `roadworks` : in case the type of event is roadwork, - * - 4 reserved for future usage, - * - 5 `impassability` : in case the type of event is unmanaged road blocking, referring to any - * blocking of a road, partial or total, which has not been adequately - * secured and signposted, - * - 6 `adverseWeatherCondition-Adhesion` : in case the type of event is low adhesion, - * - 7 `aquaplaning` : danger of aquaplaning on the road, - * - 8 reserved for future usage, - * - 9 `hazardousLocation-SurfaceCondition` : in case the type of event is abnormal road surface condition, - * - 10 `hazardousLocation-ObstacleOnTheRoad` : in case the type of event is obstacle on the road, - * - 11 `hazardousLocation-AnimalOnTheRoad` : in case the type of event is animal on the road, - * - 12 `humanPresenceOnTheRoad` : in case the type of event is human presence on the road, - * - 13 reserved for future usage, - * - 14 `wrongWayDriving` : in case the type of the event is vehicle driving in wrong way, - * - 15 `rescueAndRecoveryWorkInProgress` : in case the type of event is rescue and recovery work for accident or for a road hazard in progress, - * - 16 reserved for future usage, - * - 17 `adverseWeatherCondition-ExtremeWeatherCondition`: in case the type of event is extreme weather condition, - * - 18 `adverseWeatherCondition-Visibility` : in case the type of event is low visibility, - * - 19 `adverseWeatherCondition-Precipitation` : in case the type of event is precipitation, - * - 20 `violence` : in case the the type of event is human violence on or near the road, - * - 21-25 reserved for future usage, - * - 26 `slowVehicle` : in case the type of event is slow vehicle driving on the road, - * - 27 `dangerousEndOfQueue` : in case the type of event is dangerous end of vehicle queue, - * - 28-90 are reserved for future usage, - * - 91 `vehicleBreakdown` : in case the type of event is break down vehicle on the road, - * - 92 `postCrash` : in case the type of event is a detected crash, - * - 93 `humanProblem` : in case the type of event is human health problem in vehicles involved in traffic, - * - 94 `stationaryVehicle` : in case the type of event is stationary vehicle, - * - 95 `emergencyVehicleApproaching` : in case the type of event is approaching vehicle operating emergency mission, - * - 96 `hazardousLocation-DangerousCurve` : in case the type of event is dangerous curve, - * - 97 `collisionRisk` : in case the type of event is a collision risk, - * - 98 `signalViolation` : in case the type of event is signal violation, - * - 99 `dangerousSituation` : in case the type of event is dangerous situation in which autonomous safety system in vehicle - is activated, - * - 100 `railwayLevelCrossing` : in case the type of event is a railway level crossing. - * - 101-255 are reserved for future usage. + * - 0 - - reserved for future use, + * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, + * - 2 - `accident` - in case the type of event is a road accident, + * - 3 - `roadworks` - in case the type of event is roadwork, + * - 4 - reserved for future usage, + * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any + * blocking of a road, partial or total, which has not been adequately + * secured and signposted, + * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, + * - 7 - `aquaplaning` - danger of aquaplaning on the road, + * - 8 - reserved for future usage, + * - 9 - `hazardousLocation-SurfaceCondition` - in case the type of event is abnormal road surface condition, + * - 10 - `hazardousLocation-ObstacleOnTheRoad` - in case the type of event is obstacle on the road, + * - 11 - `hazardousLocation-AnimalOnTheRoad` - in case the type of event is animal on the road, + * - 12 - `humanPresenceOnTheRoad` - in case the type of event is human presence on the road, + * - 13 - reserved for future usage, + * - 14 - `wrongWayDriving` - in case the type of the event is vehicle driving in wrong way, + * - 15 - `rescueAndRecoveryWorkInProgress` - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, + * - 16 - reserved for future usage, + * - 17 - `adverseWeatherCondition-ExtremeWeatherCondition`- in case the type of event is extreme weather condition, + * - 18 - `adverseWeatherCondition-Visibility` - in case the type of event is low visibility, + * - 19 - `adverseWeatherCondition-Precipitation` - in case the type of event is precipitation, + * - 20 - `violence` - in case the the type of event is human violence on or near the road, + * - 21-25 - reserved for future usage, + * - 26 - `slowVehicle` - in case the type of event is slow vehicle driving on the road, + * - 27 - `dangerousEndOfQueue` - in case the type of event is dangerous end of vehicle queue, + * - 28-90 - are reserved for future usage, + * - 91 - `vehicleBreakdown` - in case the type of event is break down vehicle on the road, + * - 92 - `postCrash` - in case the type of event is a detected crash, + * - 93 - `humanProblem` - in case the type of event is human health problem in vehicles involved in traffic, + * - 94 - `stationaryVehicle` - in case the type of event is stationary vehicle, + * - 95 - `emergencyVehicleApproaching` - in case the type of event is approaching vehicle operating emergency mission, + * - 96 - `hazardousLocation-DangerousCurve` - in case the type of event is dangerous curve, + * - 97 - `collisionRisk` - in case the type of event is a collision risk, + * - 98 - `signalViolation` - in case the type of event is signal violation, + * - 99 - `dangerousSituation` - in case the type of event is dangerous situation in which autonomous safety system in vehicle + * is activated, + * - 100 - `railwayLevelCrossing` - in case the type of event is a railway level crossing. + * - 101-255 - are reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ CauseCodeType ::= INTEGER { reserved (0), @@ -564,11 +564,11 @@ CauseCodeType ::= INTEGER { } (0..255) /** - * This DF represents the value of a cartesian coordinate with a range of - 30,94 meters to +10 meters. + * This DF represents the value of a cartesian coordinate with a range of `-30,94` meters to `+10` meters. * * @unit 0,01 m * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CartesianCoordinateSmall::= INTEGER { negativeZeroPointZeroOneMeter (-1), @@ -579,20 +579,20 @@ CartesianCoordinateSmall::= INTEGER { } (-3094..1001) /** - * This DF represents the value of a cartesian coordinate with a range of +- 327,68 meters. + * This DF represents the value of a cartesian coordinate with a range of `+-327,68` meters. * * @unit 0,01 m * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CartesianCoordinate::= INTEGER (-32768..32767) /** - * This DF represents the value of a cartesian coordinate with a range of +- 1 327,68 meters. + * This DF represents the value of a cartesian coordinate with a range of `+-1 327,68` meters. * * @unit 0,01 m * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CartesianCoordinateExtended::= INTEGER (-132768..132767) @@ -600,17 +600,17 @@ CartesianCoordinateExtended::= INTEGER (-132768..132767) * This DE represents the ID of a CEN DSRC tolling zone. * * @category: Communication information - * Revision: V1.3.1 + * @revision: V1.3.1 */ CenDsrcTollingZoneID::= ProtectedZoneID /** - * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 . + * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 . * * The value shall be set to `0` if the information is unavailable * * @category: Cluster information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ClusterCardinalitySize::= INTEGER { unavailable(0), @@ -621,7 +621,7 @@ ClusterCardinalitySize::= INTEGER { * This DE represents the identifier of a cluster. * * @category: Cluster information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ClusterId ::= INTEGER(0..255) @@ -629,16 +629,16 @@ ClusterId ::= INTEGER(0..255) * This DE indicates the reason why a cluster leader intends to break up the cluster. * * The value shall be set to: - * - 0 `notProvided` : if the information is not provided. - * - 1 `clusteringPurposeCompleted` : if the cluster purposes has been completed. - * - 2 `leaderMovedOutOfClusterBoundingBox` : if the leader moved out o fthe cluster bounding box. - * - 3 `joiningAnotherCluster` : if the cluster leader is about to join another cluster. - * - 4 `enteringLowRiskAreaBasedOnMaps` : if the cluster is entering an area idenrified as low risk based on the use of maps. - * - 5 `receptionOfCpmContainingCluster` : if the leader received a Collective Perception Message containing information about the same cluster. - * - 6 to 15 : are reserved for future use + * - 0 - `notProvided` - if the information is not provided. + * - 1 - `clusteringPurposeCompleted` - if the cluster purposes has been completed. + * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box. + * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster. + * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps. + * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. + * - 6 to 15 - reserved for future use * * @category: Cluster information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ClusterBreakupReason ::= ENUMERATED { notProvided (0), @@ -654,19 +654,19 @@ ClusterBreakupReason ::= ENUMERATED { * This DE indicates the reason why a cluster participant is leaving the cluster. * * The value shall be set to: - * - 0 `notProvided ` : if the information is not provided. - * - 1 `clusterLeaderLost` : if the cluster leader cannot be found anymore. - * - 2 `clusterDisbandedByLeader` : if the cluster has been disbounded by the leader. - * - 3 `outOfClusterBoundingBox` : if the participants moved out of the cluster´s bounding box. - * - 4 `outOfClusterSpeedRange` : if the cluster speed moved out of adefined range. - * - 5 `joiningAnotherCluster` : if the participant is joining another cluster. - * - 6 `cancelledJoin` : if the participant is cancelling a joining procedure. - * - 7 `failedJoin` : if the participant failed to join the cluster. - * - 8 `safetyCondition` : if a safety condition applies. - * - 9 to 15 : are reserved for future use + * - 0 - `notProvided ` - if the information is not provided. + * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore. + * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbounded by the leader. + * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box. + * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of adefined range. + * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster. + * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure. + * - 7 - `failedJoin` - if the participant failed to join the cluster. + * - 8 - `safetyCondition` - if a safety condition applies. + * - 9 to 15 - reserved for future use * * @category: Cluster information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ClusterLeaveReason ::= ENUMERATED { notProvided (0), @@ -685,17 +685,17 @@ ClusterLeaveReason ::= ENUMERATED { * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. * * The value shall be set to: - * - 0 `unavailable` : in case information on the type of collision risk is unavailable, - * - 1 `longitudinalCollisionRisk`: in case the type of detected collision risk is longitudinal collision risk, - * e.g. forward collision or face to face collision, - * - 2 `crossingCollisionRisk` : in case the type of detected collision risk is crossing collision risk, - * - 3 `lateralCollisionRisk` : in case the type of detected collision risk is lateral collision risk, - * - 4 `vulnerableRoadUser` : in case the type of detected collision risk involves vulnerable road users - * e.g. pedestrians or bicycles, - * - 5-255 : are reserved for future usage. + * - 0 - `unavailable` - in case information on the type of collision risk is unavailable, + * - 1 - `longitudinalCollisionRisk`- in case the type of detected collision risk is longitudinal collision risk, + * e.g. forward collision or face to face collision, + * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, + * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, + * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users + * e.g. pedestrians or bicycles, + * - 5-255 - are reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ CollisionRiskSubCauseCode ::= INTEGER { unavailable(0), @@ -710,13 +710,13 @@ CollisionRiskSubCauseCode ::= INTEGER { * * The value shall be set to: * - `1` if the accuracy is equal to or less than `0,01 meter`. - * - `n (n > 1 and n < 4094)` if the accuracy is is equal to or less than `n x 0,01 meter`, and greater than `(n-1) x 0,1 meter`. - * - `4094` if the accuracy information is greater than 40,93 meter. + * - `n` (`n > 1` and `n < 4094`) if the accuracy is is equal to or less than `n` x 0,01 meter, and greater than `(n-1)` x 0,1 meter. + * - `4094` if the accuracy information is greater than `40,93` meter. * - `4095` if the accuracy information is not available. * * @unit 0,01 m * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CoordinateConfidence ::= INTEGER { zeroPointZeroOneMeter (1), @@ -729,14 +729,14 @@ CoordinateConfidence ::= INTEGER { * * The following values are specified. * - `-100` indicates full negative correlation - * - `n (n > -100 and n < 0)` if the correlation is negative and equal to n*100. + * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to `n*100`. * - `0` indicates not correlated or unavailable - * - `n (n > 0 and n < 100)` if the correlation is positive and equal to n*100. + * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to `n*100`. * - `100` indicates full positive correlation * * @unit: the value is scaled by 100 * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CorrelationRowValue ::= INTEGER { full-negative-correlation (-100), @@ -749,12 +749,12 @@ CorrelationRowValue ::= INTEGER { * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. * * The value shall be set to: - * - 0 `yawRateUsed` : if the yaw rate is used. - * - 1 `yawRateNotUsed` : if the yaw rate is not used. - * - 2 `unavailable` : if the information of curvature calculation mode is unknown. + * - 0 - `yawRateUsed` - if the yaw rate is used. + * - 1 - `yawRateNotUsed` - if the yaw rate is not used. + * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ CurvatureCalculationMode ::= ENUMERATED { yawRateUsed(0), @@ -767,14 +767,14 @@ CurvatureCalculationMode ::= ENUMERATED { * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. * * The value shall be set to: - * - 0 `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. - * - 1 `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. - * - 2 `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. - * - 3 `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. - * - 4 `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. - * - 5 `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. - * - 6 `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. - * - 7 `unavailable` if the information is not available. + * - 0 - `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. + * - 1 - `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. + * - 2 - `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. + * - 3 - `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. + * - 4 - `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. + * - 5 - `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. + * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. + * - 7 - `unavailable` if the information is not available. * * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by * several reasons, such as: @@ -787,7 +787,7 @@ CurvatureCalculationMode ::= ENUMERATED { * and therefore cannot be trusted. Such value is not useful for the application. * * @category: Vehicle information - * Revision: description revised in V2.1.1 + * @revision: description revised in V2.1.1 */ CurvatureConfidence ::= ENUMERATED { onePerMeter-0-00002 (0), @@ -802,27 +802,27 @@ CurvatureConfidence ::= ENUMERATED { /** * This DE describes vehicle turning curve with the following information: - * + * ``` * Value = 1 / Radius * 10000 - * + * ``` * wherein radius is the vehicle turning curve radius in meters. * * Positive values indicate a turning curve to the left hand side of the driver. * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. * * The value shall be set to: - * - `-1023` for values smaller than -1023. - * - `n (n > -1023 and n < 0)` for negative values equal to or less than `n`, and greater than `(n-1)`. + * - `-1023` for values smaller than `-1023`. + * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than `n`, and greater than `(n-1)`. * - `0` when the vehicle is moving straight. - * - `n (n > 0 and n < 1022)` for positive values equal to or less than `n`, and greater than `(n-1)`. - * - `1022`, for values greater than 1021. + * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than `n`, and greater than `(n-1)`. + * - `1022`, for values greater than `1021`. * - `1023`, if the information is not available. * * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. * * @unit: 1 over 10 000 metres * @category: Vehicle information - * Revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) + * @revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) */ CurvatureValue ::= INTEGER { outOfRangeNegative (-1023), @@ -835,15 +835,15 @@ CurvatureValue ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. * * The following value are specified: - * - 0 `unavailable` : in case information on the type of dangerous queue is unavailable, - * - 1 `suddenEndOfQueue`: in case a sudden end of queue is detected, e.g. due to accident or obstacle, - * - 2 `queueOverHill` : in case the dangerous end of queue is detected on the road hill, - * - 3 `queueAroundBend` : in case the dangerous end of queue is detected around the road bend, - * - 4 `queueInTunnel` : in case queue is detected in tunnel, - * - 5-255 reserved for future usage. + * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, + * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, + * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, + * - 3 - `queueAroundBend` - in case the dangerous end of queue is detected around the road bend, + * - 4 - `queueInTunnel` - in case queue is detected in tunnel, + * - 5-255 - reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ DangerousEndOfQueueSubCauseCode ::= INTEGER { unavailable(0), @@ -855,12 +855,12 @@ DangerousEndOfQueueSubCauseCode ::= INTEGER { /** * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. - * The value is assigned according to "_class_" and "_division_" definitions of dangerous goods as specified in part II, + * The value is assigned according to `_class_` and `_division_` definitions of dangerous goods as specified in part II, * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. * * * @category Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ DangerousGoodsBasic::= ENUMERATED { explosives1(0), @@ -889,18 +889,18 @@ DangerousGoodsBasic::= ENUMERATED { * This DE represents the value of the sub cause codes of the @ ref CauseCode `dangerousSituation` * * The value shall be set to: - * - 0 `unavailable` : in case information on the type of dangerous situation is unavailable, - * - 1 `emergencyElectronicBrakeEngaged` : in case emergency electronic brake is engaged, - * - 2 `preCrashSystemEngaged` : in case pre-crash system is engaged, - * - 3 `espEngaged` : in case Electronic Stability Program (ESP) system is engaged, - * - 4 `absEngaged` : in case Anti-lock braking system (ABS) is engaged, - * - 5 `aebEngaged` : in case Autonomous Emergency Braking (AEB) system is engaged, - * - 6 `brakeWarningEngaged` : in case brake warning is engaged, - * - 7 `collisionRiskWarningEngaged` : in case collision risk warning is engaged, - * - 8-255: : are reserved for future usage. + * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, + * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, + * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, + * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, + * - 4 - `absEngaged` - in case Anti-lock braking system (ABS) is engaged, + * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, + * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, + * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, + * - 8-255 - reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ DangerousSituationSubCauseCode ::= INTEGER { unavailable(0), @@ -919,15 +919,15 @@ DangerousSituationSubCauseCode ::= INTEGER { * * The value shall be set to: * - `-12700` for values equal to or lower than `-127 metres`. - * - `n (n > -12700 and n <= 0)` for altitude offset `n x 0,01 meter` below the reference position. + * - `n` (`n > -12700` and `n <= 0) for altitude offset `n x 0,01` meter below the reference position. * - `0` for no altitudinal offset. - * - `n (n > 0 and n < 12799)` for altitude offset `n x 0,01 meter` above the reference position. - * - `12799` for values equal to or greater than `127,99 metres`. + * - `n` (`n > 0` and `n < 12799`) for altitude offset `n x 0,01` meter above the reference position. + * - `12799` for values equal to or greater than `127,99` metres. * - `12800` when the information is unavailable. * * @unit: 0.01 metre * @category: GeoReference information - * Revision: editorial update in V2.1.1 + * @revision: editorial update in V2.1.1 */ DeltaAltitude ::= INTEGER { oneCentimeterUp (1), @@ -940,14 +940,14 @@ DeltaAltitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - n (n >= -131071 and n < 0) for offset `n x 0,1 microdegrees` towards the south from the reference position. + * - `n` (`n >= -131071` and `n < 0`) for offset `n x 0,1` microdegrees towards the south from the reference position. * - `0` for no latitudinal offset. - * - n (n > 0 and n < 131072) for offset `n x 0,1 microdegrees` towards the north from the reference position. + * - `n` (`n > 0` and `n < 131072`) for offset `n x 0,1` microdegrees towards the north from the reference position. * - `131072` when the information is unavailable. * * @unit: 0.1 microdegree * @category: GeoReference information - * Revision: editorial update in V2.1.1 + * @revision: editorial update in V2.1.1 */ DeltaLatitude ::= INTEGER { oneMicrodegreeNorth (10), @@ -960,14 +960,14 @@ DeltaLatitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n (n >= -131071 and n < 0)` for offset `n x 0,1 microdegrees` towards the west from the reference position. + * - `n` (`n >= -131071` and `n < 0`) for offset `n x 0,1` microdegrees towards the west from the reference position. * - `0` for no longitudinal offset. - * - `n (n > 0 and n < 131072`) for offset `n x 0,1 microdegrees` towards the east from the reference position. + * - `n` (`n > 0` and `n < 131072`) for offset `n x 0,1` microdegrees towards the east from the reference position. * - `131072` when the information is unavailable. * * @unit: 0.1 microdegree * @category: GeoReference information - * Revision: editorial update in V2.1.1 + * @revision: editorial update in V2.1.1 */ DeltaLongitude ::= INTEGER { oneMicrodegreeEast (10), @@ -980,7 +980,7 @@ DeltaLongitude ::= INTEGER { * * @unit: 0,01 s * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ DeltaTimeHundredthOfSecond::= INTEGER { tenMilliSeconds(1) @@ -993,7 +993,7 @@ DeltaTimeHundredthOfSecond::= INTEGER { * * @unit: 1 ms * @category: Basic information - * Revision: Created in V2.1.1 from the DE TransmissionInterval + * @revision: Created in V2.1.1 from the DE TransmissionInterval */ DeltaTimeMilliSecondPos ::= INTEGER { oneMilliSecond(1), @@ -1005,7 +1005,7 @@ DeltaTimeMilliSecondPos ::= INTEGER { * * @unit: 1 ms * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ DeltaTimeMilliSecondPosNeg ::= INTEGER { oneMilliSecond (1) @@ -1013,12 +1013,12 @@ DeltaTimeMilliSecondPosNeg ::= INTEGER { /** * This DE represents a difference in time with respect to a reference time. - * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert a VruClusterOpTimestamp to a GenerationDeltaTime, - * multiply by 256 (i.e. append a "00" byte) + * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert a @ref VruClusterOpTimestamp to a @ref GenerationDeltaTime, + * multiply by 256 (i.e. append a `00` byte) * * @unit: 256 milliseconds * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ DeltaTimeQuarterSecond::= INTEGER (1..255) @@ -1027,7 +1027,7 @@ DeltaTimeQuarterSecond::= INTEGER (1..255) * * @unit: 0,1 s * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ DeltaTimeTenthOfSecond::= INTEGER { zero(0), @@ -1041,7 +1041,7 @@ DeltaTimeTenthOfSecond::= INTEGER { * * @unit: 1 s * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ DeltaTimeSecond ::= INTEGER { -- tbd timeOfDetection(0), @@ -1053,13 +1053,13 @@ DeltaTimeSecond ::= INTEGER { -- tbd * Example: a reference direction may be implicitly defined by the definition of a geographical zone. * * The value shall be set to: - * - 0 `sameDirection` : to indicate the same direction as the reference direction. - * - 1 `oppositeDirection` : to indicateopposite direction as the reference direction. - * - 2 `bothDirections` : to indicate both directions, i.e. the same and the opposite direction. - * - 3 `unavailable` : to indicate that the information is unavailable. + * - 0 - `sameDirection` - to indicate the same direction as the reference direction. + * - 1 - `oppositeDirection` - to indicateopposite direction as the reference direction. + * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction. + * - 3 - `unavailable` - to indicate that the information is unavailable. * * @category: GeoReference information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ Direction::= INTEGER{ sameDirection(0), @@ -1072,12 +1072,12 @@ Direction::= INTEGER{ * This DE indicates in which direction something is moving. * * The value shall be set to: - * - 0 `forward` : to indicate it is moving forward. - * - 1 `backwards` : to indicate it is moving backwards. - * - 2 `unavailable` : to indicate that the information is unavailable. + * - 0 - `forward` - to indicate it is moving forward. + * - 1 - `backwards` - to indicate it is moving backwards. + * - 2 - `unavailable` - to indicate that the information is unavailable. * * @category: Kinematics information - * Revision: editorial update in V2.1.1 + * @revision: editorial update in V2.1.1 */ DriveDirection ::= ENUMERATED { forward (0), @@ -1091,32 +1091,32 @@ DriveDirection ::= ENUMERATED { * correspond to the total number of the driving lanes in the carriageway. * * The numbering is matched to @ref LanePosition. - * The bit 0 is used to indicate the innermostLane, bit 1 is used to indicate the second lane from inside border. + * The bit `0` is used to indicate the innermost lane, bit `1` is used to indicate the second lane from inside border. * - * If a lane is closed to traffic, the corresponding bit shall be set to 1. Otherwise, it shall be set to 0. + * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. * * @note:Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) /** * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. - * If that is the case, the value is TRUE, otherwise FALSE. + * If that is the case, the value is *TRUE*, otherwise *FALSE*. * * @category: Vehicle information - * Revision: editorial update in V2.1.1 + * @revision: editorial update in V2.1.1 */ EmbarkationStatus ::= BOOLEAN /** * This DE indicates the right of priority requested by an operating emergency vehicle. - * The right-of-priority bit shall be set to 1 if the corresponding right is requested. + * The right-of-priority bit shall be set to `1` if the corresponding right is requested. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ EmergencyPriority ::= BIT STRING {--tbd values requestForRightOfWay(0), @@ -1127,14 +1127,13 @@ EmergencyPriority ::= BIT STRING {--tbd values * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on the emergency vehicle approaching event - * is unavailable, - * - 1 `emergencyVehicleApproaching` : in case an operating emergency vehicle is approaching, - * - 2 `prioritizedVehicleApproaching`: in case a prioritized vehicle (e.g. bus) is approaching, - * - value : are 3-255 reserved for future usage. - * + * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event + * is unavailable, + * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, + * - 2 -`prioritizedVehicleApproaching` - in case a prioritized vehicle (e.g. bus) is approaching, + * - 3-255 - reserved for future usage. * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ EmergencyVehicleApproachingSubCauseCode ::= INTEGER { unavailable(0), @@ -1148,7 +1147,7 @@ EmergencyVehicleApproachingSubCauseCode ::= INTEGER { * - Otherwise, the corresponding bit shall be set to `0`. * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ EnergyStorageType ::= BIT STRING {-- tbd values hydrogenStorage(0), @@ -1165,7 +1164,7 @@ EnergyStorageType ::= BIT STRING {-- tbd values * * * @category: Vehicle information - * Revision: V2.1.1 + * @revision: V2.1.1 */ EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } @@ -1174,7 +1173,7 @@ EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } * * * @category: Vehicle information - * Revision: V2.1.1 + * @revision: V2.1.1 */ EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} @@ -1183,7 +1182,7 @@ EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} * * * @category: Vehicle information - * Revision: V2.1.1 + * @revision: V2.1.1 */ EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} @@ -1192,7 +1191,7 @@ EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} * * * @category: Vehicle information - * Revision: V2.1.1 + * @revision: V2.1.1 */ EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} @@ -1215,7 +1214,7 @@ EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. * * @category Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ ExteriorLights ::= BIT STRING { -- tbd values lowBeamHeadlightsOn (0), @@ -1233,12 +1232,12 @@ ExteriorLights ::= BIT STRING { -- tbd values * * The value shall be set to: * - `0` if the free space confidence is unknown for the described area. - * - `n (n > 1 and n < 100)` for confidence values of n %. + * - `n` (`n > 1` and `n < 100`) for confidence values of n%. * - `100` to indicate a 100% certainty. * - `101` if the confidence could not be computed and does not apply. * * @category Sensing Information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ FreeSpaceConfidence ::= INTEGER { unknown (0), @@ -1246,13 +1245,12 @@ FreeSpaceConfidence ::= INTEGER { unavailable (101) } (0..101) - /** * This DE represents a timestamp based on TimestampIts modulo 65 536. * This means that generationDeltaTime = TimestampIts mod 65 536. * * @category Time information - * Revision: Created in V2.1.1 based on EN 302 637-2 + * @revision: Created in V2.1.1 based on EN 302 637-2 */ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) @@ -1261,12 +1259,12 @@ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) * (e.g. for stopping or for driving) or closed for all vehicles. * * The value shall be set to: - * - 0 `availableForStopping`: if the hard shoulder is available for stopping in e.g. emergency situations. - * - 1 `closed`: if the hard shoulder is closed and cannot be occupied in any case. - * - 2 `availableForDriving`: if the hard shoulder is available for regular driving. + * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations. + * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case. + * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. * * @category: Traffic information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ HardShoulderStatus ::= ENUMERATED { availableForStopping(0), @@ -1277,15 +1275,15 @@ HardShoulderStatus ::= ENUMERATED { * This DE represents the value of the sub cause code of the @CauseCode `hazardousLocation-AnimalOnTheRoad`. * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on the animal on the road event is unavailable, - * - 1 `wildAnimals` : in case wild animals are detected on the road, - * - 2 `herdOfAnimals`: in case herd of animals are detected on the road, - * - 3 `smallAnimals` : in case small size animal is detected on the road, - * - 4 `largeAnimals` : in case large size animal is detected on the road, - * - 5-255 reserved for future usage. + * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, + * - 1 - `wildAnimals` - in case wild animals are detected on the road, + * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, + * - 3 - `smallAnimals` - in case small size animal is detected on the road, + * - 4 - `largeAnimals` - in case large size animal is detected on the road, + * - 5-255 - reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { unavailable(0), @@ -1299,19 +1297,19 @@ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { * This DE represents the sub cause code of the @CauseCode `hazardousLocation-DangerousCurve`. * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on the dangerous curve is unavailable, - * - 1 `dangerousLeftTurnCurve` : in case the dangerous curve is a left turn curve, - * - 2 `dangerousRightTurnCurve` : in case the dangerous curve is a right turn curve, - * - 3 `multipleCurvesStartingWithUnknownTurningDirection` : in case of multiple curves for which the starting curve turning direction is not known, - * - 4 `multipleCurvesStartingWithLeftTurn` : in case of multiple curves starting with a left turn curve, - * - 5 `multipleCurvesStartingWithRightTurn` : in case of multiple curves stating with a right turn curve, - * - values 6-255 : are reserved for future usage. + * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, + * - 1 - `dangerousLeftTurnCurve` - in case the dangerous curve is a left turn curve, + * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, + * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, + * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, + * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves stating with a right turn curve, + * - 6-255 - are reserved for future usage. * * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass * and vehicle speed driving on the curve. This definition is out of scope of the present document. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { unavailable(0), @@ -1326,18 +1324,18 @@ HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on the detected obstacle is unavailable, - * - 1 `shedLoad` : in case detected obstacle is large amount of obstacles (shedload), - * - 2 `partsOfVehicles`: in case detected obstacles are parts of vehicles, - * - 3 `partsOfTyres` : in case the detected obstacles are parts of tyres, - * - 4 `bigObjects` : in case the detected obstacles are big objects, - * - 5 `fallenTrees` : in case the detected obstacles are fallen trees, - * - 6 `hubCaps` : in case the detected obstacles are hub caps, - * - 7 `waitingVehicles`: in case the detected obstacles are waiting vehicles, - * - 8-255 reserved for future usage. + * - 0 - `unavailable` - in case further detailed information on the detected obstacle is unavailable, + * - 1 - `shedLoad` - in case detected obstacle is large amount of obstacles (shedload), + * - 2 - `partsOfVehicles`- in case detected obstacles are parts of vehicles, + * - 3 - `partsOfTyres` - in case the detected obstacles are parts of tyres, + * - 4 - `bigObjects` - in case the detected obstacles are big objects, + * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, + * - 6 - `hubCaps` - in case the detected obstacles are hub caps, + * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles, + * - 8-255 - reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { unavailable(0), @@ -1354,21 +1352,21 @@ HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on the road surface condition is unavailable, - * - 1 `rockfalls` : in case rock falls are detected on the road surface, - * - 2 `earthquakeDamage`: in case the road surface is damaged by earthquake, - * - 3 `sewerCollapse` : in case of sewer collapse on the road surface, - * - 4 `subsidence` : in case road surface is damaged by subsidence, - * - 5 `snowDrifts` : in case road surface is damaged due to snow drift, - * - 6 `stormDamage` : in case road surface is damaged by strong storm, - * - 7 `burstPipe` : in case road surface is damaged due to pipe burst, - * - 8 `volcanoEruption` : in case road surface is damaged due to volcano eruption, - * - 9 `fallingIce` : in case road surface damage is due to falling ice, - * - 10 `fire` : in case there is fire on or near to the road surface, - * - 11-255 reserved for future usage. + * - 0 - `unavailable` - in case further detailed information on the road surface condition is unavailable, + * - 1 - `rockfalls` - in case rock falls are detected on the road surface, + * - 2 - `earthquakeDamage`- in case the road surface is damaged by earthquake, + * - 3 - `sewerCollapse` - in case of sewer collapse on the road surface, + * - 4 - `subsidence` - in case road surface is damaged by subsidence, + * - 5 - `snowDrifts` - in case road surface is damaged due to snow drift, + * - 6 - `stormDamage` - in case road surface is damaged by strong storm, + * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, + * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, + * - 9 - `fallingIce` - in case road surface damage is due to falling ice, + * - 10 - `fire` - in case there is fire on or near to the road surface, + * - 11-255 - reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { unavailable(0), @@ -1407,7 +1405,7 @@ The value shall be set to: * * @unit: 0,1 degree * @category: GeoReference information - * Revision: Description revised in V2.1.1 + * @revision: Description revised in V2.1.1 */ HeadingConfidence ::= INTEGER { equalOrWithinZeroPointOneDegree (1), @@ -1425,9 +1423,9 @@ HeadingValue * * Unit: 0,1 degree * Categories: GeoReference information - * Revision: Description revised in V2.1.1 + * @revision: Description revised in V2.1.1 */ -HeadingValue ::= INTEGER { +HeadingValue ::= INTEGER { --tbd define the use of value 360. wgs84North(0), wgs84East(900), wgs84South(1800), @@ -1440,14 +1438,14 @@ HeadingValue ::= INTEGER { * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle * rear to front). * -The value shall be set to: + * The value shall be set to: * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter. * - `99` if the height is out of range, i.e. equal to or greater than 98 cm. * - `100` if the height information is not available. * * @unit 0,01 meter * @category Vehicle information - * Revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) + * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) */ HeightLonCarr ::= INTEGER { oneCentimeter(1), @@ -1458,14 +1456,14 @@ HeightLonCarr ::= INTEGER { * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on human presence on the road is unavailable, - * - 1 `childrenOnRoadway` : in case children are detected on the road event, - * - 2 `cyclistOnRoadway` : in case cyclist presence is detected on the road, - * - 3 `motorcyclistOnRoadway`: in case motorcyclist presence is detected on the road, - * - 4-255 : are reserved for future usage. + * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, + * - 1 - `childrenOnRoadway` - in case children are detected on the road event, + * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, + * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road, + * - 4-255 - are reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { unavailable(0), @@ -1478,13 +1476,13 @@ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on human health problem is unavailable, - * - 1 `glycemiaProblem`: in case human problem is due to glycaemia problem, - * - 2 `heartProblem` : in case human problem is due to heart problem, - * - 3-255 reserved for future usage. + * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, + * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, + * - 2 - `heartProblem` - in case human problem is due to heart problem, + * - 3-255 - reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ HumanProblemSubCauseCode ::= INTEGER { unavailable(0), @@ -1496,7 +1494,7 @@ HumanProblemSubCauseCode ::= INTEGER { * This DE is a general identifier. * * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ Identifier ::= INTEGER (0..255) @@ -1506,7 +1504,7 @@ Identifier ::= INTEGER (0..255) * @note: Definition of quality level is out of scope of the present document. * * @category: Basic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ InformationQuality ::= INTEGER { unavailable(0), @@ -1519,15 +1517,15 @@ InformationQuality ::= INTEGER { * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). * * The value shall be set to: - * - 0 `permanentCenDsrcTolling` : as specified in ETSI TS 102 792 [i.23] - * - 1 `temporaryCenDsrcTolling` : as specified in ETSI TS 102 792 [i.23] - * - 2 `unavailable` : default value. Set to 2 for backwards compatibility with DSRC tolling - * - 3 `urbanRail(3)` : as specified in ETSI TS 103 724 [i.24], clause 7 - * - 4 `satelliteStation` : as specified in ETSI TS 103 724 [i.24], clause 7 - * - 5 `fixedLinks(5)` : as specified in ETSI TS 103 724 [i.24], clause 7 + * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling + * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.24], clause 7 * * @category: Communication information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ InterferenceManagementZoneType ::= ENUMERATED { permanentCenDsrcTolling(0), @@ -1543,74 +1541,73 @@ InterferenceManagementZoneType ::= ENUMERATED { * This DE represents the identifier of an intersection * * @category: Road topology information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ IntersectionID ::= INTEGER (0..65535) /** * This DE represents the vehicle type according to ISO 3833 [4]. - * A “term No” refers to the number of the corresponding term and its definition in ISO 3833. + * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. * * The value shall be set to: - * - 0 `passengerCar` : term No 3.1.1 - * - 1 `saloon` : term No 3.1.1.1 (sedan) - * - 2 `convertibleSaloon` : term No 3.1.1.2 - * - 3 `pullmanSaloon` : term No 3.1.1.3 - * - 4 `stationWagon` : term No 3.1.1.4 - * - 5 `truckStationWagon` : term No 3.1.1.4.1 - * - 6 `coupe ` : term No 3.1.1.5 (coupé) - * - 7 `convertible` : term No 3.1.1.6 (open tourer, roadstar, spider) - * - 8 `multipurposePassengerCar` : term No 3.1.1.7 - * - 9 `forwardControlPassengerCar`: term No 3.1.1.8 - * - 10 `specialPassengerCar` : term No 3.1.1.9 - * - 11 `bus (11)` : term No 3.1.2 - * - 12 `minibus` : term No 3.1.2.1 - * - 13 `urbanBus` : term No 3.1.2.2 - * - 14 `interurbanCoach` : term No 3.1.2.3 - * - 15 `longDistanceCoach` : term No 3.1.2.4 - * - 16 `articulatedBus` : term No 3.1.2.5 - * - 17 `trolleyBus ` : term No 3.1.2.6 - * - 18 `specialBus` : term No 3.1.2.7 - * - 19 `commercialVehicle ` : term No 3.1.3 - * - 20 `specialCommercialVehicle` : term No 3.1.3.1 - * - 21 `specialVehicle ` : term No 3.1.4 - * - 22 `trailingTowingVehicle ` : term No 3.1.5 (draw-bar tractor) - * - 23 `semiTrailerTowingVehicle` : term No 3.1.6 (fifth wheel tractor) - * - 24 `trailer` : term No 3.2.1 - * - 25 `busTrailer` : term No 3.2.1.1 - * - 26 `generalPurposeTrailer` : term No 3.2.1.2 - * - 27 `caravan` : term No 3.2.1.3 - * - 28 `specialTrailer` : term No 3.2.1.4 - * - 29 `semiTrailer` : term No 3.2.2 - * - 30 `busSemiTrailer ` : term No 3.2.2.1 - * - 31 `generalPurposeSemiTrailer` : term No 3.2.2.2 - * - 32 `specialSemiTrailer` : term No 3.2.2.3 - * - 33 `roadTrain` : term No 3.3.1 - * - 34 `passengerRoadTrain ` : term No 3.3.2 - * - 35 `articulatedRoadTrain` : term No 3.3.3 - * - 36 `doubleRoadTrain` : term No 3.3.4 - * - 37 `compositeRoadTrain` : term No 3.3.5 - * - 38 `specialRoadTrain` : term No 3.3.6 - * - 39 `moped` : term No 3.4 - * - 40 `motorCycle` : term No 3.5 - * - * Values 41 to 255 are reserved for future use + * - 0 - `passengerCar` - term No 3.1.1 + * - 1 - `saloon` - term No 3.1.1.1 (sedan) + * - 2 - `convertibleSaloon` - term No 3.1.1.2 + * - 3 - `pullmanSaloon` - term No 3.1.1.3 + * - 4 - `stationWagon` - term No 3.1.1.4 + * - 5 - `truckStationWagon` - term No 3.1.1.4.1 + * - 6 - `coupe` - term No 3.1.1.5 (coupe) + * - 7 - `convertible` - term No 3.1.1.6 (open tourer, roadstar, spider) + * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 + * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 + * - 10 - `specialPassengerCar` - term No 3.1.1.9 + * - 11 - `bus (11)` - term No 3.1.2 + * - 12 - `minibus` - term No 3.1.2.1 + * - 13 - `urbanBus` - term No 3.1.2.2 + * - 14 - `interurbanCoach` - term No 3.1.2.3 + * - 15 - `longDistanceCoach` - term No 3.1.2.4 + * - 16 - `articulatedBus` - term No 3.1.2.5 + * - 17 - `trolleyBus ` - term No 3.1.2.6 + * - 18 - `specialBus` - term No 3.1.2.7 + * - 19 - `commercialVehicle ` - term No 3.1.3 + * - 20 - `specialCommercialVehicle` - term No 3.1.3.1 + * - 21 - `specialVehicle ` - term No 3.1.4 + * - 22 - `trailingTowingVehicle ` - term No 3.1.5 (draw-bar tractor) + * - 23 - `semiTrailerTowingVehicle` - term No 3.1.6 (fifth wheel tractor) + * - 24 - `trailer` - term No 3.2.1 + * - 25 - `busTrailer` - term No 3.2.1.1 + * - 26 - `generalPurposeTrailer` - term No 3.2.1.2 + * - 27 - `caravan` - term No 3.2.1.3 + * - 28 - `specialTrailer` - term No 3.2.1.4 + * - 29 - `semiTrailer` - term No 3.2.2 + * - 30 - `busSemiTrailer ` - term No 3.2.2.1 + * - 31 - `generalPurposeSemiTrailer` - term No 3.2.2.2 + * - 32 - `specialSemiTrailer` - term No 3.2.2.3 + * - 33 - `roadTrain` - term No 3.3.1 + * - 34 - `passengerRoadTrain ` - term No 3.3.2 + * - 35 - `articulatedRoadTrain` - term No 3.3.3 + * - 36 - `doubleRoadTrain` - term No 3.3.4 + * - 37 - `compositeRoadTrain` - term No 3.3.5 + * - 38 - `specialRoadTrain` - term No 3.3.6 + * - 39 - `moped` - term No 3.4 + * - 40 - `motorCycle` - term No 3.5 + * - 41-255 - reserved for future use * * @category: Vehicle information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ Iso3833VehicleType ::= INTEGER { passengerCar (0), saloon (1), - convertibleSaloon (2), + convertibleSaloon (2), pullmanSaloon (3), stationWagon (4), - truckStationWagon (5), + truckStationWagon (5), coupe (6), convertible (7), - multipurposePassengerCar (8), - forwardControlPassengerCar (9), + multipurposePassengerCar (8), + forwardControlPassengerCar (9), specialPassengerCar (10), bus (11), minibus (12), @@ -1651,7 +1648,7 @@ Iso3833VehicleType ::= INTEGER { * carriageway in a left-land traffic (e.g. in UK). The value -1 denotes that the referenced position is outside the road. * * @category: Road topology information - * Revision: V1.3.1 + * @revision: V1.3.1 */ LanePosition ::= INTEGER { offTheRoad(-1), @@ -1667,7 +1664,7 @@ LanePosition ::= INTEGER { * @note: the context of the identification (e.g. the intersection geometry of a MAPEM) is defined outside the DE * * @category: Road topology information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ LaneId ::= INTEGER (0..255) @@ -1675,57 +1672,57 @@ LaneId ::= INTEGER (0..255) * This DE represents the type of a lane. * * The value shall be set to: - * - 0 `traffic`: Lane dedicated to the movement of vehicles. - * - 1 `through`: Lane dedicated to the movement of vehicles travelling ahead and not turning. - * - 2 `reversible`: Lane where the direction of traffic can be changed to match the peak flow. - * - 3 `acceleration`: Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. - * - 4 `deceleration`: Lane that allows vehicles exiting a road to decelerate before leaving it. - * - 5 `leftHandTurning`: Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. - * - 6 `rightHandTurning`: Lane reserved for slowing down and making a right turn so as not to disrupt traffic. - * - 7 `dedicatedVehicle`: Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. - * - 8 `bus`: Lane: dedicated to movement of buses providing public transportation. - * - 9 `taxi`: Lane dedicated to movement of taxis. - * - 10 `hov`: Carpooling lane or high occupancy vehicle lane. - * - 11 `hot`: High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. - * - 12 `pedestrian`: Lanes dedicated to pedestrians such as pedestrian sidewalk paths. - * - 13 `bikeLane`: Lane dedicated to exclusive or preferred use by bicycles. - * - 14 `median`: Lane not dedicated to movement of vehicles but representing medians and channelization such as the central median - separating the two directional carriageways of the highway. - * - 15 `striping`: Lane not dedicated to movement of vehicles but covered with roadway markings. - * - 16 `trackedVehicle`: Lane dedicated to movement of trains and trolleys. - * - 17 `parking`: Lanes dedicated to vehicles parking, stopping and loading lanes. - * - 18 `emergency`: Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. - * - 19 `verge`: Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between - the road surface edge and the boundary of a road. - * - 20 `minimumRiskManoeuvre`: Lane dedicated to automated vehicles making a minimum risk manoeuvre. - * - values 21 to 30: reserved for future use + * - 0 - `traffic` - Lane dedicated to the movement of vehicles. + * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning. + * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow. + * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. + * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it. + * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. + * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic. + * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. + * - 8 - `bus` - Lane dedicated to movement of buses providing public transportation. + * - 9 - `taxi` - Lane dedicated to movement of taxis. + * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane. + * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. + * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths. + * - 13 - `bikeLane` - Lane dedicated to exclusive or preferred use by bicycles. + * - 14 - `median` - Lane not dedicated to movement of vehicles but representing medians and channelization such as the central median + separating the two directional carriageways of the highway. + * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings. + * - 16 - `trackedVehicle` - Lane dedicated to movement of trains and trolleys. + * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes. + * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. + * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between + the road surface edge and the boundary of a road. + * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. + * - values 21 to 30 reserved for future use * * @category: Road topology information - * Revision: V2.1.1 + * @revision: V2.1.1 */ LaneType::= INTEGER{ - traffic (0), - through (1), - reversible (2), - acceleration (3), - deceleration (4), - leftHandTurning (5), - rightHandTurning (6), - dedicatedVehicle (7), - bus (8), - taxi (9), - hov (10), - hot (11), - pedestrian (12), - bikeLane (13), - median (14), - striping (15), - trackedVehicle (16), - parking (17), - emergency (18), - verge (19), - minimumRiskManoeuvre(20), - unknown (31) + traffic (0), + through (1), + reversible (2), + acceleration (3), + deceleration (4), + leftHandTurning (5), + rightHandTurning (6), + dedicatedVehicle (7), + bus (8), + taxi (9), + hov (10), + hot (11), + pedestrian (12), + bikeLane (13), + median (14), + striping (15), + trackedVehicle (16), + parking (17), + emergency (18), + verge (19), + minimumRiskManoeuvre (20), + unknown (31) }(0..31) /** @@ -1740,7 +1737,7 @@ LaneType::= INTEGER{ * * @unit: 0.1 microdegree * @category: GeoReference information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ Latitude ::= INTEGER { oneMicrodegreeNorth (10), @@ -1753,12 +1750,12 @@ Latitude ::= INTEGER { * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. + * - `-160` for values equal to or less than -16 m/s2. * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation - * with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation - with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `160` for acceleration or greater than 15,9 m/s2. + with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. @@ -1766,7 +1763,7 @@ Latitude ::= INTEGER { * * @unit: 0.1 m/s2 * @category Vehicle information - * Revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. + * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. */ LateralAccelerationValue ::= AccelerationValue @@ -1775,13 +1772,13 @@ LateralAccelerationValue ::= AccelerationValue * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `lightBarActivated` : when the light bar is activated. - * - 1 `sirenActivated` : when the siren is activated. + * - 0 - `lightBarActivated` - when the light bar is activated. + * - 1 - `sirenActivated` - when the siren is activated. * * Otherwise, it shall be set to 0. * * @category Vehicle information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ LightBarSirenInUse ::= BIT STRING { lightBarActivated (0), @@ -1802,7 +1799,7 @@ LightBarSirenInUse ::= BIT STRING { * * @unit: 0.1 microdegree * @category: GeoReference information - * Revision: Description revised in V2.1.1 + * @revision: Description revised in V2.1.1 */ Longitude ::= INTEGER { oneMicrodegreeEast (10), @@ -1815,10 +1812,10 @@ Longitude ::= INTEGER { * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate that the the vehicle is braking with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `160` for acceleration or greater than 15,9 m/s2. + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * * This acceleration is along the tangent plane of the road surface and does not include gravity components. @@ -1826,17 +1823,17 @@ Longitude ::= INTEGER { * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * @category: Vehicle information - * Revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. + * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. */ LongitudinalAccelerationValue::= AccelerationValue /** * This DE represents the longitudinal offset of the map-matched position of a particular object along the - * matched lane, beginning from the lane’s starting point as defined in CEN ISO/TS 19091. + * matched lane, beginning from the lane's starting point as defined in CEN ISO/TS 19091. * * @unit 0,1 m * @category: Road topology information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ LongitudinalLanePositionValue ::= INTEGER { zeroPointOneMeter (1) @@ -1853,7 +1850,7 @@ LongitudinalLanePositionValue ::= INTEGER { * * @unit 0,01 meter * @category: Road topology information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ LongitudinalLanePositionConfidence ::= INTEGER { zeroPointZeroOneMeter (1), @@ -1866,27 +1863,27 @@ LongitudinalLanePositionConfidence ::= INTEGER { * This DE represents the type of facility layer message. * * The value shall be set to: - * - 1 `denm` : for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], - * - 2 `cam` : for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], - * - 3 `poi` : for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], - * - 4 `spatem` : for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], - * - 5 `mapem` : for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], - * - 6 `ivim` : for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], - * - 7 `ev-rsr` : for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], - * - 8 `tistpgtransaction` : for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], - * - 9 `srem` : for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], - * - 10 `ssem` : for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], - * - 11 `evcsn` : for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], - * - 12 `saem` : for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], - * - 13 `rtcmem` : for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], - * - 14 `cpm` : for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], - * - 15 `imzm` : for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], - * - 16 `vam` : for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], - * - 17 `dsm` : for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. - * - 18-255: reserved for future usage, + * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], + * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], + * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], + * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], + * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], + * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], + * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], + * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], + * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], + * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], + * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], + * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], + * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], + * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], + * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], + * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], + * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. + * - 18-255 - reserved for future usage, * * @category: Communication information - * Revision: Created in V2.1.1 from @ref ItsPduHeader + * @revision: Created in V2.1.1 from @ref ItsPduHeader */ MessageId::= INTEGER { denm(1), @@ -1915,7 +1912,7 @@ MessageId::= INTEGER { * * @unit: 1 person * @category: Vehicle information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ NumberOfOccupants ::= INTEGER { oneOccupant (1), @@ -1933,7 +1930,7 @@ NumberOfOccupants ::= INTEGER { * * @unit Percent * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ObjectClassConfidence ::= INTEGER { unknown (0), @@ -1953,7 +1950,7 @@ ObjectClassConfidence ::= INTEGER { * * @unit n/a * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ObjectConfidence ::= INTEGER { noConfidence (0), @@ -1965,7 +1962,7 @@ ObjectConfidence ::= INTEGER { * * @unit 0,1 m * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ObjectDimensionValue ::= INTEGER { zeroPointOneMeter (1), @@ -1983,7 +1980,7 @@ ObjectDimensionValue ::= INTEGER { * * @unit 0,01 m * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ObjectDimensionConfidence ::= INTEGER { zeroPointZeroOneMeter (1), @@ -1998,13 +1995,13 @@ ObjectDimensionConfidence ::= INTEGER { * position. * * The value shall be set to: - * - `0` dynamic : indicates that the object is moving. - * - `1` hasBeenDynamic : indicates whether an object has been dynamic before, e.g., a car stopping at a traffic light. - * - `2` static : indicates that an object has been detected to be not moving throughout any previous observation. - * - `3` unavailable : indicates that the information is unavailable. + * - `0` - dynamic - indicates that the object is moving. + * - `1` - hasBeenDynamic - indicates whether an object has been dynamic before, e.g., a car stopping at a traffic light. + * - `2` - static - indicates that an object has been detected to be not moving throughout any previous observation. + * - `3` - unavailable - indicates that the information is unavailable. * * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ObjectDynamicStatus ::= INTEGER { dynamic (0), @@ -2015,10 +2012,10 @@ ObjectDynamicStatus ::= INTEGER { /** * This DE indicate the approximate position of the reference point of measurement for the object dimensions. - * The point is included in the plane perpendicular to the direction of the object´s @ref yawAngleValue. + * The point is included in the plane perpendicular to the direction of the object's @ref yawAngleValue. * * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ObjectRefPoint ::= INTEGER { mid (0), @@ -2033,14 +2030,14 @@ ObjectRefPoint ::= INTEGER { } (0..8) /** - * This DE indicates an object’s section. + * This DE indicates an object's section. * The object is assumed to have a length that is greater than its width, with the sides of the object being divided into: * front, rear, sideLeftFront, sideLeftBack, sideRightFront, sideRightBack. * * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. * * @category: Basic information - * Revision: V2.1.1 + * @revision: V2.1.1 */ ObjectSection ::= ENUMERATED { unavailable(0), @@ -2056,14 +2053,14 @@ ObjectSection ::= ENUMERATED { * This DE represents positions with lane-level accuracy which are not on regular traffic lanes. * * The value shall be set to: - * - 0 `unavailable` : if information on the lane position is unavailable. - * - 1 `sidewalk` : if the position is on the side-walk. - * - 2 `parkingLane` : if the position is on an area at the side of the road not intended for travel but for vehicular parking. - * - 3 `bikeLane` : if the position is on an area reserved for bicycles. - * - value 4-15 : reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. + * - 0 - `unavailable` - if information on the lane position is unavailable. + * - 1 - `sidewalk` - if the position is on the side-walk. + * - 2 - `parkingLane` - if the position is on an area at the side of the road not intended for travel but for vehicular parking. + * - 3 - `bikeLane` - if the position is on an area reserved for bicycles. + * - 4-15 - reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. * * @category: Road topology information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ OffRoadLanePosition ::= ENUMERATED { unavailable(0), @@ -2078,7 +2075,7 @@ OffRoadLanePosition ::= ENUMERATED { * (for example local commerce). * * @category: Time information - * Revision: V1.3.1 + * @revision: V1.3.1 */ OpeningDaysHours ::= UTF8String @@ -2086,11 +2083,11 @@ OpeningDaysHours ::= UTF8String * This DE indicates the subclass of a detected object for object class "otherSubclass". * * The value shall be set to: - * - `0` unknown : if the subclass is unknown. - * - `1` roadSideUnit : if the object is a roadside unit. + * - `0` - unknown - if the subclass is unknown. + * - `1` - roadSideUnit - if the object is a roadside unit. * * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ OtherSubclass ::= INTEGER { unknown (0), @@ -2102,7 +2099,7 @@ OtherSubclass ::= INTEGER { * * @unit 0.01 second * @category GeoReference information - * Revision: same type as in V1.3.1 but now based on a basic type + * @revision: same type as in V1.3.1 but now based on a basic type */ PathDeltaTime ::= DeltaTimeHundredthOfSecond @@ -2117,7 +2114,7 @@ PathDeltaTime ::= DeltaTimeHundredthOfSecond * - Values in the range `3 to 7` are reserved for future use. * * @category: Vehicle information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ PerformanceClass ::= INTEGER { unavailable(0), @@ -2129,7 +2126,7 @@ PerformanceClass ::= INTEGER { * This DE represents a telephone number * * @category: Basic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ PhoneNumber ::= NumericString (SIZE(1..16)) @@ -2146,7 +2143,7 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * * @unit 0,1 metre * @category Vehicle information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ PosCentMass ::= INTEGER { tenCentimeters(1), @@ -2165,7 +2162,7 @@ PosCentMass ::= INTEGER { * - 5 `dR` : dead reckoning used. * * @category: GeoReference information - * Revision: V1.3.1 + * @revision: V1.3.1 */ PositioningSolutionType ::= ENUMERATED { noPositioningSolution(0), @@ -2198,7 +2195,7 @@ PositioningSolutionType ::= ENUMERATED { * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ PositionOfOccupants ::= BIT STRING { row1LeftOccupied (0), @@ -2232,7 +2229,7 @@ PositionOfOccupants ::= BIT STRING { * * @category: Vehicle information * @unit 0.1 metre - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ PosFrontAx ::= INTEGER { tenCentimeters(1), @@ -2250,7 +2247,7 @@ PosFrontAx ::= INTEGER { * * @unit 0,01 metre * @category Vehicle information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ PosLonCarr ::= INTEGER { oneCentimeter(1), @@ -2267,7 +2264,7 @@ PosLonCarr ::= INTEGER { * * @unit 0,1 metre * @category Vehicle information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ PosPillar ::= INTEGER { tenCentimeters(1), @@ -2286,7 +2283,7 @@ PosPillar ::= INTEGER { * - 5-255 : reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ PostCrashSubCauseCode ::= INTEGER { unavailable(0), @@ -2301,7 +2298,7 @@ PostCrashSubCauseCode ::= INTEGER { * * * @category: Infrastructure information, Communication information - * Revision: V1.3.1 + * @revision: V1.3.1 */ ProtectedZoneID ::= INTEGER (0.. 134217727) @@ -2311,7 +2308,7 @@ ProtectedZoneID ::= INTEGER (0.. 134217727) * * @unit: metre * @category: Infrastructure information, Communication information - * Revision: V1.3.1 + * @revision: V1.3.1 */ ProtectedZoneRadius ::= INTEGER { oneMeter(1) @@ -2325,7 +2322,7 @@ ProtectedZoneRadius ::= INTEGER { * * * @category: Communication information - * Revision: V1.3.1 + * @revision: V1.3.1 */ ProtectedZoneType::= ENUMERATED { permanentCenDsrcTolling (0), @@ -2343,7 +2340,7 @@ ProtectedZoneType::= ENUMERATED { * or the schedule delay of a public transport vehicle. * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ PtActivationData ::= OCTET STRING (SIZE(1..20)) @@ -2357,7 +2354,7 @@ PtActivationData ::= OCTET STRING (SIZE(1..20)) * - values 3 to 255 : reserved for alternative and future use. * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ PtActivationType ::= INTEGER { undefinedCodingType(0), @@ -2377,7 +2374,7 @@ PtActivationType ::= INTEGER { * - 5-255: reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ RailwayLevelCrossingSubCauseCode ::= INTEGER { unavailable(0), @@ -2391,7 +2388,7 @@ RailwayLevelCrossingSubCauseCode ::= INTEGER { * This DE represents a reference point counter for a trailer. * * @category: Vehicle information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ RefPointId ::= INTEGER (0..255) @@ -2409,7 +2406,7 @@ RefPointId ::= INTEGER (0..255) * - 7 `over10km` : for distances over 10000 m. * * @category: GeoReference information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ RelevanceDistance ::= ENUMERATED { lessThan50m(0), @@ -2437,7 +2434,7 @@ RelevanceDistance ::= ENUMERATED { * and downstream traffic to the departing traffic away from the event position. * * @category: GeoReference information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ RelevanceTrafficDirection ::= ENUMERATED { allTrafficDirections(0), @@ -2455,7 +2452,7 @@ RelevanceTrafficDirection ::= ENUMERATED { * - 1 `response` : for a response message. * * @category Communication information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ RequestResponseIndication ::= ENUMERATED { request(0), @@ -2475,7 +2472,7 @@ RequestResponseIndication ::= ENUMERATED { * - 6-255: reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { unavailable(0), @@ -2490,7 +2487,7 @@ RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { * This DE represents a unique identifier assigned to an entity. * * @category: Road Topology Information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ RoadRegulatorId ::= INTEGER (0..65535) @@ -2498,7 +2495,7 @@ RoadRegulatorId ::= INTEGER (0..65535) * This DE represents an identifier assigned to a section of roadway. * * @category: Road Topology Information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ RoadSegmentID ::= INTEGER (0..65535) @@ -2512,7 +2509,7 @@ RoadSegmentID ::= INTEGER (0..65535) * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. * * @category: Road Topology Information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ RoadType ::= ENUMERATED { urban-NoStructuralSeparationToOppositeLanes(0), @@ -2534,7 +2531,7 @@ The value shall be set to: * - 7-255 reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ RoadworksSubCauseCode ::= INTEGER { unavailable(0), @@ -2555,7 +2552,7 @@ RoadworksSubCauseCode ::= INTEGER { * and their respective thresholds, Minimum Safe Lateral Distance (MSLaD), Minimum Safe Longitudinal Distance (MSLoD), and Minimum Safe Vertical Distance (MSVD) * * @category: Traffic information, Kinematics information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ SafeDistanceIndicator::= BOOLEAN @@ -2582,7 +2579,7 @@ SafeDistanceIndicator::= BOOLEAN * @unit 0,01 meter * @category: GeoReference Information - * Revision: V1.3.1 + * @revision: V1.3.1 */ SemiAxisLength ::= INTEGER{oneCentimeter(1), outOfRange(4094), unavailable(4095)} (0..4095) @@ -2605,7 +2602,7 @@ SemiAxisLength ::= INTEGER{oneCentimeter(1), outOfRange(4094), unavailable(4095) * - `12` uwb : in case the sensor is ultra wide band. * * @category: Sensing Information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ SensorType ::= INTEGER { undefined (0), @@ -2627,7 +2624,7 @@ SensorType ::= INTEGER { * This DE represents a sequence number. * * @category: Basic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ SequenceNumber ::= INTEGER (0..65535) @@ -2642,7 +2639,7 @@ SequenceNumber ::= INTEGER (0..65535) * - 4-255 : reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ SignalViolationSubCauseCode ::= INTEGER { unavailable(0), @@ -2668,7 +2665,7 @@ SignalViolationSubCauseCode ::= INTEGER { * - 9-255 : reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ SlowVehicleSubCauseCode ::= INTEGER { unavailable(0), @@ -2693,7 +2690,7 @@ SlowVehicleSubCauseCode ::= INTEGER { * * Otherwise, the corresponding bit shall be set to 0. * @category Vehicle information - * Revision: Description revised in V2.1.1 + * @revision: Description revised in V2.1.1 */ SpecialTransportType ::= BIT STRING { heavyLoad(0), @@ -2725,7 +2722,7 @@ SpecialTransportType ::= BIT STRING { * * @unit cm/s * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ SpeedConfidence ::= INTEGER { equalOrWithinOneCentimeterPerSec(1), @@ -2739,7 +2736,7 @@ SpeedConfidence ::= INTEGER { * * @unit: km/h * @category: Infrastructure information, Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ SpeedLimit ::= INTEGER { oneKmPerHour(1) @@ -2756,7 +2753,7 @@ SpeedLimit ::= INTEGER { * * @unit: 0,01 m/s * @category: Kinematics information - * Revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) + * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) */ SpeedValue ::= INTEGER { standstill(0), @@ -2775,7 +2772,7 @@ SpeedValue ::= INTEGER { * * @unit: 0,01 m/s * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ SpeedValueExtended ::= INTEGER { negativeSpeedMaximum (-16383), @@ -2798,7 +2795,7 @@ SpeedValueExtended ::= INTEGER { * * @unit: 2% * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ StabilityLossProbability ::= INTEGER { stable (0), @@ -2811,7 +2808,7 @@ StabilityLossProbability ::= INTEGER { * * @unit: 0.1 meter * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ StandardLength::= INTEGER (0..4095) --tbd check range @@ -2820,7 +2817,7 @@ StandardLength::= INTEGER (0..4095) --tbd check range * * @unit: 0.1 meter * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ StandardLengthSmall::= INTEGER (0..255) @@ -2834,7 +2831,7 @@ StandardLengthSmall::= INTEGER (0..255) * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. * * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ StationarySince ::= ENUMERATED { lessThan1Minute(0), @@ -2856,7 +2853,7 @@ StationarySince ::= ENUMERATED { * - 7-255 reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ StationaryVehicleSubCauseCode ::= INTEGER { unavailable(0), @@ -2873,7 +2870,7 @@ StationaryVehicleSubCauseCode ::= INTEGER { * The ITS-S ID may be a pseudonym. It may change over space and/or over time. * * @category: Basic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ StationID ::= INTEGER(0..4294967295) @@ -2904,7 +2901,7 @@ StationID ::= INTEGER(0..4294967295) * - 16 16-255: reserved for future usage. * * @category: Communication information. - * Revision: revised in V2.1.1 (note to value 9 deleted) + * @revision: revised in V2.1.1 (note to value 9 deleted) */ StationType ::= INTEGER { unknown(0), @@ -2947,7 +2944,7 @@ StationType ::= INTEGER { * * @unit: 1.5 degree * @category: Vehicle Information - * Revision: Description revised in V2.1.1 + * @revision: Description revised in V2.1.1 */ SteeringWheelAngleConfidence ::= INTEGER { equalOrWithinOnePointFiveDegree (1), @@ -2969,7 +2966,7 @@ SteeringWheelAngleConfidence ::= INTEGER { * - `512` if information is not available. * * @unit: 1.5 degree - * Revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). + * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). */ SteeringWheelAngleValue ::= INTEGER { straight(0), @@ -2984,7 +2981,7 @@ SteeringWheelAngleValue ::= INTEGER { * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode * * @category: Traffic information - * Revision: Description revised in V2.1.1 (this is the generic sub cause type) + * @revision: Description revised in V2.1.1 (this is the generic sub cause type) */ SubCauseCodeType ::= INTEGER (0..255) @@ -2992,13 +2989,13 @@ SubCauseCodeType ::= INTEGER (0..255) * This DE indicates a temperature value. * The value shall be set to: - * - `-60` for temperature equal to or less than -60 °C. - * - `n (n > -60 and n < 67)` for the actual temperature n in °C. - * - `67` for temperature equal to or greater than 67 °C. + * - `-60` for temperature equal to or less than -60 degrees C. + * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C. + * - `67` for temperature equal to or greater than 67 degrees C. * - * @unit: °C + * @unit: degrees Celsius * @category: Basic information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ Temperature ::= INTEGER { equalOrSmallerThanMinus60Deg (-60), @@ -3007,8 +3004,8 @@ Temperature ::= INTEGER { /** * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. - * The ITS epoch is `00:00:00.000 UTC, 1 January 2004’ - * ‘Elapsed’ means that the true number of milliseconds is continuously counted without interruption, + * The ITS epoch is `00:00:00.000 UTC, 1 January 2004`. + * "Elapsed" means that the true number of milliseconds is continuously counted without interruption, * i.e. it is not altered by leap seconds, which occur in UTC. * * @note: International Atomic Time (TAI) is the time reference coordinate on the basis of the readings of atomic clocks, @@ -3021,7 +3018,7 @@ Temperature ::= INTEGER { * which includes one leap second insertion since the ITS epoch. * @unit: millisecond * @category: Basic information - * Revision: Description revised in in V2.1.1 + * @revision: Description revised in in V2.1.1 */ TimestampIts ::= INTEGER (0..4398046511103) @@ -3041,7 +3038,7 @@ TimestampIts ::= INTEGER (0..4398046511103) * - 9-255: reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ TrafficConditionSubCauseCode ::= INTEGER { unavailable(0), @@ -3065,7 +3062,7 @@ TrafficConditionSubCauseCode ::= INTEGER { * - `3` if vehicles should pass to the left lane. * * @category: Infrastructure information, Traffic information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ TrafficRule ::= ENUMERATED { noPassing(0), @@ -3082,7 +3079,7 @@ TrafficRule ::= ENUMERATED { * - `63`: to indicate that the information is unavailable. * * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ TrajectoryInterceptionProbability ::= INTEGER { zero(0), @@ -3101,7 +3098,7 @@ TrajectoryInterceptionProbability ::= INTEGER { * - `3` to indicate confidence greater than or equal to 90%. * * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ TrajectoryInterceptionConfidence ::= INTEGER { lessthan50percent(0), @@ -3118,7 +3115,7 @@ TrajectoryInterceptionConfidence ::= INTEGER { * - `right`for turing to the right. * * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ TurningDirection::= ENUMERATED { left, @@ -3137,7 +3134,7 @@ TurningDirection::= ENUMERATED { * * @category: Vehicle information * @unit 0.4 metre - * Revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) + * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) */ TurningRadius ::= INTEGER { point4Meters(1), @@ -3148,7 +3145,7 @@ TurningRadius ::= INTEGER { * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ VDS ::= IA5String (SIZE(6)) @@ -3192,7 +3189,7 @@ VehicleBreakdownSubCauseCode ::= INTEGER { * equipment which may result in varying height, the largest possible height shall be used. * * @unit 5 cm (DE ranges to 6.35 m) - * Revision: V1.3.1 + * @revision: V1.3.1 */ VehicleHeight ::= INTEGER (0..127) @@ -3207,7 +3204,7 @@ VehicleHeight ::= INTEGER (0..127) * - 4 `unavailable` : to indicate that the information is not known. * * @category: Vehicle information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ VehicleLengthConfidenceIndication ::= ENUMERATED { noTrailerPresent(0), @@ -3227,7 +3224,7 @@ VehicleLengthConfidenceIndication ::= ENUMERATED { * * @unit: 0.1 metre * @category: Vehicle information - * Revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). + * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). */ VehicleLengthValue ::= INTEGER { tenCentimeters(1), @@ -3247,7 +3244,7 @@ VehicleLengthValue ::= INTEGER { * * @unit: 100kg * @category: Vehicle information - * Revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). + * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). */ VehicleMass ::= INTEGER { hundredKg(1), @@ -3275,7 +3272,7 @@ VehicleMass ::= INTEGER { * - 15 `reserved` : reserved for future usage. * * @category: Vehicle Information - * Revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) + * @revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) */ VehicleRole ::= ENUMERATED { default(0), @@ -3312,7 +3309,7 @@ VehicleRole ::= ENUMERATED { * - Values 10 to 255 are reserved for future use. * * @category: Vehicle information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VehicleSubclass ::= INTEGER { unknown (0), @@ -3337,7 +3334,7 @@ VehicleSubclass ::= INTEGER { * * @unit: 0.1 metre * @category: Vehicle information - * Revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). + * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). */ VehicleWidth ::= INTEGER { tenCentimeters(1), @@ -3350,17 +3347,17 @@ VehicleWidth ::= INTEGER { * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `160` for acceleration or greater than 15,9 m/s2. + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. * * @category: Vehicle information * @unit: 0.1 m/s2 - * Revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. + * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. * */ VerticalAccelerationValue ::= AccelerationValue @@ -3378,7 +3375,7 @@ VerticalAccelerationValue ::= AccelerationValue * Otherwise, the corresponding bit shall be set to 0. * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruClusterProfiles ::= BIT STRING { pedestrian(0), @@ -3403,7 +3400,7 @@ VruClusterProfiles ::= BIT STRING { * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruDeviceUsage ::= ENUMERATED { unavailable(0), @@ -3431,7 +3428,7 @@ VruDeviceUsage ::= ENUMERATED { * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruEnvironment ::= ENUMERATED { unavailable (0), @@ -3457,7 +3454,7 @@ VruEnvironment ::= ENUMERATED { * - value 7 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruMovementControl ::= ENUMERATED { unavailable (0), @@ -3481,7 +3478,7 @@ VruMovementControl ::= ENUMERATED { * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruSubProfilePedestrian ::= ENUMERATED { unavailable(0), @@ -3507,7 +3504,7 @@ VruSubProfilePedestrian ::= ENUMERATED { * - value 9 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruSubProfileBicyclist ::= ENUMERATED { unavailable(0), @@ -3534,7 +3531,7 @@ VruSubProfileBicyclist ::= ENUMERATED { * - value 5 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruSubProfileMotorcyclist ::= ENUMERATED { unavailable(0), @@ -3556,7 +3553,7 @@ VruSubProfileMotorcyclist ::= ENUMERATED { * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruSubProfileAnimal ::= ENUMERATED { unavailable(0), @@ -3577,7 +3574,7 @@ VruSubProfileAnimal ::= ENUMERATED { * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruSizeClass ::= ENUMERATED { unavailable (0), @@ -3605,7 +3602,7 @@ VruSizeClass ::= ENUMERATED { * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruSpecificExteriorLights ::= BIT STRING { unavailable (0), @@ -3626,7 +3623,7 @@ VruSpecificExteriorLights ::= BIT STRING { * * @unit 0.1 metre * @category: Vehicle information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ WheelBaseVehicle ::= INTEGER { tenCentimeters(1), @@ -3644,7 +3641,7 @@ WheelBaseVehicle ::= INTEGER { * * @unit 0,1 degrees * @category: GeoReference Information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ Wgs84AngleConfidence ::= INTEGER { zeroPointOneDegree (1), @@ -3659,9 +3656,9 @@ Wgs84AngleConfidence ::= INTEGER { * * @unit 0,1 degrees * @category: GeoReference Information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ -Wgs84AngleValue ::= INTEGER { +Wgs84AngleValue ::= INTEGER { -- tbd define the usage of value 0 vs 3600. wgs84North (0), wgs84East (900), wgs84South (1800), @@ -3674,12 +3671,12 @@ Wgs84AngleValue ::= INTEGER { * * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ WMInumber ::= IA5String (SIZE(1..3)) /** - * This DE represents the sub cause codes of the @?CauseCode `wrongWayDriving` . + * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . * * The value shall be set to: * - 0 `unavailable` : in case further detailed information on wrong way driving event is unavailable, @@ -3688,7 +3685,7 @@ WMInumber ::= IA5String (SIZE(1..3)) * - 3-255 : reserved for future usage. * * @category: Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ WrongWayDrivingSubCauseCode ::= INTEGER { unavailable(0), @@ -3721,7 +3718,7 @@ WrongWayDrivingSubCauseCode ::= INTEGER { * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. * * @category: Traffic information - * Revision: Description revised in V2.1.1 + * @revision: Description revised in V2.1.1 */ YawRateConfidence ::= ENUMERATED { degSec-000-01 (0), @@ -3755,7 +3752,7 @@ YawRateConfidence ::= ENUMERATED { * * @unit: 0,01 degree per second. * @category: Vehicle Information - * Revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). + * @revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). */ YawRateValue ::= INTEGER { straight(0), @@ -3778,7 +3775,7 @@ YawRateValue ::= INTEGER { * @field value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. * * @category: Kinematic Information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ Acceleration1d ::= SEQUENCE { value AccelerationValue, @@ -3795,7 +3792,7 @@ Acceleration1d ::= SEQUENCE { * @field value actionDeltaTime: the period in which the acceleration change action is performed. * * @category: Kinematic Information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ AccelerationChangeIndication ::= SEQUENCE { accelOrDecel AccelerationChange, @@ -3813,7 +3810,7 @@ AccelerationChangeIndication ::= SEQUENCE { * @field sequenceNumber: a sequence number. * * @category: Communication information - * Revision: V1.3.1 + * @revision: V1.3.1 */ ActionID ::= SEQUENCE { originatingStationID StationID, @@ -3830,7 +3827,7 @@ ActionID ::= SEQUENCE { * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. * * @category: GeoReference information - * Revision: V1.3.1 + * @revision: V1.3.1 */ Altitude ::= SEQUENCE { altitudeValue AltitudeValue, @@ -3847,7 +3844,7 @@ Altitude ::= SEQUENCE { * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. * * @category: Basic information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ BasicContainer ::= SEQUENCE { stationType StationType, @@ -3865,7 +3862,7 @@ BasicContainer ::= SEQUENCE { * @field confidence: The accuracy associated to the provided value. * * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CartesianAngle ::= SEQUENCE { value CartesianAngleValue, @@ -3882,7 +3879,7 @@ CartesianAngle ::= SEQUENCE { * @field confidence: The accuracy associated to the provided value. * * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CartesianAngularSpeed ::= SEQUENCE { value CartesianAngularSpeedValue, @@ -3899,7 +3896,7 @@ CartesianAngularSpeed ::= SEQUENCE { * @field confidence: The accuracy associated to the provided value. * * @category: Kinematics information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CartesianAngularAcceleration ::= SEQUENCE { value CartesianAngularAccelerationValue, @@ -3921,7 +3918,7 @@ CartesianAngularAcceleration ::= SEQUENCE { * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. * * @category: Traffic information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ CauseCode ::= SEQUENCE { causeCode CauseCodeType, @@ -3930,21 +3927,15 @@ CauseCode ::= SEQUENCE { } /** - * This DF is an alternative representation of the cause code value of a traffic event. + * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. * - * It includes the following components: - * - * @field causeCode: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. * - * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may - * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. - * + * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. * @category: Traffic information - * Revision: Created in V2.1.1 + * @revision: Editorial update in V2.1.1 */ -CauseCodeV2 ::= SEQUENCE { - causeCode CHOICE { +CauseCodeChoice::= CHOICE { reserved SubCauseCodeType, trafficCondition TrafficConditionSubCauseCode, accident AccidentSubCauseCode, @@ -4074,7 +4065,24 @@ CauseCodeV2 ::= SEQUENCE { reserved126 SubCauseCodeType, reserved127 SubCauseCodeType, reserved128 SubCauseCodeType - }, + } + +/** + * This DF is an alternative representation of the cause code value of a traffic event. + * + * It includes the following components: + * + * @field ccAndScc: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. + * + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @category: Traffic information + * @revision: Created in V2.1.1 + */ + +CauseCodeV2 ::= SEQUENCE { + ccAndScc CauseCodeChoice, ... } @@ -4090,7 +4098,7 @@ CauseCodeV2 ::= SEQUENCE { * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. * * @category: Infrastructure information, Communication information - * Revision: V1.3.1 + * @revision: V1.3.1 */ CenDsrcTollingZone ::= SEQUENCE { protectedZoneLatitude Latitude, @@ -4113,7 +4121,7 @@ CenDsrcTollingZone ::= SEQUENCE { * * * @category: GeoReference information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CircularShape ::= SEQUENCE { nodeCenterPoint CartesianPosition3d OPTIONAL, @@ -4138,7 +4146,7 @@ CircularShape ::= SEQUENCE { * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. * * @category: GeoReference information, Road topology information - * Revision: V1.3.1 + * @revision: V1.3.1 */ ClosedLanes ::= SEQUENCE { innerhardShoulderStatus HardShoulderStatus OPTIONAL, @@ -4157,7 +4165,7 @@ ClosedLanes ::= SEQUENCE { * @field breakupTime: indicates the time of breakup. * * @category: Cluster Information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ClusterBreakupInfo ::= SEQUENCE { clusterBreakupReason ClusterBreakupReason, @@ -4175,7 +4183,7 @@ ClusterBreakupInfo ::= SEQUENCE { * @field joinTime: indicates the time of joining. * * @category: Cluster Information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ClusterJoinInfo ::= SEQUENCE { clusterId ClusterId, @@ -4193,7 +4201,7 @@ ClusterJoinInfo ::= SEQUENCE { * @field clusterLeaveReason: indicates the reason for leaving. * * @category: Cluster Information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ClusterLeaveInfo ::= SEQUENCE { clusterId ClusterId, @@ -4208,7 +4216,7 @@ ClusterLeaveInfo ::= SEQUENCE { * starting at 1 from the left. * * @category: Sensing Information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CorrelationColumn ::= SEQUENCE SIZE (1..17) OF CorrelationRowValue @@ -4223,7 +4231,7 @@ CorrelationColumn ::= SEQUENCE SIZE (1..17) OF CorrelationRowValue * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ Curvature ::= SEQUENCE { curvatureValue CurvatureValue, @@ -4259,7 +4267,7 @@ Curvature ::= SEQUENCE { * This component is optional; it shall be present if the information is available. * * @category Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ DangerousGoodsExtended ::= SEQUENCE { dangerousGoodsType DangerousGoodsBasic, @@ -4285,7 +4293,7 @@ DangerousGoodsExtended ::= SEQUENCE { * @field zCoordinate: the optional Z coordinate value. * * @category: GeoReference information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CartesianPosition3d::=SEQUENCE{ xCoordinate CartesianCoordinate, @@ -4303,7 +4311,7 @@ CartesianPosition3d::=SEQUENCE{ * @field confidence: the coordinate accuracy associated to the provided value. * * @category: GeoReference information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ CartesianCoordinateWithConfidence ::= SEQUENCE { value CartesianCoordinateExtended, @@ -4322,7 +4330,7 @@ CartesianCoordinateWithConfidence ::= SEQUENCE { * @field deltaAltitude: A delta altitude offset with regards to the altitude value of the reference position. * * @category: GeoReference information - * Revision: V1.3.1 + * @revision: V1.3.1 */ DeltaReferencePosition ::= SEQUENCE { deltaLatitude DeltaLatitude, @@ -4334,7 +4342,7 @@ DeltaReferencePosition ::= SEQUENCE { * This DF represents a portion of digital map, described using a list of waypoints @ref ReferencePosition. * * @category: GeoReference information - * Revision: V1.3.1 + * @revision: V1.3.1 */ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition @@ -4355,7 +4363,7 @@ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. * * @category: GeoReference information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ EllipticalShape ::= SEQUENCE { @@ -4385,7 +4393,7 @@ EllipticalShape ::= SEQUENCE { * @field euVehicleCategoryG: indicates a vehicle in the G category. * * @category: Vehicle information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ EuVehicleCategoryCode ::= CHOICE { euVehicleCategoryL EuVehicleCategoryL, @@ -4400,11 +4408,11 @@ EuVehicleCategoryCode ::= CHOICE { * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime * or do not contain the COMPONENT eventDeltaTime. * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @Ref EventPoint in the list. + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. * * @category: GeoReference information, Traffic information - * Revision: created in V2.1.1 based on EventHistory + * @revision: created in V2.1.1 based on EventHistory */ EventZone::= EventHistory ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | @@ -4418,7 +4426,7 @@ EventZone::= EventHistory * * @category: GeoReference information, Traffic information * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref EventZone instead. - * Revision: Generalized the semantics in V2.1.1 + * @revision: Generalized the semantics in V2.1.1 */ EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint @@ -4435,7 +4443,7 @@ EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint * @field informationQuality: Information quality of the detection for this event point. * * @category: GeoReference information, Traffic information - * Revision: generalized the semantics in V2.1.1 + * @revision: generalized the semantics in V2.1.1 */ EventPoint ::= SEQUENCE { eventPosition DeltaReferencePosition, @@ -4453,7 +4461,7 @@ EventPoint ::= SEQUENCE { * @field vruSpecific: represents the status of the exterior light switches of a VRU. * * @category: VRU information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ ExteriorLightsExtended ::= SEQUENCE { vehicular ExteriorLights, @@ -4477,7 +4485,7 @@ ExteriorLightsExtended ::= SEQUENCE { * @field mapPosition: a position on a lane identified in a MAPEM. * * @category: Road Topology information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ GeneralizedLanePosition::= CHOICE { trafficLanePosition LanePosition, @@ -4498,7 +4506,7 @@ GeneralizedLanePosition::= CHOICE { * * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84Angle instead. * @category: Kinematics Information - * Revision: V1.3.1 + * @revision: V1.3.1 */ Heading ::= SEQUENCE { headingValue HeadingValue, @@ -4516,7 +4524,7 @@ Heading ::= SEQUENCE { * @field actionDeltaTime: the period over which a direction change action is performed. * * @category: Kinematics Information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ HeadingChangeIndication ::= SEQUENCE { direction TurningDirection, @@ -4539,7 +4547,7 @@ HeadingChangeIndication ::= SEQUENCE { * @unit: N/A * * @category: Communication information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ InterferenceManagementChannel ::= SEQUENCE { centreFrequency INTEGER (1 .. 99999), @@ -4558,7 +4566,7 @@ InterferenceManagementChannel ::= SEQUENCE { * @field managementInfo: contains interference management information applicable in the zone defined in @field zoneDefinition. * * @category: Communication information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ InterferenceManagementZone ::= SEQUENCE { zoneDefinition InterferenceManagementZoneDefinition, @@ -4581,7 +4589,7 @@ InterferenceManagementZone ::= SEQUENCE { * @field interferenceManagementZoneShape: shape of the interference management zone. * * @category: Communication information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ InterferenceManagementZoneDefinition::= SEQUENCE{ interferenceManagementZoneLatitude Latitude, @@ -4596,7 +4604,7 @@ InterferenceManagementZoneDefinition::= SEQUENCE{ * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. * * @category: Communication information. - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel @@ -4616,7 +4624,7 @@ InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManageme * This component is present when the interference management is temporarily valid * * @category: Communication information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ InterferenceManagementInfoPerChannel ::= SEQUENCE { interferenceManagementChannel InterferenceManagementChannel, @@ -4637,7 +4645,7 @@ InterferenceManagementInfoPerChannel ::= SEQUENCE { * potential victim in the interference management zone per channel access technology class. * * @category: Communication information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ InterferenceManagementMitigationType ::= CHOICE { unavailable NULL, @@ -4650,7 +4658,7 @@ InterferenceManagementMitigationType ::= CHOICE { * **EXAMPLE**: An interference management communication zone may be defined around a CEN DSRC road side equipment or an urban rail operational area. * * @category: Communication information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone @@ -4666,7 +4674,7 @@ InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManag * * @note: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique. * @category: Road topology information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ IntersectionReferenceId ::= SEQUENCE { region RoadRegulatorId OPTIONAL, @@ -4677,7 +4685,7 @@ IntersectionReferenceId ::= SEQUENCE { * This DF consists of a list of waypoints @ref ReferencePosition. * * @category: GeoReference information - * Revision: Editorial update in V2.1.1 + * @revision: Editorial update in V2.1.1 */ ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition @@ -4694,7 +4702,7 @@ ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition * @field stationId: the identifier of the ITS-S that generates the ITS message in question. * * @category: Communication information - * Revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. + * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. */ ItsPduHeader ::= SEQUENCE { protocolVersion INTEGER (0..255), @@ -4712,7 +4720,7 @@ ItsPduHeader ::= SEQUENCE { * @field: laneType: the type of the lane identified in the component transversalPosition. * * @category GeoReference information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ LanePositionAndType::= SEQUENCE { transversalPosition LanePosition, @@ -4731,7 +4739,7 @@ LanePositionAndType::= SEQUENCE { * * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. * @category Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ LateralAcceleration ::= SEQUENCE { lateralAccelerationValue LateralAccelerationValue, @@ -4749,7 +4757,7 @@ LateralAcceleration ::= SEQUENCE { * * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ LongitudinalAcceleration ::= SEQUENCE { longitudinalAccelerationValue LongitudinalAccelerationValue, @@ -4766,7 +4774,7 @@ LongitudinalAcceleration ::= SEQUENCE { * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. * * @category: Road topology information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ LongitudinalLanePosition ::= SEQUENCE { longitudinalLanePositionValue LongitudinalLanePositionValue, @@ -4778,7 +4786,7 @@ LongitudinalLanePosition ::= SEQUENCE { * Given a matrix "A" of size n x n, the number of columns @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..17) OF CorrelationColumn @@ -4795,7 +4803,7 @@ LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..17) OF Correlati * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane. * * @category: Road topology information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ MapPosition ::= SEQUENCE { mapReference MapReference OPTIONAL, @@ -4814,7 +4822,7 @@ MapPosition ::= SEQUENCE { * @field intersection: option that identifies the description of an intersection contained in a MAPEM. * * @category: Road topology information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ MapReference::= CHOICE { @@ -4826,7 +4834,7 @@ MapReference::= CHOICE { * * This DF represents a list of @ref MitigationPerTechnologyClass. * @category: Communication information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyClass @@ -4853,7 +4861,7 @@ MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyCl * interference management zone types. Specification details are in ETSI TS 103 724 [i.24], clause 7. * * @category: Communication information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ MitigationPerTechnologyClass ::= SEQUENCE { accessTechnologyClass AccessTechnologyClass, @@ -4878,7 +4886,7 @@ MitigationPerTechnologyClass ::= SEQUENCE { * @field otherSubclass: the object is of a different types as the above. * * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ObjectClass ::= CHOICE { vehicleSubclass VehicleSubclass, @@ -4892,7 +4900,7 @@ ObjectClass ::= CHOICE { * This DF consist of a list of object classes. * * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence @@ -4906,7 +4914,7 @@ ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence * @field ObjectClassConfidence: the associated confidence information. * * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ObjectClassWithConfidence ::= SEQUENCE { objectClass ObjectClass, @@ -4922,7 +4930,7 @@ ObjectClassWithConfidence ::= SEQUENCE { * @field ObjectDimensionValue: the associated confidence information. * * @category: Sensing information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ ObjectDimension ::= SEQUENCE { value ObjectDimensionValue, @@ -4937,7 +4945,7 @@ ObjectDimension ::= SEQUENCE { * Each other PathPoint presents an offset delta position and optionally an offset travel time with regards to the previous PathPoint. * * @category: GeoReference information, Vehicle information - * Revision: created in V2.1.1 based on PathHistory + * @revision: created in V2.1.1 based on PathHistory */ Path::= SEQUENCE (SIZE(0..40)) OF PathPoint @@ -4950,7 +4958,7 @@ Path::= SEQUENCE (SIZE(0..40)) OF PathPoint * * @category: GeoReference information, Vehicle information * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead - * Revision: semantics updated in V2.1.1 + * @revision: semantics updated in V2.1.1 */ PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint @@ -4964,7 +4972,7 @@ PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. * * @category GeoReference information - * Revision: semantics updated in V2.1.1 + * @revision: semantics updated in V2.1.1 */ PathPoint ::= SEQUENCE { pathPosition DeltaReferencePosition, @@ -4981,7 +4989,7 @@ PathPoint ::= SEQUENCE { * @field pathDeltaTime: The optional delta time in which the waypoint will be occupied, from a reference time. * * @category GeoReference information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ PathPointAbsolute ::= SEQUENCE { pathPosition ReferencePosition, @@ -5007,14 +5015,14 @@ PathPointAbsolute ::= SEQUENCE { * @field zCoordinate: Optional Z Coordinate, i.e. distance to detected object to object reference point from the ITS-S's reference point in z-direction * at the time of measurement, in a pre-defined coordinate system. * - * @field xSpeed: Speed of the detected object in the detecting ITS-S’s reference system in x-direction at the time + * @field xSpeed: Speed of the detected object in the detecting ITS-S's reference system in x-direction at the time * of measurement, in a pre-defined coordinate system, using the DF SpeedExtended. * - * @field ySpeed: Speed of the detected object in the detecting ITS-S’s reference system in y-direction at the time + * @field ySpeed: Speed of the detected object in the detecting ITS-S's reference system in y-direction at the time * of measurement, in a pre-defined coordinate system, using the DF SpeedExtended. * * @field zSpeed - * Optional Speed of the detected object in the detecting ITS-S’s reference system in z-direction at the time + * Optional Speed of the detected object in the detecting ITS-S's reference system in z-direction at the time * of measurement, in a pre-defined coordinate system, using the DF SpeedExtended. * * @field xAcceleration: optional Acceleration of the detected object from the ITS-S's reference point in x-direction @@ -5109,7 +5117,7 @@ PathPointAbsolute ::= SEQUENCE { * @field matchedPosition: optional map-matched position of an object. * * @category Sensing information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ PerceivedObject ::= SEQUENCE { @@ -5156,7 +5164,7 @@ PerceivedObject ::= SEQUENCE { * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. * * @category GeoReference information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 * */ PolygonalShape ::= SEQUENCE { @@ -5183,7 +5191,7 @@ PolygonalShape ::= SEQUENCE { * * * @category GeoReference information - * Revision: V1.3.1 + * @revision: V1.3.1 */ PosConfidenceEllipse ::= SEQUENCE { semiMajorConfidence SemiAxisLength, @@ -5203,7 +5211,7 @@ PosConfidenceEllipse ::= SEQUENCE { * to the B pillar of vehicle and so on until the last pillar. * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar @@ -5227,7 +5235,7 @@ PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. * * @category: Infrastructure information, Communication information - * Revision: V1.3.1 + * @revision: V1.3.1 */ ProtectedCommunicationZone ::= SEQUENCE { protectedZoneType ProtectedZoneType, @@ -5245,7 +5253,7 @@ ProtectedCommunicationZone ::= SEQUENCE { * It may provide up to 16 protected communication zones information. * * @category: Infrastructure information, Communication information - * Revision: V1.3.1 + * @revision: V1.3.1 */ ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone @@ -5277,7 +5285,7 @@ ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicat * * Other countries may use different message sets defined by the local administration. * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ PtActivation ::= SEQUENCE { ptActivationType PtActivationType, @@ -5300,23 +5308,23 @@ PtActivation ::= SEQUENCE { * @field range: the radial range of the sensor from the reference point or sensor point offset. * * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor’s horizontal opening angle in positive angular direction with respect to the + * stationary sensor's horizontal opening angle in positive angular direction with respect to the * WGS84 coordinate system. * * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor’s horizontal opening angle in positive angular direction with respect to the WGS84 coordinate + * sensor's horizontal opening angle in positive angular direction with respect to the WGS84 coordinate * system. * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor’s + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's * 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. * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor’s + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's * 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 using the DE CartesianAngleValue. * * @category Sensing information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ RadialShape ::= SEQUENCE { offsetPoint CartesianPosition3d OPTIONAL, @@ -5345,7 +5353,7 @@ RadialShape ::= SEQUENCE { * @field radialShapesList: the list of radial shape details. * * @category: Georeference information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ RadialShapes ::= SEQUENCE { refPointId RefPointId DEFAULT 0, @@ -5360,7 +5368,7 @@ RadialShapes ::= SEQUENCE { * The DF contains a list of @ref RadialShapeDetails. * * @category: Georeference information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ RadialShapesList ::= SEQUENCE SIZE(1..10) OF RadialShapeDetails @@ -5379,21 +5387,21 @@ RadialShapesList ::= SEQUENCE SIZE(1..10) OF RadialShapeDetails * @field range: the radial range of the sensor from the reference point or sensor point offset. * * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor’s horizontal opening angle in positive angular direction. + * stationary sensor's horizontal opening angle in positive angular direction. * * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor’s horizontal opening angle in positive angular direction. + * sensor's horizontal opening angle in positive angular direction. * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor’s + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's * 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. * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor’s + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's * 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. * * @category: Georeference information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ RadialShapeDetails ::= SEQUENCE { range StandardLength, @@ -5420,7 +5428,7 @@ RadialShapeDetails ::= SEQUENCE { * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. * * @category GeoReference information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ RectangularShape ::= SEQUENCE { centerPoint CartesianPosition3d OPTIONAL, @@ -5444,7 +5452,7 @@ RectangularShape ::= SEQUENCE { * @field altitude: the altitude and an altitude accuracy of the geographical point. * * @category: GeoReference information - * Revision: description updated in V2.1.1 + * @revision: description updated in V2.1.1 */ ReferencePosition ::= SEQUENCE { latitude Latitude, @@ -5457,7 +5465,7 @@ ReferencePosition ::= SEQUENCE { * This DF consist of a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. * * @category: Infrastructure information, Traffic information - * Revision: V1.3.1 + * @revision: V1.3.1 */ RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType @@ -5473,7 +5481,7 @@ RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType * * @note: when the RoadRegulatorID is present, the RoadSegmentReferenceID is guaranteed to be globally unique. * @category: GeoReference information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ RoadSegmentReferenceId ::= SEQUENCE { region RoadRegulatorId OPTIONAL, @@ -5490,11 +5498,11 @@ RoadSegmentReferenceId ::= SEQUENCE { * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant in @field subjectStation is safe. * - * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi^2 + LoDi^2 + VDi^2)/relative speed + * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. * * @category: Traffic information, Kinematics information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ SafeDistanceIndication ::= SEQUENCE { subjectStation StationID OPTIONAL, @@ -5507,7 +5515,7 @@ SafeDistanceIndication ::= SEQUENCE { * This DF represents a list of maximum `16` @ref CartesianPosition3d. * * @category: GeoReference information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d @@ -5515,7 +5523,7 @@ SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPositi * The DF contains a list of identifiers. * * @category: Basic information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ SequenceOfId ::= SEQUENCE SIZE(1..128, ...) OF Identifier @@ -5524,7 +5532,7 @@ SequenceOfId ::= SEQUENCE SIZE(1..128, ...) OF Identifier * The component pathDeltaTime shall be either present in all elements of the list or be absent in all elements. * * @category: GeoReference information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ SequenceOfPathPointAbsolute::= SEQUENCE (SIZE(1..16,...)) OF PathPointAbsolute @@ -5532,7 +5540,7 @@ SequenceOfPathPointAbsolute::= SEQUENCE (SIZE(1..16,...)) OF PathPointAbsolute * The DF contains a list of DF SafeDistanceIndication. * * @category: Traffic information, Kinematics information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication @@ -5540,7 +5548,7 @@ SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceInd * The DF contains a list of DF TrajectoryInterceptionIndication. * * @category: Traffic information, Kinematics information - * Revision: created in V2.1.1 + * @revision: created in V2.1.1 */ SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication @@ -5562,7 +5570,7 @@ SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF Tra * @field radialShapes: definition of list of radial shapes. * * @category: GeoReference information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ Shape::= CHOICE { @@ -5585,7 +5593,7 @@ Shape::= CHOICE { * @field speedConfidence: the accuracy of the reported speed value. * * @category: Kinematics information - * Revision: V1.3.1 + * @revision: V1.3.1 */ Speed ::= SEQUENCE { speedValue SpeedValue, @@ -5602,7 +5610,7 @@ Speed ::= SEQUENCE { * @field speedConfidence: the accuracy of the reported speed value. * * @category: Kinematics information - * Revision: V2.1.1 + * @revision: V2.1.1 */ SpeedExtended ::= SEQUENCE { speedValue SpeedValueExtended, @@ -5619,7 +5627,7 @@ SpeedExtended ::= SEQUENCE { * @field actionDeltaTime: accuracy of the reported speed value. * * @category: Kinematics information - * Revision: V2.1.1 + * @revision: V2.1.1 */ StabilityChangeIndication ::= SEQUENCE { lossProbability StabilityLossProbability, @@ -5637,7 +5645,7 @@ StabilityChangeIndication ::= SEQUENCE { * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. * * @category: Vehicle information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ SteeringWheelAngle ::= SEQUENCE { steeringWheelAngleValue SteeringWheelAngleValue, @@ -5648,7 +5656,7 @@ SteeringWheelAngle ::= SEQUENCE { * This DF represents one or more paths using @ref PathHistory. * * @category: GeoReference information - * Revision: Revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory + * @revision: @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory */ Traces ::= SEQUENCE SIZE(1..7) OF Path @@ -5662,7 +5670,7 @@ Traces ::= SEQUENCE SIZE(1..7) OF Path * @field otherSide: represents the other lane. * * @category: Road Topology information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ TrafficIslandPosition ::= SEQUENCE { oneSide LanePositionAndType, @@ -5699,7 +5707,7 @@ TrafficIslandPosition ::= SEQUENCE { * confidence level of 95 %. * * @category: Vehicle information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ TrailerData ::= SEQUENCE { refPointId RefPointId, @@ -5725,7 +5733,7 @@ TrailerData ::= SEQUENCE { * with the trajectory of the station indicated in @field: subjectStation. * * @category: Vehicle information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ TrajectoryInterceptionIndication ::= SEQUENCE { subjectStation StationID OPTIONAL, @@ -5745,7 +5753,7 @@ TrajectoryInterceptionIndication ::= SEQUENCE { * * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead * @category Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ VerticalAcceleration ::= SEQUENCE { verticalAccelerationValue VerticalAccelerationValue, @@ -5762,7 +5770,7 @@ VerticalAcceleration ::= SEQUENCE { * @field vDS: Vehicle Descriptor Section (VDS). * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ VehicleIdentification ::= SEQUENCE { wMInumber WMInumber OPTIONAL, @@ -5780,7 +5788,7 @@ VehicleIdentification ::= SEQUENCE { * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. * * @category: Vehicle information - * Revision: V1.3.1 + * @revision: V1.3.1 */ VehicleLength ::= SEQUENCE { vehicleLengthValue VehicleLengthValue, @@ -5801,7 +5809,7 @@ VehicleLength ::= SEQUENCE { * @field clusterProfiles: identifies all the VRU profile types that are believed to be within the cluster . * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruClusterInformation ::= SEQUENCE { clusterId ClusterId OPTIONAL, @@ -5824,7 +5832,7 @@ VruClusterInformation ::= SEQUENCE { * @field animal: VRU Profile 4 - Animals. * * @category: VRU information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ VruProfileAndSubprofile ::= CHOICE { pedestrian VruSubProfilePedestrian, @@ -5844,7 +5852,7 @@ VruProfileAndSubprofile ::= CHOICE { * @field confidence: the accuracy associated to the provided value. * * @category: GeoReference information - * Revision: Created in V2.1.1 + * @revision: Created in V2.1.1 */ Wgs84Angle ::= SEQUENCE { value Wgs84AngleValue, @@ -5862,7 +5870,7 @@ Wgs84Angle ::= SEQUENCE { * @field yawRateConfidence: accuracy of reported yaw rate value. * * @category: Vehicle Information - * Revision: V1.3.1 + * @revision: V1.3.1 */ YawRate::= SEQUENCE { yawRateValue YawRateValue, -- GitLab From 9932a29c57121201214e5fb8f5e9a9f408a926eb Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Mon, 7 Mar 2022 10:31:34 +0000 Subject: [PATCH 16/91] Documentation update --- docs/ITS-Container.md | Bin 299209 -> 301764 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md index c0b787342753c7a99bddb1ee5bef920cc7da576f..5288e99eaaca5f3cb4cee0867afcfbc6563393cb 100644 GIT binary patch delta 18759 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 aRGq)g5*~b7c5Ld+mWHr~pWkY+lm7!}G!u{j delta 13635 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 RGWQH>)}(+avPU$c{||tMKz0BC -- GitLab From f1e95c6ed8ae392ce08009de1ce53ba5333553ca Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Mon, 7 Mar 2022 14:29:27 +0100 Subject: [PATCH 17/91] use asn2md from DF branch --- asn2md.py | 323 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 323 insertions(+) create mode 100755 asn2md.py diff --git a/asn2md.py b/asn2md.py new file mode 100755 index 0000000..dd9ab84 --- /dev/null +++ b/asn2md.py @@ -0,0 +1,323 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import argparse # parse arguments +import os.path # getting extension from file +import sys # output and stuff +import re # for regular expressions +import copy # for copy +if (sys.version_info > (3, 0)): + import urllib.parse # +else: + import urllib # + +## extract doxygen-tag namespace +RE_MODULE = re.compile( r'^\s*([A-Z][\w-]*)\s*({.*?})?\s*DEFINITIONS.*?::=\s*?BEGIN(.*)END', re.VERBOSE | re.MULTILINE | re.DOTALL) + +RE_SPACES = re.compile(r'\s+') + +RE_COMMENTS = re.compile(r'^\s*--.*?\n|--.*?(?:--|$)|/\*.*?\*/[\t ]*\n?', re.MULTILINE|re.DOTALL) + +RE_BASIC_TYPES = re.compile(r'^OCTET\s+STRING|BIT\s+STRING|BOOLEAN|INTEGER|FLOAT|SEQUENCE|SET|NULL') + +#RE_TYPE_BODY_1 = re.compile(r'.*?{(.*)}\s*WITH', re.MULTILINE|re.DOTALL) +#RE_TYPE_BODY_2 = re.compile(r'.*?{(.*)}\s*(?:WITH.*|\(.*?\)|\s*$)', re.MULTILINE|re.DOTALL) +RE_TYPE_BODY = re.compile(r'.*?{(.*)}\s*(?:WITH.*|\(.*?\)|\s*$)', re.MULTILINE|re.DOTALL) + +#RE_FIELDS = re.compile(r'^\s*(?:/\*\*.*?\*/)|^\s*([\w-]+?)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][.\w-]+)?(.*?)(?:,((?:\s*--!?<.*?\n)*)|((?:--!?<.*?\n)*)$)', re.MULTILINE | re.DOTALL| re.VERBOSE) +RE_FIELDS = re.compile(r'^\s*/\*.*?\*/|^\s*--\!.*?\n|^[\s&]*([\w-]+)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][\w-]+)?((?:{[^}]*}|\([^)]*\)|.)*?)(?:,|(--)|$)', re.MULTILINE | re.DOTALL) + +RE_EXPORTS = re.compile(r'^\s*EXPORTS.*?;', re.DOTALL | re.MULTILINE) + +RE_IMPORTS = re.compile(r'^\s*IMPORTS\s*(.*?);', re.DOTALL | re.MULTILINE) + +RE_IMPORT_ELEMENTS = re.compile(r'^([,\s\w-]*?)FROM\s*([\w-]+)\s*({[^}]*}(?:\s+WITH\s+SUCCESSORS)?)?', re.MULTILINE) + +RE_IMPORT_ELEMENT_TYPE = re.compile(r'[^,\s]+') + +RE_DOXY_ASN_COMMENTS = re.compile(r'^\s*--[-!#](:?$|\s(.*))', re.MULTILINE) + +RE_DOXY_C_COMMENTS = re.compile(r'^\s*/\*\*\s(.*?)\*/', re.MULTILINE | re.DOTALL) + +RE_DOXY_C_COMMENTS_I = re.compile(r'\s*\*+') +RE_STRIPSTAR = re.compile(r'^\s*\*', re.MULTILINE) + + +RE_DOXY_REF = re.compile(r'@ref\s+([\w-]+)') +RE_DOXY_CLASS = re.compile(r'@(?:class|struct|details):?\s+([\w-]+)') +RE_DOXY_DETAILS = re.compile(r'@details:?\s+[\w-]+') +RE_DOXY_STRIP_SINGLE_TAG = re.compile(r'@(?:brief|url)\s+') +RE_DOXY_STRIP_TAG = re.compile(r'\s*@(?:class|struct|details):?\s+[\w-]+') +RE_DOXY_UNIT = re.compile(r'^\s*@unit:?\s+(.+)\n', re.MULTILINE) +RE_DOXY_REVISION = re.compile(r'^\s*@revision:?\s+(.+)\n', re.MULTILINE) +RE_DOXY_BRIEF = re.compile(r'^\s*@brief[\s:]+(.+)\n', re.MULTILINE) +RE_DOXY_CATEGORY = re.compile(r'^\s*@category[\s:]+(.+)\n', re.MULTILINE) +RE_DOXY_PARAM = re.compile(r'^\s*@(?:param|field):?\s+([\w-]+)\s*(.*?)\n\s*$', re.MULTILINE | re.DOTALL) + +RE_DOXY_SECTION = re.compile(r"^\s*@(brief|note|(class|struct|param|field|details)\s+([-\w]+)):?(.*?)(?=\n\s*@|\n\s*\n|\Z)", re.MULTILINE | re.DOTALL) + +# RE_TYPE = re.compile(r'(([A-Z][\w-]*)\s*::=[\w \t]+(?:{+(.*?)}+)?.*?)\n\s*\n', re.MULTILINE | re.DOTALL) +RE_TYPE = re.compile(r'^\s*([A-Z][\w-]*)?\s*([{} \t:\w-]*?)?::=([\w \t]+.*?)\n\s*\n', re.MULTILINE | re.DOTALL) +RE_OPTIONS = re.compile(r'^\s*@options[\s:]+(.+)', re.MULTILINE) + +extTypes = {} +cpos = 0 +o_args = [] + +def urlquote(s): + if (sys.version_info > (3, 0)): + return urllib.parse.quote_plus(s) + else: + return urllib.quote_plus(s) + +def indentLines(content:str, indent): + ret='' + lines = content.splitlines() + for l in lines: + ret += ''.ljust(indent or 0) + l +'\n' + return ret + +def parseText(content, indent=None): + + def repl_ref(m): + return '[**{0}**]({1}#{0})'.format(m.group(1), extTypes.get(m.group(1),'')) + content = RE_DOXY_REF.sub(repl_ref, content) + + content = RE_DOXY_STRIP_TAG.sub('', content) + + content = RE_DOXY_STRIP_SINGLE_TAG.sub('', content) + + return indentLines(content, indent) + +def parseInlineComments(content:str, indent=None): + # keep into account only '--<' comments + lines = content.splitlines() + content = '' + for l in lines: + l = l.lstrip() + if l.startswith('--< '): + content += l[4:] + '\n' + elif l.startswith('--!< '): + content += l[5:] + '\n' + else: + continue + return parseText(content, indent) + +def parseDoxyComments(content:str): + # keep only '--! ' and /** */ comments + # convert '--! ' comments to C-style + content = RE_DOXY_ASN_COMMENTS.sub(r'/** *\g<1>*/', content) + ret = '' + for m in RE_DOXY_C_COMMENTS.finditer(content): + ret += RE_STRIPSTAR.sub('', m.group(1)) + return ret + +def parseModule(mname, content): + global cpos + cpos = 0 + ret = '' + m = RE_IMPORTS.search(content) + if m is not None: + pos = 0 + if m.group(1) is not None: + ret += '## Imports:\n' + s = m.group(1) + for fm in RE_IMPORT_ELEMENTS.finditer(s): + imName = fm.group(2) + for im in RE_IMPORT_ELEMENT_TYPE.finditer(fm.group(1)): + extTypes[im.group(0)] = imName+'.md' + ret += ' * **[{0}]({0}.md)** *{1}*
\n'.format(imName, RE_SPACES.sub(' ', fm.group(3) or '')) + ret += parseText(parseDoxyComments(s[pos:fm.start()])+'\n', 2) + pos = fm.end() + ret += parseText(parseDoxyComments(s[pos:])) + cpos = m.end() + + m = RE_EXPORTS.search(content) + if m is not None: + if cpos < m.end(): + cpos = m.end() + + # parse types + def repl_type (m, doc): + title = t = m.group(1) # type name + f_params = {} + s_unit = '' + s_category = '' + s_note = '' + s_revision = '' + options = copy.copy(o_args) + if doc : # doc is the prepending comment. Check if not None and not Empty + doc = parseDoxyComments(doc) + + # parse options + def repl_options(m): + nonlocal options + if m.group(1) is not None: + for o in m.group(1).split(','): + setattr(options, o.strip(), True) + return '' + doc=RE_OPTIONS.sub(repl_options, doc) + + def repl_section (m): + nonlocal title + nonlocal t + nonlocal f_params + nonlocal s_note + ret = '' + l = m.group(4).lstrip(":, \t").lstrip('\n') + if m.group(2) is not None: + # this can be class|struct|details|param|field + if m.group(3) == t: + ret = parseText(l) + else: + if len(l): + f_params[m.group(3)] = parseText(l, 2) + elif m.group(1) == 'brief': + if o_args.brief_as_title: + title = parseText(l) + else: + ret = parseText(l) + elif m.group(1) == 'note': + s_note = '\n>>>\n' + 'NOTE: ' + parseText(l).rstrip() + '\n>>>\n' + else: + ret = m.string[m.start():m.end()] + return ret + doc = RE_DOXY_SECTION.sub(repl_section, doc) + + def repl_category(m): + nonlocal s_category + s_category = '\n    **Categories**: ' + for l in m.group(1).split(','): +# s_category += '[{0}](#{1}) '.format(l.strip(), urlquote(l.strip())) + s_category += l.strip() + ' ' + s_category += '\n' + return '' + doc = RE_DOXY_CATEGORY.sub(repl_category, doc) + + def repl_unit(m): + nonlocal s_unit + s_unit = '\n    **Unit**: _' + m.group(1).strip() + '_\n' + return '' + doc = RE_DOXY_UNIT.sub(repl_unit, doc) + + def repl_revision(m): + nonlocal s_revision + s_revision = '\n    **Revision**: _' + m.group(1).strip() + '_\n' + return '' + doc = RE_DOXY_REVISION.sub(repl_revision, doc) + else: + doc = '' + + ret = '' + if t is not None: + fields = '' + ret = '\n###
{1}\n'.format(t, title) + parseText(doc) + + # parse fields and get out fields descriptions + if m.group(3) is not None: + # check if contain fields + fm = RE_TYPE_BODY.search(m.group(3)) + if fm is not None and fm.group(1) is not None: + typeBody = fm.group(1).strip() + if typeBody is not None: + fTitle = '' + field = '' + pos = 0 + for fm in RE_FIELDS.finditer(typeBody): + if fm.group(1) is not None: + # add description to the previous type + if len(field): + fields += parseInlineComments(fm.string[pos:fm.start()], 3) + field = '' + f = fm.group(1).strip() + ext = fm.group(3) or '' + if f in f_params: + field = f_params.pop(f) + '\n\n' + if fm.group(2) is not None: + fTitle = 'Fields:\n' + if len(field) or not o_args.no_auto_fields: + t = fm.group(2).strip() + if RE_BASIC_TYPES.match(t) is not None: + field = '* {0} **{1}** {2}
\n'.format(f, t, ext) + field + else: + field = '* {0} [**{1}**]({2}#{1}) {3}
\n'.format(f, t, extTypes.get(t,''), ext) + field + else: + fTitle = 'Values:\n' + if len(field) or not o_args.no_auto_values: + field = '* **{0}** {1}
\n'.format(f, ext) + field + if len(field): + field += parseText(fm.string[pos:fm.start()], 3) + pos = fm.end() + if fm.group(4) is not None: + # keep '--' for the next round + pos -= 2 + if len(field): + fields += field + if len(field): + fields += parseInlineComments(typeBody[pos:], 3) + # add all other fields defined as @params + if 'force-all-fields' in options or 'force-all-fields' in o_args: + for f in f_params: + fields += '* {}
\n{}\n\n'.format(f, f_params[f]) + if len(fields): + ret = ret.strip() + '\n\n' + fTitle + fields + else: + if title: + ret = '### {}\n\n'.format(title) + l = parseText(parseDoxyComments(doc)) + if len(l): + ret += l + '\n\n' + for p in f_params: + ret += '* `{0}` {1}\n'.format(p, f_params[p]) + + return ret + s_unit + s_category + s_revision + s_note + '```asn1\n' + RE_COMMENTS.sub('', m.group(0).strip()) +'\n```\n\n' + + pos = 0 + ret += '## Data Elements:\n' + for m in RE_TYPE.finditer(content[cpos:]): + ret += repl_type (m, m.string[pos:m.start()]) + pos = m.end() + return ret + + +def parseAsn(outDir, content) : + # iterate modules in the file + pos= 0 + cnt = 0 + for m in RE_MODULE.finditer(content): + ret = '# ASN.1 module {}\n OID: _{}_\n'.format(m.group(1), RE_SPACES.sub(' ', m.group(2))) + ret += parseDoxyComments(content[pos:m.start()]) + '\n' + if m.group(3) is not None: + ret += parseModule(m.group(1), m.group(3)) + ret += '\n\n' + open(outDir + '/' + m.group(1) + '.md', "w",encoding='utf-8').write(ret) + pos = m.end() + cnt += 1 + return cnt + +def main(): + global o_args + ap = argparse.ArgumentParser(description='ASN.1 to markdown converter') + ap.add_argument('--out', '-o', type=str, default='.', help='output directory') + ap.add_argument('--brief-as-title', '-B', default=False, action='store_true', help='Do not treat @brief line as type header') + ap.add_argument('--force-all-fields', '-f', default=False,action='store_true', help='Add all fields in the list even if empty') + ap.add_argument('--no-auto-fields', '-F', default=False,action='store_true', help='Add fields only if @param or @field is defined') + ap.add_argument('--no-auto-values', '-V', default=False,action='store_true', help='Do not add named values or enums') + ap.add_argument('modules', action='store', nargs='+', help='ASN.1 files') + o_args = ap.parse_args() + + if not o_args.modules: + ap.print_help() + exit(1) + + cnt = 0 + for a in o_args.modules: + try: + content = open(a, encoding='latin-1').read() + cnt += parseAsn(o_args.out, content) + except IOError as e: + sys.stderr.write(e[1]+"\n") + print("{} modules porcessed\n".format(cnt)) + +if __name__ == '__main__': + main() -- GitLab From d91d878390642f7137d272a61083d83bb967560a Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Mon, 7 Mar 2022 13:31:01 +0000 Subject: [PATCH 18/91] Documentation update --- docs/ITS-Container.md | Bin 301764 -> 291045 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md index 5288e99eaaca5f3cb4cee0867afcfbc6563393cb..6315a5104cf7fab2c372ea38287e45be618992c5 100644 GIT binary patch delta 31758 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 delta 46596 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 Yu%7ab8K}56*p*Rm(vIZ1xK^?KKdNw1Jpcdz -- GitLab From e8b2e6ce51dc84f9a2c20f84d015f9a47880add1 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Tue, 8 Mar 2022 07:17:09 +0000 Subject: [PATCH 19/91] Replace ITS-Container.asn --- ITS-Container.asn | 136 +++++++++++++++++++++++----------------------- 1 file changed, 68 insertions(+), 68 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index ba3013b..9a22d0f 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -93,8 +93,8 @@ AccelerationControl ::= BIT STRING { * * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * @@ -328,9 +328,9 @@ AltitudeConfidence ::= ENUMERATED { * This DE represents the altitude value in a WGS84 co-ordinate system. * * The value shall be set to: - * - `-100 000` if the altitude is equal to or less than `-1 000 m`. - * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than `n x 0.01 meters` and greater than `(n-1) x 0,01` meters. - * - `800 000` if the altitude greater than `7 999 m`. + * - `-100 000` if the altitude is equal to or less than -1 000 m. + * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0.01 meters and greater than (n-1) x 0,01 meters. + * - `800 000` if the altitude greater than 7 999 m. * - `800 001` if the information is not available. * * @unit: 0.01 meter @@ -348,7 +348,7 @@ AltitudeValue ::= INTEGER { * * The value shall be set to: * - `1` if the accuracy is equal to or less than 0,1 degrees. - * - `n (n > 1 and n < 126)` if the accuracy is equal to or less than `n * 0,1 degrees` and greater than `(n-1) x * 0,1 degrees`. + * - `n (n > 1 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. * - `127` if the accuracy information is not available. * @@ -429,8 +429,8 @@ AngularAccelerationConfidence ::= ENUMERATED { * * The value shall be set to: * - `1` if the angle is equal to or less than 0,1 degrees. - * - `n (n > 1 and n < 3601)` if the angle is equal to or less than `n x 0,1 degrees`, and greater than `(n-1) x 0,1 degrees`. - * - `36001` if the accuracy information is not available + * - `n (n > 1 and n < 3601)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. + * - `36001` if the accuracy information is not available. * * @unit 0,1 degrees * @category: Kinematics information @@ -447,10 +447,10 @@ CartesianAngleValue ::= INTEGER { -- tbd define the value 0 vs 3600 * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `-32766` if the speed is equal to or less than `327,66` degrees/s - * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than `n` x 0,01 degrees/s, and greater than `(n-1)` x 0,01 degrees/s. - * - `32766` if the speed is greater than `327,65 degrees/s` - * - `32767` if the information is unavailable + * - `-32766` if the speed is equal to or less than 327,66 degrees/s. + * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s. + * - `32766` if the speed is greater than 327,65 degrees/s. + * - `32767` if the information is unavailable. * * @unit 0,01 degrees/s * @category: Kinematics information @@ -467,10 +467,10 @@ CartesianAngularSpeedValue ::= INTEGER { * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `-32766` if the acceleration is equal to or less than `327,66` degrees/s2 - * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than `n` x 0,01 degrees/s2, + * - `-32766` if the acceleration is equal to or less than 327,66 degrees/s2 + * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than n x 0,01 degrees/s2, and greater than `(n-1)` x 0,01 degrees/s2. - * - `32766` if the acceleration is greater than `327,65` degrees/s2 + * - `32766` if the acceleration is greater than 327,65 degrees/s2 * - `32767` if the information is unavailable * * @unit 0,01 degrees/s2 (degrees per second squared) @@ -564,7 +564,7 @@ CauseCodeType ::= INTEGER { } (0..255) /** - * This DF represents the value of a cartesian coordinate with a range of `-30,94` meters to `+10` meters. + * This DF represents the value of a cartesian coordinate with a range of -30,94 meters to +10 meters. * * @unit 0,01 m * @category: Basic information @@ -579,7 +579,7 @@ CartesianCoordinateSmall::= INTEGER { } (-3094..1001) /** - * This DF represents the value of a cartesian coordinate with a range of `+-327,68` meters. + * This DF represents the value of a cartesian coordinate with a range of +-327,68 meters. * * @unit 0,01 m * @category: Basic information @@ -588,7 +588,7 @@ CartesianCoordinateSmall::= INTEGER { CartesianCoordinate::= INTEGER (-32768..32767) /** - * This DF represents the value of a cartesian coordinate with a range of `+-1 327,68` meters. + * This DF represents the value of a cartesian coordinate with a range of +-1 327,68 meters. * * @unit 0,01 m * @category: Basic information @@ -709,9 +709,9 @@ CollisionRiskSubCauseCode ::= INTEGER { * This DE represents the absolute accuracy of measurement to a confidence level of 95%. * * The value shall be set to: - * - `1` if the accuracy is equal to or less than `0,01 meter`. - * - `n` (`n > 1` and `n < 4094`) if the accuracy is is equal to or less than `n` x 0,01 meter, and greater than `(n-1)` x 0,1 meter. - * - `4094` if the accuracy information is greater than `40,93` meter. + * - `1` if the accuracy is equal to or less than 0,01 meter. + * - `n` (`n > 1` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. + * - `4094` if the accuracy information is greater than 40,93 meter. * - `4095` if the accuracy information is not available. * * @unit 0,01 m @@ -729,9 +729,9 @@ CoordinateConfidence ::= INTEGER { * * The following values are specified. * - `-100` indicates full negative correlation - * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to `n*100`. + * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100. * - `0` indicates not correlated or unavailable - * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to `n*100`. + * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. * - `100` indicates full positive correlation * * @unit: the value is scaled by 100 @@ -811,11 +811,11 @@ CurvatureConfidence ::= ENUMERATED { * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. * * The value shall be set to: - * - `-1023` for values smaller than `-1023`. - * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than `n`, and greater than `(n-1)`. + * - `-1023` for values smaller than -1023. + * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1). * - `0` when the vehicle is moving straight. - * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than `n`, and greater than `(n-1)`. - * - `1022`, for values greater than `1021`. + * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1). + * - `1022`, for values greater than 1021. * - `1023`, if the information is not available. * * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. @@ -918,11 +918,11 @@ DangerousSituationSubCauseCode ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `-12700` for values equal to or lower than `-127 metres`. - * - `n` (`n > -12700` and `n <= 0) for altitude offset `n x 0,01` meter below the reference position. + * - `-12700` for values equal to or lower than -127 metres. + * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 meter below the reference position. * - `0` for no altitudinal offset. - * - `n` (`n > 0` and `n < 12799`) for altitude offset `n x 0,01` meter above the reference position. - * - `12799` for values equal to or greater than `127,99` metres. + * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 meter above the reference position. + * - `12799` for values equal to or greater than 127,99 metres. * - `12800` when the information is unavailable. * * @unit: 0.01 metre @@ -940,9 +940,9 @@ DeltaAltitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset `n x 0,1` microdegrees towards the south from the reference position. + * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. * - `0` for no latitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset `n x 0,1` microdegrees towards the north from the reference position. + * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the north from the reference position. * - `131072` when the information is unavailable. * * @unit: 0.1 microdegree @@ -960,9 +960,9 @@ DeltaLatitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset `n x 0,1` microdegrees towards the west from the reference position. + * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. * - `0` for no longitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset `n x 0,1` microdegrees towards the east from the reference position. + * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the east from the reference position. * - `131072` when the information is unavailable. * * @unit: 0.1 microdegree @@ -1013,7 +1013,7 @@ DeltaTimeMilliSecondPosNeg ::= INTEGER { /** * This DE represents a difference in time with respect to a reference time. - * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert a @ref VruClusterOpTimestamp to a @ref GenerationDeltaTime, + * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, * multiply by 256 (i.e. append a `00` byte) * * @unit: 256 milliseconds @@ -1752,9 +1752,9 @@ Latitude ::= INTEGER { * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation - * with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation - with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * @@ -1813,8 +1813,8 @@ Longitude ::= INTEGER { * * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * @@ -1974,7 +1974,7 @@ ObjectDimensionValue ::= INTEGER { * * The value shall be set to: * - `1` if the dimension accuracy is equal to or less than 0,01 m. - * - `n (n > 1 and n < 101)` if the dimension accuracy is equal to or less than `n x 0,01 meter`, and more than `(n-1) x 0,01 meter` . + * - `n (n > 1 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. * - `102` if the data is unavailable. * @@ -2135,7 +2135,7 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * the vehicle bounding box of the empty load vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 62)` for any aplicable value n between `0,1 meter` and `6,2 meters`. + * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 meter and 6,2 meters. * - `62` for values equal to or higher than `6.2 metres`. * - `63` if the information is unavailable. * @@ -2241,8 +2241,8 @@ PosFrontAx ::= INTEGER { * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 126) for any aplicable value between `0,01 meter` and `1,26 meters`. - * - `126` for values equal to or higher than `1.26 metres`. + * - `n (n > 0 and n < 126) for any aplicable value between 0,01 meter and 1,26 meters. + * - `126` for values equal to or higher than 1.26 metres. * - `127` if the information is unavailable. * * @unit 0,01 metre @@ -2258,8 +2258,8 @@ PosLonCarr ::= INTEGER { * middle point of the front line of the vehicle bounding box. * * The value shall be set to: - * - `n (n > 0 and n < 29)` for any aplicable value between `0,1 meter` and `2,9 meters`. - * - `29` for values equal to or greater than `2.9 metres`. + * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 meter and 2,9 meters. + * - `29` for values equal to or greater than 2.9 metres. * - `30` if the information is unavailable. * * @unit 0,1 metre @@ -2704,10 +2704,10 @@ SpecialTransportType ::= BIT STRING { * The required confidence level is defined by the station applying this DE. * * The value shall be set to: - * - `1` if the speed accuracy is equal to or less than `1 cm/s`. - * - `n (n > 1 and n < 125)` if the speed accuracy is equal to or less than `n cm/s`. - * - `125` if the speed accuracy is equal to or less than `125 cm/s`. - * - `126` if the speed accuracy is out of range, i.e. greater than `125 cm/s`. + * - `1` if the speed accuracy is equal to or less than 1 cm/s. + * - `n (n > 1 and n < 125)` if the speed accuracy is equal to or less than n cm/s. + * - `125` if the speed accuracy is equal to or less than 125 cm/s. + * - `126` if the speed accuracy is out of range, i.e. greater than 125 cm/s. * - `127` if the speed accuracy information is not available. * * @@ -2747,7 +2747,7 @@ SpeedLimit ::= INTEGER { * * The value shall be set to: * - `0` in a standstill situation. - * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than `n x 0,01 m/s`, and greater than `(n-1) x 0,01 m/s`. + * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s. * - `16382` for speed values greater than 163,81 m/s. * - `16383` if the speed accuracy information is not available. * @@ -2766,7 +2766,7 @@ SpeedValue ::= INTEGER { * * The value shall be set to: * - `-16383` if the speed is equal to or smaller than -163,83 m/s - * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than `n x 0,01 m/s`, and greater than `(n-1) x `0,01 m/s`. + * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s. * - `16382` for speed values equal to or greater than 163,81 m/s. * - `16383` if the speed accuracy information is not available. * @@ -2958,9 +2958,9 @@ SteeringWheelAngleConfidence ::= INTEGER { * * The value shall be set to: * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. - * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than `n x 1,5 degrees`, and greater than `(n-1) x 1,5 degrees`, + * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, turning clockwise (i.e. to the right). - * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than `n x 0,1 degrees`, and greater than `(n-1) x 0,1 degrees`, + * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, turning counter-clockwise (i.e. to the left). * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. * - `512` if information is not available. @@ -3126,7 +3126,7 @@ TurningDirection::= ENUMERATED { * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. * * The value shall be set to: - * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than `n x 0,4 meter`, and greater than `(n-1) x 0,4 meters`. + * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 meter, and greater than (n-1) x 0,4 meters. * - `254` indicates that the turning radius is greater than 253 x 0.4 metre = 101.2 metres. * - `255` indicates that the information is unavailable. * @@ -3217,7 +3217,7 @@ VehicleLengthConfidenceIndication ::= ENUMERATED { * This DE represents the length of a vehicle. * * The value shall be set to: - * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than `n x 0,1 meter`, and greater than `(n-1) x 0,1 meter`. + * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. * - `1 023` to indicate that the information in unavailable. * @@ -3236,8 +3236,8 @@ VehicleLengthValue ::= INTEGER { * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. * * The value shall be set to: - * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than `n x 100 kg`, and greater than `(n-1) x 100 kg`. - * - `1 023` indicates that the vehicle mass is greater than `102 200 kg`. + * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than n x 100 kg, and greater than (n-1) x 100 kg. + * - `1 023` indicates that the vehicle mass is greater than 102 200 kg. * - `1 024` indicates the vehicle mass information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. @@ -3328,7 +3328,7 @@ VehicleSubclass ::= INTEGER { * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. * The value shall be set to: - * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than `n x 0,1 meter`, and greater than `(n-1) x 0,1 meter`. + * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. * - `61`indicates that the vehicle width is greater than 6,0 metres. * - `62`indicates that the information in unavailable. * @@ -3348,8 +3348,8 @@ VehicleWidth ::= INTEGER { * * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. - * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than `n x 0,1 m/s2`, and greater than `(n-1) x 0,1 m/s2`. + * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * @@ -3617,7 +3617,7 @@ VruSpecificExteriorLights ::= BIT STRING { * Perpendicular distance between front and rear axle of the wheel base of vehicle. * * The value shall be set to: - * - `n (n >= 1 and n < 126)` if the value is equal to or less than `n x 0.1 metres` and more than `(n-1) x 0.1 metres`. + * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0.1 metres and more than (n-1) x 0.1 metres. * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. * - `127` indicates that the information is unavailable. * @@ -3634,8 +3634,8 @@ WheelBaseVehicle ::= INTEGER { * The required confidence level is defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >=1 and n < 126)` is equal to or less than `n x 0.1 degrees` and more than `(n-1) x 0.1 degrees`. - * - `126` if the angle accuracy is out of range, i.e. greater than `12,5 degrees`. + * - `n (n >=1 and n < 126)` is equal to or less than n x 0.1 degrees and more than (n-1) x 0.1 degrees. + * - `126` if the angle accuracy is out of range, i.e. greater than 12,5 degrees. * - `127` if the angle accuracy information is not available. * * @@ -3738,10 +3738,10 @@ YawRateConfidence ::= ENUMERATED { * * The value shall be set to: * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. - * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than `n x 0,01 degrees/s`, - and greater than `(n-1) x 0,01 degrees/s`. - * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than `n x 0,01 degrees/s`, - and greater than `(n-1) x 0,01 degrees/s`. + * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s. + * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s. * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. * - `32 767` to indicate that the information is not available. * -- GitLab From 6a47f3ba97600cd6f1d295933f3f09ad4fa6b73f Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Tue, 8 Mar 2022 07:19:35 +0000 Subject: [PATCH 20/91] Documentation update --- docs/ITS-Container.md | Bin 291045 -> 290811 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md index 6315a5104cf7fab2c372ea38287e45be618992c5..56203bca32dc830a859139625d9735b64f8f70ba 100644 GIT binary patch delta 1511 zcmah}ZD?Cn80MUOHfg@vtx4A`JED%++}zxI)22(iu0o~Tu`3y&pa2ce}95_$1lY2P|a&LEy)8t}wL>%U*Y((;5fvGzH`%1MuOUeY~Xy#bPm(l@onya3F^|k-&-QScdX44L4Bn z`E(BL$%VwnXxIiCZ$lxJ5~U~}D7E2l1|P!5@7v{z`)@gEWmZc)7``;pietv+4gB*+ zjI7MUF*21h*h%05J-uT#TI63xF9J_Q>fxeMy^wH$$DbV;q2bKf9p6P118|V#Gq4FC zh<9q-?ycO#WQe2=gJAWkCi!ao95id;@PlLM}_=j3)V1?gX#~Lu#zOvTN#PU<=ZTYnajG@w~GQ9~P}JlgHDgQI?0C zHUKOBuEctG;5(&#rY@QzBKN-WJ+$QLC`CcQ?d2K$EH9M5vYSGpAVu)x+%U+oxtY|t z<8SAt8}M`UyWNy1)*pagNpbjO(M#OZ1_!BJ2YcjS=GWc!kSO)Art+BrzWUx?D@!YI zf`}hon%M+PO9?Y2a~*J=#3AtNPKvZCk}IPiU}RcW z>=WR!&&Q;yYFm|dl#}W&r`$LJzHafe7Pt6CPKwqEJR%)qfN$kB3!RIu;U1js^O5i$ zAVN|%fmz97;DBWLP2g;mIJzh5ChJ}Rof~1ez+}L5@1$pC zb{+f)|KSaoS+_I=bq2`%7;I*RImzeipjO@1K~@HgCgt``@W~^@>w<3leI1rFgr(zp3H5%D1KlHbn2$^WIkzHk;Q3ug_7mj4DY1K%Y8 delta 1971 zcmah~O>9(E6wbXZ%#TB-Gun1qO1%lCw9_{~@6At{))K)gCMvXX#vrwLCNdPXGqf{B zTr{*hs>P)AS}$cGNH+u`ZFs~NNfgMlB41wm1Pi#?PLQn*1 z>j>MRjl^OxP9k@8EaG;~;^khE97^%X)B{P@0_9hCb~;@=US%)DYd>c%*z}thV)S}q zJ3aWfm2EkL1x9w2KS{?18|AO|eu>-=lG=o56wCwyIXV&dv-mQqqGP-5Wsm{-TX!R^ zPI%a_7x6|a_B0wnkwOg6Qwfl7_gunOlaLN2Hq*)YK8@i{e8O-`>kfV-65~)F82Yx_0cv%19-z;S z@6~QRH%=^i`GMXX@3KIcUl#(|`u2C&0vWFutPxir}{sA5lL;Akd+n8a7#tqw+^HOO=~AmDHwYmE~QfvzK?+ zjb5or`04UUvDtqmZUqh(Vlj|!U6HZP>?_cUxjH(1HCs55E9UAD)Ep6GkS~a7?f;ML9W7$-R88a}% z?2E`;htcE8`NQY~Pd(R(DHDwYqJpFcX)P``Ba-#}18_ z&pmmgUr*6u8oxY^J00p66G?X~;b-sx_d{53?#HLgN(i^`sIX67!L6kb>Y&h(IiK=b zAAT_q)_>Tq<*UkotgG7x`lrMQ&@v1 -- GitLab From bdd38fef31d8ec51bbb77871cb538d0b3c2f7996 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Tue, 8 Mar 2022 07:40:57 +0000 Subject: [PATCH 21/91] Replace ITS-Container.asn --- ITS-Container.asn | 84 +++++++++++++++++++++++------------------------ 1 file changed, 42 insertions(+), 42 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 9a22d0f..53049f9 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,4 +1,4 @@ --- Draft CDD ASN.1 module Release 2 (Version 3) +-- Draft CDD ASN.1 module Release 2. date 08.03.2022 ITS-Container { itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) version3 (3) -- Note: the final OID is still to be agreed. @@ -886,7 +886,7 @@ DangerousGoodsBasic::= ENUMERATED { } /** - * This DE represents the value of the sub cause codes of the @ ref CauseCode `dangerousSituation` + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousSituation` * * The value shall be set to: * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, @@ -1272,7 +1272,7 @@ HardShoulderStatus ::= ENUMERATED { availableForDriving(2)} /** - * This DE represents the value of the sub cause code of the @CauseCode `hazardousLocation-AnimalOnTheRoad`. + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. * * The value shall be set to: * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, @@ -1294,7 +1294,7 @@ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the sub cause code of the @CauseCode `hazardousLocation-DangerousCurve`. + * This DE represents the sub cause code of the @ref CauseCode `hazardousLocation-DangerousCurve`. * * The value shall be set to: * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, @@ -1883,7 +1883,7 @@ LongitudinalLanePositionConfidence ::= INTEGER { * - 18-255 - reserved for future usage, * * @category: Communication information - * @revision: Created in V2.1.1 from @ref ItsPduHeader + * @revision: Created in V2.1.1 from @ref ItsPduHeader. */ MessageId::= INTEGER { denm(1), @@ -1945,8 +1945,8 @@ ObjectClassConfidence ::= INTEGER { * The value shall be set to: * * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. - * - `n (n > 0 and n < 15) : for the applicable confidence value. - * -`15 : if there is full confidence in the detected ObjectDescriptor. + * - `n (n > 0 and n < 15)` : for the applicable confidence value. + * -`15` : if there is full confidence in the detected ObjectDescriptor. * * @unit n/a * @category: Sensing information @@ -2241,7 +2241,7 @@ PosFrontAx ::= INTEGER { * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 126) for any aplicable value between 0,01 meter and 1,26 meters. + * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 meter and 1,26 meters. * - `126` for values equal to or higher than 1.26 metres. * - `127` if the information is unavailable. * @@ -3150,7 +3150,7 @@ TurningRadius ::= INTEGER { VDS ::= IA5String (SIZE(6)) /** - * This DE represents the value of the sub cause codes of the @CauseCode `vehicleBreakdown`. + * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. * * The value shall be set to: * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, @@ -4421,7 +4421,7 @@ EventZone::= EventHistory /** * The DF consists of a list of @ref EventPoint. * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @Ref EventPoint in the list. + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. * * @category: GeoReference information, Traffic information @@ -4563,7 +4563,7 @@ InterferenceManagementChannel ::= SEQUENCE { * * @field zoneDefinition: contains the geographical definition of the zone. * - * @field managementInfo: contains interference management information applicable in the zone defined in @field zoneDefinition. + * @field managementInfo: contains interference management information applicable in the zone defined in the component zoneDefinition. * * @category: Communication information * @revision: created in V2.1.1 @@ -4715,9 +4715,9 @@ ItsPduHeader ::= SEQUENCE { * * It includes the following components: * - * @field: transversalPosition: the transversal position. + * @field transversalPosition: the transversal position. * - * @field: laneType: the type of the lane identified in the component transversalPosition. + * @field laneType: the type of the lane identified in the component transversalPosition. * * @category GeoReference information * @revision: Created in V2.1.1 @@ -4733,9 +4733,9 @@ LanePositionAndType::= SEQUENCE { * * It includes the following components: * - * @field: lateralAccelerationValue: lateral acceleration value at a point in time. + * @field lateralAccelerationValue: lateral acceleration value at a point in time. * - * @field: lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. + * @field lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. * * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. * @category Vehicle information @@ -5055,7 +5055,7 @@ PathPointAbsolute ::= SEQUENCE { * @field rollAcceleration: optional Roll acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. * The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the x-axis. * - * @field @field pitchAcceleration: optional Pitch acceleration of object from the ITS-S's reference point at the time of measurement, in a + * @field pitchAcceleration: optional Pitch acceleration of object from the ITS-S's reference point at the time of measurement, in a * pre-defined coordinate system. The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the y-axis. * * @field yawAcceleration: optional Yaw acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. @@ -5496,7 +5496,7 @@ RoadSegmentReferenceId ::= SEQUENCE { * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. * * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. - * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant in @field subjectStation is safe. + * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant inidcated in the component subjectStation is safe. * * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. @@ -5656,7 +5656,7 @@ SteeringWheelAngle ::= SEQUENCE { * This DF represents one or more paths using @ref PathHistory. * * @category: GeoReference information - * @revision: @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory + * @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory */ Traces ::= SEQUENCE SIZE(1..7) OF Path @@ -5683,28 +5683,28 @@ TrafficIslandPosition ::= SEQUENCE { * * It includes the following components: * - * - @field refPointId: identifier of the reference point of the trailer. + * @field refPointId: identifier of the reference point of the trailer. * - * - @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the - * vehicle Reference Point. + * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the + * vehicle Reference Point. * - * - @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the - * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer - is not overhanging to the front with respect to the trailer reference point. + * @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer + * is not overhanging to the front with respect to the trailer reference point. * - * - @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the - trailer Reference Point indicated by the @see refPointID. + * @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. * - * - @field trailerWidth: optional width of the trailer. + * @field trailerWidth: optional width of the trailer. * - * - @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x - * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of - * the segment having as end points the reference point of the trailer and the reference point of - * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane - * xy, described in the local Cartesian coordinate system of the preceding reference point. The - * angle is measured with negative values considering the trailer orientation turning clockwise - * starting from the segment direction. The angle value accuracy is provided with the - * confidence level of 95 %. + * @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x + * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of + * the segment having as end points the reference point of the trailer and the reference point of + * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane + * xy, described in the local Cartesian coordinate system of the preceding reference point. The + * angle is measured with negative values considering the trailer orientation turning clockwise + * starting from the segment direction. The angle value accuracy is provided with the + * confidence level of 95 %. * * @category: Vehicle information * @revision: Created in V2.1.1 @@ -5724,13 +5724,13 @@ TrailerData ::= SEQUENCE { * * It includes the following components: * - * @field: subjectStation: indicates the subject station. + * @field subjectStation: indicates the subject station. * - * @field: trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory - * with the trajectory of the station indicated in @field: subjectStation. + * @field trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. * - * @field: trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory - * with the trajectory of the station indicated in @field: subjectStation. + * @field trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. * * @category: Vehicle information * @revision: Created in V2.1.1 @@ -5747,9 +5747,9 @@ TrajectoryInterceptionIndication ::= SEQUENCE { * * It includes the following components: * - * @field: verticalAccelerationValue: vertical acceleration value at a point in time. + * @field verticalAccelerationValue: vertical acceleration value at a point in time. * - * @field: verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. + * @field verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. * * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead * @category Vehicle information -- GitLab From e9f3911130ec6a953eded837ff0bc0c59e6a754d Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Tue, 8 Mar 2022 07:41:31 +0000 Subject: [PATCH 22/91] Documentation update --- docs/ITS-Container.md | Bin 290811 -> 290433 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md index 56203bca32dc830a859139625d9735b64f8f70ba..1c6e94862d834cf40c938aedfe5ee6dab5426654 100644 GIT binary patch delta 715 zcmZ{hT}YE*6vugXj$*IQkD5A~n-eO~*wSc)nW;gUA2~;AZh<&;(2Ta})=ffAT$9iO zd5eE!V3C&*rq$C$P!Upu;7wjyBNEAr>Y}c^sMpPcF1kGDIp=qN=Q$f6^F~(kW?eH_ z+7Lym`HnJwerB;&ePJ@IhktHY6Q6UioF)#^6B>czKqGk(i(yslQ4ITM{9UJ);~0atCP}Y?8bh zZQwZ-UNvzgmKynhPEjCS zT#AKOu1PUEo4If^*PjgK^=5ve!%RKJ#ZXNmk& delta 1099 zcmZuwZ%7ki80YSNO3_k>&S|EdNJY+nMOa;hQ(HE5x^$Y0w9f6FyIQw(cQb+@D|1Fc zkl+(S5Y>mi6oJqo6cO~Pf`ljtl1z~3OCJjos&|{yExP+~?>*1+`@PTedw=i6In&Z- z)8oVUb8Ui3{X(-8(P(qXMtdVQhpD2wLb9S8Po1Q= zXsyjJ)1c2-pro#BvyjE!L_`#HRZ_HJs%lcu71Cr~4k;`cpm^spF&EaPmIft-y3d8F zh<8WHAuJdrc04;us&MH6Z=Kvj`i;mH(!}MY@dt5!j954kH%3Wa3LADtNf`@|?1c^Z zGD=EuW{eEti!oxx+G~tHMvCEM-2MsIu6*P8I8kcqg{=QP%cCSeVOjSE8ogc`q^cAj z2fw}|r!YK2%20hxt{ZQkkm3S^dqY|VGL})siAva4l5JDzu&l);nBabw8Z&k{Ln_#= zLUod!ooQTHhffq_ACp;T(yCaV4MjNa08`0oX&}}~ytvcv*QhSy4+oqtS}pLaAw}O`|ksvP44%YEt`T=PEM=j>tYe zAY!`{%FU~U@y;5Rp&%8F4^DW_W0eDTeajTgzSPKD?ZsP=~RmuN)VRwY>}u)GnbBEth~SsVReHW z@Ag1lMbe__ys;^hnK;Od-`$YKkX=2j-x$)8%>RQ#XE)eMr4Waer&@KlLyQ=+XrjdUUPl0J=M)Dw<+o7s0SJ|4#qB=CStA!EO8J{ j^+6Nnd0-&j+Q_VZ0W%x8_2@ay7vP_9QegZ#3eo((u54{Z -- GitLab From 1ce4f81a70c2c13f38a53d20d9abddeb0b4c065d Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Tue, 17 May 2022 08:45:38 +0000 Subject: [PATCH 23/91] Replace ITS-Container.asn --- ITS-Container.asn | 6168 ++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 5832 insertions(+), 336 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 8aeec58..75df885 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,511 +1,6007 @@ +-- Draft CDD ASN.1 module Release 2. +-- Date: 11.05.2022 + + ITS-Container { -itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) version (2) +itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) version3 (3) -- Note: the final OID is still to be agreed. } DEFINITIONS AUTOMATIC TAGS ::= BEGIN - -ItsPduHeader ::= SEQUENCE { - protocolVersion INTEGER (0..255), - messageID INTEGER{ denm(1), cam(2), poi(3), spatem(4), mapem(5), ivim(6), ev-rsr(7), tistpgtransaction(8), srem(9), ssem(10), evcsn(11), saem(12), rtcmem(13) } (0..255), -- Mantis #7209, #7005 - stationID StationID +------------------------------------------ +-- Specification of CDD Data Elements: +------------------------------------------ + + +/** + * This DE indicates a change of acceleration. + * + * The value shall be set to: + * - 0 - `accelerate` - if the acceleration is positive. + * - 1 - `decelerate` - if the acceleration is negative. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AccelerationChange::= ENUMERATED { + accelerate (0), + decelerate (1) } -StationID ::= INTEGER(0..4294967295) +/** + * This DE represents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. + * - `102` if the data is unavailable. + * + * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported acceleration value may be valid and used by the application. + * + * @note: If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @unit 0,1 m/s2 + * @category: Kinematics information + * @revision: Description revised in V2.1.1 + */ +AccelerationConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. + * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle + * acceleration control system is engaged or not. Currently, this DE includes the information of the + * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise + * control system, cruise control system and speed limiter system. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `brakePedalEngaged` - Driver is stepping on the brake pedal, + * - 1 - `gasPedalEngaged` - Driver is stepping on the gas pedal, + * - 2 - `emergencyBrakeEngaged` - emergency brake system is engaged, + * - 3 - `collisionWarningEngaged`- collision warning system is engaged, + * - 4 - `accEngaged` - ACC is engaged, + * - 5 - `cruiseControlEngaged` - cruise control is engaged, + * - 6 - `speedLimiterEngaged` - speed limiter is engaged. + * + * Otherwise (for example when the corresponding system is not available due to non equipped system + * or information is unavailable), the corresponding bit shall be set to _0_. + * + * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. + * @category: Kinematics information + * @revision: V1.3.1 + */ +AccelerationControl ::= BIT STRING { + brakePedalEngaged (0), + gasPedalEngaged (1), + emergencyBrakeEngaged (2), + collisionWarningEngaged (3), + accEngaged (4), + cruiseControlEngaged (5), + speedLimiterEngaged (6) +} (SIZE(7)) -ReferencePosition ::= SEQUENCE { - latitude Latitude, - longitude Longitude, - positionConfidenceEllipse PosConfidenceEllipse , - altitude Altitude +/** + * This DE represents the value of an acceleration component in a defined coordinate system. + * + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: zero acceleration is indicated using n=0. + * @unit 0,1 m/s2 + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AccelerationValue ::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) -- tbd delete unavailable value? +} (-160 .. 161) + + +/** + * This DE indicates an access technology. + * + * The value shall be set to: + * - `0`: in case of any access technology class. + * - `1`: in case of ITS-G5 access technology class. + * - `2`: in case of LTE-V2X access technology class. + * - `3`: in case of NR-V2X access technology class. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +AccessTechnologyClass ::= ENUMERATED { + any (0), + itsg5Class (1), + ltev2xClass (2), + nrv2xClass (3), + ... } -DeltaReferencePosition ::= SEQUENCE { - deltaLatitude DeltaLatitude, - deltaLongitude DeltaLongitude, - deltaAltitude DeltaAltitude -} +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case the information on the sub cause of the accident is unavailable, + * - 1 - `multiVehicleAccident` - in case more than two vehicles are involved in accident, + * - 2 - `heavyAccident` - in case the airbag of the vehicle involved in the accident is triggered, + * the accident requires important rescue and/or recovery work, + * - 3 - `accidentInvolvingLorry` - in case the accident involves a lorry, + * - 4 - `accidentInvolvingBus` - in case the accident involves a bus, + * - 5 - `accidentInvolvingHazardousMaterials`- in case the accident involves hazardous material, + * - 6 - `accidentOnOppositeLane` - in case the accident happens on opposite lanes, + * - 7 - `unsecuredAccident` - in case the accident is not secured, + * - 8 - `assistanceRequested` - in case rescue and assistance are requested, + * - 9-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AccidentSubCauseCode ::= INTEGER { + unavailable (0), + multiVehicleAccident (1), + heavyAccident (2), + accidentInvolvingLorry (3), + accidentInvolvingBus (4), + accidentInvolvingHazardousMaterials (5), + accidentOnOppositeLane (6), + unsecuredAccident (7), + assistanceRequested (8) +} (0..255) -Longitude ::= INTEGER {oneMicrodegreeEast (10), oneMicrodegreeWest (-10), unavailable(1800000001)} (-1800000000..1800000001) +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailabl. + * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road. + * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road. + * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road. + * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road. + * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road. + * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road. + * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road. + * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. + * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface. + * - 10 - `roadsSalted` - when the low road adhesion is due to salted road. + * - 11-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { + unavailable (0), + heavyFrostOnRoad (1), + fuelOnRoad (2), + mudOnRoad (3), + snowOnRoad (4), + iceOnRoad (5), + blackIceOnRoad (6), + oilOnRoad (7), + looseChippings (8), + instantBlackIce (9), + roadsSalted (10) +} (0..255) -Latitude ::= INTEGER {oneMicrodegreeNorth (10), oneMicrodegreeSouth (-10), unavailable(900000001)} (-900000000..900000001) +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable. + * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind. + * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail. + * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane. + * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm. + * - 5 - `tornado` - in case the type of extreme weather condition is tornado. + * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. + * - 7-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { + unavailable (0), + strongWinds (1), + damagingHail (2), + hurricane (3), + thunderstorm (4), + tornado (5), + blizzard (6) +} (0..255) -Altitude ::= SEQUENCE { - altitudeValue AltitudeValue, - altitudeConfidence AltitudeConfidence -} +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. + * + * The value shall be set to: + * - 0 - `unavailable` : in case information on the type of precipitation is unavailable. + * - 1 - `heavyRain` : in case the type of precipitation is heavy rain. + * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall. + * - 3 - `softHail` : in case the type of precipitation is soft hail. + * - 4-255 : are reserved for future usage + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { + unavailable (0), + heavyRain (1), + heavySnowfall (2), + softHail (3) +} (0..255) -AltitudeValue ::= INTEGER {referenceEllipsoidSurface(0), oneCentimeter(1), unavailable(800001)} (-100000..800001) +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable. + * - 1 - `fog` - in case the cause of low visibility is fog. + * - 2 - `smoke` - in case the cause of low visibility is smoke. + * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall. + * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain. + * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail. + * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare. + * - 7 - `sandstorms` - in case the cause of low visibility is sand storm. + * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. + * - 9-255 - are reserved for future usage + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { + unavailable (0), + fog (1), + smoke (2), + heavySnowfall (3), + heavyRain (4), + heavyHail (5), + lowSunGlare (6), + sandstorms (7), + swarmsOfInsects (8) +} (0..255) +/** + * This DE represents the air humidity in tens of percent. + * + * The value shall be set to: + * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0.1 percent and greater than (n-1) x 0.1 percent. + * - `1001` indicates that the air humidity is unavailable. + * + * @category: Basic information + * @unit: 0,1 % + * @revision: created in V2.1.1 + */ +AirHumidity ::= INTEGER { + oneHundredPercent (1000), + unavailable (1001) +} (1..1001) + +/** + * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. + * + * The value shall be set to: + * - 0 - `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. + * - 1 - `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. + * - 2 - `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. + * - 3 - `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. + * - 4 - `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. + * - 5 - `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. + * - 6 - `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. + * - 7 - `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. + * - 8 - `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. + * - 9 - `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. + * - 10 - `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. + * - 11 - `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. + * - 12 - `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. + * - 13 - `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. + * - 14 - `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. + * - 15 - `unavailable` if the altitude accuracy information is unavailable + * + * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused + * by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported altitude value may be valid and used by the application. + * + * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported + * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ AltitudeConfidence ::= ENUMERATED { - alt-000-01 (0), - alt-000-02 (1), - alt-000-05 (2), - alt-000-10 (3), - alt-000-20 (4), - alt-000-50 (5), - alt-001-00 (6), - alt-002-00 (7), - alt-005-00 (8), - alt-010-00 (9), - alt-020-00 (10), - alt-050-00 (11), - alt-100-00 (12), - alt-200-00 (13), - outOfRange (14), + alt-000-01 (0), + alt-000-02 (1), + alt-000-05 (2), + alt-000-10 (3), + alt-000-20 (4), + alt-000-50 (5), + alt-001-00 (6), + alt-002-00 (7), + alt-005-00 (8), + alt-010-00 (9), + alt-020-00 (10), + alt-050-00 (11), + alt-100-00 (12), + alt-200-00 (13), + outOfRange (14), unavailable (15) } -DeltaLongitude ::= INTEGER {oneMicrodegreeEast (10), oneMicrodegreeWest (-10), unavailable(131072)} (-131071..131072) +/** + * This DE represents the altitude value in a WGS84 co-ordinate system. + * + * The value shall be set to: + * - `-100 000` if the altitude is equal to or less than -1 000 m. + * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0.01 meters and greater than (n-1) x 0,01 meters. + * - `800 000` if the altitude greater than 7 999 m. + * - `800 001` if the information is not available. + * + * @unit: 0.01 meter + * @category: GeoReference information + * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) + */ +AltitudeValue ::= INTEGER { + negativeOutOFRange (-100000), + postiveOutOfRange (800000), + unavailable (800001) +} (-100000..800001) + +/** + * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. + * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. + * - `127` if the accuracy information is not available. + * + * @unit: 0,1 degrees + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. + * For correlation computation, maximum interval levels can be assumed. + * + * The value shall be set to: + * - 0 - `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second + * - 1 - `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second + * - 2 - `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second + * - 3 - `degSec-001-00` if the accuracy is equal to or less than 1 degree/second + * - 4 - `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second + * - 5 - `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second + * - 6 - `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second + * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second + * - 8 - `unavailable` if the accuracy information is unavailable + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngularSpeedConfidence ::= ENUMERATED { + degSec-000-01 (0), + degSec-000-05 (1), + degSec-000-10 (2), + degSec-001-00 (3), + degSec-005-00 (4), + degSec-010-00 (5), + degSec-100-00 (6), + outOfRange (7), + unavailable (8) +} -DeltaLatitude ::= INTEGER {oneMicrodegreeNorth (10), oneMicrodegreeSouth (-10) , unavailable(131072)} (-131071..131072) +/** + * Tis DE represents the absolute accuracy of a reported angular acceleration value for a confidence level of 95%. + * For correlation computation, maximum interval levels shall be assumed. + * + * The value shall be set to: + * - 0 - `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second2 + * - 1 - `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second2 + * - 2 - `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second2 + * - 3 - `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second2 + * - 4 - `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second2 + * - 5 - `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second2 + * - 6 - `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second2 + * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second2 + * - 8 - `unavailable` if the accuracy information is unavailable + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngularAccelerationConfidence ::= ENUMERATED { + degSecSquared-000-01 (0), + degSecSquared-000-05 (1), + degSecSquared-000-10 (2), + degSecSquared-001-00 (3), + degSecSquared-005-00 (4), + degSecSquared-010-00 (5), + degSecSquared-100-00 (6), + outOfRange (7), + unavailable (8) +} -DeltaAltitude ::= INTEGER {oneCentimeterUp (1), oneCentimeterDown (-1), unavailable(12800)} (-12700..12800) +/** + * This DE indicates the number of axels of a passing train. + * + * The following values are specified: + * - `n(n > 2 and n < 1001)` indicates that the train has n x axels. + * - `1001`indicates that the number of axels is out of range. + * - `1002` the information is unavailable. + * + * + * @unit: Number of axels + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +AxlesCount ::= INTEGER{ + outOfRange (1001), + unavailable (1002) +} (2..1002) + +/** + * This DE represent the measured uncompesated atmospheric pressure in units of hPascal (hPa). + * + * The following values are specified: + * - `2999` indicates that the applicable value is less than 299.9 hPa. + * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 0.1 hPa and greater than (n-1) x 0.1 hPa. + * - `12001` indicates that the values is greater than 1200 hPa. + * - `12002` indicates that the information is not available. + * + * @category: Basic information + * @unit: 0.1 hPa + * @revision: Created in V2.1.1 +*/ +BarometricPressure ::= INTEGER{ + outOfRangelower (2999), + outOfRangeUpper (12001), + unavailable (12002) +} (2999..12002) + + +/** + * This DE indicates the cardinal number of bogies of a train. + * +* The value shall be set to: + * - `n (n > 1 and n < 100)` indicates that the train has n x bogie + * - `100`indicates that the number of bogie is out of range. + * - `101` the information is unavailable. + * + * @unit: Number of bogies + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +BogiesCount ::= INTEGER{ + outOfRange (100), + unavailable (101) +} (2..101) + +/** + * The DE represents a cardinal number that counts the size of a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CardinalNumber1B ::= INTEGER(1..255) + +/** + * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. + * - `36001` if the accuracy information is not available. + * + * The value 3600 shall not be used. + * + * @unit 0,1 degrees + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngleValue ::= INTEGER { + valueNotUsed (3600), + unavailable (3601) +} (0..3601) + +/** + * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `-32766` if the speed is equal to or less than 327,66 degrees/s. + * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s. + * - `32766` if the speed is greater than 327,65 degrees/s. + * - `32767` if the information is unavailable. + * + * @unit 0,01 degrees/s + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngularSpeedValue ::= INTEGER { + negativeOutofRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +/** + * This DE represents an angular acceleration value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `-32766` if the acceleration is equal to or less than 327,66 degrees/s2 + * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than n x 0,01 degrees/s2, + and greater than `(n-1)` x 0,01 degrees/s2. + * - `32766` if the acceleration is greater than 327,65 degrees/s2 + * - `32767` if the information is unavailable + * + * @unit 0,01 degrees/s2 (degrees per second squared) + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngularAccelerationValue ::= INTEGER { + negativeOutofRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +/** + *The DE represents the value of the cause code of an event. + * + * The value shall be set to: + * - 0 - - reserved for future use, + * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, + * - 2 - `accident` - in case the type of event is a road accident, + * - 3 - `roadworks` - in case the type of event is roadwork, + * - 4 - reserved for future usage, + * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any + * blocking of a road, partial or total, which has not been adequately + * secured and signposted, + * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, + * - 7 - `aquaplaning` - danger of aquaplaning on the road, + * - 8 - reserved for future usage, + * - 9 - `hazardousLocation-SurfaceCondition` - in case the type of event is abnormal road surface condition, + * - 10 - `hazardousLocation-ObstacleOnTheRoad` - in case the type of event is obstacle on the road, + * - 11 - `hazardousLocation-AnimalOnTheRoad` - in case the type of event is animal on the road, + * - 12 - `humanPresenceOnTheRoad` - in case the type of event is human presence on the road, + * - 13 - reserved for future usage, + * - 14 - `wrongWayDriving` - in case the type of the event is vehicle driving in wrong way, + * - 15 - `rescueAndRecoveryWorkInProgress` - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, + * - 16 - reserved for future usage, + * - 17 - `adverseWeatherCondition-ExtremeWeatherCondition`- in case the type of event is extreme weather condition, + * - 18 - `adverseWeatherCondition-Visibility` - in case the type of event is low visibility, + * - 19 - `adverseWeatherCondition-Precipitation` - in case the type of event is precipitation, + * - 20 - `violence` - in case the the type of event is human violence on or near the road, + * - 21-25 - reserved for future usage, + * - 26 - `slowVehicle` - in case the type of event is slow vehicle driving on the road, + * - 27 - `dangerousEndOfQueue` - in case the type of event is dangerous end of vehicle queue, + * - 28-90 - are reserved for future usage, + * - 91 - `vehicleBreakdown` - in case the type of event is break down vehicle on the road, + * - 92 - `postCrash` - in case the type of event is a detected crash, + * - 93 - `humanProblem` - in case the type of event is human health problem in vehicles involved in traffic, + * - 94 - `stationaryVehicle` - in case the type of event is stationary vehicle, + * - 95 - `emergencyVehicleApproaching` - in case the type of event is approaching vehicle operating emergency mission, + * - 96 - `hazardousLocation-DangerousCurve` - in case the type of event is dangerous curve, + * - 97 - `collisionRisk` - in case the type of event is a collision risk, + * - 98 - `signalViolation` - in case the type of event is signal violation, + * - 99 - `dangerousSituation` - in case the type of event is dangerous situation in which autonomous safety system in vehicle + * is activated, + * - 100 - `railwayLevelCrossing` - in case the type of event is a railway level crossing. + * - 101-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +CauseCodeType ::= INTEGER { + trafficCondition (1), + accident (2), + roadworks (3), -PosConfidenceEllipse ::= SEQUENCE { - semiMajorConfidence SemiAxisLength, - semiMinorConfidence SemiAxisLength, - semiMajorOrientation HeadingValue -} + impassability (5), + adverseWeatherCondition-Adhesion (6), + aquaplannning (7), -PathPoint ::= SEQUENCE { - pathPosition DeltaReferencePosition, - pathDeltaTime PathDeltaTime OPTIONAL -} + hazardousLocation-SurfaceCondition (9), + hazardousLocation-ObstacleOnTheRoad (10), + hazardousLocation-AnimalOnTheRoad (11), + humanPresenceOnTheRoad (12), -PathDeltaTime ::= INTEGER {tenMilliSecondsInPast(1)} (1..65535, ...) + wrongWayDriving (14), + rescueAndRecoveryWorkInProgress (15), -PtActivation ::= SEQUENCE { - ptActivationType PtActivationType, - ptActivationData PtActivationData -} + adverseWeatherCondition-ExtremeWeatherCondition (17), + adverseWeatherCondition-Visibility (18), + adverseWeatherCondition-Precipitation (19), + violence (20), + + slowVehicle (26), + dangerousEndOfQueue (27), + + vehicleBreakdown (91), + postCrash (92), + humanProblem (93), + stationaryVehicle (94), + emergencyVehicleApproaching (95), + hazardousLocation-DangerousCurve (96), + collisionRisk (97), + signalViolation (98), + dangerousSituation (99), + railwayLevelCrossing (100) +} (0..255) -PtActivationType ::= INTEGER {undefinedCodingType(0), r09-16CodingType(1), vdv-50149CodingType(2)} (0..255) +/** + * This DF represents the value of a cartesian coordinate with a range of -30,93 meters to +10,00 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateSmall::= INTEGER { + negativeOutOfRange (-3094), + positiveOutOfRange (1001) +} (-3094..1001) -- this is 12 bit, tbd question: increase the range by "one bit" to make this more practical for common usage? + +/** + * This DF represents the value of a cartesian coordinate with a range of -327,67 to + 327,66 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinate::= INTEGER{ + negativeOutOfRange (-32768), + positiveOutOfRange (32767) +} (-32768..32767) + +/** + * This DF represents the value of a cartesian coordinate with a range of -1 327,67 to + 1 327,66 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateExtended::= INTEGER{ + negativeOutOfRange (-132768), + positiveOutOfRange (132767) +} (-132768..132767) + +/** + * This DE represents the ID of a CEN DSRC tolling zone. + * + * @category: Communication information + * @revision: V1.3.1 + */ +CenDsrcTollingZoneID::= ProtectedZoneID + +/** + * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 (for the cluster leader) . + * + * The value shall be set to `0` if the information is unavailable. + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterCardinalitySize::= INTEGER { + unavailable (0), + onlyLeader (1) +} (0..255) -PtActivationData ::= OCTET STRING (SIZE(1..20)) +/** + * This DE represents the identifier of a cluster. + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterId ::= INTEGER(0..255) + +/** + * This DE indicates the reason why a cluster leader intends to break up the cluster. + * + * The value shall be set to: + * - 0 - `notProvided` - if the information is not provided. + * - 1 - `clusteringPurposeCompleted` - if the cluster purposes has been completed. + * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box. + * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster. + * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps. + * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. + * - 6 to 15 - reserved for future use + * + * @category: Cluster information + * @revision: Created in V2.1.1 +*/ +ClusterBreakupReason ::= ENUMERATED { + notProvided (0), + clusteringPurposeCompleted (1), + leaderMovedOutOfClusterBoundingBox (2), + joiningAnotherCluster (3), + enteringLowRiskAreaBasedOnMaps (4), + receptionOfCpmContainingCluster (5), + max(15) +} -AccelerationControl ::= BIT STRING { - brakePedalEngaged (0), - gasPedalEngaged (1), - emergencyBrakeEngaged (2), - collisionWarningEngaged (3), - accEngaged (4), - cruiseControlEngaged (5), - speedLimiterEngaged (6) -} (SIZE(7)) +/** + * This DE indicates the reason why a cluster participant is leaving the cluster. + * + * The value shall be set to: + * - 0 - `notProvided ` - if the information is not provided. + * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore. + * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbounded by the leader. + * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box. + * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of adefined range. + * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster. + * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure. + * - 7 - `failedJoin` - if the participant failed to join the cluster. + * - 8 - `safetyCondition` - if a safety condition applies. + * - 9 to 15 - reserved for future use + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterLeaveReason ::= ENUMERATED { + notProvided (0), + clusterLeaderLost (1), + clusterDisbandedByLeader (2), + outOfClusterBoundingBox (3), + outOfClusterSpeedRange (4), + joiningAnotherCluster (5), + cancelledJoin (6), + failedJoin (7), + safetyCondition (8), + max(15) +} +/** + * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of collision risk is unavailable, + * - 1 - `longitudinalCollisionRisk`- in case the type of detected collision risk is longitudinal collision risk, + * e.g. forward collision or face to face collision, + * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, + * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, + * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users + * e.g. pedestrians or bicycles, + * - 5-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +CollisionRiskSubCauseCode ::= INTEGER { + unavailable (0), + longitudinalCollisionRisk (1), + crossingCollisionRisk (2), + lateralCollisionRisk (3), + vulnerableRoadUser (4) +}(0..255) + +/** + * This DE represents a confidence level in percentage. + * + * The value shall be set to: + * + * - `0` : in case the confidence value is unknown but the reported value is valid. + * - `n (n > 0 and n < 101)` : for the confidence value in %. + * - `101` : in case the confidence value is not available. + * + * @unit Percent + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +ConfidenceLevel ::= INTEGER { + unknown (0), + unavailable (101) +} (0..101) + +/** + * This DE represents the absolute accuracy of measurement to a confidence level of 95%. + * + * The value shall be set to: + * - `n` (`n > 0` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. + * - `4094` if the accuracy information is greater than 40,93 meter. + * - `4095` if the accuracy information is not available. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CoordinateConfidence ::= INTEGER { + outOfRange (4094), + unavailable (4095) +} (0..4095) + +/** + * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. + * + * The following values are specified. + * - `-100` indicates full negative correlation + * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100. + * - `0` indicates not correlated or unavailable + * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. + * - `100` indicates full positive correlation + * + * @unit: the value is scaled by 100 + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +CorrelationRowValue ::= INTEGER { + full-negative-correlation (-100), + no-correlation (0), + full-positive-correlation (100) +} (-100..100) + +/** + * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. + * + * The value shall be set to: + * - 0 - `yawRateUsed` - if the yaw rate is used. + * - 1 - `yawRateNotUsed` - if the yaw rate is not used. + * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +CurvatureCalculationMode ::= ENUMERATED { + yawRateUsed (0), + yawRateNotUsed (1), + unavailable (2), + ... +} -SemiAxisLength ::= INTEGER{oneCentimeter(1), outOfRange(4094), unavailable(4095)} (0..4095) +/** + * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. + * + * The value shall be set to: + * - 0 - `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. + * - 1 - `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. + * - 2 - `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. + * - 3 - `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. + * - 4 - `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. + * - 5 - `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. + * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. + * - 7 - `unavailable` if the information is not available. + * + * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported curvature value may be valid and used by the application. + * + * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid + * and therefore cannot be trusted. Such value is not useful for the application. + * + * @category: Vehicle information + * @revision: description revised in V2.1.1 +*/ +CurvatureConfidence ::= ENUMERATED { + onePerMeter-0-00002 (0), + onePerMeter-0-0001 (1), + onePerMeter-0-0005 (2), + onePerMeter-0-002 (3), + onePerMeter-0-01 (4), + onePerMeter-0-1 (5), + outOfRange (6), + unavailable (7) +} -CauseCode ::= SEQUENCE { - causeCode CauseCodeType, - subCauseCode SubCauseCodeType, - ... +/** + * This DE describes vehicle turning curve with the following information: + * ``` + * Value = 1 / Radius * 10000 + * ``` + * wherein radius is the vehicle turning curve radius in meters. + * + * Positive values indicate a turning curve to the left hand side of the driver. + * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. + * + * The value shall be set to: + * - `-1023` for values smaller than -1023. + * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1). + * - `0` when the vehicle is moving straight. + * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1). + * - `1022`, for values greater than 1021. + * - `1023`, if the information is not available. + * + * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. + * + * @unit: 1 over 10 000 metres + * @category: Vehicle information + * @revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) + */ +CurvatureValue ::= INTEGER { + outOfRangeNegative (-1023), + straight (0), + outOfRangePositive (1022), + unavailable (1023) +} (-1023..1023) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. + * + * The following value are specified: + * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, + * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, + * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, + * - 3 - `queueAroundBend` - in case the dangerous end of queue is detected around the road bend, + * - 4 - `queueInTunnel` - in case queue is detected in tunnel, + * - 5-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DangerousEndOfQueueSubCauseCode ::= INTEGER { + unavailable (0), + suddenEndOfQueue (1), + queueOverHill (2), + queueAroundBend (3), + queueInTunnel (4) +} (0..255) + +/** + * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. + * The value is assigned according to `_class_` and `_division_` definitions of dangerous goods as specified in part II, + * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. + * + * + * @category Vehicle information + * @revision: V1.3.1 + */ +DangerousGoodsBasic::= ENUMERATED { + explosives1 (0), + explosives2 (1), + explosives3 (2), + explosives4 (3), + explosives5 (4), + explosives6 (5), + flammableGases (6), + nonFlammableGases (7), + toxicGases (8), + flammableLiquids (9), + flammableSolids (10), + substancesLiableToSpontaneousCombustion (11), + substancesEmittingFlammableGasesUponContactWithWater (12), + oxidizingSubstances (13), + organicPeroxides (14), + toxicSubstances (15), + infectiousSubstances (16), + radioactiveMaterial (17), + corrosiveSubstances (18), + miscellaneousDangerousSubstances (19) } -CauseCodeType ::= INTEGER { - reserved (0), - trafficCondition (1), - accident (2), - roadworks (3), - impassability (5), - adverseWeatherCondition-Adhesion (6), - aquaplannning (7), - hazardousLocation-SurfaceCondition (9), - hazardousLocation-ObstacleOnTheRoad (10), - hazardousLocation-AnimalOnTheRoad (11), - humanPresenceOnTheRoad (12), - wrongWayDriving (14), - rescueAndRecoveryWorkInProgress (15), - adverseWeatherCondition-ExtremeWeatherCondition (17), - adverseWeatherCondition-Visibility (18), - adverseWeatherCondition-Precipitation (19), - slowVehicle (26), - dangerousEndOfQueue (27), - vehicleBreakdown (91), - postCrash (92), - humanProblem (93), - stationaryVehicle (94), - emergencyVehicleApproaching (95), - hazardousLocation-DangerousCurve (96), - collisionRisk (97), - signalViolation (98), - dangerousSituation (99) +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousSituation` + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, + * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, + * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, + * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, + * - 4 - `absEngaged` - in case Anti-lock braking system (ABS) is engaged, + * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, + * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, + * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, + * - 8-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DangerousSituationSubCauseCode ::= INTEGER { + unavailable (0), + emergencyElectronicBrakeEngaged (1), + preCrashSystemEngaged (2), + espEngaged (3), + absEngaged (4), + ebEngaged (5), + brakeWarningEngaged (6), + collisionRiskWarningEngaged (7) } (0..255) -SubCauseCodeType ::= INTEGER (0..255) +/** + * This DE represents an offset altitude with regards to a defined altitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `-12700` for values equal to or lower than -127 metres. + * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 meter below the reference position. + * - `0` for no altitudinal offset. + * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 meter above the reference position. + * - `12799` for values equal to or greater than 127,99 metres. + * - `12800` when the information is unavailable. + * + * @unit: 0.01 metre + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaAltitude ::= INTEGER { + negativeOutOfRange (-12700), + positiveOutOfRange (12799), + unavailable (12800) +} (-12700..12800) + +/** + * This DE represents an offset latitude with regards to a defined latitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. + * - `0` for no latitudinal offset. + * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the north from the reference position. + * - `131072` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLatitude ::= INTEGER { + unavailable (131072) +} (-131071..131072) + +/** + * This DE represents an offset longitude with regards to a defined longitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. + * - `0` for no longitudinal offset. + * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the east from the reference position. + * - `131072` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLongitude ::= INTEGER { + unavailable (131072) +} (-131071..131072) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 0,01 s + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) + +/** + * This DE represents a difference in time with respect to a reference time. + + * Example: a time interval between two consecutive message transmissions. + * + * @unit: 1 ms + * @category: Basic information + * @revision: Created in V2.1.1 from the DE TransmissionInterval + */ +DeltaTimeMilliSecondPos ::= INTEGER (1..10000) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 1 ms + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) + +/** + * This DE represents a difference in time with respect to a reference time. + * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, + * multiply by 256 (i.e. append a `00` byte) + * + * @unit: 256 milliseconds + * @category: Basic information + * @revision: Created in V2.1.1 + */ +DeltaTimeQuarterSecond::= INTEGER (1..255) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 0,1 s + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeTenthOfSecond::= INTEGER { + unavailable (127) +} (0..127) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 1 s + * @category: Basic information + * @revision: Created in V2.1.1 from ValidityDuration +*/ +DeltaTimeSecond ::= INTEGER (0..86400) + + +/** + * This DE indicates a direction with respect to a defined reference direction. + * Example: a reference direction may be implicitly defined by the definition of a geographical zone. + * + * The value shall be set to: + * - 0 - `sameDirection` - to indicate the same direction as the reference direction. + * - 1 - `oppositeDirection` - to indicateopposite direction as the reference direction. + * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction. + * - 3 - `unavailable` - to indicate that the information is unavailable. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +Direction::= INTEGER{ + sameDirection (0), + oppositeDirection (1), + bothDirections (2), + unavailable (3) + } (0..3) + +/** + * This DE indicates in which direction something is moving. + * + * The value shall be set to: + * - 0 - `forward` - to indicate it is moving forward. + * - 1 - `backwards` - to indicate it is moving backwards. + * - 2 - `unavailable` - to indicate that the information is unavailable. + * + * @category: Kinematics information + * @revision: editorial update in V2.1.1 + */ +DriveDirection ::= ENUMERATED { + forward (0), + backward (1), + unavailable (2) +} -TrafficConditionSubCauseCode ::= INTEGER {unavailable(0), increasedVolumeOfTraffic(1), trafficJamSlowlyIncreasing(2), trafficJamIncreasing(3), trafficJamStronglyIncreasing(4), trafficStationary(5), trafficJamSlightlyDecreasing(6), trafficJamDecreasing(7), trafficJamStronglyDecreasing(8)} (0..255) +/** + * This DE indicates whether a driving lane is open to traffic. + * + * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall + * correspond to the total number of the driving lanes in the carriageway. + * + * The numbering is matched to @ref LanePosition. + * The bit `0` is used to indicate the innermost lane, bit `1` is used to indicate the second lane from inside border. + * + * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. + * + * @note:Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) -AccidentSubCauseCode ::= INTEGER {unavailable(0), multiVehicleAccident(1), heavyAccident(2), accidentInvolvingLorry(3), accidentInvolvingBus(4), accidentInvolvingHazardousMaterials(5), accidentOnOppositeLane(6), unsecuredAccident(7), assistanceRequested(8)} (0..255) +/** + * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. + * If that is the case, the value is *TRUE*, otherwise *FALSE*. + * + * @category: Vehicle information + * @revision: editorial update in V2.1.1 + */ +EmbarkationStatus ::= BOOLEAN -RoadworksSubCauseCode ::= INTEGER {unavailable(0), majorRoadworks(1), roadMarkingWork(2), slowMovingRoadMaintenance(3), shortTermStationaryRoadworks(4), streetCleaning(5), winterService(6)} (0..255) +/** + * This DE indicates the right of priority requested or assumed by an operating emergency vehicle. + * The right-of-priority bit shall be set to `1` if the corresponding right is requested. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way. + * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. + * + * @category: Traffic information + * @revision: description revised in V2.1.1 + */ +EmergencyPriority ::= BIT STRING { + requestForRightOfWay (0), + requestForFreeCrossingAtATrafficLight (1) +} (SIZE(2)) -HumanPresenceOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), childrenOnRoadway(1), cyclistOnRoadway(2), motorcyclistOnRoadway(3)} (0..255) +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event + * is unavailable, + * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, + * - 2 -`prioritizedVehicleApproaching` - in case a prioritized vehicle (e.g. bus) is approaching, + * - 3-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +EmergencyVehicleApproachingSubCauseCode ::= INTEGER { + unavailable (0), + emergencyVehicleApproaching (1), + prioritizedVehicleApproaching (2) +} (0..255) -WrongWayDrivingSubCauseCode ::= INTEGER {unavailable(0), wrongLane(1), wrongDirection(2)} (0..255) +/** + * This DE indicated the type of energy being used and stored in vehicle. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle. + * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle. + * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle. + * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle. + * - 4 - `diesel` - when diesel is being used and stored in vehicle. + * - 5 - `gasoline` - when gasoline is being used and stored in vehicle. + * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. + * + * - Otherwise, the corresponding bit shall be set to `0`. + * + * @category: Vehicle information + * @revision: editorial revision in V2.1.1 + */ +EnergyStorageType ::= BIT STRING { + hydrogenStorage (0), + electricEnergyStorage (1), + liquidPropaneGas (2), + compressedNaturalGas (3), + diesel (4), + gasoline (5), + ammonia (6) +}(SIZE(7)) + +/** + * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } + +/** + * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} + +/** + * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} + +/** + * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} + +/** + * This DE describes the status of the exterior light switches of a vehicle. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on. + * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on. + * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on. + * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on. + * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on. + * - 5 - `reverseLightOn` - when the reverse light switch is on. + * - 6 - `fogLightOn` - when the tail fog light switch is on. + * - 7 - `parkingLightsOn` - when the parking light switch is on. + * + * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, + * either manually by the driver or automatically by a vehicle system. The bit value does not indicate + * if the corresponding lamps are alight or not. + * + * If a vehicle is not equipped with a certain light or if the light switch status information is not available, + * the corresponding bit shall be set to `0`. + * + * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not + * alternate with the blinking interval. + * + * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. + * + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +ExteriorLights ::= BIT STRING { + lowBeamHeadlightsOn (0), + highBeamHeadlightsOn (1), + leftTurnSignalOn (2), + rightTurnSignalOn (3), + daytimeRunningLightsOn (4), + reverseLightOn (5), + fogLightOn (6), + parkingLightsOn (7) +} (SIZE(8)) -AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER {unavailable(0), strongWinds(1), damagingHail(2), hurricane(3), thunderstorm(4), tornado(5), blizzard(6)} (0..255) +/** + * This DE represents a timestamp based on TimestampIts modulo 65 536. + * This means that generationDeltaTime = TimestampIts mod 65 536. + * + * @category Time information + * @revision: Created in V2.1.1 based on EN 302 637-2 +*/ +GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) + +/** + * This DE indicates the current status of a hard shoulder: whether it is available for special usage + * (e.g. for stopping or for driving) or closed for all vehicles. + * + * The value shall be set to: + * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations. + * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case. + * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 + */ +HardShoulderStatus ::= ENUMERATED { + availableForStopping (0), + closed (1), + availableForDriving (2)} + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, + * - 1 - `wildAnimals` - in case wild animals are detected on the road, + * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, + * - 3 - `smallAnimals` - in case small size animal is detected on the road, + * - 4 - `largeAnimals` - in case large size animal is detected on the road, + * - 5-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + wildAnimals (1), + herdOfAnimals (2), + smallAnimals (3), + largeAnimals (4) +} (0..255) -AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER {unavailable(0), heavyFrostOnRoad(1), fuelOnRoad(2), mudOnRoad(3), snowOnRoad(4), iceOnRoad(5), blackIceOnRoad(6), oilOnRoad(7), looseChippings(8), instantBlackIce(9), roadsSalted(10)} (0..255) +/** + * This DE represents the sub cause code of the @ref CauseCode `hazardousLocation-DangerousCurve`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, + * - 1 - `dangerousLeftTurnCurve` - in case the dangerous curve is a left turn curve, + * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, + * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, + * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, + * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves stating with a right turn curve, + * - 6-255 - are reserved for future usage. + * + * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass + * and vehicle speed driving on the curve. This definition is out of scope of the present document. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { + unavailable (0), + dangerousLeftTurnCurve (1), + dangerousRightTurnCurve (2), + multipleCurvesStartingWithUnknownTurningDirection (3), + multipleCurvesStartingWithLeftTurn (4), + multipleCurvesStartingWithRightTurn (5) +} (0..255) -AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER {unavailable(0), fog(1), smoke(2), heavySnowfall(3), heavyRain(4), heavyHail(5), lowSunGlare(6), sandstorms(7), swarmsOfInsects(8)} (0..255) +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the detected obstacle is unavailable, + * - 1 - `shedLoad` - in case detected obstacle is large amount of obstacles (shedload), + * - 2 - `partsOfVehicles`- in case detected obstacles are parts of vehicles, + * - 3 - `partsOfTyres` - in case the detected obstacles are parts of tyres, + * - 4 - `bigObjects` - in case the detected obstacles are big objects, + * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, + * - 6 - `hubCaps` - in case the detected obstacles are hub caps, + * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles, + * - 8-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + shedLoad (1), + partsOfVehicles (2), + partsOfTyres (3), + bigObjects (4), + fallenTrees (5), + hubCaps (6), + waitingVehicles (7) +} (0..255) -AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER {unavailable(0), heavyRain(1), heavySnowfall(2), softHail(3)} (0..255) +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. + * +The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the road surface condition is unavailable, + * - 1 - `rockfalls` - in case rock falls are detected on the road surface, + * - 2 - `earthquakeDamage`- in case the road surface is damaged by earthquake, + * - 3 - `sewerCollapse` - in case of sewer collapse on the road surface, + * - 4 - `subsidence` - in case road surface is damaged by subsidence, + * - 5 - `snowDrifts` - in case road surface is damaged due to snow drift, + * - 6 - `stormDamage` - in case road surface is damaged by strong storm, + * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, + * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, + * - 9 - `fallingIce` - in case road surface damage is due to falling ice, + * - 10 - `fire` - in case there is fire on or near to the road surface, + * - 11-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { + unavailable (0), + rockfalls (1), + earthquakeDamage (2), + sewerCollapse (3), + subsidence (4), + snowDrifts (5), + stormDamage (6), + burstPipe (7), + volcanoEruption (8), + fallingIce (9), + fire (10) +} (0..255) -SlowVehicleSubCauseCode ::= INTEGER {unavailable(0), maintenanceVehicle(1), vehiclesSlowingToLookAtAccident(2), abnormalLoad(3), abnormalWideLoad(4), convoy(5), snowplough(6), deicing(7), saltingVehicles(8)} (0..255) - -StationaryVehicleSubCauseCode ::= INTEGER {unavailable(0), humanProblem(1), vehicleBreakdown(2), postCrash(3), publicTransportStop(4), carryingDangerousGoods(5)} (0..255) +/** + * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. + * +The value shall be set to: + * - `1` if the heading accuracy is equal to or less than 0,1 degree, + * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, + * - `125` if the heading accuracy is equal to or less than 12,5 degrees, + * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, + * - `127` if the heading accuracy information is not available. + * + * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, + * such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported heading value may be valid and used by the application. + * + * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported + * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleConfidence instead. + * + * @unit: 0,1 degree + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +HeadingConfidence ::= Wgs84AngleConfidence + +/** +HeadingValue + * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. + * + * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleValue instead. + * + * Unit: 0,1 degree + * Categories: GeoReference information + * @revision: Description revised in V2.1.1 (usage of value 3600 specified) +*/ +HeadingValue ::= Wgs84AngleValue + +/** + * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle + * rear to front). + * + * The value shall be set to: + * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter. + * - `99` if the height is out of range, i.e. equal to or greater than 98 cm. + * - `100` if the height information is not available. + * + * @unit 0,01 meter + * @category Vehicle information + * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) + */ +HeightLonCarr ::= INTEGER { + unavailable(100) +} (1..100) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, + * - 1 - `childrenOnRoadway` - in case children are detected on the road event, + * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, + * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road, + * - 4-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + childrenOnRoadway (1), + cyclistOnRoadway (2), + motorcyclistOnRoadway (3) +} (0..255) -HumanProblemSubCauseCode ::= INTEGER {unavailable(0), glycemiaProblem(1), heartProblem(2)} (0..255) +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, + * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, + * - 2 - `heartProblem` - in case human problem is due to heart problem, + * - 3-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HumanProblemSubCauseCode ::= INTEGER { + unavailable (0), + glycemiaProblem (1), + heartProblem (2) +} (0..255) -EmergencyVehicleApproachingSubCauseCode ::= INTEGER {unavailable(0), emergencyVehicleApproaching(1), prioritizedVehicleApproaching(2)} (0..255) +/** + * This DE is a general identifier. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +Identifier1B ::= INTEGER (0..255) + +/** + * This DE is a general identifier. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +Identifier2B ::= INTEGER (0..65535) + +/** + * This DE represents the quality level of provided information. + * + * The value shall be set to: + * - 0 - if the information is unavailable. + * - 1 - if the quality level is lowest + * - `n (n > 1 and n < 7)` if the quality level is n. + * - 7 - if the quality level is highest + * @note: Definition of quality level is out of scope of the present document. + * + * @category: Basic information + * @revision: Editorial update in V2.1.1 + */ +InformationQuality ::= INTEGER (0..7) + +/** + * This DE defines the type of an interference management zone, so that an ITS-S can + * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * It is an extension of the type @ref ProtectedZoneType. + + * + * The value shall be set to: + * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling + * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.24], clause 7 + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +InterferenceManagementZoneType ::= ENUMERATED { + permanentCenDsrcTolling (0), + temporaryCenDsrcTolling (1), + unavailable (2), + urbanRail (3), + satelliteStation (4), + fixedLinks (5), + ... +} -HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER {unavailable(0), dangerousLeftTurnCurve(1), dangerousRightTurnCurve(2), multipleCurvesStartingWithUnknownTurningDirection(3), multipleCurvesStartingWithLeftTurn(4), multipleCurvesStartingWithRightTurn(5)} (0..255) +/** + * This DE represents the vehicle type according to ISO 3833 [4]. + * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. + * + * The value shall be set to: + * - 0 - `passengerCar` - term No 3.1.1 + * - 1 - `saloon` - term No 3.1.1.1 (sedan) + * - 2 - `convertibleSaloon` - term No 3.1.1.2 + * - 3 - `pullmanSaloon` - term No 3.1.1.3 + * - 4 - `stationWagon` - term No 3.1.1.4 + * - 5 - `truckStationWagon` - term No 3.1.1.4.1 + * - 6 - `coupe` - term No 3.1.1.5 (coupe) + * - 7 - `convertible` - term No 3.1.1.6 (open tourer, roadstar, spider) + * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 + * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 + * - 10 - `specialPassengerCar` - term No 3.1.1.9 + * - 11 - `bus (11)` - term No 3.1.2 + * - 12 - `minibus` - term No 3.1.2.1 + * - 13 - `urbanBus` - term No 3.1.2.2 + * - 14 - `interurbanCoach` - term No 3.1.2.3 + * - 15 - `longDistanceCoach` - term No 3.1.2.4 + * - 16 - `articulatedBus` - term No 3.1.2.5 + * - 17 - `trolleyBus ` - term No 3.1.2.6 + * - 18 - `specialBus` - term No 3.1.2.7 + * - 19 - `commercialVehicle ` - term No 3.1.3 + * - 20 - `specialCommercialVehicle` - term No 3.1.3.1 + * - 21 - `specialVehicle ` - term No 3.1.4 + * - 22 - `trailingTowingVehicle ` - term No 3.1.5 (draw-bar tractor) + * - 23 - `semiTrailerTowingVehicle` - term No 3.1.6 (fifth wheel tractor) + * - 24 - `trailer` - term No 3.2.1 + * - 25 - `busTrailer` - term No 3.2.1.1 + * - 26 - `generalPurposeTrailer` - term No 3.2.1.2 + * - 27 - `caravan` - term No 3.2.1.3 + * - 28 - `specialTrailer` - term No 3.2.1.4 + * - 29 - `semiTrailer` - term No 3.2.2 + * - 30 - `busSemiTrailer ` - term No 3.2.2.1 + * - 31 - `generalPurposeSemiTrailer` - term No 3.2.2.2 + * - 32 - `specialSemiTrailer` - term No 3.2.2.3 + * - 33 - `roadTrain` - term No 3.3.1 + * - 34 - `passengerRoadTrain ` - term No 3.3.2 + * - 35 - `articulatedRoadTrain` - term No 3.3.3 + * - 36 - `doubleRoadTrain` - term No 3.3.4 + * - 37 - `compositeRoadTrain` - term No 3.3.5 + * - 38 - `specialRoadTrain` - term No 3.3.6 + * - 39 - `moped` - term No 3.4 + * - 40 - `motorCycle` - term No 3.5 + * - 41-255 - reserved for future use + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ + +Iso3833VehicleType ::= INTEGER { + passengerCar (0), + saloon (1), + convertibleSaloon (2), + pullmanSaloon (3), + stationWagon (4), + truckStationWagon (5), + coupe (6), + convertible (7), + multipurposePassengerCar (8), + forwardControlPassengerCar (9), + specialPassengerCar (10), + bus (11), + minibus (12), + urbanBus (13), + interurbanCoach (14), + longDistanceCoach (15), + articulatedBus (16), + trolleyBus (17), + specialBus (18), + commercialVehicle (19), + specialCommercialVehicle (20), + specialVehicle (21), + trailingTowingVehicle (22), + semiTrailerTowingVehicle (23), + trailer (24), + busTrailer (25), + generalPurposeTrailer (26), + caravan (27), + specialTrailer (28), + semiTrailer (29), + busSemiTrailer (30), + generalPurposeSemiTrailer (31), + specialSemiTrailer (32), + roadTrain (33), + passengerRoadTrain (34), + articulatedRoadTrain (35), + doubleRoadTrain (36), + compositeRoadTrain (37), + specialRoadTrain (38), + moped (39), + motorCycle (40) + } (0..255) + +/** + * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. + * + * For right-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road. + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane. + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction. + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). + * + * For left-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road. + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane. + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction. + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). + + * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. + * + * If the carriageway allows only traffic in one direction (e.g. in case of dual or multiple carriageway roads), the position is counted from the physical border of the carriageway. + * If the carriageway allows traffic in both directions and there is no physical delimitation between traffic directions (e.g. on a single carrriageway road), + * the position is counted from the legal (i.e. optical) separation between traffic directions (horizontal marking). + + * @category: Road topology information + * @revision: Description revised in V2.1.1 +*/ +LanePosition ::= INTEGER { + offTheRoad (-1), + innerHardShoulder (0), + outerHardShoulder (14) +} (-1..14) + +/** + * This DE represents the type of a lane. + * + * The value shall be set to: + * - 0 - `traffic` - Lane dedicated to the movement of vehicles. + * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning. + * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow. + * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. + * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it. + * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. + * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic. + * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. + * - 8 - `bus` - Lane dedicated to movement of buses providing public transport. + * - 9 - `taxi` - Lane dedicated to movement of taxis. + * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane. + * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. + * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths. + * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles. + * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median + separating the two directional carriageways of the highway. + * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings. + * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys. + * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes. + * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. + * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between + the road surface edge and the boundary of a road. + * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. + * - values 21 to 30 reserved for future use + * + * @category: Road topology information + * @revision: V2.1.1 +*/ +LaneType::= INTEGER{ + traffic (0), + through (1), + reversible (2), + acceleration (3), + deceleration (4), + leftHandTurning (5), + rightHandTurning (6), + dedicatedVehicle (7), + bus (8), + taxi (9), + hov (10), + hot (11), + pedestrian (12), + cycleLane (13), + median (14), + striping (15), + trackedVehicle (16), + parking (17), + emergency (18), + verge (19), + minimumRiskManoeuvre (20), + unknown (31) +}(0..31) + +/** + * This DE represents the width of a lane measured at a defined position. + * + * @unit: 0.01 meter + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +LaneWidth::= INTEGER (0..1023) + +/** + * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or + * in south hemisphere. + * + * The value shall be set to: + * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitudes south of the Equator. + * - `0` is used for the latitude of the equator. + * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitudes north of the Equator. + * - `900 000 001` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +Latitude ::= INTEGER { + unavailable(900000001) +} (-900000000..900000001) + +/** + * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation + * with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation + with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * + * @unit: 0.1 m/s2 + * @category Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. + */ +LateralAccelerationValue ::= AccelerationValue + +/** + * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. + * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `lightBarActivated` - when the light bar is activated. + * - 1 - `sirenActivated` - when the siren is activated. + * + * Otherwise, it shall be set to 0. + * + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +LightBarSirenInUse ::= BIT STRING { + lightBarActivated (0), + sirenActivated (1) +} (SIZE(2)) -HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER {unavailable(0), rockfalls(1), earthquakeDamage(2), sewerCollapse(3), subsidence(4), snowDrifts(5), stormDamage(6), burstPipe(7), volcanoEruption(8), fallingIce(9)} (0..255) +/** + * This DE represents the absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees + * to the east or to the west of the prime meridian. + * + * The value shall be set to: + * - `n (n > -1800000000 and n < 0)`, i.e. negative values for longitudes to the west. + * - `0` to indicate the prime meridian. + * - `n (n > 0 and n < 1800000001)`, i.e. positive values for longitudes to the east. + * - `1 800 000 001` when the information is unavailable. + * + * The value -1800000000 shall not be used. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +Longitude ::= INTEGER { + valueNotUsed (-1800000000), + unavailable (1800000001) +} (-1800000000..1800000001) + + /** + * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * +* The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * This acceleration is along the tangent plane of the road surface and does not include gravity components. + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @category: Vehicle information + * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. + */ +LongitudinalAccelerationValue::= AccelerationValue + +/** + * This DE represents the longitudinal offset of the map-matched position of a particular object along the + * matched lane, beginning from the lane's starting point. + * + * @unit 0,1 m + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +LongitudinalLanePositionValue ::= INTEGER (0..32767) + +/** + * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. + * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. + * - `102` if the data is unavailable. + * + * @unit 0,01 meter + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +LongitudinalLanePositionConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * This DE represents the type of facility layer message. + * + * The value shall be set to: + * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], + * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], + * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], + * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], + * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], + * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], + * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], + * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], + * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], + * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], + * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], + * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], + * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], + * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], + * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], + * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], + * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. + * - 18-255 - reserved for future usage, + * + * @category: Communication information + * @revision: Created in V2.1.1 from @ref ItsPduHeader. + */ +MessageId::= INTEGER { + denm (1), + cam (2), + poi (3), + spatem (4), + mapem (5), + ivim (6), + ev-rsr (7), + tistpgtransaction (8), + srem (9), + ssem (10), + evcsn (11), + saem (12), + rtcmem (13), + cpm (14), + imzm (15), + vam (16), + dsm (17) +} (0..255) -HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), shedLoad(1), partsOfVehicles(2), partsOfTyres(3), bigObjects(4), fallenTrees(5), hubCaps(6), waitingVehicles(7)} (0..255) +/** + * This DE represents the number of occupants in a vehicle. + * + * The value shall be set to: + * - `n (n > 1 and n < 126)` for the number n of occupants. + * - `126` for values equal to or higher than 126. + * - `127` if information is not available.`. + * + * @unit: 1 person + * @category: Vehicle information + * @revision: Editorial update in V2.1.1 + */ +NumberOfOccupants ::= INTEGER { + outOfRange (126), + unavailable (127) +} (0 .. 127) + +/** + * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. + * + * The value shall be set to: + * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. + * - `n (n > 0 and n < 15)` : for the applicable confidence value. + * -`15` : if there is full confidence in the detected ObjectDescriptor. + * + * @unit n/a + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectConfidence ::= INTEGER { + noConfidence (0), + fullConfidence (15) +} (0..15) + +/** + * This DE represents a single dimension of an object. + * + * @unit 0,1 m + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimensionValue ::= INTEGER (0..1023) + +/** + * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . + * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. + * - `102` if the data is unavailable. + * + * @unit 0,01 m + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimensionConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * The DE indicates whether the detected object is classified as a dynamic (i.e. moving) object. + * This value indicates whether an object has the general capability to move, i.e. change its + * position. + * + * The value shall be set to: + * - `0` - dynamic - if the object is moving. + * - `1` - hasBeenDynamic - if the object has been dynamic before, e.g., a car stopping at a traffic light. + * - `2` - static - if the object has been detected to be not moving throughout any previous observation. + * - `3` - unavailable - if the information is unavailable. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDynamicStatus ::= INTEGER { + dynamic (0), + hasBeenDynamic (1), + static (2), + unavailable (3) +} (0..3) + +/** + * This DE indicates the approximate position of the reference point of measurement for the object dimensions using a 9 cell grid. + * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +ObjectRefPoint ::= INTEGER { + bottomLeft (0), + midLeft (1), + topLeft (2), + bottomMid (3), + midMid (4), + topMid (5), + bottomRight (6), + midRight (7), + topRight (8) +} (0..8) + +/** + * This DE indicates the face or part of a face of a solid object. + * + * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: + * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object. + * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object. + * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. + * + * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. + * + * @category: Basic information + * @revision: V2.1.1 +*/ +ObjectFace ::= ENUMERATED { + front (0), + sideLeftFront (1), + sideLeftBack (2), + sideRightFront (3), + sideRightBack (4), + back (5) +} -HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER {unavailable(0), wildAnimals(1), herdOfAnimals(2), smallAnimals(3), largeAnimals(4)} (0..255) +/** + * This DE represent a lateral position with lane-level resolution on the road reservation, which is not on regular traffic lanes. + * + * The value shall be set to: + * - 0 - `unavailable` - if information on the lane position is unavailable. + * - 1 - `sidewalk` - if the position is on the side-walk. + * - 2 - `parkingLane` - if the position is on an area at the side of the road not intended for travel but for vehicular parking. + * - 3 - `bikeLane` - if the position is on an area reserved for bicycles. + * - 4-15 - reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. + * + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +OffRoadLanePosition ::= ENUMERATED { + unavailable (0), + sidewalk (1), + parkingLane (2), + bikeLane (3), + max (15) +} -CollisionRiskSubCauseCode ::= INTEGER {unavailable(0), longitudinalCollisionRisk(1), crossingCollisionRisk(2), lateralCollisionRisk(3), vulnerableRoadUser(4)} (0..255) - -SignalViolationSubCauseCode ::= INTEGER {unavailable(0), stopSignViolation(1), trafficLightViolation(2), turningRegulationViolation(3)} (0..255) +/** + * This DE represents a time period to describe the opening days and hours of a Point of Interest. + * (for example local commerce). + * + * @category: Time information + * @revision: V1.3.1 + */ +OpeningDaysHours ::= UTF8String -RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER {unavailable(0), emergencyVehicles(1), rescueHelicopterLanding(2), policeActivityOngoing(3), medicalEmergencyOngoing(4), childAbductionInProgress(5)} (0..255) +/** + * The DE represents an ordinal number that indicates the position of an element in a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +OrdinalNumber1B ::= INTEGER(1..255) + +/** + * This DE indicates the subclass of a detected object for object class "otherSubclass". + * + * The value shall be set to: + * - `0` - unknown - if the subclass is unknown. + * - `1` - roadSideUnit - if the object is a roadside unit. + * + * @category: Sensing information + * @revision: Created in V2.1.1 + */ +OtherSubClass ::= INTEGER { + unknown (0), + roadSideUnit (1) +} (0..255) -DangerousEndOfQueueSubCauseCode ::= INTEGER {unavailable(0), suddenEndOfQueue(1), queueOverHill(2), queueAroundBend(3), queueInTunnel(4)} (0..255) +/** + * This DE represents the recorded or estimated travel time between a position and a predefined reference position. + * + * @unit 0.01 second + * @category GeoReference information + * @revision: same type as in V1.3.1 but now based on a basic type + */ +PathDeltaTime ::= DeltaTimeHundredthOfSecond + +/** + * This DE denotes the ability of an ITS-S to provide up-to-date information. + * A performance class value is used to describe age of data. The exact values are out of scope of the present document. + * + * The value shall be set to: + * - `0` if the performance class is unknown. + * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.6] + * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.6] + * - Values in the range `3 to 7` are reserved for future use. + * + * @category: Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PerformanceClass ::= INTEGER { + unavailable (0), + performanceClassA (1), + performanceClassB (2) +} (0..7) + +/** + * This DE represents a telephone number + * + * @category: Basic information + * @revision: V1.3.1 + */ +PhoneNumber ::= NumericString (SIZE(1..16)) -DangerousSituationSubCauseCode ::= INTEGER {unavailable(0), emergencyElectronicBrakeEngaged(1), preCrashSystemEngaged(2), espEngaged(3), absEngaged(4), aebEngaged(5), brakeWarningEngaged(6), collisionRiskWarningEngaged(7)} (0..255) +/** + * This DE indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of + * the vehicle bounding box of the empty load vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 meter and 6,2 meters. + * - `62` for values equal to or higher than `6.2 metres`. + * - `63` if the information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit 0,1 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosCentMass ::= INTEGER { + tenCentimeters (1), + outOfRange (62), + unavailable (63) +} (1..63) + +/** + * This DE indicates the positioning technology being used to estimate a geographical position. + * + * The value shall be set to: + * - 0 `noPositioningSolution` : no positioning solution used, + * - 1 `sGNSS` : Global Navigation Satellite System used, + * - 2 `dGNSS` : Differential GNSS used, + * - 3 `sGNSSplusDR` : GNSS and dead reckoning used, + * - 4 `dGNSSplusDR` : Differential GNSS and dead reckoning used, + * - 5 `dR` : dead reckoning used. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +PositioningSolutionType ::= ENUMERATED { + noPositioningSolution (0), + sGNSS (1), + dGNSS (2), + sGNSSplusDR (3), + dGNSSplusDR (4), + dR (5), + ... +} -VehicleBreakdownSubCauseCode ::= INTEGER {unavailable(0), lackOfFuel (1), lackOfBatteryPower (2), engineProblem(3), transmissionProblem(4), engineCoolingProblem(5), brakingSystemProblem(6), steeringProblem(7), tyrePuncture(8), tyrePressureProblem(9)} (0..255) +/** + * This DE indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. + * + * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear + * of the vehicle. + * The left side seat of a row refers to the left hand side seen from vehicle rear to front. + * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, + * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. + * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, + * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. + * + * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. + * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. + * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. + * Otherwise, the value of seat occupation bit shall be set according to the following conditions: + * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. + * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row + * shall be set to `1`. + * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. + * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row + * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PositionOfOccupants ::= BIT STRING { + row1LeftOccupied (0), + row1RightOccupied (1), + row1MidOccupied (2), + row1NotDetectable (3), + row1NotPresent (4), + row2LeftOccupied (5), + row2RightOccupied (6), + row2MidOccupied (7), + row2NotDetectable (8), + row2NotPresent (9), + row3LeftOccupied (10), + row3RightOccupied (11), + row3MidOccupied (12), + row3NotDetectable (13), + row3NotPresent (14), + row4LeftOccupied (15), + row4RightOccupied (16), + row4MidOccupied (17), + row4NotDetectable (18), + row4NotPresent (19) +} (SIZE(20)) + +/** + * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. + * + * The value shall be set to: + * - `n (n > 0 and n < 19) for any aplicable value between 0,1 meter and 1,9 meters. + * - `19` for values equal to or higher than 1.9 metres. + * - `20` if the information is unavailable. + * + * @category: Vehicle information + * @unit 0.1 metre + * @revision: Editorial update in V2.1.1 + */ +PosFrontAx ::= INTEGER { + outOfRange (19), + unavailable(20) +} (1..20) + +/** + * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. + * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 meter and 1,26 meters. + * - `126` for values equal to or higher than 1.26 metres. + * - `127` if the information is unavailable. + * + * @unit 0,01 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosLonCarr ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the + * middle point of the front line of the vehicle bounding box. + * + * The value shall be set to: + * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 meter and 2,9 meters. + * - `29` for values equal to or greater than 2.9 metres. + * - `30` if the information is unavailable. + * + * @unit 0,1 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosPillar ::= INTEGER { + outOfRange (29), + unavailable (30) +} (1..30) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on post crash event is unavailable, + * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, + * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, + * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, + * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle, + * - 5-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +PostCrashSubCauseCode ::= INTEGER { + unavailable (0), + accidentWithoutECallTriggered (1), + accidentWithECallManuallyTriggered (2), + accidentWithECallAutomaticallyTriggered (3), + accidentWithECallTriggeredWithoutAccessToCellularNetwork (4) +} (0..255) -PostCrashSubCauseCode ::= INTEGER {unavailable(0), accidentWithoutECallTriggered (1), accidentWithECallManuallyTriggered (2), accidentWithECallAutomaticallyTriggered (3), accidentWithECallTriggeredWithoutAccessToCellularNetwork(4)} (0..255) +/** +* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square meter. +* +* The following values are specified: +* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0.1 mm/h and greater than (n-1) x 0.1 mm/h. +* - `2000` if the amount of rain falling is greater than 199.9 mm/h +* - `2001` if the information is not available +* +* @unit: 0.1 mm/h +* @category: Basic Information +* @revision: created in V2.1.1 +*/ +PrecipitationIntensity ::= INTEGER { + outOfRange (2000), + unavailable (2001) +} (1..2001) + +/** + * This DE represenst the indentifier of a protected communication zone. + * + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedZoneID ::= INTEGER (0.. 134217727) -Curvature ::= SEQUENCE { - curvatureValue CurvatureValue, - curvatureConfidence CurvatureConfidence +/** + * This DE represenst the radius of a protected communication zone. + * + * + * @unit: metre + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedZoneRadius ::= INTEGER (1..255,...) + +/** + * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do + * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * + * The protected zone type is defined in ETSI TS 102 792 [i.16]. + * + * + * @category: Communication information + * @revision: V1.3.1 + */ +ProtectedZoneType::= ENUMERATED { + permanentCenDsrcTolling (0), + ..., + temporaryCenDsrcTolling (1) } -CurvatureValue ::= INTEGER {straight(0), unavailable(1023)} (-1023..1023) +/** + * This DE is used for various tasks in the public transportation environment, especially for controlling traffic + * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). + * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation + * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the + * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to + * traffic congestion. Other usage of the DE is the provision of information like the public transport line number + * or the schedule delay of a public transport vehicle. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivationData ::= OCTET STRING (SIZE(1..20)) -CurvatureConfidence ::= ENUMERATED { - onePerMeter-0-00002 (0), - onePerMeter-0-0001 (1), - onePerMeter-0-0005 (2), - onePerMeter-0-002 (3), - onePerMeter-0-01 (4), - onePerMeter-0-1 (5), - outOfRange (6), - unavailable (7) +/** + * This DE indicates a certain coding type of the PtActivationData data. + * + * The folowing value are specified: + * - `0` undefinedCodingType : undefined coding type, + * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.8], + * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.8]. + * - values 3 to 255 : reserved for alternative and future use. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivationType ::= INTEGER { + undefinedCodingType (0), + r09-16CodingType (1), + vdv-50149CodingType (2) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . + * + * The value shall be set to: + * - 0 `unavailable` : in case no further detailed information on the railway level crossing status is available, + * - 1 `doNotCrossAbnormalSituation` : in case when something wrong is detected by equation or sensors of the railway level crossing, + including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), + * - 2 `closed` : in case the crossing is closed (barriers down), + * - 3 `unguarded` : in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), + * - 4 `nominal` : in case the barriers are up and lights are off. + * - 5-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RailwayLevelCrossingSubCauseCode ::= INTEGER { + unavailable (0), + doNotCrossAbnormalSituation (1), + closed (2), + unguarded (3), + nominal (4) +} (0..255) + +/** + * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from + * ITS-S after receiving request from other ITS-Ss. + * + * The value shall be set to: + * - 0 `request` : for a request message. + * - 1 `response` : for a response message. + * + * @category Communication information + * @revision: Editorial update in V2.1.1 + */ +RequestResponseIndication ::= ENUMERATED { + request (0), + response (1) } -CurvatureCalculationMode ::= ENUMERATED {yawRateUsed(0), yawRateNotUsed(1), unavailable(2), ...} +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` + * + * The following value are specified: + * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, + * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, + * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, + * - 3 `policeActivityOngoing` : in case police activity is ongoing, + * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, + * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, + * - 6-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { + unavailable (0), + emergencyVehicles (1), + rescueHelicopterLanding (2), + policeActivityOngoing (3), + medicalEmergencyOngoing (4), + childAbductionInProgress (5) +} (0..255) -Heading ::= SEQUENCE { - headingValue HeadingValue, - headingConfidence HeadingConfidence + +/** + * This DE indicates the type of a road segment. + * + * The value shall be set to: + * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. + * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. + * + * @category: Road Topology Information + * @revision: Editorial update in V2.1.1 + */ +RoadType ::= ENUMERATED { + urban-NoStructuralSeparationToOppositeLanes (0), + urban-WithStructuralSeparationToOppositeLanes (1), + nonUrban-NoStructuralSeparationToOppositeLanes (2), + nonUrban-WithStructuralSeparationToOppositeLanes (3) } -HeadingValue ::= INTEGER {wgs84North(0), wgs84East(900), wgs84South(1800), wgs84West(2700), unavailable(3601)} (0..3601) +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. + * +The value shall be set to: + * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, + * - 1 `majorRoadworks` : in case a major roadworks is ongoing, + * - 2 `roadMarkingWork` : in case a road marking work is ongoing, + * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, + * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, + * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, + * - 6 `winterService` : in case winter service work is ongoing, + * - 7-255 reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RoadworksSubCauseCode ::= INTEGER { + unavailable (0), + majorRoadworks (1), + roadMarkingWork (2), + slowMovingRoadMaintenance (3), + shortTermStationaryRoadworks (4), + streetCleaning (5), + winterService (6) +} (0..255) -HeadingConfidence ::= INTEGER {equalOrWithinZeroPointOneDegree (1), equalOrWithinOneDegree (10), outOfRange(126), unavailable(127)} (1..127) +/** + * This DE indicates if a distance is safe + * This DE is FALSE if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} simultaneously satisfied with confidence of 90 % or more. + * Otherwise stationSafeDistanceIndication is set to TRUE. + * + * @Note: the ebbreviations 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) + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SafeDistanceIndicator::= BOOLEAN + +/** + * This DE represenst the absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a + * confidence level of 95 %. + * + * The value shall be set to: + * - `1` if the accuracy is equal to or less than 1 cm, + * - `n (n > 1 and n < 4 094)` if the accuracy is equal to or less than n cm, + * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, + * - `4 095` if the accuracy information is unavailable. + * + * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported position coordinate value may be valid and used by the application. + * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that + * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful + * for the application. + + * @unit 0,01 meter + * @category: GeoReference Information + * @revision: Editorial update in V2.1.1 + */ +SemiAxisLength ::= INTEGER{ + outOfRange (4094), + unavailable (4095) +} (0..4095) + +/** + * This DE indicates the type of sensor. + * + * The value shall be set to: + * - `0` undefined : in case the sensor type is undefined. + * - `1` radar : in case the sensor is a radar. + * - `2` lidar : in case the sensor is a lidar. + * - `3` monovideo : in case the sensor is mono video. + * - `4` stereovision : in case the sensor is stereo vision. + * - `5` nightvision : in case the sensor is night vision. + * - `6` ultrasonic : in case the sensor is ultrasonic. + * - `7` pmd : in case the sensor is pmd. + * - `8` fusion : in case the information provided by a sensor data fusion system + * - `9` inductionloop : in case the sensor is an induction loop. + * - `10` sphericalCamera : in case the sensor is a spherical camera. + * - `11` itssaggregation : in case the information is gathered from other received ITS messages + * - `12` uwb : in case the sensor is ultra wide band. + * + * @category: Sensing Information + * @revision: created in V2.1.1 +*/ +SensorType ::= INTEGER { + undefined (0), + radar (1), + lidar (2), + monovideo (3), + stereovision (4), + nightvision (5), + ultrasonic (6), + pmd (7), + fusion (8), + inductionloop (9), + sphericalCamera (10), + itssaggregation (11), + uwb (12) +} (0..15) + +/** + * This DE represents a sequence number. + * + * @category: Basic information + * @revision: V1.3.1 + */ +SequenceNumber ::= INTEGER (0..65535) -LanePosition ::= INTEGER {offTheRoad(-1), innerHardShoulder(0), -innermostDrivingLane(1), secondLaneFromInside(2), outerHardShoulder(14) } (-1..14) +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, + * - 1 `stopSignViolation` : in case a stop sign violation is detected, + * - 2 `trafficLightViolation` : in case a traffic light violation is detected, + * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, + * - 4-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +SignalViolationSubCauseCode ::= INTEGER { + unavailable (0), + stopSignViolation (1), + trafficLightViolation (2), + turningRegulationViolation (3) +} (0..255) -ClosedLanes ::= SEQUENCE { - innerhardShoulderStatus HardShoulderStatus OPTIONAL, - outerhardShoulderStatus HardShoulderStatus OPTIONAL, - drivingLaneStatus DrivingLaneStatus OPTIONAL, - ... +/** + * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is + * unavailable, + * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, + * - 2 `vehiclesSlowingToLookAtAccident`: in case vehicle is temporally slowing down to look at accident, spot, etc., + * - 3 `abnormalLoad` : in case an abnormal loaded vehicle is driving slowly on the road, + * - 4 `abnormalWideLoad` : in case an abnormal wide load vehicle is driving slowly on the road, + * - 5 `convoy` : in case of slow driving convoy on the road, + * - 6 `snowplough` : in case of slow driving snow plough on the road, + * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, + * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road, + * - 9-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +SlowVehicleSubCauseCode ::= INTEGER { + unavailable (0), + maintenanceVehicle (1), + vehiclesSlowingToLookAtAccident (2), + abnormalLoad (3), + abnormalWideLoad (4), + convoy (5), + snowplough (6), + deicing (7), + saltingVehicles (8) +} (0..255) + +/** + * The DE indicates if a vehicle is carrying goods in the special transport conditions. + + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load. + * - 1 `excessWidth` : the vehicle is carrying goods in excess of width. + * - 2 `excessLength` : the vehicle is carrying goods in excess of length. + * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. + * + * Otherwise, the corresponding bit shall be set to 0. + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +SpecialTransportType ::= BIT STRING { + heavyLoad (0), + excessWidth (1), + excessLength (2), + excessHeight (3) +} (SIZE(4)) + +/** + * This DE represents the absolute accuracy of a speed value information for a predefined confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the speed accuracy is equal to or less than n cm/s. + * - `126` if the speed accuracy is out of range, i.e. greater than 125 cm/s. + * - `127` if the speed accuracy information is not available. + * + * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported speed value may be valid and used by the application. + * + * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid + * and therefore cannot be trusted. Such is not useful for the application. + * + * @unit cm/s + * @category: Vehicle information + * @revision: Description revised in V2.1.1 + */ +SpeedConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents a speed limitation applied to a geographical position, a road section or a geographical region. + * + * @unit: km/h + * @category: Infrastructure information, Traffic information + * @revision: V1.3.1 + */ +SpeedLimit ::= INTEGER (1..255) + +/** + * This DE represents a speed value, i.e. the magnitude of the horizontal velocity-vector. + * + * The value shall be set to: + * - `0` in a standstill situation. + * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s. + * - `16382` for speed values greater than 163,81 m/s. + * - `16383` if the speed accuracy information is not available. + * + * @unit: 0,01 m/s + * @category: Kinematics information + * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) +*/ +SpeedValue ::= INTEGER { + standstill (0), + outOfRange (16382), + unavailable (16383) +} (0..16383) + +/** + * This DE represents the value of a velocity component in a defined coordinate system. + * + * The value shall be set to: + * - `-16383` if the speed is equal to or smaller than -163,83 m/s + * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s. + * - `16382` for speed values equal to or greater than 163,81 m/s. + * - `16383` if the speed accuracy information is not available. + * + * @unit: 0,01 m/s + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +SpeedValueExtended ::= INTEGER { + negativeOutOfRange (-16383), + psotiveOutOfRange (16382), + unavailable (16383) +} (-16383..16383) + + +/** + * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. + * + * The value shall be set to: + * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable". + * - `n (n > 0 and n < 50)` to indicate the actual stability level. + * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability". + * - the values between 51 and 62 are reserved for future use. + * - `63`: this value indicates that the information is unavailable. + * + * @unit: 2% + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +StabilityLossProbability ::= INTEGER { + stable (0), + totalLossOfStability (50), + unavailable (63) +} (0..63) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength12b::= INTEGER (0..4095) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * The value shall be set to: + * - 0 `lessThan50m` : for distances below 50 m. + * - 1 `lessThan100m` : for distances below 100 m. + * - 2 `lessThan200m` : for distances below 200 m. + * - 3 `lessThan500m` : for distances below 300 m. + * - 4 `lessThan1000m` : for distances below 1000 m. + * - 5 `lessThan5km` : for distances below 5000 m. + * - 6 `lessThan10km` : for distances below 10000 m. + * - 7 `over10km` : for distances over 10000 m. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +StandardLength3b ::= ENUMERATED { + lessThan50m (0), + lessThan100m (1), + lessThan200m (2), + lessThan500m (3), + lessThan1000m (4), + lessThan5km (5), + lessThan10km (6), + over10km (7) } -HardShoulderStatus ::= ENUMERATED {availableForStopping(0), closed(1), availableForDriving(2)} +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength9b::= INTEGER (0..511) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength1B::= INTEGER (0..255) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength2B::= INTEGER (0..65535) + +/** + * This DE indicates the duration in minutes since which something is stationary. + * + * The value shall be set to: + * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. + * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more 1 minute. + * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. + * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +StationarySince ::= ENUMERATED { + lessThan1Minute (0), + lessThan2Minutes (1), + lessThan15Minutes (2), + equalOrGreater15Minutes (3) +} -DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) +/** + * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, + * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, + * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, + * - 3 `postCrash` : in case stationary vehicle is caused by collision, + * - 4 `publicTransportStop` : in case public transport vehicle is stationary at bus stop, + * - 5 `carryingDangerousGoods`: in case the stationary vehicle is carrying dangerous goods, + * - 6 `vehicleOnFire` : in case of vehicle on fire. + * - 7-255 reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +StationaryVehicleSubCauseCode ::= INTEGER { + unavailable (0), + humanProblem (1), + vehicleBreakdown (2), + postCrash (3), + publicTransportStop (4), + carryingDangerousGoods (5), + vehicleOnFire (6) +} (0..255) +/** + * This DE represents the identifier of an ITS-S. + * The ITS-S ID may be a pseudonym. It may change over space and/or over time. + * + * @category: Basic information + * @revision: V1.3.1 + */ +StationID ::= INTEGER(0..4294967295) -PerformanceClass ::= INTEGER {unavailable(0), performanceClassA(1), performanceClassB(2)} (0..7) +/** + * This DE represenst the type of technical context the ITS-S is integrated in. + * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. + * + * The value shall be set to: + * - 0 `unknown`: information about the ITS-S context is not provided, + * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). + * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, + * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + class L1, L2 (VRU Profile 3) + * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + class L3, L4, L5, L6, L7 (VRU Profile 3) + * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, + * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, + * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, + * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, + * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in + UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, + * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). + * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) + * - 14 reserved for future usage + * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 16-255> reserved for future usage. + * + * @category: Communication information. + * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) + */ +StationType ::= INTEGER { + unknown (0), + pedestrian (1), + cyclist (2), + moped (3), + motorcycle (4), + passengerCar (5), + bus (6), + lightTruck (7), + heavyTruck (8), + trailer (9), + specialVehicles (10), + tram (11), + lightVruVehicle (12), + animal (13), + roadSideUnit (15) +} (0..255) -SpeedValue ::= INTEGER {standstill(0), oneCentimeterPerSec(1), unavailable(16383)} (0..16383) +/** + * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, + * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, + * - `127` if the accuracy information is not available. + * + * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. + * + * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', + * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. + * Such value is not useful for the application. + * + * @unit: 1.5 degree + * @category: Vehicle Information + * @revision: Description revised in V2.1.1 +*/ +SteeringWheelAngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the steering wheel angle of the vehicle at certain point in time. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The value shall be set to: + * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. + * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, + turning clockwise (i.e. to the right). + * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + turning counter-clockwise (i.e. to the left). + * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. + * - `512` if information is not available. + * + * @unit: 1.5 degree + * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). + */ +SteeringWheelAngleValue ::= INTEGER { + negativeOutOfRange (-511), + positiveOutOfRange (511), + unavailable (512) +} (-511..512) + +/** + * This DE indicates the generic sub cause of a detected event. + * + * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 (this is the generic sub cause type) + */ +SubCauseCodeType ::= INTEGER (0..255) -SpeedConfidence ::= INTEGER {equalOrWithinOneCentimeterPerSec(1), equalOrWithinOneMeterPerSec(100), outOfRange(126), unavailable(127)} (1..127) +/** + * This DE indicates a temperature value. + + * The value shall be set to: + * - `-60` for temperature equal to or less than -60 degrees C. + * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C. + * - `67` for temperature equal to or greater than 67 degrees C. + * + * @unit: degrees Celsius + * @category: Basic information + * @revision: Editorial update in V2.1.1 + */ +Temperature ::= INTEGER { + equalOrSmallerThanMinus60Deg (-60), + equalOrGreaterThan67Deg(67)} (-60..67) + +/** + * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. + * The ITS epoch is `00:00:00.000 UTC, 1 January 2004`. + * "Elapsed" means that the true number of milliseconds is continuously counted without interruption, + * i.e. it is not altered by leap seconds, which occur in UTC. + * + * @note: International Atomic Time (TAI) is the time reference coordinate on the basis of the readings of atomic clocks, + * operated in accordance with the definition of the second, the unit of time of the International System of Units. + * TAI is a continuous time scale. UTC has discontinuities, as it is occasionally adjusted by leap seconds. + * As of 1 January, 2022, TimestampIts is 5 seconds ahead of UTC, because since the ITS epoch on 1 January 2004 00:00:00.000 UTC, + * further 5 leap seconds have been inserted in UTC. + * + * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, + * which includes one leap second insertion since the ITS epoch. + * @unit: millisecond + * @category: Basic information + * @revision: Description revised in in V2.1.1 + */ +TimestampIts ::= INTEGER (0..4398046511103) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, + * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, + * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, + * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, + * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, + * - 5 `trafficStationary` : in case traffic is stationary, + * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, + * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, + * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, + * - 9-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +TrafficConditionSubCauseCode ::= INTEGER { + unavailable (0), + increasedVolumeOfTraffic (1), + trafficJamSlowlyIncreasing (2), + trafficJamIncreasing (3), + trafficJamStronglyIncreasing (4), + trafficStationary (5), + trafficJamSlightlyDecreasing (6), + trafficJamDecreasing (7), + trafficJamStronglyDecreasing (8) +} (0..255) -VehicleMass ::= INTEGER {hundredKg(1), unavailable(1024)} (1..1024) +/** + * This DE indicates a traffic direction that is relevant to information indicated in a message. + * + * The value shall be set to: + * - 0 `allTrafficDirections` : for all traffic directions. + * - 1 `upstreamTraffic` : for upstream traffic. + * - 2 `downstreamTraffic` : for downstream traffic. + * - 3 `oppositeTraffic` : for traffic in the opposite direction. + * + * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * + * @note: Upstream traffic corresponds to the incoming traffic towards the event position, + * and downstream traffic to the departing traffic away from the event position. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 from RelevanceTrafficDirection + */ +TrafficDirection ::= ENUMERATED { + allTrafficDirections (0), + upstreamTraffic (1), + downstreamTraffic (2), + oppositeTraffic (3) +} -Speed ::= SEQUENCE { - speedValue SpeedValue, - speedConfidence SpeedConfidence +/** + * This DE indicates traffic rules that apply to vehicles at a certain position. + * + * The value shall be set to: + * - `0` if overtaking is prohibited for all vehicles. + * - `1` if overtaking is prohibited for trucks. + * - `2` if vehicles should pass to the right lane. + * - `3` if vehicles should pass to the left lane. + * + * @category: Infrastructure information, Traffic information + * @revision: Editorial update in V2.1.1 + */ +TrafficRule ::= ENUMERATED { + noPassing (0), + noPassingForTrucks (1), + passToRight (2), + passToLeft (3), + ...} + +/** + * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. + * + * The value shall be set to: + * - `n (n >= 0 and n <= 50)` to indicate the actual stability level. + * - the values between 51 and 62 are reserved. + * - `63`: to indicate that the information is unavailable. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionProbability ::= INTEGER { + unavailable (63) +} (0..63) + +/** + * This DE defines the confidence level of the trajectoryInterceptionProbability. + * + * The value shall be set to: + * - `0` to indicate confidence less than 50 % + * - `1` to indicate confidence greater than or equal to 50 % and less than 70 %. + * - `2` to indicate confidence greater than or equal to 70 % and less than 90 %. + * - `3` to indicate confidence greater than or equal to 90%. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionConfidence ::= INTEGER { + lessthan50percent (0), + between50and70Percent (1), + between70and90Percent (2), + above90Percent (3) +} (0..3) + +/** + * This DE provides the turning direction. + * + * The value shall be set to: + * - `left` for turning to te left. + * - `right`for turing to the right. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TurningDirection::= ENUMERATED { + left, + right } -DriveDirection ::= ENUMERATED {forward (0), backward (1), unavailable (2)} +/** + * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. + * + * The value shall be set to: + * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 meter, and greater than (n-1) x 0,4 meters. + * - `254` indicates that the turning radius is greater than 253 x 0.4 metre = 101.2 metres. + * - `255` indicates that the information is unavailable. + * + * For vehicle with tracker, the turning radius applies to the vehicle only. + * + * @category: Vehicle information + * @unit 0.4 metre + * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) + */ +TurningRadius ::= INTEGER { + outOfRange (254), + unavailable (255) +} (1..255) + +/** + * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VDS ::= IA5String (SIZE(6)) -EmbarkationStatus ::= BOOLEAN +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, + * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, + * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, + * - 3 `engineProblem` : in case vehicle break down is caused by an engine problem, + * - 4 `transmissionProblem` : in case vehicle break down is caused by transmission problem, + * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, + * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, + * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, + * - 8 `tyrePuncture` : in case vehicle break down is caused by tire puncture, + * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, + * - 10 `vehicleOnFire` : in case the vehicle is on fire, + * - 11-255: reserved for future usage. + * + * @category: Traffic information + + */ +VehicleBreakdownSubCauseCode ::= INTEGER { + unavailable (0), + lackOfFuel (1), + lackOfBatteryPower (2), + engineProblem (3), + transmissionProblem (4), + engineCoolingProblem (5), + brakingSystemProblem (6), + steeringProblem (7), + tyrePuncture (8), + tyrePressureProblem (9), + vehicleOnFire (10) +} (0..255) -LongitudinalAcceleration ::= SEQUENCE { - longitudinalAccelerationValue LongitudinalAccelerationValue, - longitudinalAccelerationConfidence AccelerationConfidence +/** + * This DE represents the height if the vehicle, measured from the ground to the highest point, excluding any antennas. + * In case vehicles are equipped with adjustable ride heights, camper shells, and any other + * equipment which may result in varying height, the largest possible height shall be used. + * + * @unit 5 cm (DE ranges to 6.35 m) + * @revision: V1.3.1 +*/ +VehicleHeight ::= INTEGER (0..127) + +/** + * This DE provides information about the presence of a trailer. + * + * The value shall be set to: + * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in a reported vehicle length value. + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in a reported vehicle length value. + * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. + * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * nor the detection of trailer presence/absence is possible. + * + * @category: Vehicle information + * @revision: Description revised in V2.1.1 +*/ +VehicleLengthConfidenceIndication ::= ENUMERATED { + noTrailerPresent (0), + trailerPresentWithKnownLength (1), + trailerPresentWithUnknownLength (2), + trailerPresenceIsUnknown (3), + unavailable (4) +} + +/** + * This DE represents the length of a vehicle. + * + * The value shall be set to: + * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. + * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. + * - `1 023` to indicate that the information in unavailable. + * + * + * @unit: 0.1 metre + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). + */ +VehicleLengthValue ::= INTEGER { + outOfRange(1022), + unavailable(1023) +} (1..1023) + +/** + * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. + * + * The value shall be set to: + * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than n x 100 kg, and greater than (n-1) x 100 kg. + * - `1 023` indicates that the vehicle mass is greater than 102 200 kg. + * - `1 024` indicates the vehicle mass information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit: 100kg + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). +*/ +VehicleMass ::= INTEGER { + outOfRange (1023), + unavailable(1024) +} (1..1024) + +/** + * This DE indicates the role played by a vehicle at a point in time. + * + * The value shall be set to: + * - 0 `default` : to indicate the default vehicle role as indicated by the vehicle type, + * - 1 `publicTransport` : to indicate that the vehicle is used to operate public transport service, + * - 2 `specialTransport` : to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, + * - 3 `dangerousGoods` : to indicate that the vehicle is used for dangerous goods transportation, + * - 4 `roadWork` : to indicate that the vehicle is used to realize roadwork or road maintenance mission, + * - 5 `rescue` : to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, + * - 6 `emergency` : to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, + * - 7 `safetyCar` : to indicate that the vehicle is used for public safety, e.g. patrol, + * - 8 `agriculture` : to indicate that the vehicle is used for agriculture, e.g. farm tractor, + * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, + * - 10 `military` : to indicate that the vehicle is used for military purpose, + * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, + * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service, + * - 13 `reserved` : reserved for future usage, + * - 14 `reserved` : reserved for future usage, + * - 15 `reserved` : reserved for future usage. + * + * @category: Vehicle Information + * @revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) + */ +VehicleRole ::= ENUMERATED { + default (0), + publicTransport (1), + specialTransport(2), + dangerousGoods (3), + roadWork (4), + rescue (5), + emergency (6), + safetyCar (7), + agriculture (8), + commercial (9), + military (10), + roadOperator (11), + taxi (12), + reserved1 (13), + reserved2 (14), + reserved3 (15) } -LongitudinalAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredForward(1), pointOneMeterPerSecSquaredBackward(-1), unavailable(161)} (-160 .. 161) +/** + * This DE describes the subclass of a vehicle. + * + * The value shall be set to: + * - `0` unknown : to indicate that the type of vehicle is unknown. + * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. + * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. + * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. + * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. + * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. + * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). + * - `7` tram : to indicate a vehicle running on tracks along public streets. + * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. + * - `9` agricultural : to indicate a vehicle used for agricultural purposes. + * - Values 10 to 255 are reserved for future use. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +VehicleSubClass ::= INTEGER { + unknown (0), + passengerCar (1), + bus (2), + lightTruck (3), + heavyTruck (4), + trailer (5), + specialVehicles (6), + tram (7), + emergencyVehicle (8), + agricultural (9) +} (0..255) -AccelerationConfidence ::= INTEGER {pointOneMeterPerSecSquared(1), outOfRange(101), unavailable(102)} (0 .. 102) +/** + * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. + + * The value shall be set to: + * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. + * - `61`indicates that the vehicle width is greater than 6,0 metres. + * - `62`indicates that the information in unavailable. + * + * @unit: 0.1 metre + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). + */ +VehicleWidth ::= INTEGER { + outOfRange (61), + unavailable (62) +} (1..62) + +/** + * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @category: Vehicle information + * @unit: 0.1 m/s2 + * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. + * +*/ +VerticalAccelerationValue ::= AccelerationValue + +/** + * This DE Identifies all the VRU profile types that are believed to be within a cluster. + * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU. + * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member. + * - 2 `motorcycle` : indicates that the VRU cluster contains at least one motorcycle VRU member. + * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. + * + * Otherwise, the corresponding bit shall be set to 0. + * + * @category: VRU information + * @revision: Created in V2.1.1 +*/ +VruClusterProfiles ::= BIT STRING { + pedestrian (0), + bicyclist (1), + motorcyclist (2), + animal (3) +} (SIZE(4)) + +/** + * This DE represents the possible VRU usage conditions. + + * - The value shall be set to: + * - 0 `unavailable` : to indicate that the usage conditions are unavailable. + * - 1 `other (1)` : to indicate that the VRU is in a state not defined below. + * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device. + * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use. + * - 4 `typing (4)` : to indicate that the human is texting, entering addresses and other manual input activity. + * - 5 `calling (5)` : to indicate that the VRU device is currently received a call. + * - 6 `playingGames (6)` : to indicate that the human is playing games. + * - 7 `reading (7)` : to indicate that the human is reading on the VRU device. + * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, + * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruDeviceUsage ::= ENUMERATED { + unavailable (0), + other (1), + idle (2), + listeningToAudio (3), + typing (4), + calling (5), + playingGames (6), + reading (7), + viewing (8), + max (255) +} -LateralAcceleration ::= SEQUENCE { - lateralAccelerationValue LateralAccelerationValue, - lateralAccelerationConfidence AccelerationConfidence +/** + * This DE represents the possible VRU environment conditions. + * + * - The value shall be set to: + * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, + * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing. + * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). + * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. + * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. + + - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruEnvironment ::= ENUMERATED { + unavailable (0), + intersectionCrossing (1), + zebraCrossing (2), + sidewalk (3), + onVehicleRoad (4), + protectedGeographicArea (5), + max (255) } -LateralAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredToRight(-1), pointOneMeterPerSecSquaredToLeft(1), unavailable(161)} (-160 .. 161) +/** + * This DE indicates the status of the possible human control over a VRU vehicle. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information on is unavailable. + * - 1 `braking` : to indicate that the VRU is braking. + * - 2 `hardBraking` : to indicate that the VRU is braking hard. + * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling. + * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking. + * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard. + * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. + * - value 7 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruMovementControl ::= ENUMERATED { + unavailable (0), + braking (1), + hardBraking (2), + stopPedaling (3), + brakingAndStopPedaling (4), + hardBrakingAndStopPedaling (5), + noReaction (6), + max (255) +} -VerticalAcceleration ::= SEQUENCE { - verticalAccelerationValue VerticalAccelerationValue, - verticalAccelerationConfidence AccelerationConfidence +/** + * This DE indicates the profile of a pedestrian. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information on is unavailable. + * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies. + * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker. + * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfilePedestrian ::= ENUMERATED { + unavailable (0), + ordinary-pedestrian (1), + road-worker (2), + first-responder (3), + max (15) } -VerticalAccelerationValue ::= INTEGER {pointOneMeterPerSecSquaredUp(1), pointOneMeterPerSecSquaredDown(-1), unavailable(161)} (-160 .. 161) +/** + * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information is unavailable. + * - 1 `bicyclist ` : to indicate a cycle and bicyclist. + * - 2 `wheelchair-user` : to indicate a wheelchair and its user. + * - 3 `horse-and-rider` : to indicate a horse and rider. + * - 4 `rollerskater` : to indicate a rolleskater and skater. + * - 5 `e-scooter` : to indicate an e-scooter and rider. + * - 6 `personal-transporter` : to indicate a personal-transporter and rider. + * - 7 `pedelec` : to indicate a pedelec and rider. + * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. + * - value 9 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileBicyclist ::= ENUMERATED { + unavailable (0), + bicyclist (1), + wheelchair-user (2), + horse-and-rider (3), + rollerskater (4), + e-scooter (5), + personal-transporter (6), + pedelec (7), + speed-pedelec (8), + max (15) +} -StationType ::= INTEGER {unknown(0), pedestrian(1), cyclist(2), moped(3), motorcycle(4), passengerCar(5), bus(6), -lightTruck(7), heavyTruck(8), trailer(9), specialVehicles(10), tram(11), roadSideUnit(15)} (0..255) +/** + * This DE indicates the profile of a motorcyclist and corresponding vehicle. + * + * The value shall be set to: + * - 0 `unavailable ` : to indicate that the information is unavailable. + * - 1 `moped (1)` : to indicate a moped and rider. + * - 2 `motorcycle` : to indicate a motorcycle and rider. + * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider. + * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. + * - value 5 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileMotorcyclist ::= ENUMERATED { + unavailable (0), + moped (1), + motorcycle (2), + motorcycle-and-sidecar-right (3), + motorcycle-and-sidecar-left (4), + max (15) +} -ExteriorLights ::= BIT STRING { - lowBeamHeadlightsOn (0), - highBeamHeadlightsOn (1), - leftTurnSignalOn (2), - rightTurnSignalOn (3), - daytimeRunningLightsOn (4), - reverseLightOn (5), - fogLightOn (6), - parkingLightsOn (7) +/** + * This DE indicates the profile of a animal + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information is unavailable. + * - 1 `wild-animal` : to indicate a animal living in the wildness. + * - 2 `farm-animal` : to indicate an animal beloning to a farm. + * - 3 `service-animal` : to indicate an animal that supports a human being. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileAnimal ::= ENUMERATED { + unavailable (0), + wild-animal (1), + farm-animal (2), + service-animal (3), + max (15) +} + +/** + * This DE indicates the approximate size of a VRU including the VRU vehicle used. + * + * The value shall be set to: + * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1. + * - 1 `low (1)` : the VRU size class is low depending on the VRU profile. + * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile. + * - 3 `high (3)` : the VRU size class is high depending on the VRU profile. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSizeClass ::= ENUMERATED { + unavailable (0), + low (1), + medium (2), + high (3), + max (15) +} + +/** + * This DE describes the status of the exterior light switches of a vehicle or a VRU. + * The DE is an extension of the existing vehicular DE ExteriorLight. + * + * The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU + * or automatically by a vehicle or VRU system: + * - 0 `unavailable` : indicates no information available. + * - 1 `backFlashLight ` : indicates the status of the back flash light. + * - 2 `helmetLight` : indicates the status of the helmet light. + * - 3 `armLight` : indicates the status of the arm light. + * - 4 `legLight` : indicates the status of the leg leight. + * - 5 `wheelLight` : indicates the status of the wheel light. + * - Bits 6 to 8 : reserved for future use. + * The bit values do not indicate if the corresponding lamps are alight or not. + * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSpecificExteriorLights ::= BIT STRING { + unavailable (0), + backFlashLight (1), + helmetLight (2), + armLight (3), + legLight (4), + wheelLight (5) } (SIZE(8)) -DangerousGoodsBasic::= ENUMERATED { - explosives1(0), - explosives2(1), - explosives3(2), - explosives4(3), - explosives5(4), - explosives6(5), - flammableGases(6), - nonFlammableGases(7), - toxicGases(8), - flammableLiquids(9), - flammableSolids(10), - substancesLiableToSpontaneousCombustion(11), - substancesEmittingFlammableGasesUponContactWithWater(12), - oxidizingSubstances(13), - organicPeroxides(14), - toxicSubstances(15), - infectiousSubstances(16), - radioactiveMaterial(17), - corrosiveSubstances(18), - miscellaneousDangerousSubstances(19) +/** + * Perpendicular distance between front and rear axle of the wheel base of vehicle. + * + * The value shall be set to: + * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0.1 metres and more than (n-1) x 0.1 metres. + * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. + * - `127` indicates that the information is unavailable. + * + * @unit 0.1 metre + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +WheelBaseVehicle ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. + * The required confidence level is defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n >=1 and n < 126)` is equal to or less than n x 0.1 degrees and more than (n-1) x 0.1 degrees. + * - `126` if the angle accuracy is out of range, i.e. greater than 12,5 degrees. + * - `127` if the angle accuracy information is not available. + * + * + * @unit 0,1 degrees + * @category: GeoReference Information + * @revision: Created in V2.1.1 +*/ +Wgs84AngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + + +/** + * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. + * + * @unit 0,1 degrees + * @category: GeoReference Information + * @revision: Created in V2.1.1 +*/ +Wgs84AngleValue ::= INTEGER { + wgs84North (0), + wgs84East (900), + wgs84South (1800), + wgs84West (2700), + doNotUse (3600), + unavailable (3601) +} (0..3601) + +/** + * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. + * + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +WMInumber ::= IA5String (SIZE(1..3)) + +/** + * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on wrong way driving event is unavailable, + * - 1 `wrongLane` : in case vehicle is driving on a lane for which it has no authorization to use, + * - 2 `wrongDirection` : in case vehicle is driving in a direction that it is not allowed, + * - 3-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +WrongWayDrivingSubCauseCode ::= INTEGER { + unavailable (0), + wrongLane (1), + wrongDirection (2) +} (0..255) + +/** + * This DE denotes the absolute accuracy range for reported yaw rate value for a confidence level of 95%. + * + * The value shall be set to: + * - `0` indicates that the accuracy is equal to or less than 0,01 degree/second. + * - `1` indicates that the accuracy is equal to or less than 0,05 degrees/second. + * - `2` indicates that the accuracy is equal to or less than 0,1 degree/second. + * - `3` indicates that the accuracy is equal to or less than 1 degree/second. + * - `4` indicates that the accuracy is equal to or less than 5 degrees/second. + * - `5` indicates that the accuracy is equal to or less than 10 degrees/second. + * - `6` indicates that the accuracy is equal to or less than 100 degrees/second. + * - `7` indicates that the accuracy is out of range, i.e. greater than 100 degrees/second. + * - `8` indicates that the accuracy information is unavailable + * + * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported yaw rate value may be valid and used by the application. + * + * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported + * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 + */ +YawRateConfidence ::= ENUMERATED { + degSec-000-01 (0), + degSec-000-05 (1), + degSec-000-10 (2), + degSec-001-00 (3), + degSec-005-00 (4), + degSec-010-00 (5), + degSec-100-00 (6), + outOfRange (7), + unavailable (8) } -DangerousGoodsExtended ::= SEQUENCE { - dangerousGoodsType DangerousGoodsBasic, - unNumber INTEGER (0..9999), - elevatedTemperature BOOLEAN, - tunnelsRestricted BOOLEAN, - limitedQuantity BOOLEAN, - emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, - phoneNumber PhoneNumber OPTIONAL, - companyName UTF8String (SIZE (1..24)) OPTIONAL, - ... +/** + * This DE represents the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded + * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. The leading sign denotes the direction of rotation. + * + * The value shall be set to: + * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. + * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s. + * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s. + * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. + * - `32 767` to indicate that the information is not available. + * + * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. + * The reading instant should be the same as for the vehicle acceleration. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit: 0,01 degree per second. + * @category: Vehicle Information + * @revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). +*/ +YawRateValue ::= INTEGER { + negativeOutOfRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +---------------------------------------- +-- Specification of CDD Data Frames: +---------------------------------------- + +/** + * This DF represents an acceleration component along with a confidence with a predefined confidence level of 95% for the component. + * + * It includes the following components: + * + * @field value: the acceleration value which can be estimated as the mean of the current distribution. + * + * @field value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * + * @category: Kinematic Information + * @revision: Created in V2.1.1 + */ +Acceleration1d ::= SEQUENCE { + value AccelerationValue, + confidence AccelerationConfidence } -SpecialTransportType ::= BIT STRING {heavyLoad(0), excessWidth(1), excessLength(2), excessHeight(3)} (SIZE(4)) +/** + * This DF represents information associated to changes in acceleration. + * + * It includes the following components: + * + * @field accelOrDecel: the indication of an acceleration change. + * + * @field value actionDeltaTime: the period in which the acceleration change action is performed. + * + * @category: Kinematic Information + * @revision: Created in V2.1.1 + */ +AccelerationChangeIndication ::= SEQUENCE { + accelOrDecel AccelerationChange, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} -LightBarSirenInUse ::= BIT STRING { - lightBarActivated (0), - sirenActivated (1) -} (SIZE(2)) +/** + * This DF represents an identifier used to describe a protocol action taken by an ITS-S. + * + * It includes the following components: + * + * @field originatingStationID: ID of the ITS-S that takes the action. + * + * @field sequenceNumber: a sequence number. + * + * @category: Communication information + * @revision: V1.3.1 + */ +ActionID ::= SEQUENCE { + originatingStationID StationID, + sequenceNumber SequenceNumber +} -HeightLonCarr ::= INTEGER {oneCentimeter(1), unavailable(100)} (1..100) +/** + * This DF represents a list of @ref ActionID. + + * @category: Communication Information + * @revision: Created in V2.1.1 based on ReferenceDenms +*/ +ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID + +/** + * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. + * + * It includes the following components: + * + * @field altitudeValue: altitude of a geographical point. + * + * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +Altitude ::= SEQUENCE { + altitudeValue AltitudeValue, + altitudeConfidence AltitudeConfidence +} -PosLonCarr ::= INTEGER {oneCentimeter(1), unavailable(127)} (1..127) +/** + * This DE represents a general container for usage in various types of messages. + * + * It includes the following components: + * + * @field stationType: the type of station that has generated the message that contains the basic container. + * + * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +BasicContainer ::= SEQUENCE { + stationType StationType, + referencePosition ReferencePosition, + ... +} -PosPillar ::= INTEGER {tenCentimeters(1), unavailable(30)} (1..30) +/** + * This DF represents a general Data Frame to describe an angle component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angle value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngle ::= SEQUENCE { + value CartesianAngleValue, + confidence AngleConfidence +} -PosCentMass ::= INTEGER {tenCentimeters(1), unavailable(63)} (1..63) +/** + * This DF represents a general Data Frame to describe an angular speed component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngularSpeed ::= SEQUENCE { + value CartesianAngularSpeedValue, + confidence AngularSpeedConfidence +} -RequestResponseIndication ::= ENUMERATED {request(0), response(1)} +/** + * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngularAcceleration ::= SEQUENCE { + value CartesianAngularAccelerationValue, + confidence AngularAccelerationConfidence +} -SpeedLimit ::= INTEGER {oneKmPerHour(1)} (1..255) +/** + * This DF represents a coordinate in a cartesian reference system + * + * It includes the following components: + * + * @field value: the coordinate value which can be estimated as the mean of the current distribution. + * + * @field confidence: the coordinate accuracy associated to the provided value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateWithConfidence ::= SEQUENCE { + value CartesianCoordinateExtended, + confidence CoordinateConfidence +} -StationarySince ::= ENUMERATED {lessThan1Minute(0), lessThan2Minutes(1), lessThan15Minutes(2), equalOrGreater15Minutes(3)} +/** + * This DF represents a position in a two- or three-dimensional cartesian coordinate system. + * + * It includes the following components: + * + * @field xCoordinate: the X coordinate value. + * + * @field yCoordinate: the Y coordinate value. + * + * @field zCoordinate: the optional Z coordinate value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianPosition3d::=SEQUENCE{ + xCoordinate CartesianCoordinate, + yCoordinate CartesianCoordinate, + zCoordinate CartesianCoordinate OPTIONAL +} -Temperature ::= INTEGER {equalOrSmallerThanMinus60Deg (-60), oneDegreeCelsius(1), equalOrGreaterThan67Deg(67)} (-60..67) +/** + * This DF is a representation of the cause code value of a traffic event. + * + * It includes the following components: + * + * @field causeCode: the main cause of a detected event. + * + * @field subCauseCode: the subordinate cause of a detected event. + * + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. + * + * @category: Traffic information + * @revision: Editorial update in V2.1.1 + */ +CauseCode ::= SEQUENCE { + causeCode CauseCodeType, + subCauseCode SubCauseCodeType, + ... +} -TrafficRule ::= ENUMERATED {noPassing(0), noPassingForTrucks(1), passToRight(2), passToLeft(3), ... +/** + * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. + * + * + * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. + * @category: Traffic information + * @revision: Editorial update in V2.1.1 + */ + +CauseCodeChoice::= CHOICE { + reserved SubCauseCodeType, + trafficCondition TrafficConditionSubCauseCode, + accident AccidentSubCauseCode, + roadworks RoadworksSubCauseCode, + reserved4 SubCauseCodeType, + impassability SubCauseCodeType, + adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, + aquaplannning SubCauseCodeType, + reserved8 SubCauseCodeType, + hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, + hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, + hazardousLocation-AnimalOnTheRoad HazardousLocation-AnimalOnTheRoadSubCauseCode, + humanPresenceOnTheRoad HumanPresenceOnTheRoadSubCauseCode, + reserved13 SubCauseCodeType, + wrongWayDriving WrongWayDrivingSubCauseCode, + rescueAndRecoveryWorkInProgress RescueAndRecoveryWorkInProgressSubCauseCode, + reserved16 SubCauseCodeType, + adverseWeatherCondition-ExtremeWeatherCondition AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, + adverseWeatherCondition-Visibility AdverseWeatherCondition-VisibilitySubCauseCode, + adverseWeatherCondition-Precipitation AdverseWeatherCondition-PrecipitationSubCauseCode, + violence SubCauseCodeType, + reserved21 SubCauseCodeType, + reserved22 SubCauseCodeType, + reserved23 SubCauseCodeType, + reserved24 SubCauseCodeType, + reserved25 SubCauseCodeType, + slowVehicle SlowVehicleSubCauseCode, + dangerousEndOfQueue DangerousEndOfQueueSubCauseCode, + reserved28 SubCauseCodeType, + reserved29 SubCauseCodeType, + reserved30 SubCauseCodeType, + reserved31 SubCauseCodeType, + reserved32 SubCauseCodeType, + reserved33 SubCauseCodeType, + reserved34 SubCauseCodeType, + reserved35 SubCauseCodeType, + reserved36 SubCauseCodeType, + reserved37 SubCauseCodeType, + reserved38 SubCauseCodeType, + reserved39 SubCauseCodeType, + reserved40 SubCauseCodeType, + reserved41 SubCauseCodeType, + reserved42 SubCauseCodeType, + reserved43 SubCauseCodeType, + reserved44 SubCauseCodeType, + reserved45 SubCauseCodeType, + reserved46 SubCauseCodeType, + reserved47 SubCauseCodeType, + reserved48 SubCauseCodeType, + reserved49 SubCauseCodeType, + reserved50 SubCauseCodeType, + reserved51 SubCauseCodeType, + reserved52 SubCauseCodeType, + reserved53 SubCauseCodeType, + reserved54 SubCauseCodeType, + reserved55 SubCauseCodeType, + reserved56 SubCauseCodeType, + reserved57 SubCauseCodeType, + reserved58 SubCauseCodeType, + reserved59 SubCauseCodeType, + reserved60 SubCauseCodeType, + reserved61 SubCauseCodeType, + reserved62 SubCauseCodeType, + reserved63 SubCauseCodeType, + reserved64 SubCauseCodeType, + reserved65 SubCauseCodeType, + reserved66 SubCauseCodeType, + reserved67 SubCauseCodeType, + reserved68 SubCauseCodeType, + reserved69 SubCauseCodeType, + reserved70 SubCauseCodeType, + reserved71 SubCauseCodeType, + reserved72 SubCauseCodeType, + reserved73 SubCauseCodeType, + reserved74 SubCauseCodeType, + reserved75 SubCauseCodeType, + reserved76 SubCauseCodeType, + reserved77 SubCauseCodeType, + reserved78 SubCauseCodeType, + reserved79 SubCauseCodeType, + reserved80 SubCauseCodeType, + reserved81 SubCauseCodeType, + reserved82 SubCauseCodeType, + reserved83 SubCauseCodeType, + reserved84 SubCauseCodeType, + reserved85 SubCauseCodeType, + reserved86 SubCauseCodeType, + reserved87 SubCauseCodeType, + reserved88 SubCauseCodeType, + reserved89 SubCauseCodeType, + reserved90 SubCauseCodeType, + vehicleBreakdown VehicleBreakdownSubCauseCode, + postCrash PostCrashSubCauseCode, + humanProblem HumanProblemSubCauseCode, + stationaryVehicle StationaryVehicleSubCauseCode, + emergencyVehicleApproaching EmergencyVehicleApproachingSubCauseCode, + hazardousLocation-DangerousCurve HazardousLocation-DangerousCurveSubCauseCode, + collisionRisk CollisionRiskSubCauseCode, + signalViolation SignalViolationSubCauseCode, + dangerousSituation DangerousSituationSubCauseCode, + railwayLevelCrossing RailwayLevelCrossingSubCauseCode, + reserved101 SubCauseCodeType, + reserved102 SubCauseCodeType, + reserved103 SubCauseCodeType, + reserved104 SubCauseCodeType, + reserved105 SubCauseCodeType, + reserved106 SubCauseCodeType, + reserved107 SubCauseCodeType, + reserved108 SubCauseCodeType, + reserved109 SubCauseCodeType, + reserved110 SubCauseCodeType, + reserved111 SubCauseCodeType, + reserved112 SubCauseCodeType, + reserved113 SubCauseCodeType, + reserved114 SubCauseCodeType, + reserved115 SubCauseCodeType, + reserved116 SubCauseCodeType, + reserved117 SubCauseCodeType, + reserved118 SubCauseCodeType, + reserved119 SubCauseCodeType, + reserved120 SubCauseCodeType, + reserved121 SubCauseCodeType, + reserved122 SubCauseCodeType, + reserved123 SubCauseCodeType, + reserved124 SubCauseCodeType, + reserved125 SubCauseCodeType, + reserved126 SubCauseCodeType, + reserved127 SubCauseCodeType, + reserved128 SubCauseCodeType + } + +/** + * This DF is an alternative representation of the cause code value of a traffic event. + * + * It includes the following components: + * + * @field ccAndScc: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. + * + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @category: Traffic information + * @revision: Created in V2.1.1 + */ + +CauseCodeV2 ::= SEQUENCE { + ccAndScc CauseCodeChoice, + ... } -WheelBaseVehicle ::= INTEGER {tenCentimeters(1), unavailable(127)} (1..127) +/** + * The DF describes the position of a CEN DSRC road side equipment. + * + * It includes the following components: + * + * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. + * + * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. + * + * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +CenDsrcTollingZone ::= SEQUENCE { + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, + ... +} -TurningRadius ::= INTEGER {point4Meters(1), unavailable(255)} (1..255) +/** + * + * This DF represents the shape of a circular area or a right cylinder that is centred on a reference position defined outside of the context of this DF. + * + * It includes the following components: + * + * @field nodeCenterPoint: optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field radius: the radius of the circular area. + * + * @field height: the optional height, present if the shape is a right cylinder extending in the positive z-axis. + * + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +CircularShape ::= SEQUENCE { + nodeCenterPoint CartesianPosition3d OPTIONAL, + radius StandardLength12b, + height StandardLength12b OPTIONAL, + ... +} -PosFrontAx ::= INTEGER {tenCentimeters(1), unavailable(20)} (1..20) +/** + * This DF indicates the opening/closure status of a lane or a set of lanes. + * + * It includes the following components: + * + * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of inner hard shoulder lanes. + * + * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of outer hard shoulder lanes. + * + * @field drivingLaneStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of driving lanes. + * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. + * + * @category: GeoReference information, Road topology information + * @revision: V1.3.1 + */ +ClosedLanes ::= SEQUENCE { + innerhardShoulderStatus HardShoulderStatus OPTIONAL, + outerhardShoulderStatus HardShoulderStatus OPTIONAL, + drivingLaneStatus DrivingLaneStatus OPTIONAL, + ... +} -PositionOfOccupants ::= BIT STRING { - row1LeftOccupied (0), - row1RightOccupied (1), - row1MidOccupied (2), - row1NotDetectable (3), - row1NotPresent (4), - row2LeftOccupied (5), - row2RightOccupied (6), - row2MidOccupied (7), - row2NotDetectable (8), - row2NotPresent (9), - row3LeftOccupied (10), - row3RightOccupied (11), - row3MidOccupied (12), - row3NotDetectable (13), - row3NotPresent (14), - row4LeftOccupied (15), - row4RightOccupied (16), - row4MidOccupied (17), - row4NotDetectable (18), - row4NotPresent (19)} (SIZE(20)) +/** + * This DF provides information about the breakup of a cluster. + * + * It includes the following components: + * + * @field clusterBreakupReason: indicates the reason for breakup. + * + * @field breakupTime: indicates the time of breakup. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterBreakupInfo ::= SEQUENCE { + clusterBreakupReason ClusterBreakupReason, + breakupTime DeltaTimeQuarterSecond, + ... +} -PositioningSolutionType ::= ENUMERATED {noPositioningSolution(0), sGNSS(1), dGNSS(2), sGNSSplusDR(3), dGNSSplusDR(4), dR(5), ...} +/** + * This DF provides information about the joining of a cluster. + * + * It includes the following components: + * + * @field clusterId: indicates the identifier of the cluster. + * + * @field joinTime: indicates the time of joining. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterJoinInfo ::= SEQUENCE { + clusterId ClusterId, + joinTime DeltaTimeQuarterSecond, + ... +} -VehicleIdentification ::= SEQUENCE { - wMInumber WMInumber OPTIONAL, - vDS VDS OPTIONAL, +/** + * The DF provides information about the leaving of a cluster. + * + * It includes the following components: + * + * @field clusterId: indicates the cluster. + * + * @field clusterLeaveReason: indicates the reason for leaving. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterLeaveInfo ::= SEQUENCE { + clusterId ClusterId, + clusterLeaveReason ClusterLeaveReason, ... } -WMInumber ::= IA5String (SIZE(1..3)) +/** + * This DF represents the column of the lower triangular positive semi-definite matrix and consists of a list of correlation row values. + * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. + * Each column "i" of the lower triangular then contains k-(i-1) values, where "i" refers to the column number count + * starting at 1 from the left. + * + * @category: Sensing Information + * @revision: Created in V2.1.1 +*/ +CorrelationColumn ::= SEQUENCE SIZE (1..21) OF CorrelationRowValue + +/** + * This DF represents the curvature of the vehicle trajectory and the accuracy. + * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. + * + * It includes the following components: + * + * @field curvatureValue: Detected curvature of the vehicle trajectory. + * + * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +Curvature ::= SEQUENCE { + curvatureValue CurvatureValue, + curvatureConfidence CurvatureConfidence +} -VDS ::= IA5String (SIZE(6)) +/** + * This DF provides a description of dangerous goods being carried by a heavy vehicle. + * + * It includes the following components: + * + * @field dangerousGoodsType: Type of dangerous goods. + * + * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in + * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], + * + * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. + * If yes, the value shall be set to TRUE, + * + * @field tunnelsRestricted: whether the heavy vehicle carrying dangerous goods is restricted to enter tunnels. + * If yes, the value shall be set to TRUE, + * + * @field limitedQuantity: whether the carried dangerous goods are packed with limited quantity. + * If yes, the value shall be set to TRUE, + * + * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency + * service should deal with an incident. This component is optional; it shall be present if the information is available, + * + * @field phoneNumber: contact phone number of assistance service in case of incident or accident. + * This component is optional, it shall be present if the information is available. + * + * @field companyName: name of company that manages the transportation of the dangerous goods. + * This component is optional; it shall be present if the information is available. + * + * @category Vehicle information + * @revision: V1.3.1 + */ +DangerousGoodsExtended ::= SEQUENCE { + dangerousGoodsType DangerousGoodsBasic, + unNumber INTEGER (0..9999), + elevatedTemperature BOOLEAN, + tunnelsRestricted BOOLEAN, + limitedQuantity BOOLEAN, + emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, + phoneNumber PhoneNumber OPTIONAL, + companyName UTF8String (SIZE (1..24)) OPTIONAL, + ... +} -EnergyStorageType ::= BIT STRING {hydrogenStorage(0), electricEnergyStorage(1), liquidPropaneGas(2), compressedNaturalGas(3), diesel(4), gasoline(5), ammonia(6)} (SIZE(7)) +/** + * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. + * + * It includes the following components: + * + * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. + * + * @field deltaLongitude: A delta longitude offset with regards to the longitude value of the reference position. + * + * @field deltaAltitude: A delta altitude offset with regards to the altitude value of the reference position. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +DeltaReferencePosition ::= SEQUENCE { + deltaLatitude DeltaLatitude, + deltaLongitude DeltaLongitude, + deltaAltitude DeltaAltitude +} -VehicleLength ::= SEQUENCE { - vehicleLengthValue VehicleLengthValue, - vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication +/** + * This DF represents a portion of digital map, described using a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition + +/** + * + * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on a reference position which is defined outside of the context of this DF. + * + * It includes the following components: + * + * @field centerPoint: optional offset point which the ellipse is centred on with respect to the reference position. + * + * @field semiMajorAxisLength: half length of the major axis of the ellipse. + * + * @field semiMinorAxisLength: half length of the minor axis of the ellipse. + * + * @field orientation: the optional orientation of the major axis of the ellipse in the WGS84 coordinate system. + * + * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ + +EllipticalShape ::= SEQUENCE { + centerPoint CartesianPosition3d OPTIONAL, + semiMajorAxisLength StandardLength12b, + semiMinorAxisLength StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL, + ... } -VehicleLengthValue ::= INTEGER {tenCentimeters(1), outOfRange(1022), unavailable(1023)} (1..1023) +/** + * + * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * The following options are available: + * + * @field euVehicleCategoryL: indicates a vehicle in the L category. + * + * @field euVehicleCategoryM: indicates a vehicle in the M category. + * + * @field euVehicleCategoryN: indicates a vehicle in the N category. + * + * @field euVehicleCategoryO: indicates a vehicle in the O category. + * + * @field euVehicleCategoryT: indicates a vehicle in the T category. + * + * @field euVehicleCategoryG: indicates a vehicle in the G category. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +EuVehicleCategoryCode ::= CHOICE { + euVehicleCategoryL EuVehicleCategoryL, + euVehicleCategoryM EuVehicleCategoryM, + euVehicleCategoryN EuVehicleCategoryN, + euVehicleCategoryO EuVehicleCategoryO, + euVehicleCategoryT NULL, + euVehicleCategoryG NULL + } + +/** + * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime + * or do not contain the COMPONENT eventDeltaTime. + * + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @revision: created in V2.1.1 based on EventHistory + */ +EventZone::= EventHistory + ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | + (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) + +/** + * The DF consists of a list of @ref EventPoint. + * + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref EventZone instead. + * @revision: Generalized the semantics in V2.1.1 + */ +EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint -VehicleLengthConfidenceIndication ::= ENUMERATED {noTrailerPresent(0), trailerPresentWithKnownLength(1), trailerPresentWithUnknownLength(2), trailerPresenceIsUnknown(3), unavailable(4)} -VehicleWidth ::= INTEGER {tenCentimeters(1), outOfRange(61), unavailable(62)} (1..62) +/** + * This DF provides information related to an event at a defined position. + * + * It includes the following components: + * + * @field eventPosition: offset position of a detected event point to a defined position. + * + * @field eventDeltaTime: optional time travelled by the detecting ITS-S since the previous detected event point. + * + * @field informationQuality: Information quality of the detection for this event point. + * + * @category: GeoReference information, Traffic information + * @revision: generalized the semantics in V2.1.1 + */ +EventPoint ::= SEQUENCE { + eventPosition DeltaReferencePosition, + eventDeltaTime PathDeltaTime OPTIONAL, + informationQuality InformationQuality +} -PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint +/** + * This DF represents the status of the exterior light switches of a traffic participant. + * + * It includes the following components: + * + * @field vehicular: represents the status of the exterior light switches of a road vehicle. + * + * @field vruSpecific: represents the status of the exterior light switches of a VRU. + * + * @category: VRU information + * @revision: created in V2.1.1 + */ +ExteriorLightsExtended ::= SEQUENCE { + vehicular ExteriorLights, + vruSpecific VruSpecificExteriorLights, + ... +} -EmergencyPriority ::= BIT STRING {requestForRightOfWay(0), requestForFreeCrossingAtATrafficLight(1)} (SIZE(2)) -InformationQuality ::= INTEGER {unavailable(0), lowest(1), highest(7)} (0..7) +/** + * This DF indicates a transversal position in relation to the different lanes of the road. + * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where V-ITS-S would normally not be present. + * + * The following options are available: + * + * @field trafficLanePosition: a position on a traffic lane. + * + * @field nonTrafficLanePosition: a position on a lane which is not a traffic lane. + * + * @field trafficIslandPosition: a position on a traffic island + * + * @field mapPosition: a position on a lane identified in a MAPEM. + * + * @category: Road Topology information + * @revision: created in V2.1.1 + */ +GeneralizedLanePosition::= CHOICE { + trafficLanePosition LanePosition, + nonTrafficLanePosition LanePositionAndType, + trafficIslandPosition TrafficIslandPosition, + mapPosition MapPosition, + ... +} + +/** + * This DF represents the Heading in a WGS84 co-ordinates system. + * + * It includes the following components: + * + * @field headingValue: the heading value. + * + * @field headingConfidence: the accuracy of the reported heading value with a predefined confidence level. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84Angle instead. + * @category: Kinematics Information + * @revision: V1.3.1 + */ +Heading ::= SEQUENCE { + headingValue HeadingValue, + headingConfidence HeadingConfidence +} -RoadType ::= ENUMERATED { - urban-NoStructuralSeparationToOppositeLanes(0), - urban-WithStructuralSeparationToOppositeLanes(1), - nonUrban-NoStructuralSeparationToOppositeLanes(2), - nonUrban-WithStructuralSeparationToOppositeLanes(3)} -SteeringWheelAngle ::= SEQUENCE { - steeringWheelAngleValue SteeringWheelAngleValue, - steeringWheelAngleConfidence SteeringWheelAngleConfidence +/** + * This DF provides information associated to heading change indicators such as a change of direction. + * + * It includes the following components: + * + * @field direction: the direction of heading change value. + * + * @field actionDeltaTime: the period over which a direction change action is performed. + * + * @category: Kinematics Information + * @revision: created in V2.1.1 + */ +HeadingChangeIndication ::= SEQUENCE { + direction TurningDirection, + actionDeltaTime DeltaTimeTenthOfSecond, + ... } -SteeringWheelAngleValue ::= INTEGER {straight(0), onePointFiveDegreesToRight(-1), onePointFiveDegreesToLeft(1), unavailable(512)} (-511..512) +/** + * This DF represents a frequency channel + * + * It includes the following components: + * + * @field centreFrequency: the centre frequency of the channel + * @unit: 10exp+2 Hz (where exp is exponent) + * + * @field channelWidth: width of the channel + * @unit: 10exp Hz (where exp is exponent) + * + * @field exponent of the power of 10 + * @unit: N/A + * + * @category: Communication information + * @revision: created in V2.1.1 +*/ +InterferenceManagementChannel ::= SEQUENCE { + centreFrequency INTEGER (1 .. 99999), + channelWidth INTEGER (0 .. 9999), + exponent INTEGER (0 .. 15) +} -SteeringWheelAngleConfidence ::= INTEGER {equalOrWithinOnePointFiveDegree (1), outOfRange(126), unavailable(127)} (1..127) +/** + * + * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. + * + * It includes the following components: + * + * @field zoneDefinition: contains the geographical definition of the zone. + * + * @field managementInfo: contains interference management information applicable in the zone defined in the component zoneDefinition. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZone ::= SEQUENCE { + zoneDefinition InterferenceManagementZoneDefinition, + managementInfo InterferenceManagementInfo +} -TimestampIts ::= INTEGER {utcStartOf2004(0), oneMillisecAfterUTCStartOf2004(1)} (0..4398046511103) +/** + * This DF represents the geographical definition of the zone where band sharing occurs. + * + * It includes the following components: + * + * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneRadius: optional radius of the interference management zone in metres. + * + * @field interferenceManagementZoneID: optional identification of the interference management zone. + * + * @field interferenceManagementZoneShape: shape of the interference management zone. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZoneDefinition::= SEQUENCE{ + interferenceManagementZoneLatitude Latitude, + interferenceManagementZoneLongitude Longitude, + interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, + interferenceManagementZoneID ProtectedZoneID OPTIONAL, + interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, + ... +} -VehicleRole ::= ENUMERATED {default(0), publicTransport(1), specialTransport(2), dangerousGoods(3), roadWork(4), rescue(5), emergency(6), safetyCar(7), agriculture(8), commercial(9), military(10), roadOperator(11), taxi(12), reserved1(13), reserved2(14), reserved3(15)} +/** + * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. + * + * @category: Communication information. + * @revision: created in V2.1.1 + */ +InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel + + +/** + * This DF contains interference management information for one affected frequency channel. + * + * It includes the following components: + * + * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management + * + * @field interferenceManagementZoneType: type of the interference management zone. + * + * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. + * + * @field expiryTime: 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 + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementInfoPerChannel ::= SEQUENCE { + interferenceManagementChannel InterferenceManagementChannel, + interferenceManagementZoneType InterferenceManagementZoneType, + interferenceManagementMitigationType InterferenceManagementMitigationType OPTIONAL, + expiryTime TimestampIts OPTIONAL, + ... +} -YawRate::= SEQUENCE { - yawRateValue YawRateValue, - yawRateConfidence YawRateConfidence +/** + * This DF provides information and commands defining the required mitigation type in the defined interference management zone. + * + * It includes the following options: + * + * @field unavailable: this is the default choice to be used when information is not available + * + * @field mitigationForTechnologies: 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. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementMitigationType ::= CHOICE { + unavailable NULL, + mitigationForTechnologies MitigationForTechnologies } -YawRateValue ::= INTEGER {straight(0), degSec-000-01ToRight(-1), degSec-000-01ToLeft(1), unavailable(32767)} (-32766..32767) +/** + * 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. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone + +/** + * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.17]. + * + * It includes the following components: + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the intersection + * + * @note: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique. + * @category: Road topology information + * @revision: created in V2.1.1 + */ +IntersectionReferenceId ::= SEQUENCE { + region Identifier2B OPTIONAL, + id Identifier2B +} -YawRateConfidence ::= ENUMERATED { - degSec-000-01 (0), - degSec-000-05 (1), - degSec-000-10 (2), - degSec-001-00 (3), - degSec-005-00 (4), - degSec-010-00 (5), - degSec-100-00 (6), - outOfRange (7), - unavailable (8) +/** + * This DF consists of a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition + +/** + * 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: + * + * @field protocolVersion: version of the ITS message. + * + * @field messageId: type of the ITS message. + * + * @field stationId: the identifier of the ITS-S that generates the ITS message in question. + * + * @category: Communication information + * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. + */ +ItsPduHeader ::= SEQUENCE { + protocolVersion INTEGER (0..255), + messageId MessageId, + stationId StationID } -ProtectedZoneType::= ENUMERATED { permanentCenDsrcTolling (0), ..., temporaryCenDsrcTolling (1) } +/** + * This DF indicates a transversal position in resolution of lanes and the associated lane type. + * + * It includes the following components: + * + * @field transversalPosition: the transversal position. + * + * @field laneType: the type of the lane identified in the component transversalPosition. + * + * @category GeoReference information + * @revision: Created in V2.1.1 + */ +LanePositionAndType::= SEQUENCE { + transversalPosition LanePosition, + laneType LaneType, + ... +} -RelevanceDistance ::= ENUMERATED {lessThan50m(0), lessThan100m(1), lessThan200m(2), lessThan500m(3), lessThan1000m(4), lessThan5km(5), lessThan10km(6), over10km(7)} +/** + * This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. + * + * It includes the following components: + * + * @field lateralAccelerationValue: lateral acceleration value at a point in time. + * + * @field lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @category Vehicle information + * @revision: V1.3.1 + */ +LateralAcceleration ::= SEQUENCE { + lateralAccelerationValue LateralAccelerationValue, + lateralAccelerationConfidence AccelerationConfidence +} -RelevanceTrafficDirection ::= ENUMERATED {allTrafficDirections(0), upstreamTraffic(1), downstreamTraffic(2), oppositeTraffic(3)} +/** + * This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. + * + * It includes the following components: + * + * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. + + * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @category: Vehicle information + * @revision: V1.3.1 + */ +LongitudinalAcceleration ::= SEQUENCE { + longitudinalAccelerationValue LongitudinalAccelerationValue, + longitudinalAccelerationConfidence AccelerationConfidence +} -TransmissionInterval ::= INTEGER {oneMilliSecond(1), tenSeconds(10000)} (1..10000) +/** + * This DF represents the estimated position along the longitudinal length of a particular lane. + * + * It includes the following components: + * + * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. + * + * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. + * + * @category: Road topology information + * @revision: created in V2.1.1 + */ +LongitudinalLanePosition ::= SEQUENCE { + longitudinalLanePositionValue LongitudinalLanePositionValue, + longitudinalLanePositionConfidence LongitudinalLanePositionConfidence +} -ValidityDuration ::= INTEGER {timeOfDetection(0), oneSecondAfterDetection(1)} (0..86400) +/** + * 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 @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. + * + * @category: Vehicle information + * @revision: V1.3.1 +*/ +LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn + +/** + * 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: + * + * @field mapReference: optionally identifies the MAPEM carrying the topology. + * It is absent if the MAPEM topology is known from the context. + * + * @field laneId: identifies the lane in the topology. + * + * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane. + * + * @category: Road topology information + * @revision: Created in V2.1.1 + */ +MapPosition ::= SEQUENCE { + mapReference MapReference OPTIONAL, + laneId Identifier1B, + longitudinalLanePosition LongitudinalLanePosition OPTIONAL, + ... +} -ActionID ::= SEQUENCE { - originatingStationID StationID, - sequenceNumber SequenceNumber +/** + * 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: + * + * @field roadsegment: option that identifies the description of a road segment contained in a MAPEM. + * + * @field intersection: option that identifies the description of an intersection contained in a MAPEM. + * + * @category: Road topology information + * @revision: Created in V2.1.1 + */ + +MapReference::= CHOICE { + roadsegment RoadSegmentReferenceId, + intersection IntersectionReferenceId + } + +/** + * This DF provides information about a message with respect to the segmentation process at the sender. + * + * It includes the following components: + * + * @field totalMsgSegments: indicates the total number of messages that has been used on the transmitter side to encode the information. + * + * @field thisSegmentNum: indicates the position of the message within of the total set of messages . + +*/ +MessageSegmentInfo ::= SEQUENCE { + totalMsgSegments CardinalNumber1B, + thisSegmentNum OrdinalNumber1B + } + +/** + * + * This DF represents a list of @ref MitigationPerTechnologyClass. + * @category: Communication information + * @revision: Created in V2.1.1 +*/ +MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF 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: + * + * @field accessTechnologyClass: channel access technology to which this mitigation is applied. + * + * @field lowDutyCycle: duty cycle limit. + * @unit: 0.01% steps + * + * @field powerReduction: the delta value of power to be reduced. + * @unit: dB + * + * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.25]. + * @unit: ms + * + * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.26]. + * @unit: ms + * + * @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. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +MitigationPerTechnologyClass ::= SEQUENCE { + accessTechnologyClass AccessTechnologyClass, + lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, + powerReduction INTEGER (0 .. 30) OPTIONAL, + dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, + dmcTonLimit INTEGER (0 .. 20) OPTIONAL, + ... } -ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition +/** + * This DF indicates both the class and associated subclass that best describes an object. + * + * The following options are available: + * + * @field vehicleSubClass: the object is a road vehicle. + * + * @field vruSubClass: the object is a VRU. + * + * @field groupSubClass: the object is a VRU group or cluster. + * + * @field otherSubClass: the object is of a different types as the above. + * + * @category: Sensing information + * @revision: Created in V2.1.1 + */ +ObjectClass ::= CHOICE { + vehicleSubClass VehicleSubClass, + vruSubClass VruProfileAndSubprofile, + groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), + otherSubClass OtherSubClass, + ... +} -ProtectedCommunicationZone ::= SEQUENCE { - protectedZoneType ProtectedZoneType, - expiryTime TimestampIts OPTIONAL, - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - protectedZoneRadius ProtectedZoneRadius OPTIONAL, - protectedZoneID ProtectedZoneID OPTIONAL, - ... +/** + * This DF consist of a list of object classes. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence + +/** + * This DF represents the classification of a detected object together with a confidence indication. + * + * It includes the following components: + * + * @field objectClass: the class of the object. + * + * @field ObjectClassConfidence: the associated confidence information. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectClassWithConfidence ::= SEQUENCE { + objectClass ObjectClass, + confidence ConfidenceLevel +} +/** + * This DF represents a dimension of an object together with a confidence indication. + * + * It includes the following components: + * + * @field ObjectDimensionValue: the object dimension value which can be estimated as the mean of the current distribution. + * + * @field ObjectDimensionValue: the associated confidence information. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimension ::= SEQUENCE { + value ObjectDimensionValue, + confidence ObjectDimensionValue } -Traces ::= SEQUENCE SIZE(1..7) OF PathHistory +/** + * This DF that represents a path with a set of path points. + * It may contain up to `40` @ref 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. + * + * @category: GeoReference information, Vehicle information + * @revision: created in V2.1.1 based on PathHistory + */ +Path::= SEQUENCE (SIZE(0..40)) OF PathPoint + +/** + * This DF that represents a path with a set of path points. + * It may contain up to `40` @ref 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. + * + * @category: GeoReference information, Vehicle information + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead + * @revision: semantics updated in V2.1.1 + */ +PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint -NumberOfOccupants ::= INTEGER {oneOccupant (1), unavailable(127)} (0 .. 127) +/** + * This DF defines an offset waypoint position within a path. + * + * It includes the following components: + * + * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. + * + * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. + * + * @category GeoReference information + * @revision: semantics updated in V2.1.1 + */ +PathPoint ::= SEQUENCE { + pathPosition DeltaReferencePosition, + pathDeltaTime PathDeltaTime OPTIONAL +} -SequenceNumber ::= INTEGER (0..65535) +/** + * The DF that defines a waypoint position within a path. + * + * It includes the following components: + * + * @field pathPosition: The waypoint position defined as an absolute position. + * + * @field pathDeltaTime: The optional delta time in which the waypoint will be occupied, from a reference time. + * + * @category GeoReference information + * @revision: created in V2.1.1 + */ +PathPointAbsolute ::= SEQUENCE { + pathPosition ReferencePosition, + pathDeltaTime PathDeltaTime OPTIONAL +} + +/** + * 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: + * + * @field objectID: optional identifier assigned to a detected object. + * + * @field timeOfMeasurement: 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. + * + * @field xCoordinate: 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. + * + * @field yCoordinate: 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. + * + * @field zCoordinate: 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. + * + * @field velocityMagnitude: 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 + * + * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * + * @field xVelocity: velocity component of the detected object in x-direction at the time of measurement, with the associated variance. + * + * @field yVelocity: velocity component of the detected object in y-direction at the time of measurement, with the associated variance. + * + * @field zVelocity: optional velocity component of the detected object in z-direction at the time of measurement, with the associated variance. + * + * @field accelerationMagnitude: 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. + * + * @field accelerationDirection: polar angle of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * + * @field xAcceleration: optional Acceleration of the detected object in x-direction at the time of measurement, with the associated variance. + * + * @field yAcceleration: optional Acceleration of the detected object in y-direction at the time of measurement, with the associated variance. + * + * @field zAcceleration: optional Acceleration of the detected object in z-direction at the time of measurement, with the associated variance. + * + * @field rollAngle: 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. + * + * @field pitchAngle: 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. + * + * @field yawAngle: 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. + * + * @field rollSpeed: 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. + * + * @field pitchSpeed: 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. + * + * @field yawSpeed: 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. + * + * @field rollAcceleration: 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. + * + * @field pitchAcceleration: 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. + * + * @field yawAcceleration: 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. + * + * @field lowerTriangularCorrelationMatrixColumns: 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. + * + * @field planarObjectDimension1: 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. + * + * @field planarObjectDimension2: 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. + * + * @field verticalObjectDimension: optional vertical dimension of object as provided by the sensor or object model. + * + * @field objectRefPoint: 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. + * + * @field objectAge: 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. + * + * @field objectConfidence: 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. + * + * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. + * + * @field dynamicStatus: optional dynamic capabilities of a detected object. + * + * @field classification: optional classification of the described object + * + * @field matchedPosition: optional map-matched position of an object. + * + * @category Sensing information + * @revision: created in V2.1.1 + */ + +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, + ... +} + +/** + * This DF represents the shape of a polygonal area or of a right prism. + * + * It includes the following components: + * + * @field polygon: the polygonal area and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * + * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. + * + * @category GeoReference information + * @revision: created in V2.1.1 + * + */ +PolygonalShape ::= SEQUENCE { + polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), + height StandardLength12b OPTIONAL, + ... +} +/** + * 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: + * + * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point + * and major axis point of the position accuracy ellipse. + * + * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point + * and minor axis point of the position accuracy ellipse. + * + * @field semiMajorOrientation: orientation direction of the ellipse major axis of the position accuracy + * ellipse with regards to the WGS84 north. + * + * + * @category GeoReference information + * @revision: V1.3.1 + */ +PosConfidenceEllipse ::= SEQUENCE { + semiMajorConfidence SemiAxisLength, + semiMinorConfidence SemiAxisLength, + semiMajorOrientation Wgs84AngleValue +} + +/** + * This DF contains a list of distances @ref 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. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar +/** + * This DF describes a zone of protection inside which the ITSG5 communication should be restricted. + * + * It includes the following components: + * + * @field protectedZoneType: type of the protected zone. + * + * @field expiryTime: optional time at which the validity of the protected communication zone will expire. + * + * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. + * + * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. + * + * @field protectedZoneRadius: optional radius of the protected communication zone in metres. + * + * @field protectedZoneID: the optional ID of the protected communication zone. + * + * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedCommunicationZone ::= SEQUENCE { + protectedZoneType ProtectedZoneType, + expiryTime TimestampIts OPTIONAL, + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + protectedZoneRadius ProtectedZoneRadius OPTIONAL, + protectedZoneID ProtectedZoneID OPTIONAL, + ... +} + +/** + * This DF consist of a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). + * + * It may provide up to 16 protected communication zones information. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone + +/** + * 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). + * + * @field ptActivationType: type of activation. + * + * @field ptActicationData: data of activation. + * + * 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) + * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, + * destination, priority, etc. + * + * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: + * - 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. + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivation ::= SEQUENCE { + ptActivationType PtActivationType, + ptActivationData PtActivationData +} + +/** + * This DF describes a radial shape. 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). + * + * It includes the following components: + * + * @field sensorPositionOffset: the optional offset opoint. + * + * @field range: the radial range of the sensor from the reference point or sensor point offset. + * + * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the + * stationary sensor's horizontal opening angle in positive angular direction with respect to the + * WGS84 coordinate system. + * + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary + * sensor's horizontal opening angle in positive angular direction with respect to the WGS84 coordinate + * system. + * + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's + * 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * 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 using the DE CartesianAngleValue. + * + * @category Sensing information + * @revision: created in V2.1.1 +*/ +RadialShape ::= SEQUENCE { + offsetPoint CartesianPosition3d OPTIONAL, + range StandardLength12b, + stationaryHorizontalOpeningAngleStart Wgs84AngleValue, + stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, + ... +} + + +/** + * This DF describes a list of radial shapes. + * + * It includes the following components: + + * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). + * + * @field xCoordinate: the x-coordinate of the offset point. + * + * @field yCoordinate: the y-coordinate of the offset point. + * + * @field zCoordinate: the optional z-coordinate of the offset point. + * + * @field radialShapesList: the list of radial shape details. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ +RadialShapes ::= SEQUENCE { + refPointId Identifier1B, + xCoordinate CartesianCoordinateSmall, -- tbd: is this along the positive or the negative x axis? + yCoordinate CartesianCoordinateSmall, + zCoordinate CartesianCoordinateSmall OPTIONAL, + radialShapesList RadialShapesList, + ... +} + +/** + * The DF contains a list of @ref RadialShapeDetails. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ + +RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF 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). + * + * It includes the following components: + * + * @field range: the radial range of the sensor from the reference point or sensor point offset. + * + * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the + * stationary sensor's horizontal opening angle in positive angular direction. + * + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary + * sensor's horizontal opening angle in positive angular direction. + * + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's + * 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * 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. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ +RadialShapeDetails ::= SEQUENCE { + range StandardLength12b, + horizontalOpeningAngleStart CartesianAngleValue, + horizontalOpeningAngleEnd CartesianAngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, + ... +} + +/** + * 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. + * + * It includes the following components: + * + * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field semiLength: represents half the length of the rectangle. + * + * @field semiBreadth: represents half the breadth of the rectangle. + * + * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. + * + * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. + * + * @category GeoReference information + * @revision: created in V2.1.1 + */ +RectangularShape ::= SEQUENCE { + centerPoint CartesianPosition3d OPTIONAL, + semiLength StandardLength12b, + semiBreadth StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL +} + +/** + * A position within a geographic coordinate system together with a confidence indication. + * + * It includes the following components: + * + * @field latitude: the latitude of the geographical point. + * + * @field longitude: the longitude of the geographical point. + * + * @field positionConfidenceEllipse: the accuracy of the geographical position. + * + * @field altitude: the altitude and an altitude accuracy of the geographical point. + * + * @category: GeoReference information + * @revision: description updated in V2.1.1 + */ +ReferencePosition ::= SEQUENCE { + latitude Latitude, + longitude Longitude, + positionConfidenceEllipse PosConfidenceEllipse, + altitude Altitude +} + +/** + * This DF consist of a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. + * + * @category: Infrastructure information, Traffic information + * @revision: V1.3.1 + */ RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType -EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint +/** + * This DF represents a unique id for a road segment + * + * It includes the following components: + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the road segment + * + * @note: when the RoadRegulatorID is present, the RoadSegmentReferenceID is guaranteed to be globally unique. + * @category: GeoReference information + * @revision: created in V2.1.1 + */ +RoadSegmentReferenceId ::= SEQUENCE { + region Identifier2B OPTIONAL, + id Identifier2B +} -EventPoint ::= SEQUENCE { - eventPosition DeltaReferencePosition, - eventDeltaTime PathDeltaTime OPTIONAL, - informationQuality InformationQuality +/** + * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). + * + * It includes the following components: + * + * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. + * + * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. + * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant inidcated in the component subjectStation is safe. + * + * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed + * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 + */ +SafeDistanceIndication ::= SEQUENCE { + subjectStation StationID OPTIONAL, + safeDistanceIndicator SafeDistanceIndicator, + timeToCollision DeltaTimeHundredthOfSecond OPTIONAL, + ... } -ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone +/** + * This DF represents a list of maximum `16` @ref CartesianPosition3d. + * + * @category: GeoReference information + * @revision: created in V2.1.1 + */ +SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d + +/** + * The DF contains a list of identifiers. + * + * @category: Basic information + * @revision: created in V2.1.1 +*/ +SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B + +/** + * This DF contains a list of DFs PathPointAbsolute. + * The component pathDeltaTime shall be either present in all elements of the list or be absent in all elements. + * + * @category: GeoReference information + * @revision: created in V2.1.1 + */ +SequenceOfPathPointAbsolute::= SEQUENCE (SIZE(1..16,...)) OF PathPointAbsolute + +/** + * The DF contains a list of DF SafeDistanceIndication. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication + +/** + * The DF contains a list of DF TrajectoryInterceptionIndication. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication + +/** + * This DF provides the definition of a geographical area or volume, based on different options. + * + * It includes the following components: + * + * @field rectangle: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. + * + * @field circle: definition of an area of circular shape or a right circular cylinder. + * + * @field polygon: definition of an area of polygonal shape or a right prism. + * + * @field ellipse: definition of an area of elliptical shape or a right elliptical cylinder. + * + * @field radial: definition of a radial shape. + * + * @field radialShapes: definition of list of radial shapes. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ + +Shape::= CHOICE { + rectangle RectangularShape, + circle CircularShape, + polygon PolygonalShape, + ellipse EllipticalShape, + radial RadialShape, + radialShapes RadialShapes, + ... +} +/** + * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * + * It includes the following components: + * + * @field speedValue: the speed value. + * + * @field speedConfidence: the accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V1.3.1 + */ +Speed ::= SEQUENCE { + speedValue SpeedValue, + speedConfidence SpeedConfidence +} +/** + * This DF describes the extended speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * + * It includes the following components: + * + * @field speedValue: the extended speed value. + * + * @field speedConfidence: the accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V2.1.1 + */ +SpeedExtended ::= SEQUENCE { + speedValue SpeedValueExtended, + speedConfidence SpeedConfidence +} -CenDsrcTollingZone ::= SEQUENCE { - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, - ... +/** + * This DF provides the indication of change in stability. + * + * It includes the following components: + * + * @field lossProbability: the probability of stability loss. + * + * @field actionDeltaTime: accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V2.1.1 + */ +StabilityChangeIndication ::= SEQUENCE { + lossProbability StabilityLossProbability, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents the steering wheel angle of the vehicle at certain point in time. + * + * It includes the following components: + * + * @field steeringWheelAngleValue: steering wheel angle value. + * + * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +SteeringWheelAngle ::= SEQUENCE { + steeringWheelAngleValue SteeringWheelAngleValue, + steeringWheelAngleConfidence SteeringWheelAngleConfidence } -ProtectedZoneRadius ::= INTEGER {oneMeter(1)} (1..255,...) +/** + * This DF represents one or more paths using @ref PathHistory. + * + * @category: GeoReference information + * @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory + */ +Traces ::= SEQUENCE SIZE(1..7) OF Path + +/** + * Ths DF represents the a position on a traffic island between two lanes. + * + * It includes the following components: + * + * @field oneSide: represents one lane. + * + * @field otherSide: represents the other lane. + * + * @category: Road Topology information + * @revision: Created in V2.1.1 + */ +TrafficIslandPosition ::= SEQUENCE { + oneSide LanePositionAndType, + otherSide LanePositionAndType, + ... +} -ProtectedZoneID ::= INTEGER (0.. 134217727) +/** + * This DF provides detailed information about an attached trailer. + * + * It includes the following components: + * + * @field refPointId: identifier of the reference point of the trailer. + * + * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the + * vehicle Reference Point. + * + * @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer + * is not overhanging to the front with respect to the trailer reference point. + * + * @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. + * + * @field trailerWidth: optional width of the trailer. + * + * @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x + * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of + * the segment having as end points the reference point of the trailer and the reference point of + * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane + * xy, described in the local Cartesian coordinate system of the preceding reference point. The + * angle is measured with negative values considering the trailer orientation turning clockwise + * starting from the segment direction. The angle value accuracy is provided with the + * confidence level of 95 %. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +TrailerData ::= SEQUENCE { --tbd check descriptions above + refPointId Identifier1B, + hitchPointOffset StandardLength1B, -- tbd is the value unavailable needed? + frontOverhang StandardLength1B, + rearOverhang StandardLength1B, + trailerWidth VehicleWidth OPTIONAL, --tbd is OPTIONAL needed since the value unvailable can be used? + hitchAngle CartesianAngle OPTIONAL, --tbd is OPTIONAL needed since the value unvailable can be used? + ... +} -CenDsrcTollingZoneID ::= ProtectedZoneID +/** + * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. + * + * It includes the following components: + * + * @field subjectStation: indicates the subject station. + * + * @field trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. + * + * @field trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionIndication ::= SEQUENCE { + subjectStation StationID OPTIONAL, + trajectoryInterceptionProbability TrajectoryInterceptionProbability, + trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, + ... + } + +/** + * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +VarLengthNumber::=CHOICE{ + content [0] INTEGER(0..127), -- one octet length + extension [1] Ext1 + } +Ext1::=CHOICE{ + content [0] INTEGER(128..16511), -- two octets length + extension [1] Ext2 +} +Ext2::=CHOICE{ + content [0] INTEGER(16512..2113663), -- three octets length + extension [1] Ext3 + } +Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length + +/** + * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. + * + * It includes the following components: + * + * @field verticalAccelerationValue: vertical acceleration value at a point in time. + * + * @field verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead + * @category Vehicle information + * @revision: V1.3.1 + */ +VerticalAcceleration ::= SEQUENCE { + verticalAccelerationValue VerticalAccelerationValue, + verticalAccelerationConfidence AccelerationConfidence +} -DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition +/** + * This DF provides information related to the identification of a vehicle. + * + * It includes the following components: + * + * @field wMInumber: World Manufacturer Identifier (WMI) code. + * + * @field vDS: Vehicle Descriptor Section (VDS). + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VehicleIdentification ::= SEQUENCE { + wMInumber WMInumber OPTIONAL, + vDS VDS OPTIONAL, + ... +} -OpeningDaysHours ::= UTF8String +/** + * This DF represents the length of vehicle and accuracy indication information. + * + * It includes the following components: + * + * @field vehicleLengthValue: length of vehicle. + * + * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VehicleLength ::= SEQUENCE { + vehicleLengthValue VehicleLengthValue, + vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication +} -PhoneNumber ::= NumericString (SIZE(1..16)) +/** + * This DF provides information about a VRU cluster. + * + * It includes the following components: + * + * @field clusterId: optional identifier of a VRU cluster . + * + * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. + * + * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. + * + * @field clusterProfiles: identifies all the VRU profile types that are believed to be within the cluster . + * + * @category: VRU information + * @revision: Created in V2.1.1 +*/ +VruClusterInformation ::= SEQUENCE { + clusterId ClusterId OPTIONAL, + clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, + clusterCardinalitySize ClusterCardinalitySize, + clusterProfiles VruClusterProfiles, + ... +} + +/** + * This DF indicates the profile of a VRU including sub-profile information + * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.22]: + * + * @field pedestrian: VRU Profile 1 - Pedestrian. + * + * @field bicyclistAndLightVruVehicle: VRU Profile 2 - Bicyclist. + * + * @field motorcyclist: VRU Profile 3 - Motorcyclist. + * + * @field animal: VRU Profile 4 - Animals. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruProfileAndSubprofile ::= CHOICE { + pedestrian VruSubProfilePedestrian, + bicyclistAndLightVruVehicle VruSubProfileBicyclist, + motorcylist VruSubProfileMotorcyclist, + animal VruSubProfileAnimal, + ... +} + +/** + * This DF represents an angular component along with a confidence in the WGS84 coordinate system. + * + * It includes the following components: + * + * @field value: the angle value which can be estimated as the mean of the current distribution. + * + * @field confidence: the accuracy associated to the provided value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +Wgs84Angle ::= SEQUENCE { + value Wgs84AngleValue, + confidence Wgs84AngleConfidence +} + + +/** + * This DF represents a yaw rate of vehicle at a point in time. + * + * It includes the following components: + * + * @field yawRateValue: yaw rate value at a point in time. + * + * @field yawRateConfidence: accuracy of reported yaw rate value. + * + * @category: Vehicle Information + * @revision: V1.3.1 + */ +YawRate::= SEQUENCE { + yawRateValue YawRateValue, + yawRateConfidence YawRateConfidence +} END -- GitLab From ec0e0a427e6f14a10c2821bb3e933ee1e09fe4be Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Tue, 17 May 2022 09:02:01 +0000 Subject: [PATCH 24/91] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9596ff5..a0227d8 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # ASN.1 modules for ETSI ITS Common Data Dictionary (ETSI TS 102 894-2) The ASN.1 module for ETSI ITS Common Data Dictionary (CDD) is contained in the **ITS-Container.asn** file. -* The module is published in the **[ETSI TS 102 894-2 v1.3.1](https://www.etsi.org/deliver/etsi_ts/102800_102899/10289402/01.03.01_60/ts_10289402v010301p.pdf)** (2018-08). +* The module will published in the ETSI TS 102 894-2 v2.1.1 and is based on the **[ETSI TS 102 894-2 v1.3.1](https://www.etsi.org/deliver/etsi_ts/102800_102899/10289402/01.03.01_60/ts_10289402v010301p.pdf)** (2018-08). ## License -- GitLab From 974e106a7f84a5fffa47c72462b5bc16b55c4262 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Tue, 17 May 2022 09:51:10 +0000 Subject: [PATCH 25/91] Upload New File --- asn2md.py | 323 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 323 insertions(+) create mode 100644 asn2md.py diff --git a/asn2md.py b/asn2md.py new file mode 100644 index 0000000..dd9ab84 --- /dev/null +++ b/asn2md.py @@ -0,0 +1,323 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +import argparse # parse arguments +import os.path # getting extension from file +import sys # output and stuff +import re # for regular expressions +import copy # for copy +if (sys.version_info > (3, 0)): + import urllib.parse # +else: + import urllib # + +## extract doxygen-tag namespace +RE_MODULE = re.compile( r'^\s*([A-Z][\w-]*)\s*({.*?})?\s*DEFINITIONS.*?::=\s*?BEGIN(.*)END', re.VERBOSE | re.MULTILINE | re.DOTALL) + +RE_SPACES = re.compile(r'\s+') + +RE_COMMENTS = re.compile(r'^\s*--.*?\n|--.*?(?:--|$)|/\*.*?\*/[\t ]*\n?', re.MULTILINE|re.DOTALL) + +RE_BASIC_TYPES = re.compile(r'^OCTET\s+STRING|BIT\s+STRING|BOOLEAN|INTEGER|FLOAT|SEQUENCE|SET|NULL') + +#RE_TYPE_BODY_1 = re.compile(r'.*?{(.*)}\s*WITH', re.MULTILINE|re.DOTALL) +#RE_TYPE_BODY_2 = re.compile(r'.*?{(.*)}\s*(?:WITH.*|\(.*?\)|\s*$)', re.MULTILINE|re.DOTALL) +RE_TYPE_BODY = re.compile(r'.*?{(.*)}\s*(?:WITH.*|\(.*?\)|\s*$)', re.MULTILINE|re.DOTALL) + +#RE_FIELDS = re.compile(r'^\s*(?:/\*\*.*?\*/)|^\s*([\w-]+?)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][.\w-]+)?(.*?)(?:,((?:\s*--!?<.*?\n)*)|((?:--!?<.*?\n)*)$)', re.MULTILINE | re.DOTALL| re.VERBOSE) +RE_FIELDS = re.compile(r'^\s*/\*.*?\*/|^\s*--\!.*?\n|^[\s&]*([\w-]+)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][\w-]+)?((?:{[^}]*}|\([^)]*\)|.)*?)(?:,|(--)|$)', re.MULTILINE | re.DOTALL) + +RE_EXPORTS = re.compile(r'^\s*EXPORTS.*?;', re.DOTALL | re.MULTILINE) + +RE_IMPORTS = re.compile(r'^\s*IMPORTS\s*(.*?);', re.DOTALL | re.MULTILINE) + +RE_IMPORT_ELEMENTS = re.compile(r'^([,\s\w-]*?)FROM\s*([\w-]+)\s*({[^}]*}(?:\s+WITH\s+SUCCESSORS)?)?', re.MULTILINE) + +RE_IMPORT_ELEMENT_TYPE = re.compile(r'[^,\s]+') + +RE_DOXY_ASN_COMMENTS = re.compile(r'^\s*--[-!#](:?$|\s(.*))', re.MULTILINE) + +RE_DOXY_C_COMMENTS = re.compile(r'^\s*/\*\*\s(.*?)\*/', re.MULTILINE | re.DOTALL) + +RE_DOXY_C_COMMENTS_I = re.compile(r'\s*\*+') +RE_STRIPSTAR = re.compile(r'^\s*\*', re.MULTILINE) + + +RE_DOXY_REF = re.compile(r'@ref\s+([\w-]+)') +RE_DOXY_CLASS = re.compile(r'@(?:class|struct|details):?\s+([\w-]+)') +RE_DOXY_DETAILS = re.compile(r'@details:?\s+[\w-]+') +RE_DOXY_STRIP_SINGLE_TAG = re.compile(r'@(?:brief|url)\s+') +RE_DOXY_STRIP_TAG = re.compile(r'\s*@(?:class|struct|details):?\s+[\w-]+') +RE_DOXY_UNIT = re.compile(r'^\s*@unit:?\s+(.+)\n', re.MULTILINE) +RE_DOXY_REVISION = re.compile(r'^\s*@revision:?\s+(.+)\n', re.MULTILINE) +RE_DOXY_BRIEF = re.compile(r'^\s*@brief[\s:]+(.+)\n', re.MULTILINE) +RE_DOXY_CATEGORY = re.compile(r'^\s*@category[\s:]+(.+)\n', re.MULTILINE) +RE_DOXY_PARAM = re.compile(r'^\s*@(?:param|field):?\s+([\w-]+)\s*(.*?)\n\s*$', re.MULTILINE | re.DOTALL) + +RE_DOXY_SECTION = re.compile(r"^\s*@(brief|note|(class|struct|param|field|details)\s+([-\w]+)):?(.*?)(?=\n\s*@|\n\s*\n|\Z)", re.MULTILINE | re.DOTALL) + +# RE_TYPE = re.compile(r'(([A-Z][\w-]*)\s*::=[\w \t]+(?:{+(.*?)}+)?.*?)\n\s*\n', re.MULTILINE | re.DOTALL) +RE_TYPE = re.compile(r'^\s*([A-Z][\w-]*)?\s*([{} \t:\w-]*?)?::=([\w \t]+.*?)\n\s*\n', re.MULTILINE | re.DOTALL) +RE_OPTIONS = re.compile(r'^\s*@options[\s:]+(.+)', re.MULTILINE) + +extTypes = {} +cpos = 0 +o_args = [] + +def urlquote(s): + if (sys.version_info > (3, 0)): + return urllib.parse.quote_plus(s) + else: + return urllib.quote_plus(s) + +def indentLines(content:str, indent): + ret='' + lines = content.splitlines() + for l in lines: + ret += ''.ljust(indent or 0) + l +'\n' + return ret + +def parseText(content, indent=None): + + def repl_ref(m): + return '[**{0}**]({1}#{0})'.format(m.group(1), extTypes.get(m.group(1),'')) + content = RE_DOXY_REF.sub(repl_ref, content) + + content = RE_DOXY_STRIP_TAG.sub('', content) + + content = RE_DOXY_STRIP_SINGLE_TAG.sub('', content) + + return indentLines(content, indent) + +def parseInlineComments(content:str, indent=None): + # keep into account only '--<' comments + lines = content.splitlines() + content = '' + for l in lines: + l = l.lstrip() + if l.startswith('--< '): + content += l[4:] + '\n' + elif l.startswith('--!< '): + content += l[5:] + '\n' + else: + continue + return parseText(content, indent) + +def parseDoxyComments(content:str): + # keep only '--! ' and /** */ comments + # convert '--! ' comments to C-style + content = RE_DOXY_ASN_COMMENTS.sub(r'/** *\g<1>*/', content) + ret = '' + for m in RE_DOXY_C_COMMENTS.finditer(content): + ret += RE_STRIPSTAR.sub('', m.group(1)) + return ret + +def parseModule(mname, content): + global cpos + cpos = 0 + ret = '' + m = RE_IMPORTS.search(content) + if m is not None: + pos = 0 + if m.group(1) is not None: + ret += '## Imports:\n' + s = m.group(1) + for fm in RE_IMPORT_ELEMENTS.finditer(s): + imName = fm.group(2) + for im in RE_IMPORT_ELEMENT_TYPE.finditer(fm.group(1)): + extTypes[im.group(0)] = imName+'.md' + ret += ' * **[{0}]({0}.md)** *{1}*
\n'.format(imName, RE_SPACES.sub(' ', fm.group(3) or '')) + ret += parseText(parseDoxyComments(s[pos:fm.start()])+'\n', 2) + pos = fm.end() + ret += parseText(parseDoxyComments(s[pos:])) + cpos = m.end() + + m = RE_EXPORTS.search(content) + if m is not None: + if cpos < m.end(): + cpos = m.end() + + # parse types + def repl_type (m, doc): + title = t = m.group(1) # type name + f_params = {} + s_unit = '' + s_category = '' + s_note = '' + s_revision = '' + options = copy.copy(o_args) + if doc : # doc is the prepending comment. Check if not None and not Empty + doc = parseDoxyComments(doc) + + # parse options + def repl_options(m): + nonlocal options + if m.group(1) is not None: + for o in m.group(1).split(','): + setattr(options, o.strip(), True) + return '' + doc=RE_OPTIONS.sub(repl_options, doc) + + def repl_section (m): + nonlocal title + nonlocal t + nonlocal f_params + nonlocal s_note + ret = '' + l = m.group(4).lstrip(":, \t").lstrip('\n') + if m.group(2) is not None: + # this can be class|struct|details|param|field + if m.group(3) == t: + ret = parseText(l) + else: + if len(l): + f_params[m.group(3)] = parseText(l, 2) + elif m.group(1) == 'brief': + if o_args.brief_as_title: + title = parseText(l) + else: + ret = parseText(l) + elif m.group(1) == 'note': + s_note = '\n>>>\n' + 'NOTE: ' + parseText(l).rstrip() + '\n>>>\n' + else: + ret = m.string[m.start():m.end()] + return ret + doc = RE_DOXY_SECTION.sub(repl_section, doc) + + def repl_category(m): + nonlocal s_category + s_category = '\n    **Categories**: ' + for l in m.group(1).split(','): +# s_category += '[{0}](#{1}) '.format(l.strip(), urlquote(l.strip())) + s_category += l.strip() + ' ' + s_category += '\n' + return '' + doc = RE_DOXY_CATEGORY.sub(repl_category, doc) + + def repl_unit(m): + nonlocal s_unit + s_unit = '\n    **Unit**: _' + m.group(1).strip() + '_\n' + return '' + doc = RE_DOXY_UNIT.sub(repl_unit, doc) + + def repl_revision(m): + nonlocal s_revision + s_revision = '\n    **Revision**: _' + m.group(1).strip() + '_\n' + return '' + doc = RE_DOXY_REVISION.sub(repl_revision, doc) + else: + doc = '' + + ret = '' + if t is not None: + fields = '' + ret = '\n### {1}\n'.format(t, title) + parseText(doc) + + # parse fields and get out fields descriptions + if m.group(3) is not None: + # check if contain fields + fm = RE_TYPE_BODY.search(m.group(3)) + if fm is not None and fm.group(1) is not None: + typeBody = fm.group(1).strip() + if typeBody is not None: + fTitle = '' + field = '' + pos = 0 + for fm in RE_FIELDS.finditer(typeBody): + if fm.group(1) is not None: + # add description to the previous type + if len(field): + fields += parseInlineComments(fm.string[pos:fm.start()], 3) + field = '' + f = fm.group(1).strip() + ext = fm.group(3) or '' + if f in f_params: + field = f_params.pop(f) + '\n\n' + if fm.group(2) is not None: + fTitle = 'Fields:\n' + if len(field) or not o_args.no_auto_fields: + t = fm.group(2).strip() + if RE_BASIC_TYPES.match(t) is not None: + field = '* {0} **{1}** {2}
\n'.format(f, t, ext) + field + else: + field = '* {0} [**{1}**]({2}#{1}) {3}
\n'.format(f, t, extTypes.get(t,''), ext) + field + else: + fTitle = 'Values:\n' + if len(field) or not o_args.no_auto_values: + field = '* **{0}** {1}
\n'.format(f, ext) + field + if len(field): + field += parseText(fm.string[pos:fm.start()], 3) + pos = fm.end() + if fm.group(4) is not None: + # keep '--' for the next round + pos -= 2 + if len(field): + fields += field + if len(field): + fields += parseInlineComments(typeBody[pos:], 3) + # add all other fields defined as @params + if 'force-all-fields' in options or 'force-all-fields' in o_args: + for f in f_params: + fields += '* {}
\n{}\n\n'.format(f, f_params[f]) + if len(fields): + ret = ret.strip() + '\n\n' + fTitle + fields + else: + if title: + ret = '### {}\n\n'.format(title) + l = parseText(parseDoxyComments(doc)) + if len(l): + ret += l + '\n\n' + for p in f_params: + ret += '* `{0}` {1}\n'.format(p, f_params[p]) + + return ret + s_unit + s_category + s_revision + s_note + '```asn1\n' + RE_COMMENTS.sub('', m.group(0).strip()) +'\n```\n\n' + + pos = 0 + ret += '## Data Elements:\n' + for m in RE_TYPE.finditer(content[cpos:]): + ret += repl_type (m, m.string[pos:m.start()]) + pos = m.end() + return ret + + +def parseAsn(outDir, content) : + # iterate modules in the file + pos= 0 + cnt = 0 + for m in RE_MODULE.finditer(content): + ret = '# ASN.1 module {}\n OID: _{}_\n'.format(m.group(1), RE_SPACES.sub(' ', m.group(2))) + ret += parseDoxyComments(content[pos:m.start()]) + '\n' + if m.group(3) is not None: + ret += parseModule(m.group(1), m.group(3)) + ret += '\n\n' + open(outDir + '/' + m.group(1) + '.md', "w",encoding='utf-8').write(ret) + pos = m.end() + cnt += 1 + return cnt + +def main(): + global o_args + ap = argparse.ArgumentParser(description='ASN.1 to markdown converter') + ap.add_argument('--out', '-o', type=str, default='.', help='output directory') + ap.add_argument('--brief-as-title', '-B', default=False, action='store_true', help='Do not treat @brief line as type header') + ap.add_argument('--force-all-fields', '-f', default=False,action='store_true', help='Add all fields in the list even if empty') + ap.add_argument('--no-auto-fields', '-F', default=False,action='store_true', help='Add fields only if @param or @field is defined') + ap.add_argument('--no-auto-values', '-V', default=False,action='store_true', help='Do not add named values or enums') + ap.add_argument('modules', action='store', nargs='+', help='ASN.1 files') + o_args = ap.parse_args() + + if not o_args.modules: + ap.print_help() + exit(1) + + cnt = 0 + for a in o_args.modules: + try: + content = open(a, encoding='latin-1').read() + cnt += parseAsn(o_args.out, content) + except IOError as e: + sys.stderr.write(e[1]+"\n") + print("{} modules porcessed\n".format(cnt)) + +if __name__ == '__main__': + main() -- GitLab From 51e751cee6b196bf2676563a9cf424df24d5084d Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Tue, 17 May 2022 09:54:58 +0000 Subject: [PATCH 26/91] Upload New File --- gitlab-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 gitlab-ci.yml diff --git a/gitlab-ci.yml b/gitlab-ci.yml new file mode 100644 index 0000000..c328dd7 --- /dev/null +++ b/gitlab-ci.yml @@ -0,0 +1,19 @@ +include: + - project: 'forge-tools/asn2md' + file: '/gitlab-ci/base.yml' + +variables: + ASN1_SRC: '*.asn' + +validate: + extends: .validate + only: + changes: + - '*.asn' + + +documentation: + extends: .documentation + only: + changes: + - '*.asn' -- GitLab From 6f9e1ea5e039bf1b263910ab4113ab3afdd835ad Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Tue, 17 May 2022 12:23:55 +0200 Subject: [PATCH 27/91] .gitlab-ci.yml --- gitlab-ci.yml => .gitlab-ci.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename gitlab-ci.yml => .gitlab-ci.yml (100%) diff --git a/gitlab-ci.yml b/.gitlab-ci.yml similarity index 100% rename from gitlab-ci.yml rename to .gitlab-ci.yml -- GitLab From 639fe2a289f3929da27947bd0f099cf3045307da Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Tue, 17 May 2022 10:32:41 +0000 Subject: [PATCH 28/91] Documentation update --- docs/ITS-Container.md | Bin 0 -> 302134 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/ITS-Container.md diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md new file mode 100644 index 0000000000000000000000000000000000000000..4ba3760937437ebb02d37f7a88efde850a5d396d GIT binary patch literal 302134 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�<-7?BXj;tTZcIg~{p#1Xm%%GGA#6Myh~9wb+wU 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 Date: Wed, 8 Jun 2022 08:48:54 +0000 Subject: [PATCH 29/91] Replace ITS-Container.asn --- ITS-Container.asn | 2692 ++++++++++++++++++++++++--------------------- 1 file changed, 1430 insertions(+), 1262 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 53049f9..b500bd7 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,12 +1,13 @@ --- Draft CDD ASN.1 module Release 2. date 08.03.2022 +-- Draft CDD ASN.1 module Release 2. +-- Date: 08.06.2022 -ITS-Container { -itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) version3 (3) -- Note: the final OID is still to be agreed. -} + +ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} DEFINITIONS AUTOMATIC TAGS ::= BEGIN + ------------------------------------------ -- Specification of CDD Data Elements: ------------------------------------------ @@ -31,8 +32,7 @@ AccelerationChange::= ENUMERATED { * This DE represents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. * * The value shall be set to: - * - `1` if the acceleration accuracy is equal to or less than 0,1 m/s2. - * - `n (n > 1 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. * - `102` if the data is unavailable. * @@ -49,10 +49,9 @@ AccelerationChange::= ENUMERATED { * @revision: Description revised in V2.1.1 */ AccelerationConfidence ::= INTEGER { - pointOneMeterPerSecSquared(1), - outOfRange(101), - unavailable(102) -} (0 .. 102) + outOfRange (101), + unavailable (102) +} (0..102) /** * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. @@ -69,7 +68,6 @@ AccelerationConfidence ::= INTEGER { * - 4 - `accEngaged` - ACC is engaged, * - 5 - `cruiseControlEngaged` - cruise control is engaged, * - 6 - `speedLimiterEngaged` - speed limiter is engaged. - * - 7 - reserved for future use * * Otherwise (for example when the corresponding system is not available due to non equipped system * or information is unavailable), the corresponding bit shall be set to _0_. @@ -79,13 +77,13 @@ AccelerationConfidence ::= INTEGER { * @revision: V1.3.1 */ AccelerationControl ::= BIT STRING { - brakePedalEngaged (0), - gasPedalEngaged (1), - emergencyBrakeEngaged (2), + brakePedalEngaged (0), + gasPedalEngaged (1), + emergencyBrakeEngaged (2), collisionWarningEngaged (3), - accEngaged (4), - cruiseControlEngaged (5), - speedLimiterEngaged (6) + accEngaged (4), + cruiseControlEngaged (5), + speedLimiterEngaged (6) } (SIZE(7)) /** @@ -104,9 +102,9 @@ AccelerationControl ::= BIT STRING { * @revision: Created in V2.1.1 */ AccelerationValue ::= INTEGER { - pointOneMeterPerSecSquared (1), - minusPointOneMeterPerSecSquared (-1), - unavailable (161) + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) -- tbd delete unavailable value? } (-160 .. 161) @@ -114,7 +112,7 @@ AccelerationValue ::= INTEGER { * This DE indicates an access technology. * * The value shall be set to: - * - `0`: in case of any access technology class (see clause 7 of TS 103 724). + * - `0`: in case of any access technology class. * - `1`: in case of ITS-G5 access technology class. * - `2`: in case of LTE-V2X access technology class. * - `3`: in case of NR-V2X access technology class. @@ -123,10 +121,10 @@ AccelerationValue ::= INTEGER { * @revision: Created in V2.1.1 */ AccessTechnologyClass ::= ENUMERATED { - any(0), - itsg5Class(1), - ltev2xClass(2), - nrv2xClass(3), + any (0), + itsg5Class (1), + ltev2xClass (2), + nrv2xClass (3), ... } @@ -150,15 +148,15 @@ AccessTechnologyClass ::= ENUMERATED { * @revision: V1.3.1 */ AccidentSubCauseCode ::= INTEGER { - unavailable(0), - multiVehicleAccident(1), - heavyAccident(2), - accidentInvolvingLorry(3), - accidentInvolvingBus(4), - accidentInvolvingHazardousMaterials(5), - accidentOnOppositeLane(6), - unsecuredAccident(7), - assistanceRequested(8) + unavailable (0), + multiVehicleAccident (1), + heavyAccident (2), + accidentInvolvingLorry (3), + accidentInvolvingBus (4), + accidentInvolvingHazardousMaterials (5), + accidentOnOppositeLane (6), + unsecuredAccident (7), + assistanceRequested (8) } (0..255) /** @@ -182,17 +180,17 @@ AccidentSubCauseCode ::= INTEGER { * @revision: V1.3.1 */ AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { - unavailable(0), - heavyFrostOnRoad(1), - fuelOnRoad(2), - mudOnRoad(3), - snowOnRoad(4), - iceOnRoad(5), - blackIceOnRoad(6), - oilOnRoad(7), - looseChippings(8), - instantBlackIce(9), - roadsSalted(10) + unavailable (0), + heavyFrostOnRoad (1), + fuelOnRoad (2), + mudOnRoad (3), + snowOnRoad (4), + iceOnRoad (5), + blackIceOnRoad (6), + oilOnRoad (7), + looseChippings (8), + instantBlackIce (9), + roadsSalted (10) } (0..255) /** @@ -212,13 +210,13 @@ AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { * @revision: V1.3.1 */ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { - unavailable(0), - strongWinds(1), - damagingHail(2), - hurricane(3), - thunderstorm(4), - tornado(5), - blizzard(6) + unavailable (0), + strongWinds (1), + damagingHail (2), + hurricane (3), + thunderstorm (4), + tornado (5), + blizzard (6) } (0..255) /** @@ -235,10 +233,10 @@ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { * @revision: V1.3.1 */ AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { - unavailable(0), - heavyRain(1), - heavySnowfall(2), - softHail(3) + unavailable (0), + heavyRain (1), + heavySnowfall (2), + softHail (3) } (0..255) /** @@ -260,17 +258,33 @@ AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { * @revision: V1.3.1 */ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { - unavailable(0), - fog(1), - smoke(2), - heavySnowfall(3), - heavyRain(4), - heavyHail(5), - lowSunGlare(6), - sandstorms(7), - swarmsOfInsects(8) + unavailable (0), + fog (1), + smoke (2), + heavySnowfall (3), + heavyRain (4), + heavyHail (5), + lowSunGlare (6), + sandstorms (7), + swarmsOfInsects (8) } (0..255) +/** + * This DE represents the air humidity in tens of percent. + * + * The value shall be set to: + * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0.1 percent and greater than (n-1) x 0.1 percent. + * - `1001` indicates that the air humidity is unavailable. + * + * @category: Basic information + * @unit: 0,1 % + * @revision: created in V2.1.1 + */ +AirHumidity ::= INTEGER { + oneHundredPercent (1000), + unavailable (1001) +} (1..1001) + /** * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. * @@ -306,21 +320,21 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { * @revision: V1.3.1 */ AltitudeConfidence ::= ENUMERATED { - alt-000-01 (0), - alt-000-02 (1), - alt-000-05 (2), - alt-000-10 (3), - alt-000-20 (4), - alt-000-50 (5), - alt-001-00 (6), - alt-002-00 (7), - alt-005-00 (8), - alt-010-00 (9), - alt-020-00 (10), - alt-050-00 (11), - alt-100-00 (12), - alt-200-00 (13), - outOfRange (14), + alt-000-01 (0), + alt-000-02 (1), + alt-000-05 (2), + alt-000-10 (3), + alt-000-20 (4), + alt-000-50 (5), + alt-001-00 (6), + alt-002-00 (7), + alt-005-00 (8), + alt-010-00 (9), + alt-020-00 (10), + alt-050-00 (11), + alt-100-00 (12), + alt-200-00 (13), + outOfRange (14), unavailable (15) } @@ -338,29 +352,26 @@ AltitudeConfidence ::= ENUMERATED { * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) */ AltitudeValue ::= INTEGER { - referenceEllipsoidSurface(0), - oneCentimeter(1), - unavailable(800001) + negativeOutOFRange (-100000), + postiveOutOfRange (800000), + unavailable (800001) } (-100000..800001) /** * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. * * The value shall be set to: - * - `1` if the accuracy is equal to or less than 0,1 degrees. - * - `n (n > 1 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. + * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. * - `127` if the accuracy information is not available. * - * @unit 0,1 degrees + * @unit: 0,1 degrees * @category: Kinematics information * @revision: Created in V2.1.1 */ AngleConfidence ::= INTEGER { - zeroPointOneDegree (1), - oneDegree (10), - outOfRange (126), - unavailable (127) + outOfRange (126), + unavailable (127) } (1..127) /** @@ -389,8 +400,8 @@ AngularSpeedConfidence ::= ENUMERATED { degSec-005-00 (4), degSec-010-00 (5), degSec-100-00 (6), - outOfRange (7), - unavailable (8) + outOfRange (7), + unavailable (8) } /** @@ -419,27 +430,90 @@ AngularAccelerationConfidence ::= ENUMERATED { degSecSquared-005-00 (4), degSecSquared-010-00 (5), degSecSquared-100-00 (6), - outOfRange (7), - unavailable (8) + outOfRange (7), + unavailable (8) } +/** + * This DE indicates the number of axels of a passing train. + * + * The following values are specified: + * - `n(n > 2 and n < 1001)` indicates that the train has n x axels. + * - `1001`indicates that the number of axels is out of range. + * - `1002` the information is unavailable. + * + * + * @unit: Number of axels + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +AxlesCount ::= INTEGER{ + outOfRange (1001), + unavailable (1002) +} (2..1002) + +/** + * This DE represent the measured uncompesated atmospheric pressure in units of hPascal (hPa). + * + * The following values are specified: + * - `2999` indicates that the applicable value is less than 299.9 hPa. + * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 0.1 hPa and greater than (n-1) x 0.1 hPa. + * - `12001` indicates that the values is greater than 1200 hPa. + * - `12002` indicates that the information is not available. + * + * @category: Basic information + * @unit: 0.1 hPa + * @revision: Created in V2.1.1 +*/ +BarometricPressure ::= INTEGER{ + outOfRangelower (2999), + outOfRangeUpper (12001), + unavailable (12002) +} (2999..12002) + + +/** + * This DE indicates the cardinal number of bogies of a train. + * +* The value shall be set to: + * - `n (n > 1 and n < 100)` indicates that the train has n x bogie + * - `100`indicates that the number of bogie is out of range. + * - `101` the information is unavailable. + * + * @unit: Number of bogies + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +BogiesCount ::= INTEGER{ + outOfRange (100), + unavailable (101) +} (2..101) + +/** + * The DE represents a cardinal number that counts the size of a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CardinalNumber1B ::= INTEGER(1..255) + /** - * This DE represenst an angle value described in a local Cartesian coordinate system, counted positive in + * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `1` if the angle is equal to or less than 0,1 degrees. - * - `n (n > 1 and n < 3601)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. + * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. * - `36001` if the accuracy information is not available. + * + * The value 3600 shall not be used. * * @unit 0,1 degrees * @category: Kinematics information * @revision: Created in V2.1.1 */ -CartesianAngleValue ::= INTEGER { -- tbd define the value 0 vs 3600 - zeroPointOneDegree (1), - oneDegree (10), - unavailable (3601) +CartesianAngleValue ::= INTEGER { + valueNotUsed (3600), + unavailable (3601) } (0..3601) /** @@ -457,9 +531,9 @@ CartesianAngleValue ::= INTEGER { -- tbd define the value 0 vs 3600 * @revision: Created in V2.1.1 */ CartesianAngularSpeedValue ::= INTEGER { - negativeOutofRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) + negativeOutofRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) } (-32766..32767) /** @@ -478,10 +552,9 @@ CartesianAngularSpeedValue ::= INTEGER { * @revision: Created in V2.1.1 */ CartesianAngularAccelerationValue ::= INTEGER { - negativeOutofRange (-32766), - noSpeed (0), - positiveOutOfRange (32766), - unavailable (32767) + negativeOutofRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) } (-32766..32767) /** @@ -532,69 +605,77 @@ CartesianAngularAccelerationValue ::= INTEGER { * @revision: V1.3.1 */ CauseCodeType ::= INTEGER { - reserved (0), - trafficCondition (1), - accident (2), - roadworks (3), - impassability (5), - adverseWeatherCondition-Adhesion (6), - aquaplannning (7), - hazardousLocation-SurfaceCondition (9), - hazardousLocation-ObstacleOnTheRoad (10), - hazardousLocation-AnimalOnTheRoad (11), - humanPresenceOnTheRoad (12), - wrongWayDriving (14), - rescueAndRecoveryWorkInProgress (15), + trafficCondition (1), + accident (2), + roadworks (3), + + impassability (5), + adverseWeatherCondition-Adhesion (6), + aquaplannning (7), + + hazardousLocation-SurfaceCondition (9), + hazardousLocation-ObstacleOnTheRoad (10), + hazardousLocation-AnimalOnTheRoad (11), + humanPresenceOnTheRoad (12), + + wrongWayDriving (14), + rescueAndRecoveryWorkInProgress (15), + adverseWeatherCondition-ExtremeWeatherCondition (17), - adverseWeatherCondition-Visibility (18), - adverseWeatherCondition-Precipitation (19), - violence (20), - slowVehicle (26), - dangerousEndOfQueue (27), - vehicleBreakdown (91), - postCrash (92), - humanProblem (93), - stationaryVehicle (94), - emergencyVehicleApproaching (95), - hazardousLocation-DangerousCurve (96), - collisionRisk (97), - signalViolation (98), - dangerousSituation (99), - railwayLevelCrossing (100) + adverseWeatherCondition-Visibility (18), + adverseWeatherCondition-Precipitation (19), + violence (20), + + slowVehicle (26), + dangerousEndOfQueue (27), + + vehicleBreakdown (91), + postCrash (92), + humanProblem (93), + stationaryVehicle (94), + emergencyVehicleApproaching (95), + hazardousLocation-DangerousCurve (96), + collisionRisk (97), + signalViolation (98), + dangerousSituation (99), + railwayLevelCrossing (100) } (0..255) /** - * This DF represents the value of a cartesian coordinate with a range of -30,94 meters to +10 meters. + * This DF represents the value of a cartesian coordinate with a range of -30,93 meters to +10,00 meters. * * @unit 0,01 m * @category: Basic information * @revision: Created in V2.1.1 */ CartesianCoordinateSmall::= INTEGER { - negativeZeroPointZeroOneMeter (-1), - negativeOneMeter (-100), - negativeOutOfRange (-3094), - positiveOneMeter (100), - positiveOutOfRange (1001) -} (-3094..1001) + negativeOutOfRange (-3094), + positiveOutOfRange (1001) +} (-3094..1001) -- this is 12 bit, tbd question: increase the range by "one bit" to make this more practical for common usage? /** - * This DF represents the value of a cartesian coordinate with a range of +-327,68 meters. + * This DF represents the value of a cartesian coordinate with a range of -327,67 to + 327,66 meters. * * @unit 0,01 m * @category: Basic information * @revision: Created in V2.1.1 */ -CartesianCoordinate::= INTEGER (-32768..32767) +CartesianCoordinate::= INTEGER{ + negativeOutOfRange (-32768), + positiveOutOfRange (32767) +} (-32768..32767) /** - * This DF represents the value of a cartesian coordinate with a range of +-1 327,68 meters. + * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. * * @unit 0,01 m * @category: Basic information * @revision: Created in V2.1.1 */ -CartesianCoordinateExtended::= INTEGER (-132768..132767) +CartesianCoordinateLarge::= INTEGER{ + negativeOutOfRange (-131072), + positiveOutOfRange (131071) +} (-131072..131071) /** * This DE represents the ID of a CEN DSRC tolling zone. @@ -605,16 +686,16 @@ CartesianCoordinateExtended::= INTEGER (-132768..132767) CenDsrcTollingZoneID::= ProtectedZoneID /** - * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 . + * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 (for the cluster leader) . * - * The value shall be set to `0` if the information is unavailable + * The value shall be set to `0` if the information is unavailable. * * @category: Cluster information * @revision: Created in V2.1.1 */ ClusterCardinalitySize::= INTEGER { - unavailable(0), - onlyLeader(1) + unavailable (0), + onlyLeader (1) } (0..255) /** @@ -698,19 +779,36 @@ ClusterLeaveReason ::= ENUMERATED { * @revision: V1.3.1 */ CollisionRiskSubCauseCode ::= INTEGER { - unavailable(0), - longitudinalCollisionRisk(1), - crossingCollisionRisk(2), - lateralCollisionRisk(3), - vulnerableRoadUser(4) + unavailable (0), + longitudinalCollisionRisk (1), + crossingCollisionRisk (2), + lateralCollisionRisk (3), + vulnerableRoadUser (4) }(0..255) +/** + * This DE represents a confidence level in percentage. + * + * The value shall be set to: + * + * - `0` : in case the confidence value is unknown but the reported value is valid. + * - `n (n > 0 and n < 101)` : for the confidence value in %. + * - `101` : in case the confidence value is not available. + * + * @unit Percent + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +ConfidenceLevel ::= INTEGER { + unknown (0), + unavailable (101) +} (0..101) + /** * This DE represents the absolute accuracy of measurement to a confidence level of 95%. * * The value shall be set to: - * - `1` if the accuracy is equal to or less than 0,01 meter. - * - `n` (`n > 1` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. + * - `n` (`n > 0` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. * - `4094` if the accuracy information is greater than 40,93 meter. * - `4095` if the accuracy information is not available. * @@ -719,9 +817,8 @@ CollisionRiskSubCauseCode ::= INTEGER { * @revision: Created in V2.1.1 */ CoordinateConfidence ::= INTEGER { - zeroPointZeroOneMeter (1), - outOfRange (4094), - unavailable (4095) + outOfRange (4094), + unavailable (4095) } (0..4095) /** @@ -741,7 +838,6 @@ CoordinateConfidence ::= INTEGER { CorrelationRowValue ::= INTEGER { full-negative-correlation (-100), no-correlation (0), - point-one (10), full-positive-correlation (100) } (-100..100) @@ -757,9 +853,9 @@ CorrelationRowValue ::= INTEGER { * @revision: V1.3.1 */ CurvatureCalculationMode ::= ENUMERATED { - yawRateUsed(0), - yawRateNotUsed(1), - unavailable(2), + yawRateUsed (0), + yawRateNotUsed (1), + unavailable (2), ... } @@ -791,13 +887,13 @@ CurvatureCalculationMode ::= ENUMERATED { */ CurvatureConfidence ::= ENUMERATED { onePerMeter-0-00002 (0), - onePerMeter-0-0001 (1), - onePerMeter-0-0005 (2), - onePerMeter-0-002 (3), - onePerMeter-0-01 (4), - onePerMeter-0-1 (5), - outOfRange (6), - unavailable (7) + onePerMeter-0-0001 (1), + onePerMeter-0-0005 (2), + onePerMeter-0-002 (3), + onePerMeter-0-01 (4), + onePerMeter-0-1 (5), + outOfRange (6), + unavailable (7) } /** @@ -826,9 +922,9 @@ CurvatureConfidence ::= ENUMERATED { */ CurvatureValue ::= INTEGER { outOfRangeNegative (-1023), - straight(0), + straight (0), outOfRangePositive (1022), - unavailable(1023) + unavailable (1023) } (-1023..1023) /** @@ -846,11 +942,11 @@ CurvatureValue ::= INTEGER { * @revision: V1.3.1 */ DangerousEndOfQueueSubCauseCode ::= INTEGER { - unavailable(0), - suddenEndOfQueue(1), - queueOverHill(2), - queueAroundBend(3), - queueInTunnel(4) + unavailable (0), + suddenEndOfQueue (1), + queueOverHill (2), + queueAroundBend (3), + queueInTunnel (4) } (0..255) /** @@ -863,26 +959,26 @@ DangerousEndOfQueueSubCauseCode ::= INTEGER { * @revision: V1.3.1 */ DangerousGoodsBasic::= ENUMERATED { - explosives1(0), - explosives2(1), - explosives3(2), - explosives4(3), - explosives5(4), - explosives6(5), - flammableGases(6), - nonFlammableGases(7), - toxicGases(8), - flammableLiquids(9), - flammableSolids(10), - substancesLiableToSpontaneousCombustion(11), - substancesEmittingFlammableGasesUponContactWithWater(12), - oxidizingSubstances(13), - organicPeroxides(14), - toxicSubstances(15), - infectiousSubstances(16), - radioactiveMaterial(17), - corrosiveSubstances(18), - miscellaneousDangerousSubstances(19) + explosives1 (0), + explosives2 (1), + explosives3 (2), + explosives4 (3), + explosives5 (4), + explosives6 (5), + flammableGases (6), + nonFlammableGases (7), + toxicGases (8), + flammableLiquids (9), + flammableSolids (10), + substancesLiableToSpontaneousCombustion (11), + substancesEmittingFlammableGasesUponContactWithWater (12), + oxidizingSubstances (13), + organicPeroxides (14), + toxicSubstances (15), + infectiousSubstances (16), + radioactiveMaterial (17), + corrosiveSubstances (18), + miscellaneousDangerousSubstances (19) } /** @@ -903,14 +999,14 @@ DangerousGoodsBasic::= ENUMERATED { * @revision: V1.3.1 */ DangerousSituationSubCauseCode ::= INTEGER { - unavailable(0), - emergencyElectronicBrakeEngaged(1), - preCrashSystemEngaged(2), - espEngaged(3), - absEngaged(4), - ebEngaged(5), - brakeWarningEngaged(6), - collisionRiskWarningEngaged(7) + unavailable (0), + emergencyElectronicBrakeEngaged (1), + preCrashSystemEngaged (2), + espEngaged (3), + absEngaged (4), + ebEngaged (5), + brakeWarningEngaged (6), + collisionRiskWarningEngaged (7) } (0..255) /** @@ -930,9 +1026,9 @@ DangerousSituationSubCauseCode ::= INTEGER { * @revision: editorial update in V2.1.1 */ DeltaAltitude ::= INTEGER { - oneCentimeterUp (1), - oneCentimeterDown (-1), - unavailable (12800) + negativeOutOfRange (-12700), + positiveOutOfRange (12799), + unavailable (12800) } (-12700..12800) /** @@ -948,13 +1044,31 @@ DeltaAltitude ::= INTEGER { * @unit: 0.1 microdegree * @category: GeoReference information * @revision: editorial update in V2.1.1 - */ + */ DeltaLatitude ::= INTEGER { - oneMicrodegreeNorth (10), - oneMicrodegreeSouth (-10) , unavailable (131072) } (-131071..131072) + +/** + * This DE represents an offset latitude with regards to a defined latitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. + * - `0` for no latitudinal offset. + * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the north from the reference position. + * - `32767` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLatitudeSmall::= INTEGER { + unavailable (32767) +} (-32766..32767) + + /** * This DE represents an offset longitude with regards to a defined longitude value. * It may be used to describe a geographical point with regards to a specific reference geographical position. @@ -970,11 +1084,27 @@ DeltaLatitude ::= INTEGER { * @revision: editorial update in V2.1.1 */ DeltaLongitude ::= INTEGER { - oneMicrodegreeEast (10), - oneMicrodegreeWest (-10), unavailable (131072) } (-131071..131072) +/** + * This DE represents an offset longitude with regards to a defined longitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. + * - `0` for no longitudinal offset. + * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the east from the reference position. + * - `32767` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLongitudeSmall::= INTEGER { + unavailable (32767) +} (-32766..32767) + /** * This DE represents a difference in time with respect to a reference time. * @@ -982,9 +1112,7 @@ DeltaLongitude ::= INTEGER { * @category: Basic information * @revision: Created in V2.1.1 */ -DeltaTimeHundredthOfSecond::= INTEGER { - tenMilliSeconds(1) -} (1..65535, ...) +DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) /** * This DE represents a difference in time with respect to a reference time. @@ -995,10 +1123,7 @@ DeltaTimeHundredthOfSecond::= INTEGER { * @category: Basic information * @revision: Created in V2.1.1 from the DE TransmissionInterval */ -DeltaTimeMilliSecondPos ::= INTEGER { - oneMilliSecond(1), - tenSeconds(10000) -} (1..10000) +DeltaTimeMilliSecondPos ::= INTEGER (1..10000) /** * This DE represents a difference in time with respect to a reference time. @@ -1007,9 +1132,7 @@ DeltaTimeMilliSecondPos ::= INTEGER { * @category: Basic information * @revision: Created in V2.1.1 */ -DeltaTimeMilliSecondPosNeg ::= INTEGER { - oneMilliSecond (1) -} (-1500..1500) +DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) /** * This DE represents a difference in time with respect to a reference time. @@ -1030,23 +1153,18 @@ DeltaTimeQuarterSecond::= INTEGER (1..255) * @revision: Created in V2.1.1 */ DeltaTimeTenthOfSecond::= INTEGER { - zero(0), - hundredMs(1), - twoHundredMs(2), unavailable (127) -} (0..127) -- tbd which range? +} (0..127) /** * This DE represents a difference in time with respect to a reference time. * * @unit: 1 s * @category: Basic information - * @revision: Created in V2.1.1 + * @revision: Created in V2.1.1 from ValidityDuration */ -DeltaTimeSecond ::= INTEGER { -- tbd - timeOfDetection(0), - oneSecondAfterDetection(1) -} (0..86400) +DeltaTimeSecond ::= INTEGER (0..86400) + /** * This DE indicates a direction with respect to a defined reference direction. @@ -1062,10 +1180,10 @@ DeltaTimeSecond ::= INTEGER { -- tbd * @revision: Created in V2.1.1 */ Direction::= INTEGER{ - sameDirection(0), - oppositeDirection(1), - bothDirections(2), - unavailable(3) + sameDirection (0), + oppositeDirection (1), + bothDirections (2), + unavailable (3) } (0..3) /** @@ -1080,9 +1198,10 @@ Direction::= INTEGER{ * @revision: editorial update in V2.1.1 */ DriveDirection ::= ENUMERATED { - forward (0), - backward (1), - unavailable (2)} + forward (0), + backward (1), + unavailable (2) +} /** * This DE indicates whether a driving lane is open to traffic. @@ -1112,15 +1231,19 @@ DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) EmbarkationStatus ::= BOOLEAN /** - * This DE indicates the right of priority requested by an operating emergency vehicle. + * This DE indicates the right of priority requested or assumed by an operating emergency vehicle. * The right-of-priority bit shall be set to `1` if the corresponding right is requested. * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way. + * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. + * * @category: Traffic information - * @revision: V1.3.1 + * @revision: description revised in V2.1.1 */ -EmergencyPriority ::= BIT STRING {--tbd values - requestForRightOfWay(0), - requestForFreeCrossingAtATrafficLight(1) +EmergencyPriority ::= BIT STRING { + requestForRightOfWay (0), + requestForFreeCrossingAtATrafficLight (1) } (SIZE(2)) /** @@ -1132,32 +1255,42 @@ EmergencyPriority ::= BIT STRING {--tbd values * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, * - 2 -`prioritizedVehicleApproaching` - in case a prioritized vehicle (e.g. bus) is approaching, * - 3-255 - reserved for future usage. + * * @category: Traffic information * @revision: V1.3.1 */ EmergencyVehicleApproachingSubCauseCode ::= INTEGER { - unavailable(0), - emergencyVehicleApproaching(1), - prioritizedVehicleApproaching(2) + unavailable (0), + emergencyVehicleApproaching (1), + prioritizedVehicleApproaching (2) } (0..255) /** * This DE indicated the type of energy being used and stored in vehicle. - * - If a storage type is used by the vehicle, the corresponding bit shall be set to `1`. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle. + * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle. + * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle. + * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle. + * - 4 - `diesel` - when diesel is being used and stored in vehicle. + * - 5 - `gasoline` - when gasoline is being used and stored in vehicle. + * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. + * * - Otherwise, the corresponding bit shall be set to `0`. * * @category: Vehicle information - * @revision: V1.3.1 + * @revision: editorial revision in V2.1.1 */ -EnergyStorageType ::= BIT STRING {-- tbd values - hydrogenStorage(0), - electricEnergyStorage(1), - liquidPropaneGas(2), - compressedNaturalGas(3), - diesel(4), - gasoline(5), - ammonia(6)} -(SIZE(7)) +EnergyStorageType ::= BIT STRING { + hydrogenStorage (0), + electricEnergyStorage (1), + liquidPropaneGas (2), + compressedNaturalGas (3), + diesel (4), + gasoline (5), + ammonia (6) +}(SIZE(7)) /** * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. @@ -1197,8 +1330,18 @@ EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} /** * This DE describes the status of the exterior light switches of a vehicle. - * - * The value of each bit indicates the state of the switch, which commands the corresponding light. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on. + * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on. + * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on. + * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on. + * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on. + * - 5 - `reverseLightOn` - when the reverse light switch is on. + * - 6 - `fogLightOn` - when the tail fog light switch is on. + * - 7 - `parkingLightsOn` - when the parking light switch is on. + * + * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, * either manually by the driver or automatically by a vehicle system. The bit value does not indicate * if the corresponding lamps are alight or not. @@ -1206,17 +1349,15 @@ EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} * If a vehicle is not equipped with a certain light or if the light switch status information is not available, * the corresponding bit shall be set to `0`. * - * The `fogLightOn` only indicates the status of the tail fog lamp switch. - * * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not * alternate with the blinking interval. * * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. * * @category Vehicle information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ -ExteriorLights ::= BIT STRING { -- tbd values +ExteriorLights ::= BIT STRING { lowBeamHeadlightsOn (0), highBeamHeadlightsOn (1), leftTurnSignalOn (2), @@ -1227,24 +1368,6 @@ ExteriorLights ::= BIT STRING { -- tbd values parkingLightsOn (7) } (SIZE(8)) -/** - * This DE represents the confidence of the information indicating that an area is not occupied by a traffic participant or obstacle. - * - * The value shall be set to: - * - `0` if the free space confidence is unknown for the described area. - * - `n` (`n > 1` and `n < 100`) for confidence values of n%. - * - `100` to indicate a 100% certainty. - * - `101` if the confidence could not be computed and does not apply. - * - * @category Sensing Information - * @revision: Created in V2.1.1 -*/ -FreeSpaceConfidence ::= INTEGER { - unknown (0), - oneHundredPercent (100), - unavailable (101) -} (0..101) - /** * This DE represents a timestamp based on TimestampIts modulo 65 536. * This means that generationDeltaTime = TimestampIts mod 65 536. @@ -1264,12 +1387,12 @@ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. * * @category: Traffic information - * @revision: Editorial update in V2.1.1 + * @revision: Description revised in V2.1.1 */ HardShoulderStatus ::= ENUMERATED { - availableForStopping(0), - closed(1), - availableForDriving(2)} + availableForStopping (0), + closed (1), + availableForDriving (2)} /** * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. @@ -1286,11 +1409,11 @@ HardShoulderStatus ::= ENUMERATED { * @revision: V1.3.1 */ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { - unavailable(0), - wildAnimals(1), - herdOfAnimals(2), - smallAnimals(3), - largeAnimals(4) + unavailable (0), + wildAnimals (1), + herdOfAnimals (2), + smallAnimals (3), + largeAnimals (4) } (0..255) /** @@ -1312,12 +1435,12 @@ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { * @revision: V1.3.1 */ HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { - unavailable(0), - dangerousLeftTurnCurve(1), - dangerousRightTurnCurve(2), - multipleCurvesStartingWithUnknownTurningDirection(3), - multipleCurvesStartingWithLeftTurn(4), - multipleCurvesStartingWithRightTurn(5) + unavailable (0), + dangerousLeftTurnCurve (1), + dangerousRightTurnCurve (2), + multipleCurvesStartingWithUnknownTurningDirection (3), + multipleCurvesStartingWithLeftTurn (4), + multipleCurvesStartingWithRightTurn (5) } (0..255) /** @@ -1338,14 +1461,14 @@ HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { * @revision: V1.3.1 */ HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { - unavailable(0), - shedLoad(1), - partsOfVehicles(2), - partsOfTyres(3), - bigObjects(4), - fallenTrees(5), - hubCaps(6), - waitingVehicles(7) + unavailable (0), + shedLoad (1), + partsOfVehicles (2), + partsOfTyres (3), + bigObjects (4), + fallenTrees (5), + hubCaps (6), + waitingVehicles (7) } (0..255) /** @@ -1369,17 +1492,17 @@ The value shall be set to: * @revision: V1.3.1 */ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { - unavailable(0), - rockfalls(1), - earthquakeDamage(2), - sewerCollapse(3), - subsidence(4), - snowDrifts(5), - stormDamage(6), - burstPipe(7), - volcanoEruption(8), - fallingIce(9), - fire(10) + unavailable (0), + rockfalls (1), + earthquakeDamage (2), + sewerCollapse (3), + subsidence (4), + snowDrifts (5), + stormDamage (6), + burstPipe (7), + volcanoEruption (8), + fallingIce (9), + fire (10) } (0..255) /** @@ -1407,32 +1530,20 @@ The value shall be set to: * @category: GeoReference information * @revision: Description revised in V2.1.1 */ -HeadingConfidence ::= INTEGER { - equalOrWithinZeroPointOneDegree (1), - equalOrWithinOneDegree (10), - outOfRange(126), - unavailable(127) -} (1..127) +HeadingConfidence ::= Wgs84AngleConfidence /** HeadingValue * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. - * When the information is not available, the DE shall be set to 3 601. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. * * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleValue instead. * * Unit: 0,1 degree * Categories: GeoReference information - * @revision: Description revised in V2.1.1 + * @revision: Description revised in V2.1.1 (usage of value 3600 specified) */ -HeadingValue ::= INTEGER { --tbd define the use of value 360. - wgs84North(0), - wgs84East(900), - wgs84South(1800), - wgs84West(2700), - unavailable(3601) -} (0..3601) - +HeadingValue ::= Wgs84AngleValue /** * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle @@ -1448,7 +1559,6 @@ HeadingValue ::= INTEGER { --tbd define the use of value 360. * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) */ HeightLonCarr ::= INTEGER { - oneCentimeter(1), unavailable(100) } (1..100) @@ -1466,10 +1576,10 @@ HeightLonCarr ::= INTEGER { * @revision: V1.3.1 */ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { - unavailable(0), - childrenOnRoadway(1), - cyclistOnRoadway(2), - motorcyclistOnRoadway(3) + unavailable (0), + childrenOnRoadway (1), + cyclistOnRoadway (2), + motorcyclistOnRoadway (3) } (0..255) /** @@ -1485,9 +1595,9 @@ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { * @revision: V1.3.1 */ HumanProblemSubCauseCode ::= INTEGER { - unavailable(0), - glycemiaProblem(1), - heartProblem(2) + unavailable (0), + glycemiaProblem (1), + heartProblem (2) } (0..255) /** @@ -1496,25 +1606,36 @@ HumanProblemSubCauseCode ::= INTEGER { * @category: Basic information * @revision: Created in V2.1.1 */ -Identifier ::= INTEGER (0..255) +Identifier1B ::= INTEGER (0..255) + +/** + * This DE is a general identifier. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +Identifier2B ::= INTEGER (0..65535) /** * This DE represents the quality level of provided information. * + * The value shall be set to: + * - 0 - if the information is unavailable. + * - 1 - if the quality level is lowest + * - `n (n > 1 and n < 7)` if the quality level is n. + * - 7 - if the quality level is highest * @note: Definition of quality level is out of scope of the present document. * * @category: Basic information - * @revision: V1.3.1 + * @revision: Editorial update in V2.1.1 */ -InformationQuality ::= INTEGER { - unavailable(0), - lowest(1), - highest(7) -} (0..7) +InformationQuality ::= INTEGER (0..7) /** * This DE defines the type of an interference management zone, so that an ITS-S can * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * It is an extension of the type @ref ProtectedZoneType. + * * The value shall be set to: * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] @@ -1528,23 +1649,15 @@ InformationQuality ::= INTEGER { * @revision: Created in V2.1.1 */ InterferenceManagementZoneType ::= ENUMERATED { - permanentCenDsrcTolling(0), - temporaryCenDsrcTolling(1), - unavailable(2), - urbanRail(3), - satelliteStation(4), - fixedLinks(5), + permanentCenDsrcTolling (0), + temporaryCenDsrcTolling (1), + unavailable (2), + urbanRail (3), + satelliteStation (4), + fixedLinks (5), ... } -/** - * This DE represents the identifier of an intersection - * - * @category: Road topology information - * @revision: Created in V2.1.1 - */ -IntersectionID ::= INTEGER (0..65535) - /** * This DE represents the vehicle type according to ISO 3833 [4]. * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. @@ -1598,75 +1711,78 @@ IntersectionID ::= INTEGER (0..65535) */ Iso3833VehicleType ::= INTEGER { - passengerCar (0), - saloon (1), + passengerCar (0), + saloon (1), convertibleSaloon (2), pullmanSaloon (3), - stationWagon (4), + stationWagon (4), truckStationWagon (5), - coupe (6), - convertible (7), + coupe (6), + convertible (7), multipurposePassengerCar (8), forwardControlPassengerCar (9), specialPassengerCar (10), bus (11), - minibus (12), + minibus (12), urbanBus (13), - interurbanCoach (14), + interurbanCoach (14), longDistanceCoach (15), - articulatedBus (16), + articulatedBus (16), trolleyBus (17), specialBus (18), commercialVehicle (19), specialCommercialVehicle (20), - specialVehicle (21), - trailingTowingVehicle (22), + specialVehicle (21), + trailingTowingVehicle (22), semiTrailerTowingVehicle (23), - trailer (24), + trailer (24), busTrailer (25), - generalPurposeTrailer (26), - caravan (27), - specialTrailer (28), + generalPurposeTrailer (26), + caravan (27), + specialTrailer (28), semiTrailer (29), - busSemiTrailer (30), + busSemiTrailer (30), generalPurposeSemiTrailer (31), specialSemiTrailer (32), roadTrain (33), passengerRoadTrain (34), - articulatedRoadTrain (35), + articulatedRoadTrain (35), doubleRoadTrain (36), compositeRoadTrain (37), specialRoadTrain (38), - moped (39), + moped (39), motorCycle (40) } (0..255) /** - * This DE indicates the transversal position information on the road in resolution of lanes, counted from - * the inside border of the road for a given traffic direction. For example, the innermostDrivingLane corresponds - * to the left most lane of the carriageway in a country with right-land traffic, and to the right most lane of the - * carriageway in a left-land traffic (e.g. in UK). The value -1 denotes that the referenced position is outside the road. - * - * @category: Road topology information - * @revision: V1.3.1 -*/ -LanePosition ::= INTEGER { - offTheRoad(-1), - innerHardShoulder(0), - innermostDrivingLane(1), - secondLaneFromInside(2), - outerHardShoulder(14) -} (-1..14) + * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. + * + * For right-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road. + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane. + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction. + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). + * + * For left-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road. + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane. + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction. + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). -/** - * This DE represents the identifier of a lane. + * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. * - * @note: the context of the identification (e.g. the intersection geometry of a MAPEM) is defined outside the DE - * + * If the carriageway allows only traffic in one direction (e.g. in case of dual or multiple carriageway roads), the position is counted from the physical border of the carriageway. + * If the carriageway allows traffic in both directions and there is no physical delimitation between traffic directions (e.g. on a single carrriageway road), + * the position is counted from the legal (i.e. optical) separation between traffic directions (horizontal marking). + * @category: Road topology information - * @revision: Created in V2.1.1 + * @revision: Description revised in V2.1.1 */ -LaneId ::= INTEGER (0..255) +LanePosition ::= INTEGER { + offTheRoad (-1), + innerHardShoulder (0), + outerHardShoulder (14) +} (-1..14) /** * This DE represents the type of a lane. @@ -1680,16 +1796,16 @@ LaneId ::= INTEGER (0..255) * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic. * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. - * - 8 - `bus` - Lane dedicated to movement of buses providing public transportation. + * - 8 - `bus` - Lane dedicated to movement of buses providing public transport. * - 9 - `taxi` - Lane dedicated to movement of taxis. * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane. * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths. - * - 13 - `bikeLane` - Lane dedicated to exclusive or preferred use by bicycles. - * - 14 - `median` - Lane not dedicated to movement of vehicles but representing medians and channelization such as the central median + * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles. + * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median separating the two directional carriageways of the highway. * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings. - * - 16 - `trackedVehicle` - Lane dedicated to movement of trains and trolleys. + * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys. * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes. * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between @@ -1701,9 +1817,9 @@ LaneId ::= INTEGER (0..255) * @revision: V2.1.1 */ LaneType::= INTEGER{ - traffic (0), - through (1), - reversible (2), + traffic (0), + through (1), + reversible (2), acceleration (3), deceleration (4), leftHandTurning (5), @@ -1711,10 +1827,10 @@ LaneType::= INTEGER{ dedicatedVehicle (7), bus (8), taxi (9), - hov (10), + hov (10), hot (11), pedestrian (12), - bikeLane (13), + cycleLane (13), median (14), striping (15), trackedVehicle (16), @@ -1725,14 +1841,23 @@ LaneType::= INTEGER{ unknown (31) }(0..31) +/** + * This DE represents the width of a lane measured at a defined position. + * + * @unit: 0.01 meter + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +LaneWidth::= INTEGER (0..1023) + /** * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or * in south hemisphere. * * The value shall be set to: - * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitude in south of the Equator. + * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitudes south of the Equator. * - `0` is used for the latitude of the equator. - * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitude in north of the Equator. + * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitudes north of the Equator. * - `900 000 001` when the information is unavailable. * * @unit: 0.1 microdegree @@ -1740,8 +1865,6 @@ LaneType::= INTEGER{ * @revision: Editorial update in V2.1.1 */ Latitude ::= INTEGER { - oneMicrodegreeNorth (10), - oneMicrodegreeSouth (-10), unavailable(900000001) } (-900000000..900000001) @@ -1782,7 +1905,7 @@ LateralAccelerationValue ::= AccelerationValue */ LightBarSirenInUse ::= BIT STRING { lightBarActivated (0), - sirenActivated (1) + sirenActivated (1) } (SIZE(2)) /** @@ -1802,9 +1925,8 @@ LightBarSirenInUse ::= BIT STRING { * @revision: Description revised in V2.1.1 */ Longitude ::= INTEGER { - oneMicrodegreeEast (10), - oneMicrodegreeWest (-10), - unavailable(1800000001) + valueNotUsed (-1800000000), + unavailable (1800000001) } (-1800000000..1800000001) /** @@ -1829,22 +1951,19 @@ LongitudinalAccelerationValue::= AccelerationValue /** * This DE represents the longitudinal offset of the map-matched position of a particular object along the - * matched lane, beginning from the lane's starting point as defined in CEN ISO/TS 19091. + * matched lane, beginning from the lane's starting point. * * @unit 0,1 m * @category: Road topology information * @revision: Created in V2.1.1 */ -LongitudinalLanePositionValue ::= INTEGER { - zeroPointOneMeter (1) -} (0..32767) +LongitudinalLanePositionValue ::= INTEGER (0..32767) /** * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. * * The value shall be set to: - * - `1` if the accuracy is equal to or less than 0,01 m - * - `n (n > 1 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. + * - `n (n > 0 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. * - `102` if the data is unavailable. * @@ -1853,10 +1972,8 @@ LongitudinalLanePositionValue ::= INTEGER { * @revision: Created in V2.1.1 */ LongitudinalLanePositionConfidence ::= INTEGER { - zeroPointZeroOneMeter (1), - oneMeter (100), - outOfRange (101), - unavailable (102) + outOfRange (101), + unavailable (102) } (0..102) /** @@ -1886,20 +2003,23 @@ LongitudinalLanePositionConfidence ::= INTEGER { * @revision: Created in V2.1.1 from @ref ItsPduHeader. */ MessageId::= INTEGER { - denm(1), - cam(2), - poi(3), - spatem(4), - mapem(5), - ivim(6), - ev-rsr(7), - tistpgtransaction(8), - srem(9), - ssem(10), - evcsn(11), - saem(12), - rtcmem(13), - vam(14) + denm (1), + cam (2), + poi (3), + spatem (4), + mapem (5), + ivim (6), + ev-rsr (7), + tistpgtransaction (8), + srem (9), + ssem (10), + evcsn (11), + saem (12), + rtcmem (13), + cpm (14), + imzm (15), + vam (16), + dsm (17) } (0..255) /** @@ -1915,35 +2035,14 @@ MessageId::= INTEGER { * @revision: Editorial update in V2.1.1 */ NumberOfOccupants ::= INTEGER { - oneOccupant (1), - unavailable(127) + outOfRange (126), + unavailable (127) } (0 .. 127) -/** - * This DE represents the confidence value for the type of a detected object. - * - * The value shall be set to: - * - * - `0` : in case the confidence value is unknown but the reported classification is still valid. - * - `n (n > 1 and n < 101)` : for the confidence value in %. - * - `101` : in case the confidence value computation is not available for the object. Indicates that the class assignment is invalid. - * - * @unit Percent - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectClassConfidence ::= INTEGER { - unknown (0), - onePercent (1), - oneHundredPercent (100), - unavailable (101) -} (0..101) - /** * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. * - * The value shall be set to: - * + * The value shall be set to: * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. * - `n (n > 0 and n < 15)` : for the applicable confidence value. * -`15` : if there is full confidence in the detected ObjectDescriptor. @@ -1964,17 +2063,13 @@ ObjectConfidence ::= INTEGER { * @category: Sensing information * @revision: Created in V2.1.1 */ -ObjectDimensionValue ::= INTEGER { - zeroPointOneMeter (1), - oneMeter (10) -} (0..1023) +ObjectDimensionValue ::= INTEGER (0..1023) /** * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. * * The value shall be set to: - * - `1` if the dimension accuracy is equal to or less than 0,01 m. - * - `n (n > 1 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . + * - `n (n > 0 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. * - `102` if the data is unavailable. * @@ -1982,9 +2077,7 @@ ObjectDimensionValue ::= INTEGER { * @category: Sensing information * @revision: Created in V2.1.1 */ -ObjectDimensionConfidence ::= INTEGER { - zeroPointZeroOneMeter (1), - oneMeter (100), +ObjectDimensionConfidence ::= INTEGER { outOfRange (101), unavailable (102) } (0..102) @@ -1995,10 +2088,10 @@ ObjectDimensionConfidence ::= INTEGER { * position. * * The value shall be set to: - * - `0` - dynamic - indicates that the object is moving. - * - `1` - hasBeenDynamic - indicates whether an object has been dynamic before, e.g., a car stopping at a traffic light. - * - `2` - static - indicates that an object has been detected to be not moving throughout any previous observation. - * - `3` - unavailable - indicates that the information is unavailable. + * - `0` - dynamic - if the object is moving. + * - `1` - hasBeenDynamic - if the object has been dynamic before, e.g., a car stopping at a traffic light. + * - `2` - static - if the object has been detected to be not moving throughout any previous observation. + * - `3` - unavailable - if the information is unavailable. * * @category: Sensing information * @revision: Created in V2.1.1 @@ -2011,18 +2104,18 @@ ObjectDynamicStatus ::= INTEGER { } (0..3) /** - * This DE indicate the approximate position of the reference point of measurement for the object dimensions. - * The point is included in the plane perpendicular to the direction of the object's @ref yawAngleValue. + * This DE indicates the approximate position of the reference point of measurement for the object dimensions using a 9 cell grid. + * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue * - * @category: Sensing information + * @category: Basic information * @revision: Created in V2.1.1 */ ObjectRefPoint ::= INTEGER { - mid (0), - bottomLeft (1), - midLeft (2), - topLeft (3), - bottomMid (4), + bottomLeft (0), + midLeft (1), + topLeft (2), + bottomMid (3), + midMid (4), topMid (5), bottomRight (6), midRight (7), @@ -2030,27 +2123,29 @@ ObjectRefPoint ::= INTEGER { } (0..8) /** - * This DE indicates an object's section. - * The object is assumed to have a length that is greater than its width, with the sides of the object being divided into: - * front, rear, sideLeftFront, sideLeftBack, sideRightFront, sideRightBack. + * This DE indicates the face or part of a face of a solid object. + * + * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: + * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object. + * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object. + * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. * * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. * * @category: Basic information * @revision: V2.1.1 - */ -ObjectSection ::= ENUMERATED { - unavailable(0), - rear(1), - front(2), - sideLeftFront(3), - sideLeftBack(4), - sideRightFront(5), - sideRightBack(6) -} +*/ +ObjectFace ::= ENUMERATED { + front (0), + sideLeftFront (1), + sideLeftBack (2), + sideRightFront (3), + sideRightBack (4), + back (5) +} /** - * This DE represents positions with lane-level accuracy which are not on regular traffic lanes. + * This DE represent a lateral position with lane-level resolution on the road reservation, which is not on regular traffic lanes. * * The value shall be set to: * - 0 - `unavailable` - if information on the lane position is unavailable. @@ -2063,11 +2158,11 @@ ObjectSection ::= ENUMERATED { * @revision: Created in V2.1.1 */ OffRoadLanePosition ::= ENUMERATED { - unavailable(0), - sidewalk(1), - parkingLane(2), - bikeLane(3), - max(15) + unavailable (0), + sidewalk (1), + parkingLane (2), + bikeLane (3), + max (15) } /** @@ -2079,6 +2174,14 @@ OffRoadLanePosition ::= ENUMERATED { */ OpeningDaysHours ::= UTF8String +/** + * The DE represents an ordinal number that indicates the position of an element in a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +OrdinalNumber1B ::= INTEGER(1..255) + /** * This DE indicates the subclass of a detected object for object class "otherSubclass". * @@ -2089,9 +2192,9 @@ OpeningDaysHours ::= UTF8String * @category: Sensing information * @revision: Created in V2.1.1 */ -OtherSubclass ::= INTEGER { - unknown (0), - roadSideUnit (1) +OtherSubClass ::= INTEGER { + unknown (0), + roadSideUnit (1) } (0..255) /** @@ -2117,9 +2220,9 @@ PathDeltaTime ::= DeltaTimeHundredthOfSecond * @revision: Editorial update in V2.1.1 */ PerformanceClass ::= INTEGER { - unavailable(0), - performanceClassA(1), - performanceClassB(2) + unavailable (0), + performanceClassA (1), + performanceClassB (2) } (0..7) /** @@ -2146,8 +2249,9 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * @revision: Editorial update in V2.1.1 */ PosCentMass ::= INTEGER { - tenCentimeters(1), - unavailable(63) + tenCentimeters (1), + outOfRange (62), + unavailable (63) } (1..63) /** @@ -2165,12 +2269,14 @@ PosCentMass ::= INTEGER { * @revision: V1.3.1 */ PositioningSolutionType ::= ENUMERATED { - noPositioningSolution(0), - sGNSS(1), - dGNSS(2), - sGNSSplusDR(3), - dGNSSplusDR(4), - dR(5), ...} + noPositioningSolution (0), + sGNSS (1), + dGNSS (2), + sGNSSplusDR (3), + dGNSSplusDR (4), + dR (5), + ... +} /** * This DE indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. @@ -2198,26 +2304,27 @@ PositioningSolutionType ::= ENUMERATED { * @revision: V1.3.1 */ PositionOfOccupants ::= BIT STRING { - row1LeftOccupied (0), + row1LeftOccupied (0), row1RightOccupied (1), - row1MidOccupied (2), + row1MidOccupied (2), row1NotDetectable (3), - row1NotPresent (4), - row2LeftOccupied (5), + row1NotPresent (4), + row2LeftOccupied (5), row2RightOccupied (6), - row2MidOccupied (7), + row2MidOccupied (7), row2NotDetectable (8), - row2NotPresent (9), - row3LeftOccupied (10), + row2NotPresent (9), + row3LeftOccupied (10), row3RightOccupied (11), - row3MidOccupied (12), + row3MidOccupied (12), row3NotDetectable (13), - row3NotPresent (14), - row4LeftOccupied (15), + row3NotPresent (14), + row4LeftOccupied (15), row4RightOccupied (16), - row4MidOccupied (17), + row4MidOccupied (17), row4NotDetectable (18), - row4NotPresent (19)} (SIZE(20)) + row4NotPresent (19) +} (SIZE(20)) /** * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. @@ -2232,7 +2339,7 @@ PositionOfOccupants ::= BIT STRING { * @revision: Editorial update in V2.1.1 */ PosFrontAx ::= INTEGER { - tenCentimeters(1), + outOfRange (19), unavailable(20) } (1..20) @@ -2250,8 +2357,9 @@ PosFrontAx ::= INTEGER { * @revision: Editorial update in V2.1.1 */ PosLonCarr ::= INTEGER { - oneCentimeter(1), - unavailable(127)} (1..127) + outOfRange (126), + unavailable (127) +} (1..127) /** * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the @@ -2267,8 +2375,8 @@ PosLonCarr ::= INTEGER { * @revision: Editorial update in V2.1.1 */ PosPillar ::= INTEGER { - tenCentimeters(1), - unavailable(30) + outOfRange (29), + unavailable (30) } (1..30) /** @@ -2286,13 +2394,30 @@ PosPillar ::= INTEGER { * @revision: V1.3.1 */ PostCrashSubCauseCode ::= INTEGER { - unavailable(0), - accidentWithoutECallTriggered (1), - accidentWithECallManuallyTriggered (2), - accidentWithECallAutomaticallyTriggered (3), - accidentWithECallTriggeredWithoutAccessToCellularNetwork(4) + unavailable (0), + accidentWithoutECallTriggered (1), + accidentWithECallManuallyTriggered (2), + accidentWithECallAutomaticallyTriggered (3), + accidentWithECallTriggeredWithoutAccessToCellularNetwork (4) } (0..255) +/** +* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square meter. +* +* The following values are specified: +* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0.1 mm/h and greater than (n-1) x 0.1 mm/h. +* - `2000` if the amount of rain falling is greater than 199.9 mm/h +* - `2001` if the information is not available +* +* @unit: 0.1 mm/h +* @category: Basic Information +* @revision: created in V2.1.1 +*/ +PrecipitationIntensity ::= INTEGER { + outOfRange (2000), + unavailable (2001) +} (1..2001) + /** * This DE represenst the indentifier of a protected communication zone. * @@ -2310,9 +2435,7 @@ ProtectedZoneID ::= INTEGER (0.. 134217727) * @category: Infrastructure information, Communication information * @revision: V1.3.1 */ -ProtectedZoneRadius ::= INTEGER { - oneMeter(1) -} (1..255,...) +ProtectedZoneRadius ::= INTEGER (1..255,...) /** * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do @@ -2357,9 +2480,10 @@ PtActivationData ::= OCTET STRING (SIZE(1..20)) * @revision: V1.3.1 */ PtActivationType ::= INTEGER { - undefinedCodingType(0), - r09-16CodingType(1), - vdv-50149CodingType(2)} (0..255) + undefinedCodingType (0), + r09-16CodingType (1), + vdv-50149CodingType (2) +} (0..255) /** * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . @@ -2377,72 +2501,13 @@ PtActivationType ::= INTEGER { * @revision: V1.3.1 */ RailwayLevelCrossingSubCauseCode ::= INTEGER { - unavailable(0), - doNotCrossAbnormalSituation(1), - closed(2), - nominal(3), - unguarded(4) + unavailable (0), + doNotCrossAbnormalSituation (1), + closed (2), + unguarded (3), + nominal (4) } (0..255) -/** - * This DE represents a reference point counter for a trailer. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -RefPointId ::= INTEGER (0..255) - -/** - * This DE describes a distance of relevance for information indicated in a message. - * - * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m. - * - 1 `lessThan100m` : for distances below 100 m. - * - 2 `lessThan200m` : for distances below 200 m. - * - 3 `lessThan500m` : for distances below 300 m. - * - 4 `lessThan1000m` : for distances below 1000 m. - * - 5 `lessThan5km` : for distances below 5000 m. - * - 6 `lessThan10km` : for distances below 10000 m. - * - 7 `over10km` : for distances over 10000 m. - * - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -RelevanceDistance ::= ENUMERATED { - lessThan50m(0), - lessThan100m(1), - lessThan200m(2), - lessThan500m(3), - lessThan1000m(4), - lessThan5km(5), - lessThan10km(6), - over10km(7) -} - -/** - * This DE indicates a traffic direction that is relevant to information indicated in a message. - * - * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions. - * - 1 `upstreamTraffic` : for upstream traffic. - * - 2 `downstreamTraffic` : for downstream traffic. - * - 3 `oppositeTraffic` : for traffic in the opposite direction. - * - * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. - * - * @note: Upstream traffic corresponds to the incoming traffic towards the event position, - * and downstream traffic to the departing traffic away from the event position. - * - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -RelevanceTrafficDirection ::= ENUMERATED { - allTrafficDirections(0), - upstreamTraffic(1), - downstreamTraffic(2), - oppositeTraffic(3) -} - /** * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from * ITS-S after receiving request from other ITS-Ss. @@ -2455,8 +2520,8 @@ RelevanceTrafficDirection ::= ENUMERATED { * @revision: Editorial update in V2.1.1 */ RequestResponseIndication ::= ENUMERATED { - request(0), - response(1) + request (0), + response (1) } /** @@ -2475,29 +2540,14 @@ RequestResponseIndication ::= ENUMERATED { * @revision: V1.3.1 */ RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { - unavailable(0), - emergencyVehicles(1), - rescueHelicopterLanding(2), - policeActivityOngoing(3), - medicalEmergencyOngoing(4), - childAbductionInProgress(5) + unavailable (0), + emergencyVehicles (1), + rescueHelicopterLanding (2), + policeActivityOngoing (3), + medicalEmergencyOngoing (4), + childAbductionInProgress (5) } (0..255) -/** - * This DE represents a unique identifier assigned to an entity. - * - * @category: Road Topology Information - * @revision: Created in V2.1.1 - */ -RoadRegulatorId ::= INTEGER (0..65535) - -/** - * This DE represents an identifier assigned to a section of roadway. - * - * @category: Road Topology Information - * @revision: Created in V2.1.1 - */ -RoadSegmentID ::= INTEGER (0..65535) /** * This DE indicates the type of a road segment. @@ -2512,10 +2562,11 @@ RoadSegmentID ::= INTEGER (0..65535) * @revision: Editorial update in V2.1.1 */ RoadType ::= ENUMERATED { - urban-NoStructuralSeparationToOppositeLanes(0), - urban-WithStructuralSeparationToOppositeLanes(1), - nonUrban-NoStructuralSeparationToOppositeLanes(2), - nonUrban-WithStructuralSeparationToOppositeLanes(3)} + urban-NoStructuralSeparationToOppositeLanes (0), + urban-WithStructuralSeparationToOppositeLanes (1), + nonUrban-NoStructuralSeparationToOppositeLanes (2), + nonUrban-WithStructuralSeparationToOppositeLanes (3) +} /** * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. @@ -2534,13 +2585,13 @@ The value shall be set to: * @revision: V1.3.1 */ RoadworksSubCauseCode ::= INTEGER { - unavailable(0), - majorRoadworks(1), - roadMarkingWork(2), - slowMovingRoadMaintenance(3), - shortTermStationaryRoadworks(4), - streetCleaning(5), - winterService(6) + unavailable (0), + majorRoadworks (1), + roadMarkingWork (2), + slowMovingRoadMaintenance (3), + shortTermStationaryRoadworks (4), + streetCleaning (5), + winterService (6) } (0..255) /** @@ -2562,8 +2613,7 @@ SafeDistanceIndicator::= BOOLEAN * * The value shall be set to: * - `1` if the accuracy is equal to or less than 1 cm, - * - `n (n > 1 and n < 4 093)` if the accuracy is equal to or less than n cm, - * - `4 093` if the accuracy is equal to or less than 4 093 cm, + * - `n (n > 1 and n < 4 094)` if the accuracy is equal to or less than n cm, * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, * - `4 095` if the accuracy information is unavailable. * @@ -2579,45 +2629,48 @@ SafeDistanceIndicator::= BOOLEAN * @unit 0,01 meter * @category: GeoReference Information - * @revision: V1.3.1 + * @revision: Editorial update in V2.1.1 */ -SemiAxisLength ::= INTEGER{oneCentimeter(1), outOfRange(4094), unavailable(4095)} (0..4095) +SemiAxisLength ::= INTEGER{ + outOfRange (4094), + unavailable (4095) +} (0..4095) /** * This DE indicates the type of sensor. * * The value shall be set to: - * - `0` undefined : in case the sensor type is undefined. - * - `1` radar : in case the sensor is a radar. - * - `2` lidar : in case the sensor is a lidar. - * - `3` monovideo : in case the sensor is mono video. - * - `4` stereovision : in case the sensor is stereo vision. - * - `5` nightvision : in case the sensor is night vision. - * - `6` ultrasonic : in case the sensor is ultrasonic. - * - `7` pmd : in case the sensor is pmd. - * - `8` fusion : in case the information provided by a sensor data fusion system - * - `9` inductionloop : in case the sensor is an induction loop. - * - `10` sphericalCamera : in case the sensor is a spherical camera. - * - `11` itssaggregation : in case the information is gathered from other received ITS messages - * - `12` uwb : in case the sensor is ultra wide band. + * - `0` undefined : in case the sensor type is undefined. + * - `1` radar : in case the sensor is a radar. + * - `2` lidar : in case the sensor is a lidar. + * - `3` monovideo : in case the sensor is mono video. + * - `4` stereovision : in case the sensor is stereo vision. + * - `5` nightvision : in case the sensor is night vision. + * - `6` ultrasonic : in case the sensor is ultrasonic. + * - `7` pmd : in case the sensor is photonic mixing device. + * - `8` inductionLoop : in case the sensor is an induction loop. + * - `9` sphericalCamera : in case the sensor is a spherical camera. + * - `10` uwb : in case the sensor is ultra wide band. + * - `11` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. + * - `12` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. * * @category: Sensing Information * @revision: created in V2.1.1 */ SensorType ::= INTEGER { - undefined (0), - radar (1), - lidar (2), - monovideo (3), - stereovision (4), - nightvision (5), - ultrasonic (6), - pmd (7), - fusion (8), - inductionloop (9), - sphericalCamera (10), - itssaggregation (11), - uwb (12) + undefined (0), + radar (1), + lidar (2), + monovideo (3), + stereovision (4), + nightvision (5), + ultrasonic (6), + pmd (7), + inductionLoop (8), + sphericalCamera (9), + uwb (10), + localAggregation (11), + itsAggregation (12) } (0..15) /** @@ -2642,10 +2695,10 @@ SequenceNumber ::= INTEGER (0..65535) * @revision: V1.3.1 */ SignalViolationSubCauseCode ::= INTEGER { - unavailable(0), - stopSignViolation(1), - trafficLightViolation(2), - turningRegulationViolation(3) + unavailable (0), + stopSignViolation (1), + trafficLightViolation (2), + turningRegulationViolation (3) } (0..255) /** @@ -2668,15 +2721,15 @@ SignalViolationSubCauseCode ::= INTEGER { * @revision: V1.3.1 */ SlowVehicleSubCauseCode ::= INTEGER { - unavailable(0), - maintenanceVehicle(1), - vehiclesSlowingToLookAtAccident(2), - abnormalLoad(3), - abnormalWideLoad(4), - convoy(5), - snowplough(6), - deicing(7), - saltingVehicles(8) + unavailable (0), + maintenanceVehicle (1), + vehiclesSlowingToLookAtAccident (2), + abnormalLoad (3), + abnormalWideLoad (4), + convoy (5), + snowplough (6), + deicing (7), + saltingVehicles (8) } (0..255) /** @@ -2693,24 +2746,20 @@ SlowVehicleSubCauseCode ::= INTEGER { * @revision: Description revised in V2.1.1 */ SpecialTransportType ::= BIT STRING { - heavyLoad(0), - excessWidth(1), - excessLength(2), - excessHeight(3) + heavyLoad (0), + excessWidth (1), + excessLength (2), + excessHeight (3) } (SIZE(4)) /** - * This DE represents the absolute accuracy of a speed value information for a predefined confidence level. - * The required confidence level is defined by the station applying this DE. + * This DE represents the absolute accuracy of a speed value information for a predefined confidence level of 95%. * * The value shall be set to: - * - `1` if the speed accuracy is equal to or less than 1 cm/s. - * - `n (n > 1 and n < 125)` if the speed accuracy is equal to or less than n cm/s. - * - `125` if the speed accuracy is equal to or less than 125 cm/s. + * - `n (n > 0 and n < 126)` if the speed accuracy is equal to or less than n cm/s. * - `126` if the speed accuracy is out of range, i.e. greater than 125 cm/s. * - `127` if the speed accuracy information is not available. - * - * + * * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or @@ -2722,13 +2771,11 @@ SpecialTransportType ::= BIT STRING { * * @unit cm/s * @category: Vehicle information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ SpeedConfidence ::= INTEGER { - equalOrWithinOneCentimeterPerSec(1), - equalOrWithinOneMeterPerSec(100), - outOfRange(126), - unavailable(127) + outOfRange (126), + unavailable (127) } (1..127) /** @@ -2738,9 +2785,7 @@ SpeedConfidence ::= INTEGER { * @category: Infrastructure information, Traffic information * @revision: V1.3.1 */ -SpeedLimit ::= INTEGER { - oneKmPerHour(1) -} (1..255) +SpeedLimit ::= INTEGER (1..255) /** * This DE represents a speed value, i.e. the magnitude of the horizontal velocity-vector. @@ -2756,13 +2801,13 @@ SpeedLimit ::= INTEGER { * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) */ SpeedValue ::= INTEGER { - standstill(0), - oneCentimeterPerSec(1), - unavailable(16383) + standstill (0), + outOfRange (16382), + unavailable (16383) } (0..16383) /** - * This DE represents a speed value with extended range. + * This DE represents the value of a velocity component in a defined coordinate system. * * The value shall be set to: * - `-16383` if the speed is equal to or smaller than -163,83 m/s @@ -2775,16 +2820,14 @@ SpeedValue ::= INTEGER { * @revision: Created in V2.1.1 */ SpeedValueExtended ::= INTEGER { - negativeSpeedMaximum (-16383), - standstill (0), - oneCentimeterPerSec (1), - speedMaximum (16382), - unavailable (16383) + negativeOutOfRange (-16383), + psotiveOutOfRange (16382), + unavailable (16383) } (-16383..16383) /** - * This DE indicates the estimated probability of a stability level and converesely also the probability of a stability loss. + * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. * * The value shall be set to: * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable". @@ -2799,27 +2842,72 @@ SpeedValueExtended ::= INTEGER { */ StabilityLossProbability ::= INTEGER { stable (0), - totalLossofStability (50), + totalLossOfStability (50), unavailable (63) } (0..63) /** - * The DE represents length as a measure of distance between points or objects used in the definition of various other types. + * The DE represents length as a measure of distance between points or as a dimension of an object. * * @unit: 0.1 meter * @category: Basic information * @revision: Created in V2.1.1 */ -StandardLength::= INTEGER (0..4095) --tbd check range +StandardLength12b::= INTEGER (0..4095) /** - * This DE represents length as a measure of distance between points or objects used in the definition of various other types. + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * The value shall be set to: + * - 0 `lessThan50m` : for distances below 50 m. + * - 1 `lessThan100m` : for distances below 100 m. + * - 2 `lessThan200m` : for distances below 200 m. + * - 3 `lessThan500m` : for distances below 300 m. + * - 4 `lessThan1000m` : for distances below 1000 m. + * - 5 `lessThan5km` : for distances below 5000 m. + * - 6 `lessThan10km` : for distances below 10000 m. + * - 7 `over10km` : for distances over 10000 m. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +StandardLength3b ::= ENUMERATED { + lessThan50m (0), + lessThan100m (1), + lessThan200m (2), + lessThan500m (3), + lessThan1000m (4), + lessThan5km (5), + lessThan10km (6), + over10km (7) +} + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength9b::= INTEGER (0..511) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. * * @unit: 0.1 meter * @category: Basic information * @revision: Created in V2.1.1 */ -StandardLengthSmall::= INTEGER (0..255) +StandardLength1B::= INTEGER (0..255) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength2B::= INTEGER (0..65535) /** * This DE indicates the duration in minutes since which something is stationary. @@ -2827,17 +2915,18 @@ StandardLengthSmall::= INTEGER (0..255) * The value shall be set to: * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more 1 minute. - * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. + * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. * * @category: Kinematics information * @revision: Created in V2.1.1 */ StationarySince ::= ENUMERATED { - lessThan1Minute(0), - lessThan2Minutes(1), - lessThan15Minutes(2), - equalOrGreater15Minutes(3)} + lessThan1Minute (0), + lessThan2Minutes (1), + lessThan15Minutes (2), + equalOrGreater15Minutes (3) +} /** * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". @@ -2856,14 +2945,14 @@ StationarySince ::= ENUMERATED { * @revision: V1.3.1 */ StationaryVehicleSubCauseCode ::= INTEGER { - unavailable(0), - humanProblem(1), - vehicleBreakdown(2), - postCrash(3), - publicTransportStop(4), - carryingDangerousGoods(5), - vehicleOnFire (6)} -(0..255) + unavailable (0), + humanProblem (1), + vehicleBreakdown (2), + postCrash (3), + publicTransportStop (4), + carryingDangerousGoods (5), + vehicleOnFire (6) +} (0..255) /** * This DE represents the identifier of an ITS-S. @@ -2896,38 +2985,37 @@ StationID ::= INTEGER(0..4294967295) * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) + * - 14 reserved for future usage * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), - * - 16 16-255: reserved for future usage. + * - 16-255> reserved for future usage. * * @category: Communication information. - * @revision: revised in V2.1.1 (note to value 9 deleted) + * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) */ StationType ::= INTEGER { - unknown(0), - pedestrian(1), - cyclist(2), - moped(3), - motorcycle(4), - passengerCar(5), - bus(6), - lightTruck(7), - heavyTruck(8), - trailer(9), - specialVehicles(10), - tram(11), - lightVruVehicle(12), - animal (13), - roadSideUnit(15) + unknown (0), + pedestrian (1), + cyclist (2), + moped (3), + motorcycle (4), + passengerCar (5), + bus (6), + lightTruck (7), + heavyTruck (8), + trailer (9), + specialVehicles (10), + tram (11), + lightVruVehicle (12), + animal (13), + roadSideUnit (15) } (0..255) /** * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. - * The required confidence level is defined by the station applying this DE. * * The value shall be set to: - * - `1` if the steering wheel angle accuracy is equal to or less than 1,5 degrees, - * - `n (n > 1 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, + * - `n (n > 0 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, * - `127` if the accuracy information is not available. * @@ -2947,9 +3035,8 @@ StationType ::= INTEGER { * @revision: Description revised in V2.1.1 */ SteeringWheelAngleConfidence ::= INTEGER { - equalOrWithinOnePointFiveDegree (1), - outOfRange(126), - unavailable(127) + outOfRange (126), + unavailable (127) } (1..127) /** @@ -2969,10 +3056,9 @@ SteeringWheelAngleConfidence ::= INTEGER { * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). */ SteeringWheelAngleValue ::= INTEGER { - straight(0), - onePointFiveDegreesToRight(-1), - onePointFiveDegreesToLeft(1), - unavailable(512) + negativeOutOfRange (-511), + positiveOutOfRange (511), + unavailable (512) } (-511..512) /** @@ -2999,7 +3085,6 @@ SubCauseCodeType ::= INTEGER (0..255) */ Temperature ::= INTEGER { equalOrSmallerThanMinus60Deg (-60), - oneDegreeCelsius(1), equalOrGreaterThan67Deg(67)} (-60..67) /** @@ -3041,17 +3126,41 @@ TimestampIts ::= INTEGER (0..4398046511103) * @revision: V1.3.1 */ TrafficConditionSubCauseCode ::= INTEGER { - unavailable(0), - increasedVolumeOfTraffic(1), - trafficJamSlowlyIncreasing(2), - trafficJamIncreasing(3), - trafficJamStronglyIncreasing(4), - trafficStationary(5), - trafficJamSlightlyDecreasing(6), - trafficJamDecreasing(7), - trafficJamStronglyDecreasing(8) + unavailable (0), + increasedVolumeOfTraffic (1), + trafficJamSlowlyIncreasing (2), + trafficJamIncreasing (3), + trafficJamStronglyIncreasing (4), + trafficStationary (5), + trafficJamSlightlyDecreasing (6), + trafficJamDecreasing (7), + trafficJamStronglyDecreasing (8) } (0..255) +/** + * This DE indicates a traffic direction that is relevant to information indicated in a message. + * + * The value shall be set to: + * - 0 `allTrafficDirections` : for all traffic directions. + * - 1 `upstreamTraffic` : for upstream traffic. + * - 2 `downstreamTraffic` : for downstream traffic. + * - 3 `oppositeTraffic` : for traffic in the opposite direction. + * + * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * + * @note: Upstream traffic corresponds to the incoming traffic towards the event position, + * and downstream traffic to the departing traffic away from the event position. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 from RelevanceTrafficDirection + */ +TrafficDirection ::= ENUMERATED { + allTrafficDirections (0), + upstreamTraffic (1), + downstreamTraffic (2), + oppositeTraffic (3) +} + /** * This DE indicates traffic rules that apply to vehicles at a certain position. * @@ -3065,10 +3174,11 @@ TrafficConditionSubCauseCode ::= INTEGER { * @revision: Editorial update in V2.1.1 */ TrafficRule ::= ENUMERATED { - noPassing(0), - noPassingForTrucks(1), - passToRight(2), - passToLeft(3), ...} + noPassing (0), + noPassingForTrucks (1), + passToRight (2), + passToLeft (3), + ...} /** * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. @@ -3082,11 +3192,8 @@ TrafficRule ::= ENUMERATED { * @revision: Created in V2.1.1 */ TrajectoryInterceptionProbability ::= INTEGER { - zero(0), - twoPercent(1), - fourPercent(2), - oneHundredPercent(50), - unavailable (63) } (0..63) + unavailable (63) +} (0..63) /** * This DE defines the confidence level of the trajectoryInterceptionProbability. @@ -3101,10 +3208,10 @@ TrajectoryInterceptionProbability ::= INTEGER { * @revision: Created in V2.1.1 */ TrajectoryInterceptionConfidence ::= INTEGER { - lessthan50percent(0), - between50and70Percent(1), - between70and90Percent(2), - above90Percent(3) + lessthan50percent (0), + between50and70Percent (1), + between70and90Percent (2), + above90Percent (3) } (0..3) /** @@ -3137,8 +3244,8 @@ TurningDirection::= ENUMERATED { * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) */ TurningRadius ::= INTEGER { - point4Meters(1), - unavailable(255) + outOfRange (254), + unavailable (255) } (1..255) /** @@ -3170,17 +3277,17 @@ VDS ::= IA5String (SIZE(6)) */ VehicleBreakdownSubCauseCode ::= INTEGER { - unavailable(0), - lackOfFuel (1), - lackOfBatteryPower (2), - engineProblem(3), - transmissionProblem(4), - engineCoolingProblem(5), - brakingSystemProblem(6), - steeringProblem(7), - tyrePuncture(8), - tyrePressureProblem(9), - vehicleOnFire (10) + unavailable (0), + lackOfFuel (1), + lackOfBatteryPower (2), + engineProblem (3), + transmissionProblem (4), + engineCoolingProblem (5), + brakingSystemProblem (6), + steeringProblem (7), + tyrePuncture (8), + tyrePressureProblem (9), + vehicleOnFire (10) } (0..255) /** @@ -3197,21 +3304,23 @@ VehicleHeight ::= INTEGER (0..127) * This DE provides information about the presence of a trailer. * * The value shall be set to: - * - 0 `noTrailerPresent` : to indicate that no trailer is present. - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer is present and the length is included in a reported vehicle length value. - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer is present and the length is not included in a reported vehicle length value. - * - 3 `trailerPresenceIsUnknown` : to indicate that the trailer presence is unknown. - * - 4 `unavailable` : to indicate that the information is not known. + * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in a reported vehicle length value. + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in a reported vehicle length value. + * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. + * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * nor the detection of trailer presence/absence is possible. * * @category: Vehicle information - * @revision: Editorial update in V2.1.1 - */ + * @revision: Description revised in V2.1.1 +*/ VehicleLengthConfidenceIndication ::= ENUMERATED { - noTrailerPresent(0), - trailerPresentWithKnownLength(1), - trailerPresentWithUnknownLength(2), - trailerPresenceIsUnknown(3), - unavailable(4)} + noTrailerPresent (0), + trailerPresentWithKnownLength (1), + trailerPresentWithUnknownLength (2), + trailerPresenceIsUnknown (3), + unavailable (4) +} /** * This DE represents the length of a vehicle. @@ -3227,7 +3336,6 @@ VehicleLengthConfidenceIndication ::= ENUMERATED { * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). */ VehicleLengthValue ::= INTEGER { - tenCentimeters(1), outOfRange(1022), unavailable(1023) } (1..1023) @@ -3247,8 +3355,9 @@ VehicleLengthValue ::= INTEGER { * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). */ VehicleMass ::= INTEGER { - hundredKg(1), - unavailable(1024)} (1..1024) + outOfRange (1023), + unavailable(1024) +} (1..1024) /** * This DE indicates the role played by a vehicle at a point in time. @@ -3275,22 +3384,23 @@ VehicleMass ::= INTEGER { * @revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) */ VehicleRole ::= ENUMERATED { - default(0), - publicTransport(1), + default (0), + publicTransport (1), specialTransport(2), - dangerousGoods(3), - roadWork(4), - rescue(5), - emergency(6), - safetyCar(7), - agriculture(8), - commercial(9), - military(10), - roadOperator(11), - taxi(12), - reserved1(13), - reserved2(14), - reserved3(15)} + dangerousGoods (3), + roadWork (4), + rescue (5), + emergency (6), + safetyCar (7), + agriculture (8), + commercial (9), + military (10), + roadOperator (11), + taxi (12), + reserved1 (13), + reserved2 (14), + reserved3 (15) +} /** * This DE describes the subclass of a vehicle. @@ -3311,7 +3421,7 @@ VehicleRole ::= ENUMERATED { * @category: Vehicle information * @revision: Created in V2.1.1 */ -VehicleSubclass ::= INTEGER { +VehicleSubClass ::= INTEGER { unknown (0), passengerCar (1), bus (2), @@ -3337,9 +3447,8 @@ VehicleSubclass ::= INTEGER { * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). */ VehicleWidth ::= INTEGER { - tenCentimeters(1), - outOfRange(61), - unavailable(62) + outOfRange (61), + unavailable (62) } (1..62) /** @@ -3378,10 +3487,10 @@ VerticalAccelerationValue ::= AccelerationValue * @revision: Created in V2.1.1 */ VruClusterProfiles ::= BIT STRING { - pedestrian(0), - bicyclist(1), - motorcyclist(2), - animal(3) + pedestrian (0), + bicyclist (1), + motorcyclist (2), + animal (3) } (SIZE(4)) /** @@ -3403,16 +3512,16 @@ VruClusterProfiles ::= BIT STRING { * @revision: Created in V2.1.1 */ VruDeviceUsage ::= ENUMERATED { - unavailable(0), - other(1), - idle(2), - listeningToAudio(3), - typing(4), - calling(5), - playingGames(6), - reading(7), - viewing(8), - max(255) + unavailable (0), + other (1), + idle (2), + listeningToAudio (3), + typing (4), + calling (5), + playingGames (6), + reading (7), + viewing (8), + max (255) } /** @@ -3431,13 +3540,13 @@ VruDeviceUsage ::= ENUMERATED { * @revision: Created in V2.1.1 */ VruEnvironment ::= ENUMERATED { - unavailable (0), - intersectionCrossing(1), - zebraCrossing(2), - sidewalk (3), - onVehicleRoad(4), - protectedGeographicArea(5), - max (255) + unavailable (0), + intersectionCrossing (1), + zebraCrossing (2), + sidewalk (3), + onVehicleRoad (4), + protectedGeographicArea (5), + max (255) } /** @@ -3457,14 +3566,14 @@ VruEnvironment ::= ENUMERATED { * @revision: Created in V2.1.1 */ VruMovementControl ::= ENUMERATED { - unavailable (0), - braking(1), - hardBraking(2), - stopPedaling (3), - brakingAndStopPedaling(4), + unavailable (0), + braking (1), + hardBraking (2), + stopPedaling (3), + brakingAndStopPedaling (4), hardBrakingAndStopPedaling (5), - noReaction(6), - max (255) + noReaction (6), + max (255) } /** @@ -3481,11 +3590,11 @@ VruMovementControl ::= ENUMERATED { * @revision: Created in V2.1.1 */ VruSubProfilePedestrian ::= ENUMERATED { - unavailable(0), - ordinary-pedestrian(1), - road-worker(2), - first-responder(3), - max(15) + unavailable (0), + ordinary-pedestrian (1), + road-worker (2), + first-responder (3), + max (15) } /** @@ -3507,16 +3616,16 @@ VruSubProfilePedestrian ::= ENUMERATED { * @revision: Created in V2.1.1 */ VruSubProfileBicyclist ::= ENUMERATED { - unavailable(0), - bicyclist(1), - wheelchair-user(2), - horse-and-rider(3), - rollerskater(4), - e-scooter(5), - personal-transporter(6), - pedelec(7), - speed-pedelec(8), - max(15) + unavailable (0), + bicyclist (1), + wheelchair-user (2), + horse-and-rider (3), + rollerskater (4), + e-scooter (5), + personal-transporter (6), + pedelec (7), + speed-pedelec (8), + max (15) } /** @@ -3534,12 +3643,12 @@ VruSubProfileBicyclist ::= ENUMERATED { * @revision: Created in V2.1.1 */ VruSubProfileMotorcyclist ::= ENUMERATED { - unavailable(0), - moped(1), - motorcycle(2), - motorcycle-and-sidecar-right(3), - motorcycle-and-sidecar-left(4), - max(15) + unavailable (0), + moped (1), + motorcycle (2), + motorcycle-and-sidecar-right (3), + motorcycle-and-sidecar-left (4), + max (15) } /** @@ -3556,11 +3665,11 @@ VruSubProfileMotorcyclist ::= ENUMERATED { * @revision: Created in V2.1.1 */ VruSubProfileAnimal ::= ENUMERATED { - unavailable(0), - wild-animal(1), - farm-animal(2), - service-animal(3), - max(15) + unavailable (0), + wild-animal (1), + farm-animal (2), + service-animal (3), + max (15) } /** @@ -3578,10 +3687,10 @@ VruSubProfileAnimal ::= ENUMERATED { */ VruSizeClass ::= ENUMERATED { unavailable (0), - low(1), - medium(2), - high (3), - max(15) + low (1), + medium (2), + high (3), + max (15) } /** @@ -3605,13 +3714,13 @@ VruSizeClass ::= ENUMERATED { * @revision: Created in V2.1.1 */ VruSpecificExteriorLights ::= BIT STRING { - unavailable (0), - backFlashLight (1), - helmetLight (2), - armLight (3), - legLight (4), - wheelLight (5) - } (SIZE(8)) + unavailable (0), + backFlashLight (1), + helmetLight (2), + armLight (3), + legLight (4), + wheelLight (5) +} (SIZE(8)) /** * Perpendicular distance between front and rear axle of the wheel base of vehicle. @@ -3626,8 +3735,9 @@ VruSpecificExteriorLights ::= BIT STRING { * @revision: Created in V2.1.1 */ WheelBaseVehicle ::= INTEGER { - tenCentimeters(1), - unavailable(127)} (1..127) + outOfRange (126), + unavailable (127) +} (1..127) /** * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. @@ -3644,26 +3754,26 @@ WheelBaseVehicle ::= INTEGER { * @revision: Created in V2.1.1 */ Wgs84AngleConfidence ::= INTEGER { - zeroPointOneDegree (1), - oneDegree (10), - outOfRange (126), - unavailable (127) + outOfRange (126), + unavailable (127) } (1..127) /** * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. * * @unit 0,1 degrees * @category: GeoReference Information * @revision: Created in V2.1.1 */ -Wgs84AngleValue ::= INTEGER { -- tbd define the usage of value 0 vs 3600. - wgs84North (0), - wgs84East (900), - wgs84South (1800), - wgs84West (2700), - unavailable (3601) +Wgs84AngleValue ::= INTEGER { + wgs84North (0), + wgs84East (900), + wgs84South (1800), + wgs84West (2700), + doNotUse (3600), + unavailable (3601) } (0..3601) /** @@ -3688,9 +3798,9 @@ WMInumber ::= IA5String (SIZE(1..3)) * @revision: V1.3.1 */ WrongWayDrivingSubCauseCode ::= INTEGER { - unavailable(0), - wrongLane(1), - wrongDirection(2) + unavailable (0), + wrongLane (1), + wrongDirection (2) } (0..255) /** @@ -3728,8 +3838,8 @@ YawRateConfidence ::= ENUMERATED { degSec-005-00 (4), degSec-010-00 (5), degSec-100-00 (6), - outOfRange (7), - unavailable (8) + outOfRange (7), + unavailable (8) } /** @@ -3755,10 +3865,9 @@ YawRateConfidence ::= ENUMERATED { * @revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). */ YawRateValue ::= INTEGER { - straight(0), - degSec-000-01ToRight(-1), - degSec-000-01ToLeft(1), - unavailable(32767) + negativeOutOfRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) } (-32766..32767) ---------------------------------------- @@ -3778,8 +3887,8 @@ YawRateValue ::= INTEGER { * @revision: Created in V2.1.1 */ Acceleration1d ::= SEQUENCE { - value AccelerationValue, - confidence AccelerationConfidence + value AccelerationValue, + confidence AccelerationConfidence } /** @@ -3795,8 +3904,8 @@ Acceleration1d ::= SEQUENCE { * @revision: Created in V2.1.1 */ AccelerationChangeIndication ::= SEQUENCE { - accelOrDecel AccelerationChange, - actionDeltaTime DeltaTimeTenthOfSecond, + accelOrDecel AccelerationChange, + actionDeltaTime DeltaTimeTenthOfSecond, ... } @@ -3813,10 +3922,18 @@ AccelerationChangeIndication ::= SEQUENCE { * @revision: V1.3.1 */ ActionID ::= SEQUENCE { - originatingStationID StationID, - sequenceNumber SequenceNumber + originatingStationID StationID, + sequenceNumber SequenceNumber } +/** + * This DF represents a list of @ref ActionID. + + * @category: Communication Information + * @revision: Created in V2.1.1 based on ReferenceDenms +*/ +ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID + /** * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. * @@ -3830,8 +3947,8 @@ ActionID ::= SEQUENCE { * @revision: V1.3.1 */ Altitude ::= SEQUENCE { - altitudeValue AltitudeValue, - altitudeConfidence AltitudeConfidence + altitudeValue AltitudeValue, + altitudeConfidence AltitudeConfidence } /** @@ -3847,8 +3964,8 @@ Altitude ::= SEQUENCE { * @revision: Created in V2.1.1 */ BasicContainer ::= SEQUENCE { - stationType StationType, - referencePosition ReferencePosition, + stationType StationType, + referencePosition ReferencePosition, ... } @@ -3865,8 +3982,8 @@ BasicContainer ::= SEQUENCE { * @revision: Created in V2.1.1 */ CartesianAngle ::= SEQUENCE { - value CartesianAngleValue, - confidence AngleConfidence + value CartesianAngleValue, + confidence AngleConfidence } /** @@ -3882,8 +3999,8 @@ CartesianAngle ::= SEQUENCE { * @revision: Created in V2.1.1 */ CartesianAngularSpeed ::= SEQUENCE { - value CartesianAngularSpeedValue, - confidence AngularSpeedConfidence + value CartesianAngularSpeedValue, + confidence AngularSpeedConfidence } /** @@ -3899,8 +4016,45 @@ CartesianAngularSpeed ::= SEQUENCE { * @revision: Created in V2.1.1 */ CartesianAngularAcceleration ::= SEQUENCE { - value CartesianAngularAccelerationValue, - confidence AngularAccelerationConfidence + value CartesianAngularAccelerationValue, + confidence AngularAccelerationConfidence +} + +/** + * This DF represents a coordinate in a cartesian reference system + * + * It includes the following components: + * + * @field value: the coordinate value which can be estimated as the mean of the current distribution. + * + * @field confidence: the coordinate accuracy associated to the provided value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateWithConfidence ::= SEQUENCE { + value CartesianCoordinateLarge, + confidence CoordinateConfidence +} + +/** + * This DF represents a position in a two- or three-dimensional cartesian coordinate system. + * + * It includes the following components: + * + * @field xCoordinate: the X coordinate value. + * + * @field yCoordinate: the Y coordinate value. + * + * @field zCoordinate: the optional Z coordinate value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianPosition3d::=SEQUENCE{ + xCoordinate CartesianCoordinate, + yCoordinate CartesianCoordinate, + zCoordinate CartesianCoordinate OPTIONAL } /** @@ -3921,8 +4075,8 @@ CartesianAngularAcceleration ::= SEQUENCE { * @revision: Editorial update in V2.1.1 */ CauseCode ::= SEQUENCE { - causeCode CauseCodeType, - subCauseCode SubCauseCodeType, + causeCode CauseCodeType, + subCauseCode SubCauseCodeType, ... } @@ -4082,7 +4236,7 @@ CauseCodeChoice::= CHOICE { */ CauseCodeV2 ::= SEQUENCE { - ccAndScc CauseCodeChoice, + ccAndScc CauseCodeChoice, ... } @@ -4101,9 +4255,9 @@ CauseCodeV2 ::= SEQUENCE { * @revision: V1.3.1 */ CenDsrcTollingZone ::= SEQUENCE { - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, ... } @@ -4124,9 +4278,9 @@ CenDsrcTollingZone ::= SEQUENCE { * @revision: Created in V2.1.1 */ CircularShape ::= SEQUENCE { - nodeCenterPoint CartesianPosition3d OPTIONAL, - radius StandardLength, - height StandardLength OPTIONAL, + nodeCenterPoint CartesianPosition3d OPTIONAL, + radius StandardLength12b, + height StandardLength12b OPTIONAL, ... } @@ -4149,9 +4303,9 @@ CircularShape ::= SEQUENCE { * @revision: V1.3.1 */ ClosedLanes ::= SEQUENCE { - innerhardShoulderStatus HardShoulderStatus OPTIONAL, - outerhardShoulderStatus HardShoulderStatus OPTIONAL, - drivingLaneStatus DrivingLaneStatus OPTIONAL, + innerhardShoulderStatus HardShoulderStatus OPTIONAL, + outerhardShoulderStatus HardShoulderStatus OPTIONAL, + drivingLaneStatus DrivingLaneStatus OPTIONAL, ... } @@ -4168,9 +4322,9 @@ ClosedLanes ::= SEQUENCE { * @revision: Created in V2.1.1 */ ClusterBreakupInfo ::= SEQUENCE { - clusterBreakupReason ClusterBreakupReason, - breakupTime DeltaTimeQuarterSecond, - ... + clusterBreakupReason ClusterBreakupReason, + breakupTime DeltaTimeQuarterSecond, + ... } /** @@ -4186,9 +4340,9 @@ ClusterBreakupInfo ::= SEQUENCE { * @revision: Created in V2.1.1 */ ClusterJoinInfo ::= SEQUENCE { - clusterId ClusterId, - joinTime DeltaTimeQuarterSecond, - ... + clusterId ClusterId, + joinTime DeltaTimeQuarterSecond, + ... } /** @@ -4204,9 +4358,9 @@ ClusterJoinInfo ::= SEQUENCE { * @revision: Created in V2.1.1 */ ClusterLeaveInfo ::= SEQUENCE { - clusterId ClusterId, - clusterLeaveReason ClusterLeaveReason, - ... + clusterId ClusterId, + clusterLeaveReason ClusterLeaveReason, + ... } /** @@ -4218,7 +4372,7 @@ ClusterLeaveInfo ::= SEQUENCE { * @category: Sensing Information * @revision: Created in V2.1.1 */ -CorrelationColumn ::= SEQUENCE SIZE (1..17) OF CorrelationRowValue +CorrelationColumn ::= SEQUENCE SIZE (1..21) OF CorrelationRowValue /** * This DF represents the curvature of the vehicle trajectory and the accuracy. @@ -4234,8 +4388,8 @@ CorrelationColumn ::= SEQUENCE SIZE (1..17) OF CorrelationRowValue * @revision: V1.3.1 */ Curvature ::= SEQUENCE { - curvatureValue CurvatureValue, - curvatureConfidence CurvatureConfidence + curvatureValue CurvatureValue, + curvatureConfidence CurvatureConfidence } /** @@ -4270,54 +4424,17 @@ Curvature ::= SEQUENCE { * @revision: V1.3.1 */ DangerousGoodsExtended ::= SEQUENCE { - dangerousGoodsType DangerousGoodsBasic, - unNumber INTEGER (0..9999), - elevatedTemperature BOOLEAN, - tunnelsRestricted BOOLEAN, - limitedQuantity BOOLEAN, - emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, - phoneNumber PhoneNumber OPTIONAL, - companyName UTF8String (SIZE (1..24)) OPTIONAL, + dangerousGoodsType DangerousGoodsBasic, + unNumber INTEGER (0..9999), + elevatedTemperature BOOLEAN, + tunnelsRestricted BOOLEAN, + limitedQuantity BOOLEAN, + emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, + phoneNumber PhoneNumber OPTIONAL, + companyName UTF8String (SIZE (1..24)) OPTIONAL, ... } -/** - * This DF represents a position in a two- or three-dimensional cartesian coordinate system. - * - * It includes the following components: - * - * @field xCoordinate: the X coordinate value. - * - * @field yCoordinate: the Y coordinate value. - * - * @field zCoordinate: the optional Z coordinate value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -CartesianPosition3d::=SEQUENCE{ - xCoordinate CartesianCoordinate, - yCoordinate CartesianCoordinate, - zCoordinate CartesianCoordinate OPTIONAL -} - -/** - * This DF represents a coordinate in a cartesian reference system - * - * It includes the following components: - * - * @field value: the coordinate value which can be estimated as the mean of the current distribution. - * - * @field confidence: the coordinate accuracy associated to the provided value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateWithConfidence ::= SEQUENCE { - value CartesianCoordinateExtended, - confidence CoordinateConfidence -} - /** * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. * @@ -4333,9 +4450,9 @@ CartesianCoordinateWithConfidence ::= SEQUENCE { * @revision: V1.3.1 */ DeltaReferencePosition ::= SEQUENCE { - deltaLatitude DeltaLatitude, - deltaLongitude DeltaLongitude, - deltaAltitude DeltaAltitude + deltaLatitude DeltaLatitude, + deltaLongitude DeltaLongitude, + deltaAltitude DeltaAltitude } /** @@ -4358,7 +4475,7 @@ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition * * @field semiMinorAxisLength: half length of the minor axis of the ellipse. * - * @field orientation: orientation of the major axis of the ellipse in the WGS84 coordinate system. + * @field orientation: the optional orientation of the major axis of the ellipse in the WGS84 coordinate system. * * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. * @@ -4367,11 +4484,11 @@ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition */ EllipticalShape ::= SEQUENCE { - centerPoint CartesianPosition3d OPTIONAL, - semiMajorAxisLength StandardLength, - semiMinorAxisLength StandardLength, - orientation Wgs84AngleValue, - height StandardLength OPTIONAL, + centerPoint CartesianPosition3d OPTIONAL, + semiMajorAxisLength StandardLength12b, + semiMinorAxisLength StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL, ... } @@ -4396,12 +4513,12 @@ EllipticalShape ::= SEQUENCE { * @revision: Created in V2.1.1 */ EuVehicleCategoryCode ::= CHOICE { - euVehicleCategoryL EuVehicleCategoryL, - euVehicleCategoryM EuVehicleCategoryM, - euVehicleCategoryN EuVehicleCategoryN, - euVehicleCategoryO EuVehicleCategoryO, - euVehicleCategoryT NULL, - euVehicleCategoryG NULL + euVehicleCategoryL EuVehicleCategoryL, + euVehicleCategoryM EuVehicleCategoryM, + euVehicleCategoryN EuVehicleCategoryN, + euVehicleCategoryO EuVehicleCategoryO, + euVehicleCategoryT NULL, + euVehicleCategoryG NULL } /** @@ -4446,9 +4563,9 @@ EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint * @revision: generalized the semantics in V2.1.1 */ EventPoint ::= SEQUENCE { - eventPosition DeltaReferencePosition, - eventDeltaTime PathDeltaTime OPTIONAL, - informationQuality InformationQuality + eventPosition DeltaReferencePosition, + eventDeltaTime PathDeltaTime OPTIONAL, + informationQuality InformationQuality } /** @@ -4464,8 +4581,8 @@ EventPoint ::= SEQUENCE { * @revision: created in V2.1.1 */ ExteriorLightsExtended ::= SEQUENCE { - vehicular ExteriorLights, - vruSpecific VruSpecificExteriorLights, + vehicular ExteriorLights, + vruSpecific VruSpecificExteriorLights, ... } @@ -4488,10 +4605,10 @@ ExteriorLightsExtended ::= SEQUENCE { * @revision: created in V2.1.1 */ GeneralizedLanePosition::= CHOICE { - trafficLanePosition LanePosition, - nonTrafficLanePosition LanePositionAndType, - trafficIslandPosition TrafficIslandPosition, - mapPosition MapPosition, + trafficLanePosition LanePosition, + nonTrafficLanePosition LanePositionAndType, + trafficIslandPosition TrafficIslandPosition, + mapPosition MapPosition, ... } @@ -4509,8 +4626,8 @@ GeneralizedLanePosition::= CHOICE { * @revision: V1.3.1 */ Heading ::= SEQUENCE { - headingValue HeadingValue, - headingConfidence HeadingConfidence + headingValue HeadingValue, + headingConfidence HeadingConfidence } @@ -4527,8 +4644,8 @@ Heading ::= SEQUENCE { * @revision: created in V2.1.1 */ HeadingChangeIndication ::= SEQUENCE { - direction TurningDirection, - actionDeltaTime DeltaTimeTenthOfSecond, + direction TurningDirection, + actionDeltaTime DeltaTimeTenthOfSecond, ... } @@ -4550,9 +4667,9 @@ HeadingChangeIndication ::= SEQUENCE { * @revision: created in V2.1.1 */ InterferenceManagementChannel ::= SEQUENCE { - centreFrequency INTEGER (1 .. 99999), - channelWidth INTEGER (0 .. 9999), - exponent INTEGER (0 .. 15) + centreFrequency INTEGER (1 .. 99999), + channelWidth INTEGER (0 .. 9999), + exponent INTEGER (0 .. 15) } /** @@ -4569,8 +4686,8 @@ InterferenceManagementChannel ::= SEQUENCE { * @revision: created in V2.1.1 */ InterferenceManagementZone ::= SEQUENCE { - zoneDefinition InterferenceManagementZoneDefinition, - managementInfo InterferenceManagementInfo + zoneDefinition InterferenceManagementZoneDefinition, + managementInfo InterferenceManagementInfo } /** @@ -4592,11 +4709,11 @@ InterferenceManagementZone ::= SEQUENCE { * @revision: created in V2.1.1 */ InterferenceManagementZoneDefinition::= SEQUENCE{ - interferenceManagementZoneLatitude Latitude, - interferenceManagementZoneLongitude Longitude, - interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, - interferenceManagementZoneID ProtectedZoneID OPTIONAL, - interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, + interferenceManagementZoneLatitude Latitude, + interferenceManagementZoneLongitude Longitude, + interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, + interferenceManagementZoneID ProtectedZoneID OPTIONAL, + interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, ... } @@ -4618,7 +4735,8 @@ InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManageme * * @field interferenceManagementZoneType: type of the interference management zone. * - * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. + * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. + * In the case where no mitigation should be applied by the ITS-S, this is indicated by the field interferenceManagementMitigationType being absent. * * @field expiryTime: 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 @@ -4627,31 +4745,13 @@ InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManageme * @revision: created in V2.1.1 */ InterferenceManagementInfoPerChannel ::= SEQUENCE { - interferenceManagementChannel InterferenceManagementChannel, - interferenceManagementZoneType InterferenceManagementZoneType, - interferenceManagementMitigationType InterferenceManagementMitigationType OPTIONAL, - expiryTime TimestampIts OPTIONAL, + interferenceManagementChannel InterferenceManagementChannel, + interferenceManagementZoneType InterferenceManagementZoneType, + interferenceManagementMitigationType MitigationForTechnologies OPTIONAL, + expiryTime TimestampIts OPTIONAL, ... } -/** - * This DF provides information and commands defining the required mitigation type in the defined interference management zone. - * - * It includes the following options: - * - * @field unavailable: this is the default choice to be used when information is not available - * - * @field mitigationForTechnologies: 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. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementMitigationType ::= CHOICE { - unavailable NULL, - mitigationForTechnologies MitigationForTechnologies -} - /** * This DF consist of a list of up to 16 interference management zones. * @@ -4677,8 +4777,8 @@ InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManag * @revision: created in V2.1.1 */ IntersectionReferenceId ::= SEQUENCE { - region RoadRegulatorId OPTIONAL, - id IntersectionID + region Identifier2B OPTIONAL, + id Identifier2B } /** @@ -4723,8 +4823,8 @@ ItsPduHeader ::= SEQUENCE { * @revision: Created in V2.1.1 */ LanePositionAndType::= SEQUENCE { - transversalPosition LanePosition, - laneType LaneType, + transversalPosition LanePosition, + laneType LaneType, ... } @@ -4742,8 +4842,8 @@ LanePositionAndType::= SEQUENCE { * @revision: V1.3.1 */ LateralAcceleration ::= SEQUENCE { - lateralAccelerationValue LateralAccelerationValue, - lateralAccelerationConfidence AccelerationConfidence + lateralAccelerationValue LateralAccelerationValue, + lateralAccelerationConfidence AccelerationConfidence } /** @@ -4760,8 +4860,8 @@ LateralAcceleration ::= SEQUENCE { * @revision: V1.3.1 */ LongitudinalAcceleration ::= SEQUENCE { - longitudinalAccelerationValue LongitudinalAccelerationValue, - longitudinalAccelerationConfidence AccelerationConfidence + longitudinalAccelerationValue LongitudinalAccelerationValue, + longitudinalAccelerationConfidence AccelerationConfidence } /** @@ -4777,8 +4877,8 @@ LongitudinalAcceleration ::= SEQUENCE { * @revision: created in V2.1.1 */ LongitudinalLanePosition ::= SEQUENCE { - longitudinalLanePositionValue LongitudinalLanePositionValue, - longitudinalLanePositionConfidence LongitudinalLanePositionConfidence + longitudinalLanePositionValue LongitudinalLanePositionValue, + longitudinalLanePositionConfidence LongitudinalLanePositionConfidence } /** @@ -4788,27 +4888,31 @@ LongitudinalLanePosition ::= SEQUENCE { * @category: Vehicle information * @revision: V1.3.1 */ -LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..17) OF CorrelationColumn +LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn /** * 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: * - * @field mapReference: optionally identifies the MAPEM carrying the topology. + * @field mapReference: optionally identifies the MAPEM containing the topology information. * It is absent if the MAPEM topology is known from the context. * - * @field laneId: identifies the lane in the topology. + * @field laneId: identifies the lane in the road segment or intersection topology on which the position is located. * - * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane. + * @field connectionId: identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the + * conflict area of an intersection which connects e.g an ingress with an egress lane. + * + * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. * * @category: Road topology information * @revision: Created in V2.1.1 */ MapPosition ::= SEQUENCE { mapReference MapReference OPTIONAL, - laneId LaneId, + laneId Identifier1B, longitudinalLanePosition LongitudinalLanePosition OPTIONAL, + connectionId Identifier1B, ... } @@ -4826,10 +4930,25 @@ MapPosition ::= SEQUENCE { */ MapReference::= CHOICE { - roadsegment RoadSegmentReferenceId, - intersection IntersectionReferenceId + roadsegment RoadSegmentReferenceId, + intersection IntersectionReferenceId } +/** + * This DF provides information about a message with respect to the segmentation process at the sender. + * + * It includes the following components: + * + * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. + * + * @field thisMsgNo: indicates the position of the message within of the total set of messages. + +*/ +MessageSegmentationInfo ::= SEQUENCE { + totalMsgNo CardinalNumber1B, + thisMsgNo OrdinalNumber1B + } + /** * * This DF represents a list of @ref MitigationPerTechnologyClass. @@ -4864,11 +4983,11 @@ MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyCl * @revision: Created in V2.1.1 */ MitigationPerTechnologyClass ::= SEQUENCE { - accessTechnologyClass AccessTechnologyClass, - lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, - powerReduction INTEGER (0 .. 30) OPTIONAL, - dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, - dmcTonLimit INTEGER (0 .. 20) OPTIONAL, + accessTechnologyClass AccessTechnologyClass, + lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, + powerReduction INTEGER (0 .. 30) OPTIONAL, + dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, + dmcTonLimit INTEGER (0 .. 20) OPTIONAL, ... } @@ -4877,22 +4996,22 @@ MitigationPerTechnologyClass ::= SEQUENCE { * * The following options are available: * - * @field vehicleSubclass: the object is a road vehicle. + * @field vehicleSubClass: the object is a road vehicle. * - * @field vruSubclass: the object is a VRU. + * @field vruSubClass: the object is a VRU. * * @field groupSubClass: the object is a VRU group or cluster. * - * @field otherSubclass: the object is of a different types as the above. + * @field otherSubClass: the object is of a different types as the above. * * @category: Sensing information * @revision: Created in V2.1.1 */ ObjectClass ::= CHOICE { - vehicleSubclass VehicleSubclass, - vruSubclass VruProfileAndSubprofile, + vehicleSubClass VehicleSubClass, + vruSubClass VruProfileAndSubprofile, groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), - otherSubclass OtherSubclass, + otherSubClass OtherSubClass, ... } @@ -4917,8 +5036,8 @@ ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence * @revision: Created in V2.1.1 */ ObjectClassWithConfidence ::= SEQUENCE { - objectClass ObjectClass, - confidence ObjectClassConfidence + objectClass ObjectClass, + confidence ConfidenceLevel } /** * This DF represents a dimension of an object together with a confidence indication. @@ -4933,8 +5052,8 @@ ObjectClassWithConfidence ::= SEQUENCE { * @revision: Created in V2.1.1 */ ObjectDimension ::= SEQUENCE { - value ObjectDimensionValue, - confidence ObjectDimensionValue + value ObjectDimensionValue, + confidence ObjectDimensionValue } /** @@ -4950,7 +5069,7 @@ ObjectDimension ::= SEQUENCE { Path::= SEQUENCE (SIZE(0..40)) OF PathPoint /** - * This DF that represents a path with a set of path points. + * This DF that represents a path history with a set of path points. * It may contain up to `40` @ref PathPoint. * * The first PathPoint presents an offset delta position with regards to an external reference position. @@ -4962,6 +5081,18 @@ Path::= SEQUENCE (SIZE(0..40)) OF PathPoint */ PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint +/** + * This DF that represents a predicted path with a set of path points. + * It may contain up to `15` @ref 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. + * + * @category: GeoReference information + * @revision: created in V2.1.1 based on PathHistory + */ +PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted + /** * This DF defines an offset waypoint position within a path. * @@ -4975,117 +5106,138 @@ PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint * @revision: semantics updated in V2.1.1 */ PathPoint ::= SEQUENCE { - pathPosition DeltaReferencePosition, - pathDeltaTime PathDeltaTime OPTIONAL + pathPosition DeltaReferencePosition, + pathDeltaTime PathDeltaTime OPTIONAL } /** - * The DF that defines a waypoint position within a path. + * This DF defines a predicted offset waypoint position within a path. * * It includes the following components: * - * @field pathPosition: The waypoint position defined as an absolute position. + * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. + * + * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. + * + * @field horizontalPositionConfidence: the accuracy of the horizontal geographical position. + * + * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. * - * @field pathDeltaTime: The optional delta time in which the waypoint will be occupied, from a reference time. + * @field altitudeConfidence: the accuracy of the altitude value of the geographical position. + * + * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. * * @category GeoReference information - * @revision: created in V2.1.1 + * @revision: semantics updated in V2.1.1 */ -PathPointAbsolute ::= SEQUENCE { - pathPosition ReferencePosition, - pathDeltaTime PathDeltaTime OPTIONAL + +PathPointPredicted::= SEQUENCE { + deltaLatitude DeltaLatitudeSmall, + deltaLongitude DeltaLongitudeSmall, + horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, + deltaAltitude DeltaAltitude DEFAULT unavailable, + altitudeConfidence AltitudeConfidence DEFAULT unavailable, + pathDeltaTime DeltaTimeTenthOfSecond, + ... } /** - * This DF contains information about a perceived object including its kinematic and attitude representation. - * + * 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: * - * @field objectID: Identifier assigned to a detected object. + * @field objectID: optional identifier assigned to a detected object. * * @field timeOfMeasurement: 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. * - * @field xCoordinate: X Coordinate, i.e. distance to detected object from the ITS-S's reference point to object reference point in x-direction at the time - * of measurement, in a pre-defined coordinate system. + * @field xCoordinate: 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. * - * @field yCoordinat: Y Coordinate, i.e. distance to detected object from the ITS-S's reference point to object reference point in y-direction at the time - * of measurement, in a pre-defined coordinate system. + * @field yCoordinate: 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. * - * @field zCoordinate: Optional Z Coordinate, i.e. distance to detected object to object reference point from the ITS-S's reference point in z-direction - * at the time of measurement, in a pre-defined coordinate system. + * @field zCoordinate: 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. * - * @field xSpeed: Speed of the detected object in the detecting ITS-S's reference system in x-direction at the time - * of measurement, in a pre-defined coordinate system, using the DF SpeedExtended. + * @field velocityMagnitude: 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 + * + * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. * - * @field ySpeed: Speed of the detected object in the detecting ITS-S's reference system in y-direction at the time - * of measurement, in a pre-defined coordinate system, using the DF SpeedExtended. + * @field xVelocity: velocity component of the detected object in x-direction at the time of measurement, with the associated variance. + * + * @field yVelocity: velocity component of the detected object in y-direction at the time of measurement, with the associated variance. * - * @field zSpeed - * Optional Speed of the detected object in the detecting ITS-S's reference system in z-direction at the time - * of measurement, in a pre-defined coordinate system, using the DF SpeedExtended. + * @field zVelocity: optional velocity component of the detected object in z-direction at the time of measurement, with the associated variance. + * + * @field accelerationMagnitude: 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. * - * @field xAcceleration: optional Acceleration of the detected object from the ITS-S's reference point in x-direction - * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. + * @field accelerationDirection: polar angle of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * + * @field xAcceleration: optional Acceleration of the detected object in x-direction at the time of measurement, with the associated variance. * - * @field yAcceleration: optional Acceleration of the detected object from the ITS-S's reference point in y-direction - * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. + * @field yAcceleration: optional Acceleration of the detected object in y-direction at the time of measurement, with the associated variance. * - * @field zAcceleration: optional Acceleration of the detected object from the ITS-S's reference point in z-direction - * at the time of measurement, in a pre-defined coordinate system, using the DF Acceleration1d. + * @field zAcceleration: optional Acceleration of the detected object in z-direction at the time of measurement, with the associated variance. * - * @field rollAngle: optional Roll angle of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * @field rollAngle: 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. * - * @field pitchAngle: optional Pitch angle of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * @field pitchAngle: 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. * - * @field yawAngle: optional Yaw angle of object from the ITS-S's reference pointat the time of measurement, in a pre-defined coordinate system. + * @field yawAngle: 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. * - * @field rollRate: optional Roll rate of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * @field rollSpeed: 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. * - * @field pitchRate: optional Pitch rate of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * @field pitchSpeed: 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. * - * @field yawRate: optional Yaw rate of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * @field yawSpeed: 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. * - * @field rollAcceleration: optional Roll acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * @field rollAcceleration: 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. * - * @field pitchAcceleration: optional Pitch acceleration of object from the ITS-S's reference point at the time of measurement, in a - * pre-defined coordinate system. The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the y-axis. + * @field pitchAcceleration: 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. * - * @field yawAcceleration: optional Yaw acceleration of object from the ITS-S's reference point at the time of measurement, in a pre-defined coordinate system. + * @field yawAcceleration: 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. * - * @field lowerTriangularCorrelationMatrixColumns: optional set of columns of a lower triangular positive semi definite correlation matrix for the - * kinematic state and attitude space provided for this object. - * The order of the columns and rows of the correlation matrix is as follows: - * - xCoordinate - * - yCoordinate + * @field lowerTriangularCorrelationMatrixColumns: 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 - * - xSpeed - * - ySpeed - * - zSpeed + * - velocityMagnitude + * - velocityDirection + * - xVelocity + * - yVelocity + * - zVelocityComponent + * - accelerationMagnitude + * - accelerationDirection * - xAcceleration * - yAcceleration * - zAcceleration * - rollAngle * - pitchAngle * - yawAngle - * - rollRate - * - pitchRate - * - yawRate + * - rollSpeed + * - pitchSpeed + * - yawSpeed * - rollAcceleration * - pitchAcceleration * - yawAcceleration * The number of lowerTriangularCorrelationMatrixColumns to be included "k" is thereby the number of provided - * values "n" of the kinematic state and attitude space minus 1: k = n-1. + * 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 space are not provided, they are omitted from + * In case certain values of the kinematic state and attitude vector are not provided, they are omitted from * the lowerTriangularCorrelationMatrixColumns. * * @field planarObjectDimension1: optional first dimension of object as provided by the sensor or environment model. @@ -5095,13 +5247,13 @@ PathPointAbsolute ::= SEQUENCE { * @field planarObjectDimension2: 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. * - * @field verticalObjectDimension: optionalvertical dimension of object as provided by the sensor or object model. + * @field verticalObjectDimension: optional vertical dimension of object as provided by the sensor or object model. * * @field objectRefPoint: 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. * - * @field objectAge: the age of the detected and described object, i.e. the difference in time between the moment + * @field objectAge: 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. * * @field objectConfidence: optional confidence associated to the object. The computation of the object confidence is based on a sensor's or @@ -5121,23 +5273,27 @@ PathPointAbsolute ::= SEQUENCE { */ PerceivedObject ::= SEQUENCE { - objectID Identifier, + objectID Identifier2B OPTIONAL, timeOfMeasurement DeltaTimeMilliSecondPosNeg, - xCoordinate CartesianCoordinateWithConfidence, + xCoordinate CartesianCoordinateWithConfidence, yCoordinate CartesianCoordinateWithConfidence, zCoordinate CartesianCoordinateWithConfidence OPTIONAL, - xSpeed SpeedExtended, - ySpeed SpeedExtended, - zSpeed SpeedExtended 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, - rollRate CartesianAngularSpeed OPTIONAL, - pitchRate CartesianAngularSpeed OPTIONAL, - yawRate CartesianAngularSpeed OPTIONAL, + rollSpeed CartesianAngularSpeed OPTIONAL, + pitchSpeed CartesianAngularSpeed OPTIONAL, + yawSpeed CartesianAngularSpeed OPTIONAL, rollAcceleration CartesianAngularAcceleration OPTIONAL, pitchAcceleration CartesianAngularAcceleration OPTIONAL, yawAcceleration CartesianAngularAcceleration OPTIONAL, @@ -5146,14 +5302,15 @@ PerceivedObject ::= SEQUENCE { planarObjectDimension2 ObjectDimension OPTIONAL, verticalObjectDimension ObjectDimension OPTIONAL, objectRefPoint ObjectRefPoint DEFAULT 0, - objectAge DeltaTimeMilliSecondPosNeg (0..1500),--tbd is it optional or not? + objectAge DeltaTimeMilliSecondPosNeg (0..1500) OPTIONAL, objectConfidence ObjectConfidence OPTIONAL, - sensorIdList SequenceOfId OPTIONAL, - dynamicStatus ObjectDynamicStatus OPTIONAL, -- tbd delete optional + sensorIdList SequenceOfIdentifier1B OPTIONAL, + dynamicStatus ObjectDynamicStatus OPTIONAL, classification ObjectClassDescription OPTIONAL, mapPosition MapPosition OPTIONAL, ... } + /** * This DF represents the shape of a polygonal area or of a right prism. * @@ -5169,7 +5326,7 @@ PerceivedObject ::= SEQUENCE { */ PolygonalShape ::= SEQUENCE { polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), - height StandardLength OPTIONAL, + height StandardLength12b OPTIONAL, ... } @@ -5194,9 +5351,9 @@ PolygonalShape ::= SEQUENCE { * @revision: V1.3.1 */ PosConfidenceEllipse ::= SEQUENCE { - semiMajorConfidence SemiAxisLength, - semiMinorConfidence SemiAxisLength, - semiMajorOrientation Wgs84AngleValue + semiMajorConfidence SemiAxisLength, + semiMinorConfidence SemiAxisLength, + semiMajorOrientation Wgs84AngleValue } /** @@ -5238,12 +5395,12 @@ PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar * @revision: V1.3.1 */ ProtectedCommunicationZone ::= SEQUENCE { - protectedZoneType ProtectedZoneType, - expiryTime TimestampIts OPTIONAL, - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - protectedZoneRadius ProtectedZoneRadius OPTIONAL, - protectedZoneID ProtectedZoneID OPTIONAL, + protectedZoneType ProtectedZoneType, + expiryTime TimestampIts OPTIONAL, + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + protectedZoneRadius ProtectedZoneRadius OPTIONAL, + protectedZoneID ProtectedZoneID OPTIONAL, ... } @@ -5288,8 +5445,8 @@ ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicat * @revision: V1.3.1 */ PtActivation ::= SEQUENCE { - ptActivationType PtActivationType, - ptActivationData PtActivationData + ptActivationType PtActivationType, + ptActivationData PtActivationData } /** @@ -5327,12 +5484,12 @@ PtActivation ::= SEQUENCE { * @revision: created in V2.1.1 */ RadialShape ::= SEQUENCE { - offsetPoint CartesianPosition3d OPTIONAL, - range StandardLength, - stationaryHorizontalOpeningAngleStart Wgs84AngleValue, - stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, - verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, + offsetPoint CartesianPosition3d OPTIONAL, + range StandardLength12b, + stationaryHorizontalOpeningAngleStart Wgs84AngleValue, + stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, ... } @@ -5356,11 +5513,11 @@ RadialShape ::= SEQUENCE { * @revision: created in V2.1.1 */ RadialShapes ::= SEQUENCE { - refPointId RefPointId DEFAULT 0, - xCoordinate CartesianCoordinateSmall, - yCoordinate CartesianCoordinateSmall, - zCoordinate CartesianCoordinateSmall OPTIONAL, - radialShapesList RadialShapesList, + refPointId Identifier1B, + xCoordinate CartesianCoordinateSmall, -- tbd: is this along the positive or the negative x axis? + yCoordinate CartesianCoordinateSmall, + zCoordinate CartesianCoordinateSmall OPTIONAL, + radialShapesList RadialShapesList, ... } @@ -5371,7 +5528,7 @@ RadialShapes ::= SEQUENCE { * @revision: created in V2.1.1 */ -RadialShapesList ::= SEQUENCE SIZE(1..10) OF RadialShapeDetails +RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF RadialShapeDetails /** * This DF describes a radial shape details. The triangular or cone-shaped volume is @@ -5404,11 +5561,11 @@ RadialShapesList ::= SEQUENCE SIZE(1..10) OF RadialShapeDetails * @revision: created in V2.1.1 */ RadialShapeDetails ::= SEQUENCE { - range StandardLength, - horizontalOpeningAngleStart CartesianAngleValue, - horizontalOpeningAngleEnd CartesianAngleValue, - verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, + range StandardLength12b, + horizontalOpeningAngleStart CartesianAngleValue, + horizontalOpeningAngleEnd CartesianAngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, ... } @@ -5423,7 +5580,7 @@ RadialShapeDetails ::= SEQUENCE { * * @field semiBreadth: represents half the breadth of the rectangle. * - * @field orientation: represents the orientation of the lenght of the rectangle in the WGS84 coordinate system. + * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. * * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. * @@ -5431,11 +5588,11 @@ RadialShapeDetails ::= SEQUENCE { * @revision: created in V2.1.1 */ RectangularShape ::= SEQUENCE { - centerPoint CartesianPosition3d OPTIONAL, - semiLength StandardLength, -- tbd use StandardLengthSmall instead? - semiBreadth StandardLength,-- tbd use StandardLengthSmall instead? - orientation Wgs84AngleValue, - height StandardLength OPTIONAL -- tbd use StandardLengthSmall instead? + centerPoint CartesianPosition3d OPTIONAL, + semiLength StandardLength12b, + semiBreadth StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL } /** @@ -5455,10 +5612,10 @@ RectangularShape ::= SEQUENCE { * @revision: description updated in V2.1.1 */ ReferencePosition ::= SEQUENCE { - latitude Latitude, - longitude Longitude, - positionConfidenceEllipse PosConfidenceEllipse, - altitude Altitude + latitude Latitude, + longitude Longitude, + positionConfidenceEllipse PosConfidenceEllipse, + altitude Altitude } /** @@ -5484,8 +5641,8 @@ RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType * @revision: created in V2.1.1 */ RoadSegmentReferenceId ::= SEQUENCE { - region RoadRegulatorId OPTIONAL, - id RoadSegmentID + region Identifier2B OPTIONAL, + id Identifier2B } /** @@ -5505,9 +5662,9 @@ RoadSegmentReferenceId ::= SEQUENCE { * @revision: created in V2.1.1 */ SafeDistanceIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, - safeDistanceIndicator SafeDistanceIndicator, - timeToCollision DeltaTimeHundredthOfSecond OPTIONAL, + subjectStation StationID OPTIONAL, + safeDistanceIndicator SafeDistanceIndicator, + timeToCollision DeltaTimeHundredthOfSecond OPTIONAL, ... } @@ -5525,16 +5682,7 @@ SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPositi * @category: Basic information * @revision: created in V2.1.1 */ -SequenceOfId ::= SEQUENCE SIZE(1..128, ...) OF Identifier - -/** - * This DF contains a list of DFs PathPointAbsolute. - * The component pathDeltaTime shall be either present in all elements of the list or be absent in all elements. - * - * @category: GeoReference information - * @revision: created in V2.1.1 - */ -SequenceOfPathPointAbsolute::= SEQUENCE (SIZE(1..16,...)) OF PathPointAbsolute +SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B /** * The DF contains a list of DF SafeDistanceIndication. @@ -5574,12 +5722,12 @@ SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF Tra */ Shape::= CHOICE { - rectangle RectangularShape, - circle CircularShape, - polygon PolygonalShape, - ellipse EllipticalShape, - radial RadialShape, - radialShapes RadialShapes, + rectangle RectangularShape, + circle CircularShape, + polygon PolygonalShape, + ellipse EllipticalShape, + radial RadialShape, + radialShapes RadialShapes, ... } @@ -5596,8 +5744,8 @@ Shape::= CHOICE { * @revision: V1.3.1 */ Speed ::= SEQUENCE { - speedValue SpeedValue, - speedConfidence SpeedConfidence + speedValue SpeedValue, + speedConfidence SpeedConfidence } /** @@ -5613,8 +5761,8 @@ Speed ::= SEQUENCE { * @revision: V2.1.1 */ SpeedExtended ::= SEQUENCE { - speedValue SpeedValueExtended, - speedConfidence SpeedConfidence + speedValue SpeedValueExtended, + speedConfidence SpeedConfidence } /** @@ -5648,8 +5796,8 @@ StabilityChangeIndication ::= SEQUENCE { * @revision: Created in V2.1.1 */ SteeringWheelAngle ::= SEQUENCE { - steeringWheelAngleValue SteeringWheelAngleValue, - steeringWheelAngleConfidence SteeringWheelAngleConfidence + steeringWheelAngleValue SteeringWheelAngleValue, + steeringWheelAngleConfidence SteeringWheelAngleConfidence } /** @@ -5673,8 +5821,8 @@ Traces ::= SEQUENCE SIZE(1..7) OF Path * @revision: Created in V2.1.1 */ TrafficIslandPosition ::= SEQUENCE { - oneSide LanePositionAndType, - otherSide LanePositionAndType, + oneSide LanePositionAndType, + otherSide LanePositionAndType, ... } @@ -5709,13 +5857,13 @@ TrafficIslandPosition ::= SEQUENCE { * @category: Vehicle information * @revision: Created in V2.1.1 */ -TrailerData ::= SEQUENCE { - refPointId RefPointId, - hitchPointOffset CartesianCoordinateSmall OPTIONAL, -- tbd or use standardLengthSmall - frontOverhang CartesianCoordinateSmall, -- tbd or use standardLengthSmall - rearOverhang CartesianCoordinateSmall, -- tbd or use standardLengthSmall - trailerWidth VehicleWidth OPTIONAL, - hitchAngle CartesianAngle OPTIONAL, +TrailerData ::= SEQUENCE { --tbd check descriptions above + refPointId Identifier1B, + hitchPointOffset StandardLength1B, -- tbd is the value unavailable needed? + frontOverhang StandardLength1B, + rearOverhang StandardLength1B, + trailerWidth VehicleWidth, + hitchAngle CartesianAngle, ... } @@ -5736,12 +5884,32 @@ TrailerData ::= SEQUENCE { * @revision: Created in V2.1.1 */ TrajectoryInterceptionIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, - trajectoryInterceptionProbability TrajectoryInterceptionProbability, - trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, + subjectStation StationID OPTIONAL, + trajectoryInterceptionProbability TrajectoryInterceptionProbability, + trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, ... } +/** + * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +VarLengthNumber::=CHOICE{ + content [0] INTEGER(0..127), -- one octet length + extension [1] Ext1 + } +Ext1::=CHOICE{ + content [0] INTEGER(128..16511), -- two octets length + extension [1] Ext2 +} +Ext2::=CHOICE{ + content [0] INTEGER(16512..2113663), -- three octets length + extension [1] Ext3 + } +Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length + /** * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. * @@ -5756,8 +5924,8 @@ TrajectoryInterceptionIndication ::= SEQUENCE { * @revision: V1.3.1 */ VerticalAcceleration ::= SEQUENCE { - verticalAccelerationValue VerticalAccelerationValue, - verticalAccelerationConfidence AccelerationConfidence + verticalAccelerationValue VerticalAccelerationValue, + verticalAccelerationConfidence AccelerationConfidence } /** @@ -5773,8 +5941,8 @@ VerticalAcceleration ::= SEQUENCE { * @revision: V1.3.1 */ VehicleIdentification ::= SEQUENCE { - wMInumber WMInumber OPTIONAL, - vDS VDS OPTIONAL, + wMInumber WMInumber OPTIONAL, + vDS VDS OPTIONAL, ... } @@ -5791,8 +5959,8 @@ VehicleIdentification ::= SEQUENCE { * @revision: V1.3.1 */ VehicleLength ::= SEQUENCE { - vehicleLengthValue VehicleLengthValue, - vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication + vehicleLengthValue VehicleLengthValue, + vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication } /** @@ -5812,10 +5980,10 @@ VehicleLength ::= SEQUENCE { * @revision: Created in V2.1.1 */ VruClusterInformation ::= SEQUENCE { - clusterId ClusterId OPTIONAL, - clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, - clusterCardinalitySize ClusterCardinalitySize, - clusterProfiles VruClusterProfiles, + clusterId ClusterId OPTIONAL, + clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, + clusterCardinalitySize ClusterCardinalitySize, + clusterProfiles VruClusterProfiles, ... } @@ -5825,7 +5993,7 @@ VruClusterInformation ::= SEQUENCE { * * @field pedestrian: VRU Profile 1 - Pedestrian. * - * @field bicyclistAndlightVruVehicle: VRU Profile 2 - Bicyclist. + * @field bicyclistAndLightVruVehicle: VRU Profile 2 - Bicyclist. * * @field motorcyclist: VRU Profile 3 - Motorcyclist. * @@ -5835,10 +6003,10 @@ VruClusterInformation ::= SEQUENCE { * @revision: Created in V2.1.1 */ VruProfileAndSubprofile ::= CHOICE { - pedestrian VruSubProfilePedestrian, - bicyclistAndlightVruVehicle VruSubProfileBicyclist, - motorcylist VruSubProfileMotorcyclist, - animal VruSubProfileAnimal, + pedestrian VruSubProfilePedestrian, + bicyclistAndLightVruVehicle VruSubProfileBicyclist, + motorcylist VruSubProfileMotorcyclist, + animal VruSubProfileAnimal, ... } @@ -5855,8 +6023,8 @@ VruProfileAndSubprofile ::= CHOICE { * @revision: Created in V2.1.1 */ Wgs84Angle ::= SEQUENCE { - value Wgs84AngleValue, - confidence Wgs84AngleConfidence + value Wgs84AngleValue, + confidence Wgs84AngleConfidence } @@ -5873,8 +6041,8 @@ Wgs84Angle ::= SEQUENCE { * @revision: V1.3.1 */ YawRate::= SEQUENCE { - yawRateValue YawRateValue, - yawRateConfidence YawRateConfidence + yawRateValue YawRateValue, + yawRateConfidence YawRateConfidence } END -- GitLab From b5dd67250f295e38cdb21102531b2d0a5f7f2404 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Wed, 8 Jun 2022 08:49:28 +0000 Subject: [PATCH 30/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 0 -> 304614 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/ETSI-ITS-CDD.md diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md new file mode 100644 index 0000000000000000000000000000000000000000..535a4138bdd3dff2f160e03e0c0a073292d9cb00 GIT binary patch literal 304614 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 Lr9wxdyLbN&iBH?y literal 0 HcmV?d00001 -- GitLab From 39dd7bd9d74e1a73edfdd283d55628b873b846c0 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Fri, 10 Jun 2022 08:11:53 +0000 Subject: [PATCH 31/91] Replace ITS-Container.asn --- ITS-Container.asn | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index b500bd7..e27e6a7 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -611,7 +611,7 @@ CauseCodeType ::= INTEGER { impassability (5), adverseWeatherCondition-Adhesion (6), - aquaplannning (7), + aquaplaning (7), hazardousLocation-SurfaceCondition (9), hazardousLocation-ObstacleOnTheRoad (10), @@ -1828,7 +1828,7 @@ LaneType::= INTEGER{ bus (8), taxi (9), hov (10), - hot (11), + hot (11), pedestrian (12), cycleLane (13), median (14), @@ -2668,7 +2668,7 @@ SensorType ::= INTEGER { pmd (7), inductionLoop (8), sphericalCamera (9), - uwb (10), + uwb (10), localAggregation (11), itsAggregation (12) } (0..15) @@ -3533,7 +3533,7 @@ VruDeviceUsage ::= ENUMERATED { * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. - + - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -4097,7 +4097,7 @@ CauseCodeChoice::= CHOICE { reserved4 SubCauseCodeType, impassability SubCauseCodeType, adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, - aquaplannning SubCauseCodeType, + aquaplaning SubCauseCodeType, reserved8 SubCauseCodeType, hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, @@ -4280,7 +4280,7 @@ CenDsrcTollingZone ::= SEQUENCE { CircularShape ::= SEQUENCE { nodeCenterPoint CartesianPosition3d OPTIONAL, radius StandardLength12b, - height StandardLength12b OPTIONAL, + height StandardLength12b OPTIONAL, ... } @@ -4605,7 +4605,7 @@ ExteriorLightsExtended ::= SEQUENCE { * @revision: created in V2.1.1 */ GeneralizedLanePosition::= CHOICE { - trafficLanePosition LanePosition, + trafficLanePosition LanePosition, nonTrafficLanePosition LanePositionAndType, trafficIslandPosition TrafficIslandPosition, mapPosition MapPosition, @@ -5664,7 +5664,7 @@ RoadSegmentReferenceId ::= SEQUENCE { SafeDistanceIndication ::= SEQUENCE { subjectStation StationID OPTIONAL, safeDistanceIndicator SafeDistanceIndicator, - timeToCollision DeltaTimeHundredthOfSecond OPTIONAL, + timeToCollision DeltaTimeTenthOfSecond OPTIONAL, ... } -- GitLab From 641f1a53c9fb6de79abefd517ccc82bc31e65a01 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Fri, 10 Jun 2022 08:16:33 +0000 Subject: [PATCH 32/91] Upload New File --- ETSI-ITS-CDD.asn | 6048 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 6048 insertions(+) create mode 100644 ETSI-ITS-CDD.asn diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn new file mode 100644 index 0000000..e27e6a7 --- /dev/null +++ b/ETSI-ITS-CDD.asn @@ -0,0 +1,6048 @@ +-- Draft CDD ASN.1 module Release 2. +-- Date: 08.06.2022 + + +ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +------------------------------------------ +-- Specification of CDD Data Elements: +------------------------------------------ + + +/** + * This DE indicates a change of acceleration. + * + * The value shall be set to: + * - 0 - `accelerate` - if the acceleration is positive. + * - 1 - `decelerate` - if the acceleration is negative. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AccelerationChange::= ENUMERATED { + accelerate (0), + decelerate (1) +} + +/** + * This DE represents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. + * - `102` if the data is unavailable. + * + * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported acceleration value may be valid and used by the application. + * + * @note: If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @unit 0,1 m/s2 + * @category: Kinematics information + * @revision: Description revised in V2.1.1 + */ +AccelerationConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. + * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle + * acceleration control system is engaged or not. Currently, this DE includes the information of the + * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise + * control system, cruise control system and speed limiter system. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `brakePedalEngaged` - Driver is stepping on the brake pedal, + * - 1 - `gasPedalEngaged` - Driver is stepping on the gas pedal, + * - 2 - `emergencyBrakeEngaged` - emergency brake system is engaged, + * - 3 - `collisionWarningEngaged`- collision warning system is engaged, + * - 4 - `accEngaged` - ACC is engaged, + * - 5 - `cruiseControlEngaged` - cruise control is engaged, + * - 6 - `speedLimiterEngaged` - speed limiter is engaged. + * + * Otherwise (for example when the corresponding system is not available due to non equipped system + * or information is unavailable), the corresponding bit shall be set to _0_. + * + * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. + * @category: Kinematics information + * @revision: V1.3.1 + */ +AccelerationControl ::= BIT STRING { + brakePedalEngaged (0), + gasPedalEngaged (1), + emergencyBrakeEngaged (2), + collisionWarningEngaged (3), + accEngaged (4), + cruiseControlEngaged (5), + speedLimiterEngaged (6) +} (SIZE(7)) + +/** + * This DE represents the value of an acceleration component in a defined coordinate system. + * + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: zero acceleration is indicated using n=0. + * @unit 0,1 m/s2 + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AccelerationValue ::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) -- tbd delete unavailable value? +} (-160 .. 161) + + +/** + * This DE indicates an access technology. + * + * The value shall be set to: + * - `0`: in case of any access technology class. + * - `1`: in case of ITS-G5 access technology class. + * - `2`: in case of LTE-V2X access technology class. + * - `3`: in case of NR-V2X access technology class. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +AccessTechnologyClass ::= ENUMERATED { + any (0), + itsg5Class (1), + ltev2xClass (2), + nrv2xClass (3), + ... +} + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case the information on the sub cause of the accident is unavailable, + * - 1 - `multiVehicleAccident` - in case more than two vehicles are involved in accident, + * - 2 - `heavyAccident` - in case the airbag of the vehicle involved in the accident is triggered, + * the accident requires important rescue and/or recovery work, + * - 3 - `accidentInvolvingLorry` - in case the accident involves a lorry, + * - 4 - `accidentInvolvingBus` - in case the accident involves a bus, + * - 5 - `accidentInvolvingHazardousMaterials`- in case the accident involves hazardous material, + * - 6 - `accidentOnOppositeLane` - in case the accident happens on opposite lanes, + * - 7 - `unsecuredAccident` - in case the accident is not secured, + * - 8 - `assistanceRequested` - in case rescue and assistance are requested, + * - 9-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AccidentSubCauseCode ::= INTEGER { + unavailable (0), + multiVehicleAccident (1), + heavyAccident (2), + accidentInvolvingLorry (3), + accidentInvolvingBus (4), + accidentInvolvingHazardousMaterials (5), + accidentOnOppositeLane (6), + unsecuredAccident (7), + assistanceRequested (8) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailabl. + * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road. + * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road. + * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road. + * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road. + * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road. + * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road. + * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road. + * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. + * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface. + * - 10 - `roadsSalted` - when the low road adhesion is due to salted road. + * - 11-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { + unavailable (0), + heavyFrostOnRoad (1), + fuelOnRoad (2), + mudOnRoad (3), + snowOnRoad (4), + iceOnRoad (5), + blackIceOnRoad (6), + oilOnRoad (7), + looseChippings (8), + instantBlackIce (9), + roadsSalted (10) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable. + * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind. + * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail. + * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane. + * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm. + * - 5 - `tornado` - in case the type of extreme weather condition is tornado. + * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. + * - 7-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { + unavailable (0), + strongWinds (1), + damagingHail (2), + hurricane (3), + thunderstorm (4), + tornado (5), + blizzard (6) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. + * + * The value shall be set to: + * - 0 - `unavailable` : in case information on the type of precipitation is unavailable. + * - 1 - `heavyRain` : in case the type of precipitation is heavy rain. + * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall. + * - 3 - `softHail` : in case the type of precipitation is soft hail. + * - 4-255 : are reserved for future usage + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { + unavailable (0), + heavyRain (1), + heavySnowfall (2), + softHail (3) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable. + * - 1 - `fog` - in case the cause of low visibility is fog. + * - 2 - `smoke` - in case the cause of low visibility is smoke. + * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall. + * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain. + * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail. + * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare. + * - 7 - `sandstorms` - in case the cause of low visibility is sand storm. + * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. + * - 9-255 - are reserved for future usage + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { + unavailable (0), + fog (1), + smoke (2), + heavySnowfall (3), + heavyRain (4), + heavyHail (5), + lowSunGlare (6), + sandstorms (7), + swarmsOfInsects (8) +} (0..255) + +/** + * This DE represents the air humidity in tens of percent. + * + * The value shall be set to: + * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0.1 percent and greater than (n-1) x 0.1 percent. + * - `1001` indicates that the air humidity is unavailable. + * + * @category: Basic information + * @unit: 0,1 % + * @revision: created in V2.1.1 + */ +AirHumidity ::= INTEGER { + oneHundredPercent (1000), + unavailable (1001) +} (1..1001) + +/** + * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. + * + * The value shall be set to: + * - 0 - `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. + * - 1 - `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. + * - 2 - `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. + * - 3 - `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. + * - 4 - `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. + * - 5 - `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. + * - 6 - `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. + * - 7 - `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. + * - 8 - `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. + * - 9 - `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. + * - 10 - `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. + * - 11 - `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. + * - 12 - `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. + * - 13 - `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. + * - 14 - `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. + * - 15 - `unavailable` if the altitude accuracy information is unavailable + * + * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused + * by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported altitude value may be valid and used by the application. + * + * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported + * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +AltitudeConfidence ::= ENUMERATED { + alt-000-01 (0), + alt-000-02 (1), + alt-000-05 (2), + alt-000-10 (3), + alt-000-20 (4), + alt-000-50 (5), + alt-001-00 (6), + alt-002-00 (7), + alt-005-00 (8), + alt-010-00 (9), + alt-020-00 (10), + alt-050-00 (11), + alt-100-00 (12), + alt-200-00 (13), + outOfRange (14), + unavailable (15) +} + +/** + * This DE represents the altitude value in a WGS84 co-ordinate system. + * + * The value shall be set to: + * - `-100 000` if the altitude is equal to or less than -1 000 m. + * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0.01 meters and greater than (n-1) x 0,01 meters. + * - `800 000` if the altitude greater than 7 999 m. + * - `800 001` if the information is not available. + * + * @unit: 0.01 meter + * @category: GeoReference information + * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) + */ +AltitudeValue ::= INTEGER { + negativeOutOFRange (-100000), + postiveOutOfRange (800000), + unavailable (800001) +} (-100000..800001) + +/** + * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. + * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. + * - `127` if the accuracy information is not available. + * + * @unit: 0,1 degrees + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. + * For correlation computation, maximum interval levels can be assumed. + * + * The value shall be set to: + * - 0 - `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second + * - 1 - `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second + * - 2 - `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second + * - 3 - `degSec-001-00` if the accuracy is equal to or less than 1 degree/second + * - 4 - `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second + * - 5 - `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second + * - 6 - `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second + * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second + * - 8 - `unavailable` if the accuracy information is unavailable + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngularSpeedConfidence ::= ENUMERATED { + degSec-000-01 (0), + degSec-000-05 (1), + degSec-000-10 (2), + degSec-001-00 (3), + degSec-005-00 (4), + degSec-010-00 (5), + degSec-100-00 (6), + outOfRange (7), + unavailable (8) +} + +/** + * Tis DE represents the absolute accuracy of a reported angular acceleration value for a confidence level of 95%. + * For correlation computation, maximum interval levels shall be assumed. + * + * The value shall be set to: + * - 0 - `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second2 + * - 1 - `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second2 + * - 2 - `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second2 + * - 3 - `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second2 + * - 4 - `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second2 + * - 5 - `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second2 + * - 6 - `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second2 + * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second2 + * - 8 - `unavailable` if the accuracy information is unavailable + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngularAccelerationConfidence ::= ENUMERATED { + degSecSquared-000-01 (0), + degSecSquared-000-05 (1), + degSecSquared-000-10 (2), + degSecSquared-001-00 (3), + degSecSquared-005-00 (4), + degSecSquared-010-00 (5), + degSecSquared-100-00 (6), + outOfRange (7), + unavailable (8) +} + +/** + * This DE indicates the number of axels of a passing train. + * + * The following values are specified: + * - `n(n > 2 and n < 1001)` indicates that the train has n x axels. + * - `1001`indicates that the number of axels is out of range. + * - `1002` the information is unavailable. + * + * + * @unit: Number of axels + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +AxlesCount ::= INTEGER{ + outOfRange (1001), + unavailable (1002) +} (2..1002) + +/** + * This DE represent the measured uncompesated atmospheric pressure in units of hPascal (hPa). + * + * The following values are specified: + * - `2999` indicates that the applicable value is less than 299.9 hPa. + * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 0.1 hPa and greater than (n-1) x 0.1 hPa. + * - `12001` indicates that the values is greater than 1200 hPa. + * - `12002` indicates that the information is not available. + * + * @category: Basic information + * @unit: 0.1 hPa + * @revision: Created in V2.1.1 +*/ +BarometricPressure ::= INTEGER{ + outOfRangelower (2999), + outOfRangeUpper (12001), + unavailable (12002) +} (2999..12002) + + +/** + * This DE indicates the cardinal number of bogies of a train. + * +* The value shall be set to: + * - `n (n > 1 and n < 100)` indicates that the train has n x bogie + * - `100`indicates that the number of bogie is out of range. + * - `101` the information is unavailable. + * + * @unit: Number of bogies + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +BogiesCount ::= INTEGER{ + outOfRange (100), + unavailable (101) +} (2..101) + +/** + * The DE represents a cardinal number that counts the size of a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CardinalNumber1B ::= INTEGER(1..255) + +/** + * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. + * - `36001` if the accuracy information is not available. + * + * The value 3600 shall not be used. + * + * @unit 0,1 degrees + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngleValue ::= INTEGER { + valueNotUsed (3600), + unavailable (3601) +} (0..3601) + +/** + * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `-32766` if the speed is equal to or less than 327,66 degrees/s. + * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s. + * - `32766` if the speed is greater than 327,65 degrees/s. + * - `32767` if the information is unavailable. + * + * @unit 0,01 degrees/s + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngularSpeedValue ::= INTEGER { + negativeOutofRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +/** + * This DE represents an angular acceleration value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `-32766` if the acceleration is equal to or less than 327,66 degrees/s2 + * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than n x 0,01 degrees/s2, + and greater than `(n-1)` x 0,01 degrees/s2. + * - `32766` if the acceleration is greater than 327,65 degrees/s2 + * - `32767` if the information is unavailable + * + * @unit 0,01 degrees/s2 (degrees per second squared) + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngularAccelerationValue ::= INTEGER { + negativeOutofRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +/** + *The DE represents the value of the cause code of an event. + * + * The value shall be set to: + * - 0 - - reserved for future use, + * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, + * - 2 - `accident` - in case the type of event is a road accident, + * - 3 - `roadworks` - in case the type of event is roadwork, + * - 4 - reserved for future usage, + * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any + * blocking of a road, partial or total, which has not been adequately + * secured and signposted, + * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, + * - 7 - `aquaplaning` - danger of aquaplaning on the road, + * - 8 - reserved for future usage, + * - 9 - `hazardousLocation-SurfaceCondition` - in case the type of event is abnormal road surface condition, + * - 10 - `hazardousLocation-ObstacleOnTheRoad` - in case the type of event is obstacle on the road, + * - 11 - `hazardousLocation-AnimalOnTheRoad` - in case the type of event is animal on the road, + * - 12 - `humanPresenceOnTheRoad` - in case the type of event is human presence on the road, + * - 13 - reserved for future usage, + * - 14 - `wrongWayDriving` - in case the type of the event is vehicle driving in wrong way, + * - 15 - `rescueAndRecoveryWorkInProgress` - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, + * - 16 - reserved for future usage, + * - 17 - `adverseWeatherCondition-ExtremeWeatherCondition`- in case the type of event is extreme weather condition, + * - 18 - `adverseWeatherCondition-Visibility` - in case the type of event is low visibility, + * - 19 - `adverseWeatherCondition-Precipitation` - in case the type of event is precipitation, + * - 20 - `violence` - in case the the type of event is human violence on or near the road, + * - 21-25 - reserved for future usage, + * - 26 - `slowVehicle` - in case the type of event is slow vehicle driving on the road, + * - 27 - `dangerousEndOfQueue` - in case the type of event is dangerous end of vehicle queue, + * - 28-90 - are reserved for future usage, + * - 91 - `vehicleBreakdown` - in case the type of event is break down vehicle on the road, + * - 92 - `postCrash` - in case the type of event is a detected crash, + * - 93 - `humanProblem` - in case the type of event is human health problem in vehicles involved in traffic, + * - 94 - `stationaryVehicle` - in case the type of event is stationary vehicle, + * - 95 - `emergencyVehicleApproaching` - in case the type of event is approaching vehicle operating emergency mission, + * - 96 - `hazardousLocation-DangerousCurve` - in case the type of event is dangerous curve, + * - 97 - `collisionRisk` - in case the type of event is a collision risk, + * - 98 - `signalViolation` - in case the type of event is signal violation, + * - 99 - `dangerousSituation` - in case the type of event is dangerous situation in which autonomous safety system in vehicle + * is activated, + * - 100 - `railwayLevelCrossing` - in case the type of event is a railway level crossing. + * - 101-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +CauseCodeType ::= INTEGER { + trafficCondition (1), + accident (2), + roadworks (3), + + impassability (5), + adverseWeatherCondition-Adhesion (6), + aquaplaning (7), + + hazardousLocation-SurfaceCondition (9), + hazardousLocation-ObstacleOnTheRoad (10), + hazardousLocation-AnimalOnTheRoad (11), + humanPresenceOnTheRoad (12), + + wrongWayDriving (14), + rescueAndRecoveryWorkInProgress (15), + + adverseWeatherCondition-ExtremeWeatherCondition (17), + adverseWeatherCondition-Visibility (18), + adverseWeatherCondition-Precipitation (19), + violence (20), + + slowVehicle (26), + dangerousEndOfQueue (27), + + vehicleBreakdown (91), + postCrash (92), + humanProblem (93), + stationaryVehicle (94), + emergencyVehicleApproaching (95), + hazardousLocation-DangerousCurve (96), + collisionRisk (97), + signalViolation (98), + dangerousSituation (99), + railwayLevelCrossing (100) +} (0..255) + +/** + * This DF represents the value of a cartesian coordinate with a range of -30,93 meters to +10,00 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateSmall::= INTEGER { + negativeOutOfRange (-3094), + positiveOutOfRange (1001) +} (-3094..1001) -- this is 12 bit, tbd question: increase the range by "one bit" to make this more practical for common usage? + +/** + * This DF represents the value of a cartesian coordinate with a range of -327,67 to + 327,66 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinate::= INTEGER{ + negativeOutOfRange (-32768), + positiveOutOfRange (32767) +} (-32768..32767) + +/** + * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateLarge::= INTEGER{ + negativeOutOfRange (-131072), + positiveOutOfRange (131071) +} (-131072..131071) + +/** + * This DE represents the ID of a CEN DSRC tolling zone. + * + * @category: Communication information + * @revision: V1.3.1 + */ +CenDsrcTollingZoneID::= ProtectedZoneID + +/** + * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 (for the cluster leader) . + * + * The value shall be set to `0` if the information is unavailable. + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterCardinalitySize::= INTEGER { + unavailable (0), + onlyLeader (1) +} (0..255) + +/** + * This DE represents the identifier of a cluster. + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterId ::= INTEGER(0..255) + +/** + * This DE indicates the reason why a cluster leader intends to break up the cluster. + * + * The value shall be set to: + * - 0 - `notProvided` - if the information is not provided. + * - 1 - `clusteringPurposeCompleted` - if the cluster purposes has been completed. + * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box. + * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster. + * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps. + * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. + * - 6 to 15 - reserved for future use + * + * @category: Cluster information + * @revision: Created in V2.1.1 +*/ +ClusterBreakupReason ::= ENUMERATED { + notProvided (0), + clusteringPurposeCompleted (1), + leaderMovedOutOfClusterBoundingBox (2), + joiningAnotherCluster (3), + enteringLowRiskAreaBasedOnMaps (4), + receptionOfCpmContainingCluster (5), + max(15) +} + +/** + * This DE indicates the reason why a cluster participant is leaving the cluster. + * + * The value shall be set to: + * - 0 - `notProvided ` - if the information is not provided. + * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore. + * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbounded by the leader. + * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box. + * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of adefined range. + * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster. + * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure. + * - 7 - `failedJoin` - if the participant failed to join the cluster. + * - 8 - `safetyCondition` - if a safety condition applies. + * - 9 to 15 - reserved for future use + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterLeaveReason ::= ENUMERATED { + notProvided (0), + clusterLeaderLost (1), + clusterDisbandedByLeader (2), + outOfClusterBoundingBox (3), + outOfClusterSpeedRange (4), + joiningAnotherCluster (5), + cancelledJoin (6), + failedJoin (7), + safetyCondition (8), + max(15) +} + +/** + * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of collision risk is unavailable, + * - 1 - `longitudinalCollisionRisk`- in case the type of detected collision risk is longitudinal collision risk, + * e.g. forward collision or face to face collision, + * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, + * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, + * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users + * e.g. pedestrians or bicycles, + * - 5-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +CollisionRiskSubCauseCode ::= INTEGER { + unavailable (0), + longitudinalCollisionRisk (1), + crossingCollisionRisk (2), + lateralCollisionRisk (3), + vulnerableRoadUser (4) +}(0..255) + +/** + * This DE represents a confidence level in percentage. + * + * The value shall be set to: + * + * - `0` : in case the confidence value is unknown but the reported value is valid. + * - `n (n > 0 and n < 101)` : for the confidence value in %. + * - `101` : in case the confidence value is not available. + * + * @unit Percent + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +ConfidenceLevel ::= INTEGER { + unknown (0), + unavailable (101) +} (0..101) + +/** + * This DE represents the absolute accuracy of measurement to a confidence level of 95%. + * + * The value shall be set to: + * - `n` (`n > 0` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. + * - `4094` if the accuracy information is greater than 40,93 meter. + * - `4095` if the accuracy information is not available. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CoordinateConfidence ::= INTEGER { + outOfRange (4094), + unavailable (4095) +} (0..4095) + +/** + * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. + * + * The following values are specified. + * - `-100` indicates full negative correlation + * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100. + * - `0` indicates not correlated or unavailable + * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. + * - `100` indicates full positive correlation + * + * @unit: the value is scaled by 100 + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +CorrelationRowValue ::= INTEGER { + full-negative-correlation (-100), + no-correlation (0), + full-positive-correlation (100) +} (-100..100) + +/** + * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. + * + * The value shall be set to: + * - 0 - `yawRateUsed` - if the yaw rate is used. + * - 1 - `yawRateNotUsed` - if the yaw rate is not used. + * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +CurvatureCalculationMode ::= ENUMERATED { + yawRateUsed (0), + yawRateNotUsed (1), + unavailable (2), + ... +} + +/** + * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. + * + * The value shall be set to: + * - 0 - `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. + * - 1 - `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. + * - 2 - `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. + * - 3 - `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. + * - 4 - `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. + * - 5 - `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. + * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. + * - 7 - `unavailable` if the information is not available. + * + * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported curvature value may be valid and used by the application. + * + * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid + * and therefore cannot be trusted. Such value is not useful for the application. + * + * @category: Vehicle information + * @revision: description revised in V2.1.1 +*/ +CurvatureConfidence ::= ENUMERATED { + onePerMeter-0-00002 (0), + onePerMeter-0-0001 (1), + onePerMeter-0-0005 (2), + onePerMeter-0-002 (3), + onePerMeter-0-01 (4), + onePerMeter-0-1 (5), + outOfRange (6), + unavailable (7) +} + +/** + * This DE describes vehicle turning curve with the following information: + * ``` + * Value = 1 / Radius * 10000 + * ``` + * wherein radius is the vehicle turning curve radius in meters. + * + * Positive values indicate a turning curve to the left hand side of the driver. + * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. + * + * The value shall be set to: + * - `-1023` for values smaller than -1023. + * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1). + * - `0` when the vehicle is moving straight. + * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1). + * - `1022`, for values greater than 1021. + * - `1023`, if the information is not available. + * + * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. + * + * @unit: 1 over 10 000 metres + * @category: Vehicle information + * @revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) + */ +CurvatureValue ::= INTEGER { + outOfRangeNegative (-1023), + straight (0), + outOfRangePositive (1022), + unavailable (1023) +} (-1023..1023) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. + * + * The following value are specified: + * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, + * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, + * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, + * - 3 - `queueAroundBend` - in case the dangerous end of queue is detected around the road bend, + * - 4 - `queueInTunnel` - in case queue is detected in tunnel, + * - 5-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DangerousEndOfQueueSubCauseCode ::= INTEGER { + unavailable (0), + suddenEndOfQueue (1), + queueOverHill (2), + queueAroundBend (3), + queueInTunnel (4) +} (0..255) + +/** + * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. + * The value is assigned according to `_class_` and `_division_` definitions of dangerous goods as specified in part II, + * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. + * + * + * @category Vehicle information + * @revision: V1.3.1 + */ +DangerousGoodsBasic::= ENUMERATED { + explosives1 (0), + explosives2 (1), + explosives3 (2), + explosives4 (3), + explosives5 (4), + explosives6 (5), + flammableGases (6), + nonFlammableGases (7), + toxicGases (8), + flammableLiquids (9), + flammableSolids (10), + substancesLiableToSpontaneousCombustion (11), + substancesEmittingFlammableGasesUponContactWithWater (12), + oxidizingSubstances (13), + organicPeroxides (14), + toxicSubstances (15), + infectiousSubstances (16), + radioactiveMaterial (17), + corrosiveSubstances (18), + miscellaneousDangerousSubstances (19) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousSituation` + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, + * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, + * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, + * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, + * - 4 - `absEngaged` - in case Anti-lock braking system (ABS) is engaged, + * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, + * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, + * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, + * - 8-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DangerousSituationSubCauseCode ::= INTEGER { + unavailable (0), + emergencyElectronicBrakeEngaged (1), + preCrashSystemEngaged (2), + espEngaged (3), + absEngaged (4), + ebEngaged (5), + brakeWarningEngaged (6), + collisionRiskWarningEngaged (7) +} (0..255) + +/** + * This DE represents an offset altitude with regards to a defined altitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `-12700` for values equal to or lower than -127 metres. + * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 meter below the reference position. + * - `0` for no altitudinal offset. + * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 meter above the reference position. + * - `12799` for values equal to or greater than 127,99 metres. + * - `12800` when the information is unavailable. + * + * @unit: 0.01 metre + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaAltitude ::= INTEGER { + negativeOutOfRange (-12700), + positiveOutOfRange (12799), + unavailable (12800) +} (-12700..12800) + +/** + * This DE represents an offset latitude with regards to a defined latitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. + * - `0` for no latitudinal offset. + * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the north from the reference position. + * - `131072` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLatitude ::= INTEGER { + unavailable (131072) +} (-131071..131072) + + +/** + * This DE represents an offset latitude with regards to a defined latitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. + * - `0` for no latitudinal offset. + * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the north from the reference position. + * - `32767` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLatitudeSmall::= INTEGER { + unavailable (32767) +} (-32766..32767) + + +/** + * This DE represents an offset longitude with regards to a defined longitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. + * - `0` for no longitudinal offset. + * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the east from the reference position. + * - `131072` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLongitude ::= INTEGER { + unavailable (131072) +} (-131071..131072) + +/** + * This DE represents an offset longitude with regards to a defined longitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. + * - `0` for no longitudinal offset. + * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the east from the reference position. + * - `32767` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLongitudeSmall::= INTEGER { + unavailable (32767) +} (-32766..32767) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 0,01 s + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) + +/** + * This DE represents a difference in time with respect to a reference time. + + * Example: a time interval between two consecutive message transmissions. + * + * @unit: 1 ms + * @category: Basic information + * @revision: Created in V2.1.1 from the DE TransmissionInterval + */ +DeltaTimeMilliSecondPos ::= INTEGER (1..10000) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 1 ms + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) + +/** + * This DE represents a difference in time with respect to a reference time. + * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, + * multiply by 256 (i.e. append a `00` byte) + * + * @unit: 256 milliseconds + * @category: Basic information + * @revision: Created in V2.1.1 + */ +DeltaTimeQuarterSecond::= INTEGER (1..255) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 0,1 s + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeTenthOfSecond::= INTEGER { + unavailable (127) +} (0..127) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 1 s + * @category: Basic information + * @revision: Created in V2.1.1 from ValidityDuration +*/ +DeltaTimeSecond ::= INTEGER (0..86400) + + +/** + * This DE indicates a direction with respect to a defined reference direction. + * Example: a reference direction may be implicitly defined by the definition of a geographical zone. + * + * The value shall be set to: + * - 0 - `sameDirection` - to indicate the same direction as the reference direction. + * - 1 - `oppositeDirection` - to indicateopposite direction as the reference direction. + * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction. + * - 3 - `unavailable` - to indicate that the information is unavailable. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +Direction::= INTEGER{ + sameDirection (0), + oppositeDirection (1), + bothDirections (2), + unavailable (3) + } (0..3) + +/** + * This DE indicates in which direction something is moving. + * + * The value shall be set to: + * - 0 - `forward` - to indicate it is moving forward. + * - 1 - `backwards` - to indicate it is moving backwards. + * - 2 - `unavailable` - to indicate that the information is unavailable. + * + * @category: Kinematics information + * @revision: editorial update in V2.1.1 + */ +DriveDirection ::= ENUMERATED { + forward (0), + backward (1), + unavailable (2) +} + +/** + * This DE indicates whether a driving lane is open to traffic. + * + * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall + * correspond to the total number of the driving lanes in the carriageway. + * + * The numbering is matched to @ref LanePosition. + * The bit `0` is used to indicate the innermost lane, bit `1` is used to indicate the second lane from inside border. + * + * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. + * + * @note:Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) + +/** + * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. + * If that is the case, the value is *TRUE*, otherwise *FALSE*. + * + * @category: Vehicle information + * @revision: editorial update in V2.1.1 + */ +EmbarkationStatus ::= BOOLEAN + +/** + * This DE indicates the right of priority requested or assumed by an operating emergency vehicle. + * The right-of-priority bit shall be set to `1` if the corresponding right is requested. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way. + * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. + * + * @category: Traffic information + * @revision: description revised in V2.1.1 + */ +EmergencyPriority ::= BIT STRING { + requestForRightOfWay (0), + requestForFreeCrossingAtATrafficLight (1) +} (SIZE(2)) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event + * is unavailable, + * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, + * - 2 -`prioritizedVehicleApproaching` - in case a prioritized vehicle (e.g. bus) is approaching, + * - 3-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +EmergencyVehicleApproachingSubCauseCode ::= INTEGER { + unavailable (0), + emergencyVehicleApproaching (1), + prioritizedVehicleApproaching (2) +} (0..255) + +/** + * This DE indicated the type of energy being used and stored in vehicle. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle. + * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle. + * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle. + * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle. + * - 4 - `diesel` - when diesel is being used and stored in vehicle. + * - 5 - `gasoline` - when gasoline is being used and stored in vehicle. + * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. + * + * - Otherwise, the corresponding bit shall be set to `0`. + * + * @category: Vehicle information + * @revision: editorial revision in V2.1.1 + */ +EnergyStorageType ::= BIT STRING { + hydrogenStorage (0), + electricEnergyStorage (1), + liquidPropaneGas (2), + compressedNaturalGas (3), + diesel (4), + gasoline (5), + ammonia (6) +}(SIZE(7)) + +/** + * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } + +/** + * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} + +/** + * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} + +/** + * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} + +/** + * This DE describes the status of the exterior light switches of a vehicle. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on. + * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on. + * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on. + * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on. + * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on. + * - 5 - `reverseLightOn` - when the reverse light switch is on. + * - 6 - `fogLightOn` - when the tail fog light switch is on. + * - 7 - `parkingLightsOn` - when the parking light switch is on. + * + * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, + * either manually by the driver or automatically by a vehicle system. The bit value does not indicate + * if the corresponding lamps are alight or not. + * + * If a vehicle is not equipped with a certain light or if the light switch status information is not available, + * the corresponding bit shall be set to `0`. + * + * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not + * alternate with the blinking interval. + * + * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. + * + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +ExteriorLights ::= BIT STRING { + lowBeamHeadlightsOn (0), + highBeamHeadlightsOn (1), + leftTurnSignalOn (2), + rightTurnSignalOn (3), + daytimeRunningLightsOn (4), + reverseLightOn (5), + fogLightOn (6), + parkingLightsOn (7) +} (SIZE(8)) + +/** + * This DE represents a timestamp based on TimestampIts modulo 65 536. + * This means that generationDeltaTime = TimestampIts mod 65 536. + * + * @category Time information + * @revision: Created in V2.1.1 based on EN 302 637-2 +*/ +GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) + +/** + * This DE indicates the current status of a hard shoulder: whether it is available for special usage + * (e.g. for stopping or for driving) or closed for all vehicles. + * + * The value shall be set to: + * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations. + * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case. + * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 + */ +HardShoulderStatus ::= ENUMERATED { + availableForStopping (0), + closed (1), + availableForDriving (2)} + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, + * - 1 - `wildAnimals` - in case wild animals are detected on the road, + * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, + * - 3 - `smallAnimals` - in case small size animal is detected on the road, + * - 4 - `largeAnimals` - in case large size animal is detected on the road, + * - 5-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + wildAnimals (1), + herdOfAnimals (2), + smallAnimals (3), + largeAnimals (4) +} (0..255) + +/** + * This DE represents the sub cause code of the @ref CauseCode `hazardousLocation-DangerousCurve`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, + * - 1 - `dangerousLeftTurnCurve` - in case the dangerous curve is a left turn curve, + * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, + * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, + * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, + * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves stating with a right turn curve, + * - 6-255 - are reserved for future usage. + * + * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass + * and vehicle speed driving on the curve. This definition is out of scope of the present document. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { + unavailable (0), + dangerousLeftTurnCurve (1), + dangerousRightTurnCurve (2), + multipleCurvesStartingWithUnknownTurningDirection (3), + multipleCurvesStartingWithLeftTurn (4), + multipleCurvesStartingWithRightTurn (5) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the detected obstacle is unavailable, + * - 1 - `shedLoad` - in case detected obstacle is large amount of obstacles (shedload), + * - 2 - `partsOfVehicles`- in case detected obstacles are parts of vehicles, + * - 3 - `partsOfTyres` - in case the detected obstacles are parts of tyres, + * - 4 - `bigObjects` - in case the detected obstacles are big objects, + * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, + * - 6 - `hubCaps` - in case the detected obstacles are hub caps, + * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles, + * - 8-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + shedLoad (1), + partsOfVehicles (2), + partsOfTyres (3), + bigObjects (4), + fallenTrees (5), + hubCaps (6), + waitingVehicles (7) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. + * +The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the road surface condition is unavailable, + * - 1 - `rockfalls` - in case rock falls are detected on the road surface, + * - 2 - `earthquakeDamage`- in case the road surface is damaged by earthquake, + * - 3 - `sewerCollapse` - in case of sewer collapse on the road surface, + * - 4 - `subsidence` - in case road surface is damaged by subsidence, + * - 5 - `snowDrifts` - in case road surface is damaged due to snow drift, + * - 6 - `stormDamage` - in case road surface is damaged by strong storm, + * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, + * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, + * - 9 - `fallingIce` - in case road surface damage is due to falling ice, + * - 10 - `fire` - in case there is fire on or near to the road surface, + * - 11-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { + unavailable (0), + rockfalls (1), + earthquakeDamage (2), + sewerCollapse (3), + subsidence (4), + snowDrifts (5), + stormDamage (6), + burstPipe (7), + volcanoEruption (8), + fallingIce (9), + fire (10) +} (0..255) + +/** + * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. + * +The value shall be set to: + * - `1` if the heading accuracy is equal to or less than 0,1 degree, + * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, + * - `125` if the heading accuracy is equal to or less than 12,5 degrees, + * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, + * - `127` if the heading accuracy information is not available. + * + * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, + * such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported heading value may be valid and used by the application. + * + * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported + * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleConfidence instead. + * + * @unit: 0,1 degree + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +HeadingConfidence ::= Wgs84AngleConfidence + +/** +HeadingValue + * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. + * + * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleValue instead. + * + * Unit: 0,1 degree + * Categories: GeoReference information + * @revision: Description revised in V2.1.1 (usage of value 3600 specified) +*/ +HeadingValue ::= Wgs84AngleValue + +/** + * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle + * rear to front). + * + * The value shall be set to: + * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter. + * - `99` if the height is out of range, i.e. equal to or greater than 98 cm. + * - `100` if the height information is not available. + * + * @unit 0,01 meter + * @category Vehicle information + * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) + */ +HeightLonCarr ::= INTEGER { + unavailable(100) +} (1..100) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, + * - 1 - `childrenOnRoadway` - in case children are detected on the road event, + * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, + * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road, + * - 4-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + childrenOnRoadway (1), + cyclistOnRoadway (2), + motorcyclistOnRoadway (3) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, + * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, + * - 2 - `heartProblem` - in case human problem is due to heart problem, + * - 3-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HumanProblemSubCauseCode ::= INTEGER { + unavailable (0), + glycemiaProblem (1), + heartProblem (2) +} (0..255) + +/** + * This DE is a general identifier. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +Identifier1B ::= INTEGER (0..255) + +/** + * This DE is a general identifier. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +Identifier2B ::= INTEGER (0..65535) + +/** + * This DE represents the quality level of provided information. + * + * The value shall be set to: + * - 0 - if the information is unavailable. + * - 1 - if the quality level is lowest + * - `n (n > 1 and n < 7)` if the quality level is n. + * - 7 - if the quality level is highest + * @note: Definition of quality level is out of scope of the present document. + * + * @category: Basic information + * @revision: Editorial update in V2.1.1 + */ +InformationQuality ::= INTEGER (0..7) + +/** + * This DE defines the type of an interference management zone, so that an ITS-S can + * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * It is an extension of the type @ref ProtectedZoneType. + + * + * The value shall be set to: + * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling + * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.24], clause 7 + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +InterferenceManagementZoneType ::= ENUMERATED { + permanentCenDsrcTolling (0), + temporaryCenDsrcTolling (1), + unavailable (2), + urbanRail (3), + satelliteStation (4), + fixedLinks (5), + ... +} + +/** + * This DE represents the vehicle type according to ISO 3833 [4]. + * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. + * + * The value shall be set to: + * - 0 - `passengerCar` - term No 3.1.1 + * - 1 - `saloon` - term No 3.1.1.1 (sedan) + * - 2 - `convertibleSaloon` - term No 3.1.1.2 + * - 3 - `pullmanSaloon` - term No 3.1.1.3 + * - 4 - `stationWagon` - term No 3.1.1.4 + * - 5 - `truckStationWagon` - term No 3.1.1.4.1 + * - 6 - `coupe` - term No 3.1.1.5 (coupe) + * - 7 - `convertible` - term No 3.1.1.6 (open tourer, roadstar, spider) + * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 + * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 + * - 10 - `specialPassengerCar` - term No 3.1.1.9 + * - 11 - `bus (11)` - term No 3.1.2 + * - 12 - `minibus` - term No 3.1.2.1 + * - 13 - `urbanBus` - term No 3.1.2.2 + * - 14 - `interurbanCoach` - term No 3.1.2.3 + * - 15 - `longDistanceCoach` - term No 3.1.2.4 + * - 16 - `articulatedBus` - term No 3.1.2.5 + * - 17 - `trolleyBus ` - term No 3.1.2.6 + * - 18 - `specialBus` - term No 3.1.2.7 + * - 19 - `commercialVehicle ` - term No 3.1.3 + * - 20 - `specialCommercialVehicle` - term No 3.1.3.1 + * - 21 - `specialVehicle ` - term No 3.1.4 + * - 22 - `trailingTowingVehicle ` - term No 3.1.5 (draw-bar tractor) + * - 23 - `semiTrailerTowingVehicle` - term No 3.1.6 (fifth wheel tractor) + * - 24 - `trailer` - term No 3.2.1 + * - 25 - `busTrailer` - term No 3.2.1.1 + * - 26 - `generalPurposeTrailer` - term No 3.2.1.2 + * - 27 - `caravan` - term No 3.2.1.3 + * - 28 - `specialTrailer` - term No 3.2.1.4 + * - 29 - `semiTrailer` - term No 3.2.2 + * - 30 - `busSemiTrailer ` - term No 3.2.2.1 + * - 31 - `generalPurposeSemiTrailer` - term No 3.2.2.2 + * - 32 - `specialSemiTrailer` - term No 3.2.2.3 + * - 33 - `roadTrain` - term No 3.3.1 + * - 34 - `passengerRoadTrain ` - term No 3.3.2 + * - 35 - `articulatedRoadTrain` - term No 3.3.3 + * - 36 - `doubleRoadTrain` - term No 3.3.4 + * - 37 - `compositeRoadTrain` - term No 3.3.5 + * - 38 - `specialRoadTrain` - term No 3.3.6 + * - 39 - `moped` - term No 3.4 + * - 40 - `motorCycle` - term No 3.5 + * - 41-255 - reserved for future use + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ + +Iso3833VehicleType ::= INTEGER { + passengerCar (0), + saloon (1), + convertibleSaloon (2), + pullmanSaloon (3), + stationWagon (4), + truckStationWagon (5), + coupe (6), + convertible (7), + multipurposePassengerCar (8), + forwardControlPassengerCar (9), + specialPassengerCar (10), + bus (11), + minibus (12), + urbanBus (13), + interurbanCoach (14), + longDistanceCoach (15), + articulatedBus (16), + trolleyBus (17), + specialBus (18), + commercialVehicle (19), + specialCommercialVehicle (20), + specialVehicle (21), + trailingTowingVehicle (22), + semiTrailerTowingVehicle (23), + trailer (24), + busTrailer (25), + generalPurposeTrailer (26), + caravan (27), + specialTrailer (28), + semiTrailer (29), + busSemiTrailer (30), + generalPurposeSemiTrailer (31), + specialSemiTrailer (32), + roadTrain (33), + passengerRoadTrain (34), + articulatedRoadTrain (35), + doubleRoadTrain (36), + compositeRoadTrain (37), + specialRoadTrain (38), + moped (39), + motorCycle (40) + } (0..255) + +/** + * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. + * + * For right-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road. + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane. + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction. + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). + * + * For left-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road. + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane. + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction. + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). + + * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. + * + * If the carriageway allows only traffic in one direction (e.g. in case of dual or multiple carriageway roads), the position is counted from the physical border of the carriageway. + * If the carriageway allows traffic in both directions and there is no physical delimitation between traffic directions (e.g. on a single carrriageway road), + * the position is counted from the legal (i.e. optical) separation between traffic directions (horizontal marking). + + * @category: Road topology information + * @revision: Description revised in V2.1.1 +*/ +LanePosition ::= INTEGER { + offTheRoad (-1), + innerHardShoulder (0), + outerHardShoulder (14) +} (-1..14) + +/** + * This DE represents the type of a lane. + * + * The value shall be set to: + * - 0 - `traffic` - Lane dedicated to the movement of vehicles. + * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning. + * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow. + * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. + * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it. + * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. + * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic. + * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. + * - 8 - `bus` - Lane dedicated to movement of buses providing public transport. + * - 9 - `taxi` - Lane dedicated to movement of taxis. + * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane. + * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. + * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths. + * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles. + * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median + separating the two directional carriageways of the highway. + * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings. + * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys. + * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes. + * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. + * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between + the road surface edge and the boundary of a road. + * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. + * - values 21 to 30 reserved for future use + * + * @category: Road topology information + * @revision: V2.1.1 +*/ +LaneType::= INTEGER{ + traffic (0), + through (1), + reversible (2), + acceleration (3), + deceleration (4), + leftHandTurning (5), + rightHandTurning (6), + dedicatedVehicle (7), + bus (8), + taxi (9), + hov (10), + hot (11), + pedestrian (12), + cycleLane (13), + median (14), + striping (15), + trackedVehicle (16), + parking (17), + emergency (18), + verge (19), + minimumRiskManoeuvre (20), + unknown (31) +}(0..31) + +/** + * This DE represents the width of a lane measured at a defined position. + * + * @unit: 0.01 meter + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +LaneWidth::= INTEGER (0..1023) + +/** + * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or + * in south hemisphere. + * + * The value shall be set to: + * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitudes south of the Equator. + * - `0` is used for the latitude of the equator. + * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitudes north of the Equator. + * - `900 000 001` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +Latitude ::= INTEGER { + unavailable(900000001) +} (-900000000..900000001) + +/** + * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation + * with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation + with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * + * @unit: 0.1 m/s2 + * @category Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. + */ +LateralAccelerationValue ::= AccelerationValue + +/** + * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. + * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `lightBarActivated` - when the light bar is activated. + * - 1 - `sirenActivated` - when the siren is activated. + * + * Otherwise, it shall be set to 0. + * + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +LightBarSirenInUse ::= BIT STRING { + lightBarActivated (0), + sirenActivated (1) +} (SIZE(2)) + +/** + * This DE represents the absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees + * to the east or to the west of the prime meridian. + * + * The value shall be set to: + * - `n (n > -1800000000 and n < 0)`, i.e. negative values for longitudes to the west. + * - `0` to indicate the prime meridian. + * - `n (n > 0 and n < 1800000001)`, i.e. positive values for longitudes to the east. + * - `1 800 000 001` when the information is unavailable. + * + * The value -1800000000 shall not be used. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +Longitude ::= INTEGER { + valueNotUsed (-1800000000), + unavailable (1800000001) +} (-1800000000..1800000001) + + /** + * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * +* The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * This acceleration is along the tangent plane of the road surface and does not include gravity components. + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @category: Vehicle information + * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. + */ +LongitudinalAccelerationValue::= AccelerationValue + +/** + * This DE represents the longitudinal offset of the map-matched position of a particular object along the + * matched lane, beginning from the lane's starting point. + * + * @unit 0,1 m + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +LongitudinalLanePositionValue ::= INTEGER (0..32767) + +/** + * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. + * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. + * - `102` if the data is unavailable. + * + * @unit 0,01 meter + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +LongitudinalLanePositionConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * This DE represents the type of facility layer message. + * + * The value shall be set to: + * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], + * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], + * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], + * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], + * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], + * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], + * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], + * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], + * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], + * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], + * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], + * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], + * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], + * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], + * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], + * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], + * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. + * - 18-255 - reserved for future usage, + * + * @category: Communication information + * @revision: Created in V2.1.1 from @ref ItsPduHeader. + */ +MessageId::= INTEGER { + denm (1), + cam (2), + poi (3), + spatem (4), + mapem (5), + ivim (6), + ev-rsr (7), + tistpgtransaction (8), + srem (9), + ssem (10), + evcsn (11), + saem (12), + rtcmem (13), + cpm (14), + imzm (15), + vam (16), + dsm (17) +} (0..255) + +/** + * This DE represents the number of occupants in a vehicle. + * + * The value shall be set to: + * - `n (n > 1 and n < 126)` for the number n of occupants. + * - `126` for values equal to or higher than 126. + * - `127` if information is not available.`. + * + * @unit: 1 person + * @category: Vehicle information + * @revision: Editorial update in V2.1.1 + */ +NumberOfOccupants ::= INTEGER { + outOfRange (126), + unavailable (127) +} (0 .. 127) + +/** + * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. + * + * The value shall be set to: + * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. + * - `n (n > 0 and n < 15)` : for the applicable confidence value. + * -`15` : if there is full confidence in the detected ObjectDescriptor. + * + * @unit n/a + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectConfidence ::= INTEGER { + noConfidence (0), + fullConfidence (15) +} (0..15) + +/** + * This DE represents a single dimension of an object. + * + * @unit 0,1 m + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimensionValue ::= INTEGER (0..1023) + +/** + * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . + * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. + * - `102` if the data is unavailable. + * + * @unit 0,01 m + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimensionConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * The DE indicates whether the detected object is classified as a dynamic (i.e. moving) object. + * This value indicates whether an object has the general capability to move, i.e. change its + * position. + * + * The value shall be set to: + * - `0` - dynamic - if the object is moving. + * - `1` - hasBeenDynamic - if the object has been dynamic before, e.g., a car stopping at a traffic light. + * - `2` - static - if the object has been detected to be not moving throughout any previous observation. + * - `3` - unavailable - if the information is unavailable. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDynamicStatus ::= INTEGER { + dynamic (0), + hasBeenDynamic (1), + static (2), + unavailable (3) +} (0..3) + +/** + * This DE indicates the approximate position of the reference point of measurement for the object dimensions using a 9 cell grid. + * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +ObjectRefPoint ::= INTEGER { + bottomLeft (0), + midLeft (1), + topLeft (2), + bottomMid (3), + midMid (4), + topMid (5), + bottomRight (6), + midRight (7), + topRight (8) +} (0..8) + +/** + * This DE indicates the face or part of a face of a solid object. + * + * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: + * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object. + * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object. + * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. + * + * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. + * + * @category: Basic information + * @revision: V2.1.1 +*/ +ObjectFace ::= ENUMERATED { + front (0), + sideLeftFront (1), + sideLeftBack (2), + sideRightFront (3), + sideRightBack (4), + back (5) +} + +/** + * This DE represent a lateral position with lane-level resolution on the road reservation, which is not on regular traffic lanes. + * + * The value shall be set to: + * - 0 - `unavailable` - if information on the lane position is unavailable. + * - 1 - `sidewalk` - if the position is on the side-walk. + * - 2 - `parkingLane` - if the position is on an area at the side of the road not intended for travel but for vehicular parking. + * - 3 - `bikeLane` - if the position is on an area reserved for bicycles. + * - 4-15 - reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. + * + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +OffRoadLanePosition ::= ENUMERATED { + unavailable (0), + sidewalk (1), + parkingLane (2), + bikeLane (3), + max (15) +} + +/** + * This DE represents a time period to describe the opening days and hours of a Point of Interest. + * (for example local commerce). + * + * @category: Time information + * @revision: V1.3.1 + */ +OpeningDaysHours ::= UTF8String + +/** + * The DE represents an ordinal number that indicates the position of an element in a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +OrdinalNumber1B ::= INTEGER(1..255) + +/** + * This DE indicates the subclass of a detected object for object class "otherSubclass". + * + * The value shall be set to: + * - `0` - unknown - if the subclass is unknown. + * - `1` - roadSideUnit - if the object is a roadside unit. + * + * @category: Sensing information + * @revision: Created in V2.1.1 + */ +OtherSubClass ::= INTEGER { + unknown (0), + roadSideUnit (1) +} (0..255) + +/** + * This DE represents the recorded or estimated travel time between a position and a predefined reference position. + * + * @unit 0.01 second + * @category GeoReference information + * @revision: same type as in V1.3.1 but now based on a basic type + */ +PathDeltaTime ::= DeltaTimeHundredthOfSecond + +/** + * This DE denotes the ability of an ITS-S to provide up-to-date information. + * A performance class value is used to describe age of data. The exact values are out of scope of the present document. + * + * The value shall be set to: + * - `0` if the performance class is unknown. + * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.6] + * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.6] + * - Values in the range `3 to 7` are reserved for future use. + * + * @category: Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PerformanceClass ::= INTEGER { + unavailable (0), + performanceClassA (1), + performanceClassB (2) +} (0..7) + +/** + * This DE represents a telephone number + * + * @category: Basic information + * @revision: V1.3.1 + */ +PhoneNumber ::= NumericString (SIZE(1..16)) + +/** + * This DE indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of + * the vehicle bounding box of the empty load vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 meter and 6,2 meters. + * - `62` for values equal to or higher than `6.2 metres`. + * - `63` if the information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit 0,1 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosCentMass ::= INTEGER { + tenCentimeters (1), + outOfRange (62), + unavailable (63) +} (1..63) + +/** + * This DE indicates the positioning technology being used to estimate a geographical position. + * + * The value shall be set to: + * - 0 `noPositioningSolution` : no positioning solution used, + * - 1 `sGNSS` : Global Navigation Satellite System used, + * - 2 `dGNSS` : Differential GNSS used, + * - 3 `sGNSSplusDR` : GNSS and dead reckoning used, + * - 4 `dGNSSplusDR` : Differential GNSS and dead reckoning used, + * - 5 `dR` : dead reckoning used. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +PositioningSolutionType ::= ENUMERATED { + noPositioningSolution (0), + sGNSS (1), + dGNSS (2), + sGNSSplusDR (3), + dGNSSplusDR (4), + dR (5), + ... +} + +/** + * This DE indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. + * + * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear + * of the vehicle. + * The left side seat of a row refers to the left hand side seen from vehicle rear to front. + * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, + * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. + * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, + * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. + * + * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. + * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. + * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. + * Otherwise, the value of seat occupation bit shall be set according to the following conditions: + * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. + * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row + * shall be set to `1`. + * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. + * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row + * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PositionOfOccupants ::= BIT STRING { + row1LeftOccupied (0), + row1RightOccupied (1), + row1MidOccupied (2), + row1NotDetectable (3), + row1NotPresent (4), + row2LeftOccupied (5), + row2RightOccupied (6), + row2MidOccupied (7), + row2NotDetectable (8), + row2NotPresent (9), + row3LeftOccupied (10), + row3RightOccupied (11), + row3MidOccupied (12), + row3NotDetectable (13), + row3NotPresent (14), + row4LeftOccupied (15), + row4RightOccupied (16), + row4MidOccupied (17), + row4NotDetectable (18), + row4NotPresent (19) +} (SIZE(20)) + +/** + * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. + * + * The value shall be set to: + * - `n (n > 0 and n < 19) for any aplicable value between 0,1 meter and 1,9 meters. + * - `19` for values equal to or higher than 1.9 metres. + * - `20` if the information is unavailable. + * + * @category: Vehicle information + * @unit 0.1 metre + * @revision: Editorial update in V2.1.1 + */ +PosFrontAx ::= INTEGER { + outOfRange (19), + unavailable(20) +} (1..20) + +/** + * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. + * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 meter and 1,26 meters. + * - `126` for values equal to or higher than 1.26 metres. + * - `127` if the information is unavailable. + * + * @unit 0,01 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosLonCarr ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the + * middle point of the front line of the vehicle bounding box. + * + * The value shall be set to: + * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 meter and 2,9 meters. + * - `29` for values equal to or greater than 2.9 metres. + * - `30` if the information is unavailable. + * + * @unit 0,1 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosPillar ::= INTEGER { + outOfRange (29), + unavailable (30) +} (1..30) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on post crash event is unavailable, + * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, + * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, + * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, + * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle, + * - 5-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +PostCrashSubCauseCode ::= INTEGER { + unavailable (0), + accidentWithoutECallTriggered (1), + accidentWithECallManuallyTriggered (2), + accidentWithECallAutomaticallyTriggered (3), + accidentWithECallTriggeredWithoutAccessToCellularNetwork (4) +} (0..255) + +/** +* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square meter. +* +* The following values are specified: +* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0.1 mm/h and greater than (n-1) x 0.1 mm/h. +* - `2000` if the amount of rain falling is greater than 199.9 mm/h +* - `2001` if the information is not available +* +* @unit: 0.1 mm/h +* @category: Basic Information +* @revision: created in V2.1.1 +*/ +PrecipitationIntensity ::= INTEGER { + outOfRange (2000), + unavailable (2001) +} (1..2001) + +/** + * This DE represenst the indentifier of a protected communication zone. + * + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedZoneID ::= INTEGER (0.. 134217727) + +/** + * This DE represenst the radius of a protected communication zone. + * + * + * @unit: metre + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedZoneRadius ::= INTEGER (1..255,...) + +/** + * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do + * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * + * The protected zone type is defined in ETSI TS 102 792 [i.16]. + * + * + * @category: Communication information + * @revision: V1.3.1 + */ +ProtectedZoneType::= ENUMERATED { + permanentCenDsrcTolling (0), + ..., + temporaryCenDsrcTolling (1) +} + +/** + * This DE is used for various tasks in the public transportation environment, especially for controlling traffic + * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). + * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation + * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the + * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to + * traffic congestion. Other usage of the DE is the provision of information like the public transport line number + * or the schedule delay of a public transport vehicle. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivationData ::= OCTET STRING (SIZE(1..20)) + +/** + * This DE indicates a certain coding type of the PtActivationData data. + * + * The folowing value are specified: + * - `0` undefinedCodingType : undefined coding type, + * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.8], + * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.8]. + * - values 3 to 255 : reserved for alternative and future use. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivationType ::= INTEGER { + undefinedCodingType (0), + r09-16CodingType (1), + vdv-50149CodingType (2) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . + * + * The value shall be set to: + * - 0 `unavailable` : in case no further detailed information on the railway level crossing status is available, + * - 1 `doNotCrossAbnormalSituation` : in case when something wrong is detected by equation or sensors of the railway level crossing, + including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), + * - 2 `closed` : in case the crossing is closed (barriers down), + * - 3 `unguarded` : in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), + * - 4 `nominal` : in case the barriers are up and lights are off. + * - 5-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RailwayLevelCrossingSubCauseCode ::= INTEGER { + unavailable (0), + doNotCrossAbnormalSituation (1), + closed (2), + unguarded (3), + nominal (4) +} (0..255) + +/** + * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from + * ITS-S after receiving request from other ITS-Ss. + * + * The value shall be set to: + * - 0 `request` : for a request message. + * - 1 `response` : for a response message. + * + * @category Communication information + * @revision: Editorial update in V2.1.1 + */ +RequestResponseIndication ::= ENUMERATED { + request (0), + response (1) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` + * + * The following value are specified: + * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, + * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, + * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, + * - 3 `policeActivityOngoing` : in case police activity is ongoing, + * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, + * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, + * - 6-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { + unavailable (0), + emergencyVehicles (1), + rescueHelicopterLanding (2), + policeActivityOngoing (3), + medicalEmergencyOngoing (4), + childAbductionInProgress (5) +} (0..255) + + +/** + * This DE indicates the type of a road segment. + * + * The value shall be set to: + * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. + * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. + * + * @category: Road Topology Information + * @revision: Editorial update in V2.1.1 + */ +RoadType ::= ENUMERATED { + urban-NoStructuralSeparationToOppositeLanes (0), + urban-WithStructuralSeparationToOppositeLanes (1), + nonUrban-NoStructuralSeparationToOppositeLanes (2), + nonUrban-WithStructuralSeparationToOppositeLanes (3) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. + * +The value shall be set to: + * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, + * - 1 `majorRoadworks` : in case a major roadworks is ongoing, + * - 2 `roadMarkingWork` : in case a road marking work is ongoing, + * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, + * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, + * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, + * - 6 `winterService` : in case winter service work is ongoing, + * - 7-255 reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RoadworksSubCauseCode ::= INTEGER { + unavailable (0), + majorRoadworks (1), + roadMarkingWork (2), + slowMovingRoadMaintenance (3), + shortTermStationaryRoadworks (4), + streetCleaning (5), + winterService (6) +} (0..255) + +/** + * This DE indicates if a distance is safe + * This DE is FALSE if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} simultaneously satisfied with confidence of 90 % or more. + * Otherwise stationSafeDistanceIndication is set to TRUE. + * + * @Note: the ebbreviations 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) + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SafeDistanceIndicator::= BOOLEAN + +/** + * This DE represenst the absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a + * confidence level of 95 %. + * + * The value shall be set to: + * - `1` if the accuracy is equal to or less than 1 cm, + * - `n (n > 1 and n < 4 094)` if the accuracy is equal to or less than n cm, + * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, + * - `4 095` if the accuracy information is unavailable. + * + * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported position coordinate value may be valid and used by the application. + * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that + * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful + * for the application. + + * @unit 0,01 meter + * @category: GeoReference Information + * @revision: Editorial update in V2.1.1 + */ +SemiAxisLength ::= INTEGER{ + outOfRange (4094), + unavailable (4095) +} (0..4095) + +/** + * This DE indicates the type of sensor. + * + * The value shall be set to: + * - `0` undefined : in case the sensor type is undefined. + * - `1` radar : in case the sensor is a radar. + * - `2` lidar : in case the sensor is a lidar. + * - `3` monovideo : in case the sensor is mono video. + * - `4` stereovision : in case the sensor is stereo vision. + * - `5` nightvision : in case the sensor is night vision. + * - `6` ultrasonic : in case the sensor is ultrasonic. + * - `7` pmd : in case the sensor is photonic mixing device. + * - `8` inductionLoop : in case the sensor is an induction loop. + * - `9` sphericalCamera : in case the sensor is a spherical camera. + * - `10` uwb : in case the sensor is ultra wide band. + * - `11` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. + * - `12` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. + * + * @category: Sensing Information + * @revision: created in V2.1.1 +*/ +SensorType ::= INTEGER { + undefined (0), + radar (1), + lidar (2), + monovideo (3), + stereovision (4), + nightvision (5), + ultrasonic (6), + pmd (7), + inductionLoop (8), + sphericalCamera (9), + uwb (10), + localAggregation (11), + itsAggregation (12) +} (0..15) + +/** + * This DE represents a sequence number. + * + * @category: Basic information + * @revision: V1.3.1 + */ +SequenceNumber ::= INTEGER (0..65535) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, + * - 1 `stopSignViolation` : in case a stop sign violation is detected, + * - 2 `trafficLightViolation` : in case a traffic light violation is detected, + * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, + * - 4-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +SignalViolationSubCauseCode ::= INTEGER { + unavailable (0), + stopSignViolation (1), + trafficLightViolation (2), + turningRegulationViolation (3) +} (0..255) + +/** + * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is + * unavailable, + * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, + * - 2 `vehiclesSlowingToLookAtAccident`: in case vehicle is temporally slowing down to look at accident, spot, etc., + * - 3 `abnormalLoad` : in case an abnormal loaded vehicle is driving slowly on the road, + * - 4 `abnormalWideLoad` : in case an abnormal wide load vehicle is driving slowly on the road, + * - 5 `convoy` : in case of slow driving convoy on the road, + * - 6 `snowplough` : in case of slow driving snow plough on the road, + * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, + * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road, + * - 9-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +SlowVehicleSubCauseCode ::= INTEGER { + unavailable (0), + maintenanceVehicle (1), + vehiclesSlowingToLookAtAccident (2), + abnormalLoad (3), + abnormalWideLoad (4), + convoy (5), + snowplough (6), + deicing (7), + saltingVehicles (8) +} (0..255) + +/** + * The DE indicates if a vehicle is carrying goods in the special transport conditions. + + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load. + * - 1 `excessWidth` : the vehicle is carrying goods in excess of width. + * - 2 `excessLength` : the vehicle is carrying goods in excess of length. + * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. + * + * Otherwise, the corresponding bit shall be set to 0. + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +SpecialTransportType ::= BIT STRING { + heavyLoad (0), + excessWidth (1), + excessLength (2), + excessHeight (3) +} (SIZE(4)) + +/** + * This DE represents the absolute accuracy of a speed value information for a predefined confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the speed accuracy is equal to or less than n cm/s. + * - `126` if the speed accuracy is out of range, i.e. greater than 125 cm/s. + * - `127` if the speed accuracy information is not available. + * + * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported speed value may be valid and used by the application. + * + * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid + * and therefore cannot be trusted. Such is not useful for the application. + * + * @unit cm/s + * @category: Vehicle information + * @revision: Description revised in V2.1.1 + */ +SpeedConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents a speed limitation applied to a geographical position, a road section or a geographical region. + * + * @unit: km/h + * @category: Infrastructure information, Traffic information + * @revision: V1.3.1 + */ +SpeedLimit ::= INTEGER (1..255) + +/** + * This DE represents a speed value, i.e. the magnitude of the horizontal velocity-vector. + * + * The value shall be set to: + * - `0` in a standstill situation. + * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s. + * - `16382` for speed values greater than 163,81 m/s. + * - `16383` if the speed accuracy information is not available. + * + * @unit: 0,01 m/s + * @category: Kinematics information + * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) +*/ +SpeedValue ::= INTEGER { + standstill (0), + outOfRange (16382), + unavailable (16383) +} (0..16383) + +/** + * This DE represents the value of a velocity component in a defined coordinate system. + * + * The value shall be set to: + * - `-16383` if the speed is equal to or smaller than -163,83 m/s + * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s. + * - `16382` for speed values equal to or greater than 163,81 m/s. + * - `16383` if the speed accuracy information is not available. + * + * @unit: 0,01 m/s + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +SpeedValueExtended ::= INTEGER { + negativeOutOfRange (-16383), + psotiveOutOfRange (16382), + unavailable (16383) +} (-16383..16383) + + +/** + * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. + * + * The value shall be set to: + * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable". + * - `n (n > 0 and n < 50)` to indicate the actual stability level. + * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability". + * - the values between 51 and 62 are reserved for future use. + * - `63`: this value indicates that the information is unavailable. + * + * @unit: 2% + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +StabilityLossProbability ::= INTEGER { + stable (0), + totalLossOfStability (50), + unavailable (63) +} (0..63) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength12b::= INTEGER (0..4095) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * The value shall be set to: + * - 0 `lessThan50m` : for distances below 50 m. + * - 1 `lessThan100m` : for distances below 100 m. + * - 2 `lessThan200m` : for distances below 200 m. + * - 3 `lessThan500m` : for distances below 300 m. + * - 4 `lessThan1000m` : for distances below 1000 m. + * - 5 `lessThan5km` : for distances below 5000 m. + * - 6 `lessThan10km` : for distances below 10000 m. + * - 7 `over10km` : for distances over 10000 m. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +StandardLength3b ::= ENUMERATED { + lessThan50m (0), + lessThan100m (1), + lessThan200m (2), + lessThan500m (3), + lessThan1000m (4), + lessThan5km (5), + lessThan10km (6), + over10km (7) +} + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength9b::= INTEGER (0..511) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength1B::= INTEGER (0..255) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength2B::= INTEGER (0..65535) + +/** + * This DE indicates the duration in minutes since which something is stationary. + * + * The value shall be set to: + * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. + * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more 1 minute. + * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. + * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +StationarySince ::= ENUMERATED { + lessThan1Minute (0), + lessThan2Minutes (1), + lessThan15Minutes (2), + equalOrGreater15Minutes (3) +} + +/** + * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, + * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, + * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, + * - 3 `postCrash` : in case stationary vehicle is caused by collision, + * - 4 `publicTransportStop` : in case public transport vehicle is stationary at bus stop, + * - 5 `carryingDangerousGoods`: in case the stationary vehicle is carrying dangerous goods, + * - 6 `vehicleOnFire` : in case of vehicle on fire. + * - 7-255 reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +StationaryVehicleSubCauseCode ::= INTEGER { + unavailable (0), + humanProblem (1), + vehicleBreakdown (2), + postCrash (3), + publicTransportStop (4), + carryingDangerousGoods (5), + vehicleOnFire (6) +} (0..255) + +/** + * This DE represents the identifier of an ITS-S. + * The ITS-S ID may be a pseudonym. It may change over space and/or over time. + * + * @category: Basic information + * @revision: V1.3.1 + */ +StationID ::= INTEGER(0..4294967295) + +/** + * This DE represenst the type of technical context the ITS-S is integrated in. + * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. + * + * The value shall be set to: + * - 0 `unknown`: information about the ITS-S context is not provided, + * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). + * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, + * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + class L1, L2 (VRU Profile 3) + * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + class L3, L4, L5, L6, L7 (VRU Profile 3) + * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, + * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, + * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, + * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, + * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in + UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, + * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). + * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) + * - 14 reserved for future usage + * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 16-255> reserved for future usage. + * + * @category: Communication information. + * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) + */ +StationType ::= INTEGER { + unknown (0), + pedestrian (1), + cyclist (2), + moped (3), + motorcycle (4), + passengerCar (5), + bus (6), + lightTruck (7), + heavyTruck (8), + trailer (9), + specialVehicles (10), + tram (11), + lightVruVehicle (12), + animal (13), + roadSideUnit (15) +} (0..255) + +/** + * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, + * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, + * - `127` if the accuracy information is not available. + * + * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. + * + * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', + * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. + * Such value is not useful for the application. + * + * @unit: 1.5 degree + * @category: Vehicle Information + * @revision: Description revised in V2.1.1 +*/ +SteeringWheelAngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the steering wheel angle of the vehicle at certain point in time. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The value shall be set to: + * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. + * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, + turning clockwise (i.e. to the right). + * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + turning counter-clockwise (i.e. to the left). + * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. + * - `512` if information is not available. + * + * @unit: 1.5 degree + * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). + */ +SteeringWheelAngleValue ::= INTEGER { + negativeOutOfRange (-511), + positiveOutOfRange (511), + unavailable (512) +} (-511..512) + +/** + * This DE indicates the generic sub cause of a detected event. + * + * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 (this is the generic sub cause type) + */ +SubCauseCodeType ::= INTEGER (0..255) + +/** + * This DE indicates a temperature value. + + * The value shall be set to: + * - `-60` for temperature equal to or less than -60 degrees C. + * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C. + * - `67` for temperature equal to or greater than 67 degrees C. + * + * @unit: degrees Celsius + * @category: Basic information + * @revision: Editorial update in V2.1.1 + */ +Temperature ::= INTEGER { + equalOrSmallerThanMinus60Deg (-60), + equalOrGreaterThan67Deg(67)} (-60..67) + +/** + * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. + * The ITS epoch is `00:00:00.000 UTC, 1 January 2004`. + * "Elapsed" means that the true number of milliseconds is continuously counted without interruption, + * i.e. it is not altered by leap seconds, which occur in UTC. + * + * @note: International Atomic Time (TAI) is the time reference coordinate on the basis of the readings of atomic clocks, + * operated in accordance with the definition of the second, the unit of time of the International System of Units. + * TAI is a continuous time scale. UTC has discontinuities, as it is occasionally adjusted by leap seconds. + * As of 1 January, 2022, TimestampIts is 5 seconds ahead of UTC, because since the ITS epoch on 1 January 2004 00:00:00.000 UTC, + * further 5 leap seconds have been inserted in UTC. + * + * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, + * which includes one leap second insertion since the ITS epoch. + * @unit: millisecond + * @category: Basic information + * @revision: Description revised in in V2.1.1 + */ +TimestampIts ::= INTEGER (0..4398046511103) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, + * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, + * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, + * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, + * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, + * - 5 `trafficStationary` : in case traffic is stationary, + * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, + * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, + * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, + * - 9-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +TrafficConditionSubCauseCode ::= INTEGER { + unavailable (0), + increasedVolumeOfTraffic (1), + trafficJamSlowlyIncreasing (2), + trafficJamIncreasing (3), + trafficJamStronglyIncreasing (4), + trafficStationary (5), + trafficJamSlightlyDecreasing (6), + trafficJamDecreasing (7), + trafficJamStronglyDecreasing (8) +} (0..255) + +/** + * This DE indicates a traffic direction that is relevant to information indicated in a message. + * + * The value shall be set to: + * - 0 `allTrafficDirections` : for all traffic directions. + * - 1 `upstreamTraffic` : for upstream traffic. + * - 2 `downstreamTraffic` : for downstream traffic. + * - 3 `oppositeTraffic` : for traffic in the opposite direction. + * + * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * + * @note: Upstream traffic corresponds to the incoming traffic towards the event position, + * and downstream traffic to the departing traffic away from the event position. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 from RelevanceTrafficDirection + */ +TrafficDirection ::= ENUMERATED { + allTrafficDirections (0), + upstreamTraffic (1), + downstreamTraffic (2), + oppositeTraffic (3) +} + +/** + * This DE indicates traffic rules that apply to vehicles at a certain position. + * + * The value shall be set to: + * - `0` if overtaking is prohibited for all vehicles. + * - `1` if overtaking is prohibited for trucks. + * - `2` if vehicles should pass to the right lane. + * - `3` if vehicles should pass to the left lane. + * + * @category: Infrastructure information, Traffic information + * @revision: Editorial update in V2.1.1 + */ +TrafficRule ::= ENUMERATED { + noPassing (0), + noPassingForTrucks (1), + passToRight (2), + passToLeft (3), + ...} + +/** + * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. + * + * The value shall be set to: + * - `n (n >= 0 and n <= 50)` to indicate the actual stability level. + * - the values between 51 and 62 are reserved. + * - `63`: to indicate that the information is unavailable. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionProbability ::= INTEGER { + unavailable (63) +} (0..63) + +/** + * This DE defines the confidence level of the trajectoryInterceptionProbability. + * + * The value shall be set to: + * - `0` to indicate confidence less than 50 % + * - `1` to indicate confidence greater than or equal to 50 % and less than 70 %. + * - `2` to indicate confidence greater than or equal to 70 % and less than 90 %. + * - `3` to indicate confidence greater than or equal to 90%. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionConfidence ::= INTEGER { + lessthan50percent (0), + between50and70Percent (1), + between70and90Percent (2), + above90Percent (3) +} (0..3) + +/** + * This DE provides the turning direction. + * + * The value shall be set to: + * - `left` for turning to te left. + * - `right`for turing to the right. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TurningDirection::= ENUMERATED { + left, + right +} + +/** + * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. + * + * The value shall be set to: + * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 meter, and greater than (n-1) x 0,4 meters. + * - `254` indicates that the turning radius is greater than 253 x 0.4 metre = 101.2 metres. + * - `255` indicates that the information is unavailable. + * + * For vehicle with tracker, the turning radius applies to the vehicle only. + * + * @category: Vehicle information + * @unit 0.4 metre + * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) + */ +TurningRadius ::= INTEGER { + outOfRange (254), + unavailable (255) +} (1..255) + +/** + * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VDS ::= IA5String (SIZE(6)) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, + * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, + * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, + * - 3 `engineProblem` : in case vehicle break down is caused by an engine problem, + * - 4 `transmissionProblem` : in case vehicle break down is caused by transmission problem, + * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, + * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, + * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, + * - 8 `tyrePuncture` : in case vehicle break down is caused by tire puncture, + * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, + * - 10 `vehicleOnFire` : in case the vehicle is on fire, + * - 11-255: reserved for future usage. + * + * @category: Traffic information + + */ +VehicleBreakdownSubCauseCode ::= INTEGER { + unavailable (0), + lackOfFuel (1), + lackOfBatteryPower (2), + engineProblem (3), + transmissionProblem (4), + engineCoolingProblem (5), + brakingSystemProblem (6), + steeringProblem (7), + tyrePuncture (8), + tyrePressureProblem (9), + vehicleOnFire (10) +} (0..255) + +/** + * This DE represents the height if the vehicle, measured from the ground to the highest point, excluding any antennas. + * In case vehicles are equipped with adjustable ride heights, camper shells, and any other + * equipment which may result in varying height, the largest possible height shall be used. + * + * @unit 5 cm (DE ranges to 6.35 m) + * @revision: V1.3.1 +*/ +VehicleHeight ::= INTEGER (0..127) + +/** + * This DE provides information about the presence of a trailer. + * + * The value shall be set to: + * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in a reported vehicle length value. + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in a reported vehicle length value. + * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. + * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * nor the detection of trailer presence/absence is possible. + * + * @category: Vehicle information + * @revision: Description revised in V2.1.1 +*/ +VehicleLengthConfidenceIndication ::= ENUMERATED { + noTrailerPresent (0), + trailerPresentWithKnownLength (1), + trailerPresentWithUnknownLength (2), + trailerPresenceIsUnknown (3), + unavailable (4) +} + +/** + * This DE represents the length of a vehicle. + * + * The value shall be set to: + * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. + * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. + * - `1 023` to indicate that the information in unavailable. + * + * + * @unit: 0.1 metre + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). + */ +VehicleLengthValue ::= INTEGER { + outOfRange(1022), + unavailable(1023) +} (1..1023) + +/** + * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. + * + * The value shall be set to: + * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than n x 100 kg, and greater than (n-1) x 100 kg. + * - `1 023` indicates that the vehicle mass is greater than 102 200 kg. + * - `1 024` indicates the vehicle mass information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit: 100kg + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). +*/ +VehicleMass ::= INTEGER { + outOfRange (1023), + unavailable(1024) +} (1..1024) + +/** + * This DE indicates the role played by a vehicle at a point in time. + * + * The value shall be set to: + * - 0 `default` : to indicate the default vehicle role as indicated by the vehicle type, + * - 1 `publicTransport` : to indicate that the vehicle is used to operate public transport service, + * - 2 `specialTransport` : to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, + * - 3 `dangerousGoods` : to indicate that the vehicle is used for dangerous goods transportation, + * - 4 `roadWork` : to indicate that the vehicle is used to realize roadwork or road maintenance mission, + * - 5 `rescue` : to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, + * - 6 `emergency` : to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, + * - 7 `safetyCar` : to indicate that the vehicle is used for public safety, e.g. patrol, + * - 8 `agriculture` : to indicate that the vehicle is used for agriculture, e.g. farm tractor, + * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, + * - 10 `military` : to indicate that the vehicle is used for military purpose, + * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, + * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service, + * - 13 `reserved` : reserved for future usage, + * - 14 `reserved` : reserved for future usage, + * - 15 `reserved` : reserved for future usage. + * + * @category: Vehicle Information + * @revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) + */ +VehicleRole ::= ENUMERATED { + default (0), + publicTransport (1), + specialTransport(2), + dangerousGoods (3), + roadWork (4), + rescue (5), + emergency (6), + safetyCar (7), + agriculture (8), + commercial (9), + military (10), + roadOperator (11), + taxi (12), + reserved1 (13), + reserved2 (14), + reserved3 (15) +} + +/** + * This DE describes the subclass of a vehicle. + * + * The value shall be set to: + * - `0` unknown : to indicate that the type of vehicle is unknown. + * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. + * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. + * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. + * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. + * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. + * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). + * - `7` tram : to indicate a vehicle running on tracks along public streets. + * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. + * - `9` agricultural : to indicate a vehicle used for agricultural purposes. + * - Values 10 to 255 are reserved for future use. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +VehicleSubClass ::= INTEGER { + unknown (0), + passengerCar (1), + bus (2), + lightTruck (3), + heavyTruck (4), + trailer (5), + specialVehicles (6), + tram (7), + emergencyVehicle (8), + agricultural (9) +} (0..255) + +/** + * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. + + * The value shall be set to: + * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. + * - `61`indicates that the vehicle width is greater than 6,0 metres. + * - `62`indicates that the information in unavailable. + * + * @unit: 0.1 metre + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). + */ +VehicleWidth ::= INTEGER { + outOfRange (61), + unavailable (62) +} (1..62) + +/** + * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @category: Vehicle information + * @unit: 0.1 m/s2 + * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. + * +*/ +VerticalAccelerationValue ::= AccelerationValue + +/** + * This DE Identifies all the VRU profile types that are believed to be within a cluster. + * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU. + * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member. + * - 2 `motorcycle` : indicates that the VRU cluster contains at least one motorcycle VRU member. + * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. + * + * Otherwise, the corresponding bit shall be set to 0. + * + * @category: VRU information + * @revision: Created in V2.1.1 +*/ +VruClusterProfiles ::= BIT STRING { + pedestrian (0), + bicyclist (1), + motorcyclist (2), + animal (3) +} (SIZE(4)) + +/** + * This DE represents the possible VRU usage conditions. + + * - The value shall be set to: + * - 0 `unavailable` : to indicate that the usage conditions are unavailable. + * - 1 `other (1)` : to indicate that the VRU is in a state not defined below. + * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device. + * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use. + * - 4 `typing (4)` : to indicate that the human is texting, entering addresses and other manual input activity. + * - 5 `calling (5)` : to indicate that the VRU device is currently received a call. + * - 6 `playingGames (6)` : to indicate that the human is playing games. + * - 7 `reading (7)` : to indicate that the human is reading on the VRU device. + * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, + * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruDeviceUsage ::= ENUMERATED { + unavailable (0), + other (1), + idle (2), + listeningToAudio (3), + typing (4), + calling (5), + playingGames (6), + reading (7), + viewing (8), + max (255) +} + +/** + * This DE represents the possible VRU environment conditions. + * + * - The value shall be set to: + * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, + * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing. + * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). + * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. + * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. + * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruEnvironment ::= ENUMERATED { + unavailable (0), + intersectionCrossing (1), + zebraCrossing (2), + sidewalk (3), + onVehicleRoad (4), + protectedGeographicArea (5), + max (255) +} + +/** + * This DE indicates the status of the possible human control over a VRU vehicle. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information on is unavailable. + * - 1 `braking` : to indicate that the VRU is braking. + * - 2 `hardBraking` : to indicate that the VRU is braking hard. + * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling. + * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking. + * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard. + * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. + * - value 7 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruMovementControl ::= ENUMERATED { + unavailable (0), + braking (1), + hardBraking (2), + stopPedaling (3), + brakingAndStopPedaling (4), + hardBrakingAndStopPedaling (5), + noReaction (6), + max (255) +} + +/** + * This DE indicates the profile of a pedestrian. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information on is unavailable. + * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies. + * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker. + * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfilePedestrian ::= ENUMERATED { + unavailable (0), + ordinary-pedestrian (1), + road-worker (2), + first-responder (3), + max (15) +} + +/** + * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information is unavailable. + * - 1 `bicyclist ` : to indicate a cycle and bicyclist. + * - 2 `wheelchair-user` : to indicate a wheelchair and its user. + * - 3 `horse-and-rider` : to indicate a horse and rider. + * - 4 `rollerskater` : to indicate a rolleskater and skater. + * - 5 `e-scooter` : to indicate an e-scooter and rider. + * - 6 `personal-transporter` : to indicate a personal-transporter and rider. + * - 7 `pedelec` : to indicate a pedelec and rider. + * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. + * - value 9 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileBicyclist ::= ENUMERATED { + unavailable (0), + bicyclist (1), + wheelchair-user (2), + horse-and-rider (3), + rollerskater (4), + e-scooter (5), + personal-transporter (6), + pedelec (7), + speed-pedelec (8), + max (15) +} + +/** + * This DE indicates the profile of a motorcyclist and corresponding vehicle. + * + * The value shall be set to: + * - 0 `unavailable ` : to indicate that the information is unavailable. + * - 1 `moped (1)` : to indicate a moped and rider. + * - 2 `motorcycle` : to indicate a motorcycle and rider. + * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider. + * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. + * - value 5 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileMotorcyclist ::= ENUMERATED { + unavailable (0), + moped (1), + motorcycle (2), + motorcycle-and-sidecar-right (3), + motorcycle-and-sidecar-left (4), + max (15) +} + +/** + * This DE indicates the profile of a animal + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information is unavailable. + * - 1 `wild-animal` : to indicate a animal living in the wildness. + * - 2 `farm-animal` : to indicate an animal beloning to a farm. + * - 3 `service-animal` : to indicate an animal that supports a human being. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileAnimal ::= ENUMERATED { + unavailable (0), + wild-animal (1), + farm-animal (2), + service-animal (3), + max (15) +} + +/** + * This DE indicates the approximate size of a VRU including the VRU vehicle used. + * + * The value shall be set to: + * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1. + * - 1 `low (1)` : the VRU size class is low depending on the VRU profile. + * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile. + * - 3 `high (3)` : the VRU size class is high depending on the VRU profile. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSizeClass ::= ENUMERATED { + unavailable (0), + low (1), + medium (2), + high (3), + max (15) +} + +/** + * This DE describes the status of the exterior light switches of a vehicle or a VRU. + * The DE is an extension of the existing vehicular DE ExteriorLight. + * + * The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU + * or automatically by a vehicle or VRU system: + * - 0 `unavailable` : indicates no information available. + * - 1 `backFlashLight ` : indicates the status of the back flash light. + * - 2 `helmetLight` : indicates the status of the helmet light. + * - 3 `armLight` : indicates the status of the arm light. + * - 4 `legLight` : indicates the status of the leg leight. + * - 5 `wheelLight` : indicates the status of the wheel light. + * - Bits 6 to 8 : reserved for future use. + * The bit values do not indicate if the corresponding lamps are alight or not. + * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSpecificExteriorLights ::= BIT STRING { + unavailable (0), + backFlashLight (1), + helmetLight (2), + armLight (3), + legLight (4), + wheelLight (5) +} (SIZE(8)) + +/** + * Perpendicular distance between front and rear axle of the wheel base of vehicle. + * + * The value shall be set to: + * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0.1 metres and more than (n-1) x 0.1 metres. + * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. + * - `127` indicates that the information is unavailable. + * + * @unit 0.1 metre + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +WheelBaseVehicle ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. + * The required confidence level is defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n >=1 and n < 126)` is equal to or less than n x 0.1 degrees and more than (n-1) x 0.1 degrees. + * - `126` if the angle accuracy is out of range, i.e. greater than 12,5 degrees. + * - `127` if the angle accuracy information is not available. + * + * + * @unit 0,1 degrees + * @category: GeoReference Information + * @revision: Created in V2.1.1 +*/ +Wgs84AngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + + +/** + * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. + * + * @unit 0,1 degrees + * @category: GeoReference Information + * @revision: Created in V2.1.1 +*/ +Wgs84AngleValue ::= INTEGER { + wgs84North (0), + wgs84East (900), + wgs84South (1800), + wgs84West (2700), + doNotUse (3600), + unavailable (3601) +} (0..3601) + +/** + * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. + * + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +WMInumber ::= IA5String (SIZE(1..3)) + +/** + * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on wrong way driving event is unavailable, + * - 1 `wrongLane` : in case vehicle is driving on a lane for which it has no authorization to use, + * - 2 `wrongDirection` : in case vehicle is driving in a direction that it is not allowed, + * - 3-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +WrongWayDrivingSubCauseCode ::= INTEGER { + unavailable (0), + wrongLane (1), + wrongDirection (2) +} (0..255) + +/** + * This DE denotes the absolute accuracy range for reported yaw rate value for a confidence level of 95%. + * + * The value shall be set to: + * - `0` indicates that the accuracy is equal to or less than 0,01 degree/second. + * - `1` indicates that the accuracy is equal to or less than 0,05 degrees/second. + * - `2` indicates that the accuracy is equal to or less than 0,1 degree/second. + * - `3` indicates that the accuracy is equal to or less than 1 degree/second. + * - `4` indicates that the accuracy is equal to or less than 5 degrees/second. + * - `5` indicates that the accuracy is equal to or less than 10 degrees/second. + * - `6` indicates that the accuracy is equal to or less than 100 degrees/second. + * - `7` indicates that the accuracy is out of range, i.e. greater than 100 degrees/second. + * - `8` indicates that the accuracy information is unavailable + * + * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported yaw rate value may be valid and used by the application. + * + * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported + * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 + */ +YawRateConfidence ::= ENUMERATED { + degSec-000-01 (0), + degSec-000-05 (1), + degSec-000-10 (2), + degSec-001-00 (3), + degSec-005-00 (4), + degSec-010-00 (5), + degSec-100-00 (6), + outOfRange (7), + unavailable (8) +} + +/** + * This DE represents the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded + * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. The leading sign denotes the direction of rotation. + * + * The value shall be set to: + * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. + * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s. + * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s. + * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. + * - `32 767` to indicate that the information is not available. + * + * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. + * The reading instant should be the same as for the vehicle acceleration. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit: 0,01 degree per second. + * @category: Vehicle Information + * @revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). +*/ +YawRateValue ::= INTEGER { + negativeOutOfRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +---------------------------------------- +-- Specification of CDD Data Frames: +---------------------------------------- + +/** + * This DF represents an acceleration component along with a confidence with a predefined confidence level of 95% for the component. + * + * It includes the following components: + * + * @field value: the acceleration value which can be estimated as the mean of the current distribution. + * + * @field value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * + * @category: Kinematic Information + * @revision: Created in V2.1.1 + */ +Acceleration1d ::= SEQUENCE { + value AccelerationValue, + confidence AccelerationConfidence +} + +/** + * This DF represents information associated to changes in acceleration. + * + * It includes the following components: + * + * @field accelOrDecel: the indication of an acceleration change. + * + * @field value actionDeltaTime: the period in which the acceleration change action is performed. + * + * @category: Kinematic Information + * @revision: Created in V2.1.1 + */ +AccelerationChangeIndication ::= SEQUENCE { + accelOrDecel AccelerationChange, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents an identifier used to describe a protocol action taken by an ITS-S. + * + * It includes the following components: + * + * @field originatingStationID: ID of the ITS-S that takes the action. + * + * @field sequenceNumber: a sequence number. + * + * @category: Communication information + * @revision: V1.3.1 + */ +ActionID ::= SEQUENCE { + originatingStationID StationID, + sequenceNumber SequenceNumber +} + +/** + * This DF represents a list of @ref ActionID. + + * @category: Communication Information + * @revision: Created in V2.1.1 based on ReferenceDenms +*/ +ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID + +/** + * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. + * + * It includes the following components: + * + * @field altitudeValue: altitude of a geographical point. + * + * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +Altitude ::= SEQUENCE { + altitudeValue AltitudeValue, + altitudeConfidence AltitudeConfidence +} + +/** + * This DE represents a general container for usage in various types of messages. + * + * It includes the following components: + * + * @field stationType: the type of station that has generated the message that contains the basic container. + * + * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +BasicContainer ::= SEQUENCE { + stationType StationType, + referencePosition ReferencePosition, + ... +} + +/** + * This DF represents a general Data Frame to describe an angle component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angle value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngle ::= SEQUENCE { + value CartesianAngleValue, + confidence AngleConfidence +} + +/** + * This DF represents a general Data Frame to describe an angular speed component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngularSpeed ::= SEQUENCE { + value CartesianAngularSpeedValue, + confidence AngularSpeedConfidence +} + +/** + * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngularAcceleration ::= SEQUENCE { + value CartesianAngularAccelerationValue, + confidence AngularAccelerationConfidence +} + +/** + * This DF represents a coordinate in a cartesian reference system + * + * It includes the following components: + * + * @field value: the coordinate value which can be estimated as the mean of the current distribution. + * + * @field confidence: the coordinate accuracy associated to the provided value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateWithConfidence ::= SEQUENCE { + value CartesianCoordinateLarge, + confidence CoordinateConfidence +} + +/** + * This DF represents a position in a two- or three-dimensional cartesian coordinate system. + * + * It includes the following components: + * + * @field xCoordinate: the X coordinate value. + * + * @field yCoordinate: the Y coordinate value. + * + * @field zCoordinate: the optional Z coordinate value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianPosition3d::=SEQUENCE{ + xCoordinate CartesianCoordinate, + yCoordinate CartesianCoordinate, + zCoordinate CartesianCoordinate OPTIONAL +} + +/** + * This DF is a representation of the cause code value of a traffic event. + * + * It includes the following components: + * + * @field causeCode: the main cause of a detected event. + * + * @field subCauseCode: the subordinate cause of a detected event. + * + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. + * + * @category: Traffic information + * @revision: Editorial update in V2.1.1 + */ +CauseCode ::= SEQUENCE { + causeCode CauseCodeType, + subCauseCode SubCauseCodeType, + ... +} + +/** + * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. + * + * + * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. + * @category: Traffic information + * @revision: Editorial update in V2.1.1 + */ + +CauseCodeChoice::= CHOICE { + reserved SubCauseCodeType, + trafficCondition TrafficConditionSubCauseCode, + accident AccidentSubCauseCode, + roadworks RoadworksSubCauseCode, + reserved4 SubCauseCodeType, + impassability SubCauseCodeType, + adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, + aquaplaning SubCauseCodeType, + reserved8 SubCauseCodeType, + hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, + hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, + hazardousLocation-AnimalOnTheRoad HazardousLocation-AnimalOnTheRoadSubCauseCode, + humanPresenceOnTheRoad HumanPresenceOnTheRoadSubCauseCode, + reserved13 SubCauseCodeType, + wrongWayDriving WrongWayDrivingSubCauseCode, + rescueAndRecoveryWorkInProgress RescueAndRecoveryWorkInProgressSubCauseCode, + reserved16 SubCauseCodeType, + adverseWeatherCondition-ExtremeWeatherCondition AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, + adverseWeatherCondition-Visibility AdverseWeatherCondition-VisibilitySubCauseCode, + adverseWeatherCondition-Precipitation AdverseWeatherCondition-PrecipitationSubCauseCode, + violence SubCauseCodeType, + reserved21 SubCauseCodeType, + reserved22 SubCauseCodeType, + reserved23 SubCauseCodeType, + reserved24 SubCauseCodeType, + reserved25 SubCauseCodeType, + slowVehicle SlowVehicleSubCauseCode, + dangerousEndOfQueue DangerousEndOfQueueSubCauseCode, + reserved28 SubCauseCodeType, + reserved29 SubCauseCodeType, + reserved30 SubCauseCodeType, + reserved31 SubCauseCodeType, + reserved32 SubCauseCodeType, + reserved33 SubCauseCodeType, + reserved34 SubCauseCodeType, + reserved35 SubCauseCodeType, + reserved36 SubCauseCodeType, + reserved37 SubCauseCodeType, + reserved38 SubCauseCodeType, + reserved39 SubCauseCodeType, + reserved40 SubCauseCodeType, + reserved41 SubCauseCodeType, + reserved42 SubCauseCodeType, + reserved43 SubCauseCodeType, + reserved44 SubCauseCodeType, + reserved45 SubCauseCodeType, + reserved46 SubCauseCodeType, + reserved47 SubCauseCodeType, + reserved48 SubCauseCodeType, + reserved49 SubCauseCodeType, + reserved50 SubCauseCodeType, + reserved51 SubCauseCodeType, + reserved52 SubCauseCodeType, + reserved53 SubCauseCodeType, + reserved54 SubCauseCodeType, + reserved55 SubCauseCodeType, + reserved56 SubCauseCodeType, + reserved57 SubCauseCodeType, + reserved58 SubCauseCodeType, + reserved59 SubCauseCodeType, + reserved60 SubCauseCodeType, + reserved61 SubCauseCodeType, + reserved62 SubCauseCodeType, + reserved63 SubCauseCodeType, + reserved64 SubCauseCodeType, + reserved65 SubCauseCodeType, + reserved66 SubCauseCodeType, + reserved67 SubCauseCodeType, + reserved68 SubCauseCodeType, + reserved69 SubCauseCodeType, + reserved70 SubCauseCodeType, + reserved71 SubCauseCodeType, + reserved72 SubCauseCodeType, + reserved73 SubCauseCodeType, + reserved74 SubCauseCodeType, + reserved75 SubCauseCodeType, + reserved76 SubCauseCodeType, + reserved77 SubCauseCodeType, + reserved78 SubCauseCodeType, + reserved79 SubCauseCodeType, + reserved80 SubCauseCodeType, + reserved81 SubCauseCodeType, + reserved82 SubCauseCodeType, + reserved83 SubCauseCodeType, + reserved84 SubCauseCodeType, + reserved85 SubCauseCodeType, + reserved86 SubCauseCodeType, + reserved87 SubCauseCodeType, + reserved88 SubCauseCodeType, + reserved89 SubCauseCodeType, + reserved90 SubCauseCodeType, + vehicleBreakdown VehicleBreakdownSubCauseCode, + postCrash PostCrashSubCauseCode, + humanProblem HumanProblemSubCauseCode, + stationaryVehicle StationaryVehicleSubCauseCode, + emergencyVehicleApproaching EmergencyVehicleApproachingSubCauseCode, + hazardousLocation-DangerousCurve HazardousLocation-DangerousCurveSubCauseCode, + collisionRisk CollisionRiskSubCauseCode, + signalViolation SignalViolationSubCauseCode, + dangerousSituation DangerousSituationSubCauseCode, + railwayLevelCrossing RailwayLevelCrossingSubCauseCode, + reserved101 SubCauseCodeType, + reserved102 SubCauseCodeType, + reserved103 SubCauseCodeType, + reserved104 SubCauseCodeType, + reserved105 SubCauseCodeType, + reserved106 SubCauseCodeType, + reserved107 SubCauseCodeType, + reserved108 SubCauseCodeType, + reserved109 SubCauseCodeType, + reserved110 SubCauseCodeType, + reserved111 SubCauseCodeType, + reserved112 SubCauseCodeType, + reserved113 SubCauseCodeType, + reserved114 SubCauseCodeType, + reserved115 SubCauseCodeType, + reserved116 SubCauseCodeType, + reserved117 SubCauseCodeType, + reserved118 SubCauseCodeType, + reserved119 SubCauseCodeType, + reserved120 SubCauseCodeType, + reserved121 SubCauseCodeType, + reserved122 SubCauseCodeType, + reserved123 SubCauseCodeType, + reserved124 SubCauseCodeType, + reserved125 SubCauseCodeType, + reserved126 SubCauseCodeType, + reserved127 SubCauseCodeType, + reserved128 SubCauseCodeType + } + +/** + * This DF is an alternative representation of the cause code value of a traffic event. + * + * It includes the following components: + * + * @field ccAndScc: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. + * + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @category: Traffic information + * @revision: Created in V2.1.1 + */ + +CauseCodeV2 ::= SEQUENCE { + ccAndScc CauseCodeChoice, + ... +} + +/** + * The DF describes the position of a CEN DSRC road side equipment. + * + * It includes the following components: + * + * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. + * + * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. + * + * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +CenDsrcTollingZone ::= SEQUENCE { + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, + ... +} + +/** + * + * This DF represents the shape of a circular area or a right cylinder that is centred on a reference position defined outside of the context of this DF. + * + * It includes the following components: + * + * @field nodeCenterPoint: optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field radius: the radius of the circular area. + * + * @field height: the optional height, present if the shape is a right cylinder extending in the positive z-axis. + * + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +CircularShape ::= SEQUENCE { + nodeCenterPoint CartesianPosition3d OPTIONAL, + radius StandardLength12b, + height StandardLength12b OPTIONAL, + ... +} + +/** + * This DF indicates the opening/closure status of a lane or a set of lanes. + * + * It includes the following components: + * + * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of inner hard shoulder lanes. + * + * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of outer hard shoulder lanes. + * + * @field drivingLaneStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of driving lanes. + * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. + * + * @category: GeoReference information, Road topology information + * @revision: V1.3.1 + */ +ClosedLanes ::= SEQUENCE { + innerhardShoulderStatus HardShoulderStatus OPTIONAL, + outerhardShoulderStatus HardShoulderStatus OPTIONAL, + drivingLaneStatus DrivingLaneStatus OPTIONAL, + ... +} + +/** + * This DF provides information about the breakup of a cluster. + * + * It includes the following components: + * + * @field clusterBreakupReason: indicates the reason for breakup. + * + * @field breakupTime: indicates the time of breakup. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterBreakupInfo ::= SEQUENCE { + clusterBreakupReason ClusterBreakupReason, + breakupTime DeltaTimeQuarterSecond, + ... +} + +/** + * This DF provides information about the joining of a cluster. + * + * It includes the following components: + * + * @field clusterId: indicates the identifier of the cluster. + * + * @field joinTime: indicates the time of joining. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterJoinInfo ::= SEQUENCE { + clusterId ClusterId, + joinTime DeltaTimeQuarterSecond, + ... +} + +/** + * The DF provides information about the leaving of a cluster. + * + * It includes the following components: + * + * @field clusterId: indicates the cluster. + * + * @field clusterLeaveReason: indicates the reason for leaving. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterLeaveInfo ::= SEQUENCE { + clusterId ClusterId, + clusterLeaveReason ClusterLeaveReason, + ... +} + +/** + * This DF represents the column of the lower triangular positive semi-definite matrix and consists of a list of correlation row values. + * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. + * Each column "i" of the lower triangular then contains k-(i-1) values, where "i" refers to the column number count + * starting at 1 from the left. + * + * @category: Sensing Information + * @revision: Created in V2.1.1 +*/ +CorrelationColumn ::= SEQUENCE SIZE (1..21) OF CorrelationRowValue + +/** + * This DF represents the curvature of the vehicle trajectory and the accuracy. + * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. + * + * It includes the following components: + * + * @field curvatureValue: Detected curvature of the vehicle trajectory. + * + * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +Curvature ::= SEQUENCE { + curvatureValue CurvatureValue, + curvatureConfidence CurvatureConfidence +} + +/** + * This DF provides a description of dangerous goods being carried by a heavy vehicle. + * + * It includes the following components: + * + * @field dangerousGoodsType: Type of dangerous goods. + * + * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in + * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], + * + * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. + * If yes, the value shall be set to TRUE, + * + * @field tunnelsRestricted: whether the heavy vehicle carrying dangerous goods is restricted to enter tunnels. + * If yes, the value shall be set to TRUE, + * + * @field limitedQuantity: whether the carried dangerous goods are packed with limited quantity. + * If yes, the value shall be set to TRUE, + * + * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency + * service should deal with an incident. This component is optional; it shall be present if the information is available, + * + * @field phoneNumber: contact phone number of assistance service in case of incident or accident. + * This component is optional, it shall be present if the information is available. + * + * @field companyName: name of company that manages the transportation of the dangerous goods. + * This component is optional; it shall be present if the information is available. + * + * @category Vehicle information + * @revision: V1.3.1 + */ +DangerousGoodsExtended ::= SEQUENCE { + dangerousGoodsType DangerousGoodsBasic, + unNumber INTEGER (0..9999), + elevatedTemperature BOOLEAN, + tunnelsRestricted BOOLEAN, + limitedQuantity BOOLEAN, + emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, + phoneNumber PhoneNumber OPTIONAL, + companyName UTF8String (SIZE (1..24)) OPTIONAL, + ... +} + +/** + * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. + * + * It includes the following components: + * + * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. + * + * @field deltaLongitude: A delta longitude offset with regards to the longitude value of the reference position. + * + * @field deltaAltitude: A delta altitude offset with regards to the altitude value of the reference position. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +DeltaReferencePosition ::= SEQUENCE { + deltaLatitude DeltaLatitude, + deltaLongitude DeltaLongitude, + deltaAltitude DeltaAltitude +} + +/** + * This DF represents a portion of digital map, described using a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition + +/** + * + * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on a reference position which is defined outside of the context of this DF. + * + * It includes the following components: + * + * @field centerPoint: optional offset point which the ellipse is centred on with respect to the reference position. + * + * @field semiMajorAxisLength: half length of the major axis of the ellipse. + * + * @field semiMinorAxisLength: half length of the minor axis of the ellipse. + * + * @field orientation: the optional orientation of the major axis of the ellipse in the WGS84 coordinate system. + * + * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ + +EllipticalShape ::= SEQUENCE { + centerPoint CartesianPosition3d OPTIONAL, + semiMajorAxisLength StandardLength12b, + semiMinorAxisLength StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL, + ... +} + +/** + * + * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * The following options are available: + * + * @field euVehicleCategoryL: indicates a vehicle in the L category. + * + * @field euVehicleCategoryM: indicates a vehicle in the M category. + * + * @field euVehicleCategoryN: indicates a vehicle in the N category. + * + * @field euVehicleCategoryO: indicates a vehicle in the O category. + * + * @field euVehicleCategoryT: indicates a vehicle in the T category. + * + * @field euVehicleCategoryG: indicates a vehicle in the G category. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +EuVehicleCategoryCode ::= CHOICE { + euVehicleCategoryL EuVehicleCategoryL, + euVehicleCategoryM EuVehicleCategoryM, + euVehicleCategoryN EuVehicleCategoryN, + euVehicleCategoryO EuVehicleCategoryO, + euVehicleCategoryT NULL, + euVehicleCategoryG NULL + } + +/** + * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime + * or do not contain the COMPONENT eventDeltaTime. + * + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @revision: created in V2.1.1 based on EventHistory + */ +EventZone::= EventHistory + ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | + (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) + +/** + * The DF consists of a list of @ref EventPoint. + * + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref EventZone instead. + * @revision: Generalized the semantics in V2.1.1 + */ +EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint + + +/** + * This DF provides information related to an event at a defined position. + * + * It includes the following components: + * + * @field eventPosition: offset position of a detected event point to a defined position. + * + * @field eventDeltaTime: optional time travelled by the detecting ITS-S since the previous detected event point. + * + * @field informationQuality: Information quality of the detection for this event point. + * + * @category: GeoReference information, Traffic information + * @revision: generalized the semantics in V2.1.1 + */ +EventPoint ::= SEQUENCE { + eventPosition DeltaReferencePosition, + eventDeltaTime PathDeltaTime OPTIONAL, + informationQuality InformationQuality +} + +/** + * This DF represents the status of the exterior light switches of a traffic participant. + * + * It includes the following components: + * + * @field vehicular: represents the status of the exterior light switches of a road vehicle. + * + * @field vruSpecific: represents the status of the exterior light switches of a VRU. + * + * @category: VRU information + * @revision: created in V2.1.1 + */ +ExteriorLightsExtended ::= SEQUENCE { + vehicular ExteriorLights, + vruSpecific VruSpecificExteriorLights, + ... +} + + +/** + * This DF indicates a transversal position in relation to the different lanes of the road. + * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where V-ITS-S would normally not be present. + * + * The following options are available: + * + * @field trafficLanePosition: a position on a traffic lane. + * + * @field nonTrafficLanePosition: a position on a lane which is not a traffic lane. + * + * @field trafficIslandPosition: a position on a traffic island + * + * @field mapPosition: a position on a lane identified in a MAPEM. + * + * @category: Road Topology information + * @revision: created in V2.1.1 + */ +GeneralizedLanePosition::= CHOICE { + trafficLanePosition LanePosition, + nonTrafficLanePosition LanePositionAndType, + trafficIslandPosition TrafficIslandPosition, + mapPosition MapPosition, + ... +} + +/** + * This DF represents the Heading in a WGS84 co-ordinates system. + * + * It includes the following components: + * + * @field headingValue: the heading value. + * + * @field headingConfidence: the accuracy of the reported heading value with a predefined confidence level. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84Angle instead. + * @category: Kinematics Information + * @revision: V1.3.1 + */ +Heading ::= SEQUENCE { + headingValue HeadingValue, + headingConfidence HeadingConfidence +} + + +/** + * This DF provides information associated to heading change indicators such as a change of direction. + * + * It includes the following components: + * + * @field direction: the direction of heading change value. + * + * @field actionDeltaTime: the period over which a direction change action is performed. + * + * @category: Kinematics Information + * @revision: created in V2.1.1 + */ +HeadingChangeIndication ::= SEQUENCE { + direction TurningDirection, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents a frequency channel + * + * It includes the following components: + * + * @field centreFrequency: the centre frequency of the channel + * @unit: 10exp+2 Hz (where exp is exponent) + * + * @field channelWidth: width of the channel + * @unit: 10exp Hz (where exp is exponent) + * + * @field exponent of the power of 10 + * @unit: N/A + * + * @category: Communication information + * @revision: created in V2.1.1 +*/ +InterferenceManagementChannel ::= SEQUENCE { + centreFrequency INTEGER (1 .. 99999), + channelWidth INTEGER (0 .. 9999), + exponent INTEGER (0 .. 15) +} + +/** + * + * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. + * + * It includes the following components: + * + * @field zoneDefinition: contains the geographical definition of the zone. + * + * @field managementInfo: contains interference management information applicable in the zone defined in the component zoneDefinition. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZone ::= SEQUENCE { + zoneDefinition InterferenceManagementZoneDefinition, + managementInfo InterferenceManagementInfo +} + +/** + * This DF represents the geographical definition of the zone where band sharing occurs. + * + * It includes the following components: + * + * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneRadius: optional radius of the interference management zone in metres. + * + * @field interferenceManagementZoneID: optional identification of the interference management zone. + * + * @field interferenceManagementZoneShape: shape of the interference management zone. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZoneDefinition::= SEQUENCE{ + interferenceManagementZoneLatitude Latitude, + interferenceManagementZoneLongitude Longitude, + interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, + interferenceManagementZoneID ProtectedZoneID OPTIONAL, + interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, + ... +} + +/** + * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. + * + * @category: Communication information. + * @revision: created in V2.1.1 + */ +InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel + + +/** + * This DF contains interference management information for one affected frequency channel. + * + * It includes the following components: + * + * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management + * + * @field interferenceManagementZoneType: type of the interference management zone. + * + * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. + * In the case where no mitigation should be applied by the ITS-S, this is indicated by the field interferenceManagementMitigationType being absent. + * + * @field expiryTime: 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 + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementInfoPerChannel ::= SEQUENCE { + interferenceManagementChannel InterferenceManagementChannel, + interferenceManagementZoneType InterferenceManagementZoneType, + interferenceManagementMitigationType MitigationForTechnologies OPTIONAL, + expiryTime TimestampIts OPTIONAL, + ... +} + +/** + * 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. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone + +/** + * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.17]. + * + * It includes the following components: + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the intersection + * + * @note: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique. + * @category: Road topology information + * @revision: created in V2.1.1 + */ +IntersectionReferenceId ::= SEQUENCE { + region Identifier2B OPTIONAL, + id Identifier2B +} + +/** + * This DF consists of a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition + +/** + * 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: + * + * @field protocolVersion: version of the ITS message. + * + * @field messageId: type of the ITS message. + * + * @field stationId: the identifier of the ITS-S that generates the ITS message in question. + * + * @category: Communication information + * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. + */ +ItsPduHeader ::= SEQUENCE { + protocolVersion INTEGER (0..255), + messageId MessageId, + stationId StationID +} + +/** + * This DF indicates a transversal position in resolution of lanes and the associated lane type. + * + * It includes the following components: + * + * @field transversalPosition: the transversal position. + * + * @field laneType: the type of the lane identified in the component transversalPosition. + * + * @category GeoReference information + * @revision: Created in V2.1.1 + */ +LanePositionAndType::= SEQUENCE { + transversalPosition LanePosition, + laneType LaneType, + ... +} + +/** + * This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. + * + * It includes the following components: + * + * @field lateralAccelerationValue: lateral acceleration value at a point in time. + * + * @field lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @category Vehicle information + * @revision: V1.3.1 + */ +LateralAcceleration ::= SEQUENCE { + lateralAccelerationValue LateralAccelerationValue, + lateralAccelerationConfidence AccelerationConfidence +} + +/** + * This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. + * + * It includes the following components: + * + * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. + + * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @category: Vehicle information + * @revision: V1.3.1 + */ +LongitudinalAcceleration ::= SEQUENCE { + longitudinalAccelerationValue LongitudinalAccelerationValue, + longitudinalAccelerationConfidence AccelerationConfidence +} + +/** + * This DF represents the estimated position along the longitudinal length of a particular lane. + * + * It includes the following components: + * + * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. + * + * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. + * + * @category: Road topology information + * @revision: created in V2.1.1 + */ +LongitudinalLanePosition ::= SEQUENCE { + longitudinalLanePositionValue LongitudinalLanePositionValue, + longitudinalLanePositionConfidence LongitudinalLanePositionConfidence +} + +/** + * 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 @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. + * + * @category: Vehicle information + * @revision: V1.3.1 +*/ +LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn + +/** + * 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: + * + * @field mapReference: optionally identifies the MAPEM containing the topology information. + * It is absent if the MAPEM topology is known from the context. + * + * @field laneId: identifies the lane in the road segment or intersection topology on which the position is located. + * + * @field connectionId: identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the + * conflict area of an intersection which connects e.g an ingress with an egress lane. + * + * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. + * + * @category: Road topology information + * @revision: Created in V2.1.1 + */ +MapPosition ::= SEQUENCE { + mapReference MapReference OPTIONAL, + laneId Identifier1B, + longitudinalLanePosition LongitudinalLanePosition OPTIONAL, + connectionId Identifier1B, + ... +} + +/** + * 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: + * + * @field roadsegment: option that identifies the description of a road segment contained in a MAPEM. + * + * @field intersection: option that identifies the description of an intersection contained in a MAPEM. + * + * @category: Road topology information + * @revision: Created in V2.1.1 + */ + +MapReference::= CHOICE { + roadsegment RoadSegmentReferenceId, + intersection IntersectionReferenceId + } + +/** + * This DF provides information about a message with respect to the segmentation process at the sender. + * + * It includes the following components: + * + * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. + * + * @field thisMsgNo: indicates the position of the message within of the total set of messages. + +*/ +MessageSegmentationInfo ::= SEQUENCE { + totalMsgNo CardinalNumber1B, + thisMsgNo OrdinalNumber1B + } + +/** + * + * This DF represents a list of @ref MitigationPerTechnologyClass. + * @category: Communication information + * @revision: Created in V2.1.1 +*/ +MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF 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: + * + * @field accessTechnologyClass: channel access technology to which this mitigation is applied. + * + * @field lowDutyCycle: duty cycle limit. + * @unit: 0.01% steps + * + * @field powerReduction: the delta value of power to be reduced. + * @unit: dB + * + * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.25]. + * @unit: ms + * + * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.26]. + * @unit: ms + * + * @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. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +MitigationPerTechnologyClass ::= SEQUENCE { + accessTechnologyClass AccessTechnologyClass, + lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, + powerReduction INTEGER (0 .. 30) OPTIONAL, + dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, + dmcTonLimit INTEGER (0 .. 20) OPTIONAL, + ... +} + +/** + * This DF indicates both the class and associated subclass that best describes an object. + * + * The following options are available: + * + * @field vehicleSubClass: the object is a road vehicle. + * + * @field vruSubClass: the object is a VRU. + * + * @field groupSubClass: the object is a VRU group or cluster. + * + * @field otherSubClass: the object is of a different types as the above. + * + * @category: Sensing information + * @revision: Created in V2.1.1 + */ +ObjectClass ::= CHOICE { + vehicleSubClass VehicleSubClass, + vruSubClass VruProfileAndSubprofile, + groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), + otherSubClass OtherSubClass, + ... +} + +/** + * This DF consist of a list of object classes. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence + +/** + * This DF represents the classification of a detected object together with a confidence indication. + * + * It includes the following components: + * + * @field objectClass: the class of the object. + * + * @field ObjectClassConfidence: the associated confidence information. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectClassWithConfidence ::= SEQUENCE { + objectClass ObjectClass, + confidence ConfidenceLevel +} +/** + * This DF represents a dimension of an object together with a confidence indication. + * + * It includes the following components: + * + * @field ObjectDimensionValue: the object dimension value which can be estimated as the mean of the current distribution. + * + * @field ObjectDimensionValue: the associated confidence information. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimension ::= SEQUENCE { + value ObjectDimensionValue, + confidence ObjectDimensionValue +} + +/** + * This DF that represents a path with a set of path points. + * It may contain up to `40` @ref 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. + * + * @category: GeoReference information, Vehicle information + * @revision: created in V2.1.1 based on PathHistory + */ +Path::= SEQUENCE (SIZE(0..40)) OF PathPoint + +/** + * This DF that represents a path history with a set of path points. + * It may contain up to `40` @ref 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. + * + * @category: GeoReference information, Vehicle information + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead + * @revision: semantics updated in V2.1.1 + */ +PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint + +/** + * This DF that represents a predicted path with a set of path points. + * It may contain up to `15` @ref 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. + * + * @category: GeoReference information + * @revision: created in V2.1.1 based on PathHistory + */ +PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted + +/** + * This DF defines an offset waypoint position within a path. + * + * It includes the following components: + * + * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. + * + * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. + * + * @category GeoReference information + * @revision: semantics updated in V2.1.1 + */ +PathPoint ::= SEQUENCE { + pathPosition DeltaReferencePosition, + pathDeltaTime PathDeltaTime OPTIONAL +} + +/** + * This DF defines a predicted offset waypoint position within a path. + * + * It includes the following components: + * + * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. + * + * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. + * + * @field horizontalPositionConfidence: the accuracy of the horizontal geographical position. + * + * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. + * + * @field altitudeConfidence: the accuracy of the altitude value of the geographical position. + * + * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. + * + * @category GeoReference information + * @revision: semantics updated in V2.1.1 + */ + +PathPointPredicted::= SEQUENCE { + deltaLatitude DeltaLatitudeSmall, + deltaLongitude DeltaLongitudeSmall, + horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, + deltaAltitude DeltaAltitude DEFAULT unavailable, + altitudeConfidence AltitudeConfidence DEFAULT unavailable, + pathDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * 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: + * + * @field objectID: optional identifier assigned to a detected object. + * + * @field timeOfMeasurement: 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. + * + * @field xCoordinate: 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. + * + * @field yCoordinate: 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. + * + * @field zCoordinate: 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. + * + * @field velocityMagnitude: 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 + * + * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * + * @field xVelocity: velocity component of the detected object in x-direction at the time of measurement, with the associated variance. + * + * @field yVelocity: velocity component of the detected object in y-direction at the time of measurement, with the associated variance. + * + * @field zVelocity: optional velocity component of the detected object in z-direction at the time of measurement, with the associated variance. + * + * @field accelerationMagnitude: 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. + * + * @field accelerationDirection: polar angle of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * + * @field xAcceleration: optional Acceleration of the detected object in x-direction at the time of measurement, with the associated variance. + * + * @field yAcceleration: optional Acceleration of the detected object in y-direction at the time of measurement, with the associated variance. + * + * @field zAcceleration: optional Acceleration of the detected object in z-direction at the time of measurement, with the associated variance. + * + * @field rollAngle: 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. + * + * @field pitchAngle: 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. + * + * @field yawAngle: 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. + * + * @field rollSpeed: 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. + * + * @field pitchSpeed: 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. + * + * @field yawSpeed: 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. + * + * @field rollAcceleration: 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. + * + * @field pitchAcceleration: 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. + * + * @field yawAcceleration: 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. + * + * @field lowerTriangularCorrelationMatrixColumns: 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. + * + * @field planarObjectDimension1: 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. + * + * @field planarObjectDimension2: 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. + * + * @field verticalObjectDimension: optional vertical dimension of object as provided by the sensor or object model. + * + * @field objectRefPoint: 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. + * + * @field objectAge: 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. + * + * @field objectConfidence: 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. + * + * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. + * + * @field dynamicStatus: optional dynamic capabilities of a detected object. + * + * @field classification: optional classification of the described object + * + * @field matchedPosition: optional map-matched position of an object. + * + * @category Sensing information + * @revision: created in V2.1.1 + */ + +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, + ... +} + +/** + * This DF represents the shape of a polygonal area or of a right prism. + * + * It includes the following components: + * + * @field polygon: the polygonal area and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * + * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. + * + * @category GeoReference information + * @revision: created in V2.1.1 + * + */ +PolygonalShape ::= SEQUENCE { + polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), + height StandardLength12b OPTIONAL, + ... +} + +/** + * 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: + * + * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point + * and major axis point of the position accuracy ellipse. + * + * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point + * and minor axis point of the position accuracy ellipse. + * + * @field semiMajorOrientation: orientation direction of the ellipse major axis of the position accuracy + * ellipse with regards to the WGS84 north. + * + * + * @category GeoReference information + * @revision: V1.3.1 + */ +PosConfidenceEllipse ::= SEQUENCE { + semiMajorConfidence SemiAxisLength, + semiMinorConfidence SemiAxisLength, + semiMajorOrientation Wgs84AngleValue +} + +/** + * This DF contains a list of distances @ref 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. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar + +/** + * This DF describes a zone of protection inside which the ITSG5 communication should be restricted. + * + * It includes the following components: + * + * @field protectedZoneType: type of the protected zone. + * + * @field expiryTime: optional time at which the validity of the protected communication zone will expire. + * + * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. + * + * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. + * + * @field protectedZoneRadius: optional radius of the protected communication zone in metres. + * + * @field protectedZoneID: the optional ID of the protected communication zone. + * + * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedCommunicationZone ::= SEQUENCE { + protectedZoneType ProtectedZoneType, + expiryTime TimestampIts OPTIONAL, + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + protectedZoneRadius ProtectedZoneRadius OPTIONAL, + protectedZoneID ProtectedZoneID OPTIONAL, + ... +} + +/** + * This DF consist of a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). + * + * It may provide up to 16 protected communication zones information. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone + +/** + * 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). + * + * @field ptActivationType: type of activation. + * + * @field ptActicationData: data of activation. + * + * 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) + * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, + * destination, priority, etc. + * + * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: + * - 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. + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivation ::= SEQUENCE { + ptActivationType PtActivationType, + ptActivationData PtActivationData +} + +/** + * This DF describes a radial shape. 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). + * + * It includes the following components: + * + * @field sensorPositionOffset: the optional offset opoint. + * + * @field range: the radial range of the sensor from the reference point or sensor point offset. + * + * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the + * stationary sensor's horizontal opening angle in positive angular direction with respect to the + * WGS84 coordinate system. + * + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary + * sensor's horizontal opening angle in positive angular direction with respect to the WGS84 coordinate + * system. + * + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's + * 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * 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 using the DE CartesianAngleValue. + * + * @category Sensing information + * @revision: created in V2.1.1 +*/ +RadialShape ::= SEQUENCE { + offsetPoint CartesianPosition3d OPTIONAL, + range StandardLength12b, + stationaryHorizontalOpeningAngleStart Wgs84AngleValue, + stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, + ... +} + + +/** + * This DF describes a list of radial shapes. + * + * It includes the following components: + + * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). + * + * @field xCoordinate: the x-coordinate of the offset point. + * + * @field yCoordinate: the y-coordinate of the offset point. + * + * @field zCoordinate: the optional z-coordinate of the offset point. + * + * @field radialShapesList: the list of radial shape details. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ +RadialShapes ::= SEQUENCE { + refPointId Identifier1B, + xCoordinate CartesianCoordinateSmall, -- tbd: is this along the positive or the negative x axis? + yCoordinate CartesianCoordinateSmall, + zCoordinate CartesianCoordinateSmall OPTIONAL, + radialShapesList RadialShapesList, + ... +} + +/** + * The DF contains a list of @ref RadialShapeDetails. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ + +RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF 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). + * + * It includes the following components: + * + * @field range: the radial range of the sensor from the reference point or sensor point offset. + * + * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the + * stationary sensor's horizontal opening angle in positive angular direction. + * + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary + * sensor's horizontal opening angle in positive angular direction. + * + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's + * 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * 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. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ +RadialShapeDetails ::= SEQUENCE { + range StandardLength12b, + horizontalOpeningAngleStart CartesianAngleValue, + horizontalOpeningAngleEnd CartesianAngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, + ... +} + +/** + * 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. + * + * It includes the following components: + * + * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field semiLength: represents half the length of the rectangle. + * + * @field semiBreadth: represents half the breadth of the rectangle. + * + * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. + * + * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. + * + * @category GeoReference information + * @revision: created in V2.1.1 + */ +RectangularShape ::= SEQUENCE { + centerPoint CartesianPosition3d OPTIONAL, + semiLength StandardLength12b, + semiBreadth StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL +} + +/** + * A position within a geographic coordinate system together with a confidence indication. + * + * It includes the following components: + * + * @field latitude: the latitude of the geographical point. + * + * @field longitude: the longitude of the geographical point. + * + * @field positionConfidenceEllipse: the accuracy of the geographical position. + * + * @field altitude: the altitude and an altitude accuracy of the geographical point. + * + * @category: GeoReference information + * @revision: description updated in V2.1.1 + */ +ReferencePosition ::= SEQUENCE { + latitude Latitude, + longitude Longitude, + positionConfidenceEllipse PosConfidenceEllipse, + altitude Altitude +} + +/** + * This DF consist of a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. + * + * @category: Infrastructure information, Traffic information + * @revision: V1.3.1 + */ +RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType + +/** + * This DF represents a unique id for a road segment + * + * It includes the following components: + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the road segment + * + * @note: when the RoadRegulatorID is present, the RoadSegmentReferenceID is guaranteed to be globally unique. + * @category: GeoReference information + * @revision: created in V2.1.1 + */ +RoadSegmentReferenceId ::= SEQUENCE { + region Identifier2B OPTIONAL, + id Identifier2B +} + +/** + * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). + * + * It includes the following components: + * + * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. + * + * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. + * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant inidcated in the component subjectStation is safe. + * + * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed + * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 + */ +SafeDistanceIndication ::= SEQUENCE { + subjectStation StationID OPTIONAL, + safeDistanceIndicator SafeDistanceIndicator, + timeToCollision DeltaTimeTenthOfSecond OPTIONAL, + ... +} + +/** + * This DF represents a list of maximum `16` @ref CartesianPosition3d. + * + * @category: GeoReference information + * @revision: created in V2.1.1 + */ +SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d + +/** + * The DF contains a list of identifiers. + * + * @category: Basic information + * @revision: created in V2.1.1 +*/ +SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B + +/** + * The DF contains a list of DF SafeDistanceIndication. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication + +/** + * The DF contains a list of DF TrajectoryInterceptionIndication. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication + +/** + * This DF provides the definition of a geographical area or volume, based on different options. + * + * It includes the following components: + * + * @field rectangle: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. + * + * @field circle: definition of an area of circular shape or a right circular cylinder. + * + * @field polygon: definition of an area of polygonal shape or a right prism. + * + * @field ellipse: definition of an area of elliptical shape or a right elliptical cylinder. + * + * @field radial: definition of a radial shape. + * + * @field radialShapes: definition of list of radial shapes. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ + +Shape::= CHOICE { + rectangle RectangularShape, + circle CircularShape, + polygon PolygonalShape, + ellipse EllipticalShape, + radial RadialShape, + radialShapes RadialShapes, + ... +} + +/** + * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * + * It includes the following components: + * + * @field speedValue: the speed value. + * + * @field speedConfidence: the accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V1.3.1 + */ +Speed ::= SEQUENCE { + speedValue SpeedValue, + speedConfidence SpeedConfidence +} + +/** + * This DF describes the extended speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * + * It includes the following components: + * + * @field speedValue: the extended speed value. + * + * @field speedConfidence: the accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V2.1.1 + */ +SpeedExtended ::= SEQUENCE { + speedValue SpeedValueExtended, + speedConfidence SpeedConfidence +} + +/** + * This DF provides the indication of change in stability. + * + * It includes the following components: + * + * @field lossProbability: the probability of stability loss. + * + * @field actionDeltaTime: accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V2.1.1 + */ +StabilityChangeIndication ::= SEQUENCE { + lossProbability StabilityLossProbability, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents the steering wheel angle of the vehicle at certain point in time. + * + * It includes the following components: + * + * @field steeringWheelAngleValue: steering wheel angle value. + * + * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +SteeringWheelAngle ::= SEQUENCE { + steeringWheelAngleValue SteeringWheelAngleValue, + steeringWheelAngleConfidence SteeringWheelAngleConfidence +} + +/** + * This DF represents one or more paths using @ref PathHistory. + * + * @category: GeoReference information + * @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory + */ +Traces ::= SEQUENCE SIZE(1..7) OF Path + +/** + * Ths DF represents the a position on a traffic island between two lanes. + * + * It includes the following components: + * + * @field oneSide: represents one lane. + * + * @field otherSide: represents the other lane. + * + * @category: Road Topology information + * @revision: Created in V2.1.1 + */ +TrafficIslandPosition ::= SEQUENCE { + oneSide LanePositionAndType, + otherSide LanePositionAndType, + ... +} + +/** + * This DF provides detailed information about an attached trailer. + * + * It includes the following components: + * + * @field refPointId: identifier of the reference point of the trailer. + * + * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the + * vehicle Reference Point. + * + * @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer + * is not overhanging to the front with respect to the trailer reference point. + * + * @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. + * + * @field trailerWidth: optional width of the trailer. + * + * @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x + * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of + * the segment having as end points the reference point of the trailer and the reference point of + * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane + * xy, described in the local Cartesian coordinate system of the preceding reference point. The + * angle is measured with negative values considering the trailer orientation turning clockwise + * starting from the segment direction. The angle value accuracy is provided with the + * confidence level of 95 %. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +TrailerData ::= SEQUENCE { --tbd check descriptions above + refPointId Identifier1B, + hitchPointOffset StandardLength1B, -- tbd is the value unavailable needed? + frontOverhang StandardLength1B, + rearOverhang StandardLength1B, + trailerWidth VehicleWidth, + hitchAngle CartesianAngle, + ... +} + +/** + * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. + * + * It includes the following components: + * + * @field subjectStation: indicates the subject station. + * + * @field trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. + * + * @field trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionIndication ::= SEQUENCE { + subjectStation StationID OPTIONAL, + trajectoryInterceptionProbability TrajectoryInterceptionProbability, + trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, + ... + } + +/** + * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +VarLengthNumber::=CHOICE{ + content [0] INTEGER(0..127), -- one octet length + extension [1] Ext1 + } +Ext1::=CHOICE{ + content [0] INTEGER(128..16511), -- two octets length + extension [1] Ext2 +} +Ext2::=CHOICE{ + content [0] INTEGER(16512..2113663), -- three octets length + extension [1] Ext3 + } +Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length + +/** + * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. + * + * It includes the following components: + * + * @field verticalAccelerationValue: vertical acceleration value at a point in time. + * + * @field verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead + * @category Vehicle information + * @revision: V1.3.1 + */ +VerticalAcceleration ::= SEQUENCE { + verticalAccelerationValue VerticalAccelerationValue, + verticalAccelerationConfidence AccelerationConfidence +} + +/** + * This DF provides information related to the identification of a vehicle. + * + * It includes the following components: + * + * @field wMInumber: World Manufacturer Identifier (WMI) code. + * + * @field vDS: Vehicle Descriptor Section (VDS). + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VehicleIdentification ::= SEQUENCE { + wMInumber WMInumber OPTIONAL, + vDS VDS OPTIONAL, + ... +} + +/** + * This DF represents the length of vehicle and accuracy indication information. + * + * It includes the following components: + * + * @field vehicleLengthValue: length of vehicle. + * + * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VehicleLength ::= SEQUENCE { + vehicleLengthValue VehicleLengthValue, + vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication +} + +/** + * This DF provides information about a VRU cluster. + * + * It includes the following components: + * + * @field clusterId: optional identifier of a VRU cluster . + * + * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. + * + * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. + * + * @field clusterProfiles: identifies all the VRU profile types that are believed to be within the cluster . + * + * @category: VRU information + * @revision: Created in V2.1.1 +*/ +VruClusterInformation ::= SEQUENCE { + clusterId ClusterId OPTIONAL, + clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, + clusterCardinalitySize ClusterCardinalitySize, + clusterProfiles VruClusterProfiles, + ... +} + +/** + * This DF indicates the profile of a VRU including sub-profile information + * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.22]: + * + * @field pedestrian: VRU Profile 1 - Pedestrian. + * + * @field bicyclistAndLightVruVehicle: VRU Profile 2 - Bicyclist. + * + * @field motorcyclist: VRU Profile 3 - Motorcyclist. + * + * @field animal: VRU Profile 4 - Animals. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruProfileAndSubprofile ::= CHOICE { + pedestrian VruSubProfilePedestrian, + bicyclistAndLightVruVehicle VruSubProfileBicyclist, + motorcylist VruSubProfileMotorcyclist, + animal VruSubProfileAnimal, + ... +} + +/** + * This DF represents an angular component along with a confidence in the WGS84 coordinate system. + * + * It includes the following components: + * + * @field value: the angle value which can be estimated as the mean of the current distribution. + * + * @field confidence: the accuracy associated to the provided value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +Wgs84Angle ::= SEQUENCE { + value Wgs84AngleValue, + confidence Wgs84AngleConfidence +} + + +/** + * This DF represents a yaw rate of vehicle at a point in time. + * + * It includes the following components: + * + * @field yawRateValue: yaw rate value at a point in time. + * + * @field yawRateConfidence: accuracy of reported yaw rate value. + * + * @category: Vehicle Information + * @revision: V1.3.1 + */ +YawRate::= SEQUENCE { + yawRateValue YawRateValue, + yawRateConfidence YawRateConfidence +} + +END -- GitLab From 61033291ad9799ab3615fba6c9fa8e7d9cbe772c Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Fri, 10 Jun 2022 08:19:53 +0000 Subject: [PATCH 33/91] Delete ITS-Container.asn --- ITS-Container.asn | 6048 --------------------------------------------- 1 file changed, 6048 deletions(-) delete mode 100755 ITS-Container.asn diff --git a/ITS-Container.asn b/ITS-Container.asn deleted file mode 100755 index e27e6a7..0000000 --- a/ITS-Container.asn +++ /dev/null @@ -1,6048 +0,0 @@ --- Draft CDD ASN.1 module Release 2. --- Date: 08.06.2022 - - -ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} - -DEFINITIONS AUTOMATIC TAGS ::= - -BEGIN - ------------------------------------------- --- Specification of CDD Data Elements: ------------------------------------------- - - -/** - * This DE indicates a change of acceleration. - * - * The value shall be set to: - * - 0 - `accelerate` - if the acceleration is positive. - * - 1 - `decelerate` - if the acceleration is negative. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AccelerationChange::= ENUMERATED { - accelerate (0), - decelerate (1) -} - -/** - * This DE represents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. - * - `102` if the data is unavailable. - * - * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported acceleration value may be valid and used by the application. - * - * @note: If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * - * @unit 0,1 m/s2 - * @category: Kinematics information - * @revision: Description revised in V2.1.1 - */ -AccelerationConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) - -/** - * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. - * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle - * acceleration control system is engaged or not. Currently, this DE includes the information of the - * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise - * control system, cruise control system and speed limiter system. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `brakePedalEngaged` - Driver is stepping on the brake pedal, - * - 1 - `gasPedalEngaged` - Driver is stepping on the gas pedal, - * - 2 - `emergencyBrakeEngaged` - emergency brake system is engaged, - * - 3 - `collisionWarningEngaged`- collision warning system is engaged, - * - 4 - `accEngaged` - ACC is engaged, - * - 5 - `cruiseControlEngaged` - cruise control is engaged, - * - 6 - `speedLimiterEngaged` - speed limiter is engaged. - * - * Otherwise (for example when the corresponding system is not available due to non equipped system - * or information is unavailable), the corresponding bit shall be set to _0_. - * - * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. - * @category: Kinematics information - * @revision: V1.3.1 - */ -AccelerationControl ::= BIT STRING { - brakePedalEngaged (0), - gasPedalEngaged (1), - emergencyBrakeEngaged (2), - collisionWarningEngaged (3), - accEngaged (4), - cruiseControlEngaged (5), - speedLimiterEngaged (6) -} (SIZE(7)) - -/** - * This DE represents the value of an acceleration component in a defined coordinate system. - * - * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * @note: zero acceleration is indicated using n=0. - * @unit 0,1 m/s2 - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AccelerationValue ::= INTEGER { - negativeOutOfRange (-160), - positiveOutOfRange (160), - unavailable (161) -- tbd delete unavailable value? -} (-160 .. 161) - - -/** - * This DE indicates an access technology. - * - * The value shall be set to: - * - `0`: in case of any access technology class. - * - `1`: in case of ITS-G5 access technology class. - * - `2`: in case of LTE-V2X access technology class. - * - `3`: in case of NR-V2X access technology class. - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -AccessTechnologyClass ::= ENUMERATED { - any (0), - itsg5Class (1), - ltev2xClass (2), - nrv2xClass (3), - ... -} - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case the information on the sub cause of the accident is unavailable, - * - 1 - `multiVehicleAccident` - in case more than two vehicles are involved in accident, - * - 2 - `heavyAccident` - in case the airbag of the vehicle involved in the accident is triggered, - * the accident requires important rescue and/or recovery work, - * - 3 - `accidentInvolvingLorry` - in case the accident involves a lorry, - * - 4 - `accidentInvolvingBus` - in case the accident involves a bus, - * - 5 - `accidentInvolvingHazardousMaterials`- in case the accident involves hazardous material, - * - 6 - `accidentOnOppositeLane` - in case the accident happens on opposite lanes, - * - 7 - `unsecuredAccident` - in case the accident is not secured, - * - 8 - `assistanceRequested` - in case rescue and assistance are requested, - * - 9-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AccidentSubCauseCode ::= INTEGER { - unavailable (0), - multiVehicleAccident (1), - heavyAccident (2), - accidentInvolvingLorry (3), - accidentInvolvingBus (4), - accidentInvolvingHazardousMaterials (5), - accidentOnOppositeLane (6), - unsecuredAccident (7), - assistanceRequested (8) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailabl. - * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road. - * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road. - * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road. - * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road. - * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road. - * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road. - * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road. - * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. - * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface. - * - 10 - `roadsSalted` - when the low road adhesion is due to salted road. - * - 11-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { - unavailable (0), - heavyFrostOnRoad (1), - fuelOnRoad (2), - mudOnRoad (3), - snowOnRoad (4), - iceOnRoad (5), - blackIceOnRoad (6), - oilOnRoad (7), - looseChippings (8), - instantBlackIce (9), - roadsSalted (10) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable. - * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind. - * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail. - * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane. - * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm. - * - 5 - `tornado` - in case the type of extreme weather condition is tornado. - * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. - * - 7-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { - unavailable (0), - strongWinds (1), - damagingHail (2), - hurricane (3), - thunderstorm (4), - tornado (5), - blizzard (6) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. - * - * The value shall be set to: - * - 0 - `unavailable` : in case information on the type of precipitation is unavailable. - * - 1 - `heavyRain` : in case the type of precipitation is heavy rain. - * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall. - * - 3 - `softHail` : in case the type of precipitation is soft hail. - * - 4-255 : are reserved for future usage - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { - unavailable (0), - heavyRain (1), - heavySnowfall (2), - softHail (3) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable. - * - 1 - `fog` - in case the cause of low visibility is fog. - * - 2 - `smoke` - in case the cause of low visibility is smoke. - * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall. - * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain. - * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail. - * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare. - * - 7 - `sandstorms` - in case the cause of low visibility is sand storm. - * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. - * - 9-255 - are reserved for future usage - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { - unavailable (0), - fog (1), - smoke (2), - heavySnowfall (3), - heavyRain (4), - heavyHail (5), - lowSunGlare (6), - sandstorms (7), - swarmsOfInsects (8) -} (0..255) - -/** - * This DE represents the air humidity in tens of percent. - * - * The value shall be set to: - * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0.1 percent and greater than (n-1) x 0.1 percent. - * - `1001` indicates that the air humidity is unavailable. - * - * @category: Basic information - * @unit: 0,1 % - * @revision: created in V2.1.1 - */ -AirHumidity ::= INTEGER { - oneHundredPercent (1000), - unavailable (1001) -} (1..1001) - -/** - * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. - * - * The value shall be set to: - * - 0 - `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. - * - 1 - `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. - * - 2 - `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. - * - 3 - `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. - * - 4 - `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. - * - 5 - `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. - * - 6 - `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. - * - 7 - `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. - * - 8 - `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. - * - 9 - `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. - * - 10 - `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. - * - 11 - `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. - * - 12 - `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. - * - 13 - `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. - * - 14 - `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. - * - 15 - `unavailable` if the altitude accuracy information is unavailable - * - * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused - * by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported altitude value may be valid and used by the application. - * - * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported - * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -AltitudeConfidence ::= ENUMERATED { - alt-000-01 (0), - alt-000-02 (1), - alt-000-05 (2), - alt-000-10 (3), - alt-000-20 (4), - alt-000-50 (5), - alt-001-00 (6), - alt-002-00 (7), - alt-005-00 (8), - alt-010-00 (9), - alt-020-00 (10), - alt-050-00 (11), - alt-100-00 (12), - alt-200-00 (13), - outOfRange (14), - unavailable (15) -} - -/** - * This DE represents the altitude value in a WGS84 co-ordinate system. - * - * The value shall be set to: - * - `-100 000` if the altitude is equal to or less than -1 000 m. - * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0.01 meters and greater than (n-1) x 0,01 meters. - * - `800 000` if the altitude greater than 7 999 m. - * - `800 001` if the information is not available. - * - * @unit: 0.01 meter - * @category: GeoReference information - * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) - */ -AltitudeValue ::= INTEGER { - negativeOutOFRange (-100000), - postiveOutOfRange (800000), - unavailable (800001) -} (-100000..800001) - -/** - * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. - * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. - * - `127` if the accuracy information is not available. - * - * @unit: 0,1 degrees - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. - * For correlation computation, maximum interval levels can be assumed. - * - * The value shall be set to: - * - 0 - `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second - * - 1 - `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second - * - 2 - `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second - * - 3 - `degSec-001-00` if the accuracy is equal to or less than 1 degree/second - * - 4 - `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second - * - 5 - `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second - * - 6 - `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second - * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second - * - 8 - `unavailable` if the accuracy information is unavailable - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngularSpeedConfidence ::= ENUMERATED { - degSec-000-01 (0), - degSec-000-05 (1), - degSec-000-10 (2), - degSec-001-00 (3), - degSec-005-00 (4), - degSec-010-00 (5), - degSec-100-00 (6), - outOfRange (7), - unavailable (8) -} - -/** - * Tis DE represents the absolute accuracy of a reported angular acceleration value for a confidence level of 95%. - * For correlation computation, maximum interval levels shall be assumed. - * - * The value shall be set to: - * - 0 - `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second2 - * - 1 - `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second2 - * - 2 - `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second2 - * - 3 - `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second2 - * - 4 - `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second2 - * - 5 - `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second2 - * - 6 - `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second2 - * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second2 - * - 8 - `unavailable` if the accuracy information is unavailable - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngularAccelerationConfidence ::= ENUMERATED { - degSecSquared-000-01 (0), - degSecSquared-000-05 (1), - degSecSquared-000-10 (2), - degSecSquared-001-00 (3), - degSecSquared-005-00 (4), - degSecSquared-010-00 (5), - degSecSquared-100-00 (6), - outOfRange (7), - unavailable (8) -} - -/** - * This DE indicates the number of axels of a passing train. - * - * The following values are specified: - * - `n(n > 2 and n < 1001)` indicates that the train has n x axels. - * - `1001`indicates that the number of axels is out of range. - * - `1002` the information is unavailable. - * - * - * @unit: Number of axels - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -AxlesCount ::= INTEGER{ - outOfRange (1001), - unavailable (1002) -} (2..1002) - -/** - * This DE represent the measured uncompesated atmospheric pressure in units of hPascal (hPa). - * - * The following values are specified: - * - `2999` indicates that the applicable value is less than 299.9 hPa. - * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 0.1 hPa and greater than (n-1) x 0.1 hPa. - * - `12001` indicates that the values is greater than 1200 hPa. - * - `12002` indicates that the information is not available. - * - * @category: Basic information - * @unit: 0.1 hPa - * @revision: Created in V2.1.1 -*/ -BarometricPressure ::= INTEGER{ - outOfRangelower (2999), - outOfRangeUpper (12001), - unavailable (12002) -} (2999..12002) - - -/** - * This DE indicates the cardinal number of bogies of a train. - * -* The value shall be set to: - * - `n (n > 1 and n < 100)` indicates that the train has n x bogie - * - `100`indicates that the number of bogie is out of range. - * - `101` the information is unavailable. - * - * @unit: Number of bogies - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -BogiesCount ::= INTEGER{ - outOfRange (100), - unavailable (101) -} (2..101) - -/** - * The DE represents a cardinal number that counts the size of a set. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CardinalNumber1B ::= INTEGER(1..255) - -/** - * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. - * - `36001` if the accuracy information is not available. - * - * The value 3600 shall not be used. - * - * @unit 0,1 degrees - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngleValue ::= INTEGER { - valueNotUsed (3600), - unavailable (3601) -} (0..3601) - -/** - * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `-32766` if the speed is equal to or less than 327,66 degrees/s. - * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s. - * - `32766` if the speed is greater than 327,65 degrees/s. - * - `32767` if the information is unavailable. - * - * @unit 0,01 degrees/s - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngularSpeedValue ::= INTEGER { - negativeOutofRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) - -/** - * This DE represents an angular acceleration value described in a local Cartesian coordinate system, counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `-32766` if the acceleration is equal to or less than 327,66 degrees/s2 - * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than n x 0,01 degrees/s2, - and greater than `(n-1)` x 0,01 degrees/s2. - * - `32766` if the acceleration is greater than 327,65 degrees/s2 - * - `32767` if the information is unavailable - * - * @unit 0,01 degrees/s2 (degrees per second squared) - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngularAccelerationValue ::= INTEGER { - negativeOutofRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) - -/** - *The DE represents the value of the cause code of an event. - * - * The value shall be set to: - * - 0 - - reserved for future use, - * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, - * - 2 - `accident` - in case the type of event is a road accident, - * - 3 - `roadworks` - in case the type of event is roadwork, - * - 4 - reserved for future usage, - * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any - * blocking of a road, partial or total, which has not been adequately - * secured and signposted, - * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, - * - 7 - `aquaplaning` - danger of aquaplaning on the road, - * - 8 - reserved for future usage, - * - 9 - `hazardousLocation-SurfaceCondition` - in case the type of event is abnormal road surface condition, - * - 10 - `hazardousLocation-ObstacleOnTheRoad` - in case the type of event is obstacle on the road, - * - 11 - `hazardousLocation-AnimalOnTheRoad` - in case the type of event is animal on the road, - * - 12 - `humanPresenceOnTheRoad` - in case the type of event is human presence on the road, - * - 13 - reserved for future usage, - * - 14 - `wrongWayDriving` - in case the type of the event is vehicle driving in wrong way, - * - 15 - `rescueAndRecoveryWorkInProgress` - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, - * - 16 - reserved for future usage, - * - 17 - `adverseWeatherCondition-ExtremeWeatherCondition`- in case the type of event is extreme weather condition, - * - 18 - `adverseWeatherCondition-Visibility` - in case the type of event is low visibility, - * - 19 - `adverseWeatherCondition-Precipitation` - in case the type of event is precipitation, - * - 20 - `violence` - in case the the type of event is human violence on or near the road, - * - 21-25 - reserved for future usage, - * - 26 - `slowVehicle` - in case the type of event is slow vehicle driving on the road, - * - 27 - `dangerousEndOfQueue` - in case the type of event is dangerous end of vehicle queue, - * - 28-90 - are reserved for future usage, - * - 91 - `vehicleBreakdown` - in case the type of event is break down vehicle on the road, - * - 92 - `postCrash` - in case the type of event is a detected crash, - * - 93 - `humanProblem` - in case the type of event is human health problem in vehicles involved in traffic, - * - 94 - `stationaryVehicle` - in case the type of event is stationary vehicle, - * - 95 - `emergencyVehicleApproaching` - in case the type of event is approaching vehicle operating emergency mission, - * - 96 - `hazardousLocation-DangerousCurve` - in case the type of event is dangerous curve, - * - 97 - `collisionRisk` - in case the type of event is a collision risk, - * - 98 - `signalViolation` - in case the type of event is signal violation, - * - 99 - `dangerousSituation` - in case the type of event is dangerous situation in which autonomous safety system in vehicle - * is activated, - * - 100 - `railwayLevelCrossing` - in case the type of event is a railway level crossing. - * - 101-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -CauseCodeType ::= INTEGER { - trafficCondition (1), - accident (2), - roadworks (3), - - impassability (5), - adverseWeatherCondition-Adhesion (6), - aquaplaning (7), - - hazardousLocation-SurfaceCondition (9), - hazardousLocation-ObstacleOnTheRoad (10), - hazardousLocation-AnimalOnTheRoad (11), - humanPresenceOnTheRoad (12), - - wrongWayDriving (14), - rescueAndRecoveryWorkInProgress (15), - - adverseWeatherCondition-ExtremeWeatherCondition (17), - adverseWeatherCondition-Visibility (18), - adverseWeatherCondition-Precipitation (19), - violence (20), - - slowVehicle (26), - dangerousEndOfQueue (27), - - vehicleBreakdown (91), - postCrash (92), - humanProblem (93), - stationaryVehicle (94), - emergencyVehicleApproaching (95), - hazardousLocation-DangerousCurve (96), - collisionRisk (97), - signalViolation (98), - dangerousSituation (99), - railwayLevelCrossing (100) -} (0..255) - -/** - * This DF represents the value of a cartesian coordinate with a range of -30,93 meters to +10,00 meters. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateSmall::= INTEGER { - negativeOutOfRange (-3094), - positiveOutOfRange (1001) -} (-3094..1001) -- this is 12 bit, tbd question: increase the range by "one bit" to make this more practical for common usage? - -/** - * This DF represents the value of a cartesian coordinate with a range of -327,67 to + 327,66 meters. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinate::= INTEGER{ - negativeOutOfRange (-32768), - positiveOutOfRange (32767) -} (-32768..32767) - -/** - * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateLarge::= INTEGER{ - negativeOutOfRange (-131072), - positiveOutOfRange (131071) -} (-131072..131071) - -/** - * This DE represents the ID of a CEN DSRC tolling zone. - * - * @category: Communication information - * @revision: V1.3.1 - */ -CenDsrcTollingZoneID::= ProtectedZoneID - -/** - * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 (for the cluster leader) . - * - * The value shall be set to `0` if the information is unavailable. - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterCardinalitySize::= INTEGER { - unavailable (0), - onlyLeader (1) -} (0..255) - -/** - * This DE represents the identifier of a cluster. - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterId ::= INTEGER(0..255) - -/** - * This DE indicates the reason why a cluster leader intends to break up the cluster. - * - * The value shall be set to: - * - 0 - `notProvided` - if the information is not provided. - * - 1 - `clusteringPurposeCompleted` - if the cluster purposes has been completed. - * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box. - * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster. - * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps. - * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. - * - 6 to 15 - reserved for future use - * - * @category: Cluster information - * @revision: Created in V2.1.1 -*/ -ClusterBreakupReason ::= ENUMERATED { - notProvided (0), - clusteringPurposeCompleted (1), - leaderMovedOutOfClusterBoundingBox (2), - joiningAnotherCluster (3), - enteringLowRiskAreaBasedOnMaps (4), - receptionOfCpmContainingCluster (5), - max(15) -} - -/** - * This DE indicates the reason why a cluster participant is leaving the cluster. - * - * The value shall be set to: - * - 0 - `notProvided ` - if the information is not provided. - * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore. - * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbounded by the leader. - * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box. - * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of adefined range. - * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster. - * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure. - * - 7 - `failedJoin` - if the participant failed to join the cluster. - * - 8 - `safetyCondition` - if a safety condition applies. - * - 9 to 15 - reserved for future use - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterLeaveReason ::= ENUMERATED { - notProvided (0), - clusterLeaderLost (1), - clusterDisbandedByLeader (2), - outOfClusterBoundingBox (3), - outOfClusterSpeedRange (4), - joiningAnotherCluster (5), - cancelledJoin (6), - failedJoin (7), - safetyCondition (8), - max(15) -} - -/** - * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of collision risk is unavailable, - * - 1 - `longitudinalCollisionRisk`- in case the type of detected collision risk is longitudinal collision risk, - * e.g. forward collision or face to face collision, - * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, - * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, - * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users - * e.g. pedestrians or bicycles, - * - 5-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -CollisionRiskSubCauseCode ::= INTEGER { - unavailable (0), - longitudinalCollisionRisk (1), - crossingCollisionRisk (2), - lateralCollisionRisk (3), - vulnerableRoadUser (4) -}(0..255) - -/** - * This DE represents a confidence level in percentage. - * - * The value shall be set to: - * - * - `0` : in case the confidence value is unknown but the reported value is valid. - * - `n (n > 0 and n < 101)` : for the confidence value in %. - * - `101` : in case the confidence value is not available. - * - * @unit Percent - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -ConfidenceLevel ::= INTEGER { - unknown (0), - unavailable (101) -} (0..101) - -/** - * This DE represents the absolute accuracy of measurement to a confidence level of 95%. - * - * The value shall be set to: - * - `n` (`n > 0` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. - * - `4094` if the accuracy information is greater than 40,93 meter. - * - `4095` if the accuracy information is not available. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CoordinateConfidence ::= INTEGER { - outOfRange (4094), - unavailable (4095) -} (0..4095) - -/** - * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. - * - * The following values are specified. - * - `-100` indicates full negative correlation - * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100. - * - `0` indicates not correlated or unavailable - * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. - * - `100` indicates full positive correlation - * - * @unit: the value is scaled by 100 - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -CorrelationRowValue ::= INTEGER { - full-negative-correlation (-100), - no-correlation (0), - full-positive-correlation (100) -} (-100..100) - -/** - * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. - * - * The value shall be set to: - * - 0 - `yawRateUsed` - if the yaw rate is used. - * - 1 - `yawRateNotUsed` - if the yaw rate is not used. - * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -CurvatureCalculationMode ::= ENUMERATED { - yawRateUsed (0), - yawRateNotUsed (1), - unavailable (2), - ... -} - -/** - * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. - * - * The value shall be set to: - * - 0 - `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. - * - 1 - `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. - * - 2 - `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. - * - 3 - `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. - * - 4 - `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. - * - 5 - `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. - * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. - * - 7 - `unavailable` if the information is not available. - * - * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by - * several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported curvature value may be valid and used by the application. - * - * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid - * and therefore cannot be trusted. Such value is not useful for the application. - * - * @category: Vehicle information - * @revision: description revised in V2.1.1 -*/ -CurvatureConfidence ::= ENUMERATED { - onePerMeter-0-00002 (0), - onePerMeter-0-0001 (1), - onePerMeter-0-0005 (2), - onePerMeter-0-002 (3), - onePerMeter-0-01 (4), - onePerMeter-0-1 (5), - outOfRange (6), - unavailable (7) -} - -/** - * This DE describes vehicle turning curve with the following information: - * ``` - * Value = 1 / Radius * 10000 - * ``` - * wherein radius is the vehicle turning curve radius in meters. - * - * Positive values indicate a turning curve to the left hand side of the driver. - * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. - * - * The value shall be set to: - * - `-1023` for values smaller than -1023. - * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1). - * - `0` when the vehicle is moving straight. - * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1). - * - `1022`, for values greater than 1021. - * - `1023`, if the information is not available. - * - * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. - * - * @unit: 1 over 10 000 metres - * @category: Vehicle information - * @revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) - */ -CurvatureValue ::= INTEGER { - outOfRangeNegative (-1023), - straight (0), - outOfRangePositive (1022), - unavailable (1023) -} (-1023..1023) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. - * - * The following value are specified: - * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, - * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, - * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, - * - 3 - `queueAroundBend` - in case the dangerous end of queue is detected around the road bend, - * - 4 - `queueInTunnel` - in case queue is detected in tunnel, - * - 5-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DangerousEndOfQueueSubCauseCode ::= INTEGER { - unavailable (0), - suddenEndOfQueue (1), - queueOverHill (2), - queueAroundBend (3), - queueInTunnel (4) -} (0..255) - -/** - * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. - * The value is assigned according to `_class_` and `_division_` definitions of dangerous goods as specified in part II, - * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. - * - * - * @category Vehicle information - * @revision: V1.3.1 - */ -DangerousGoodsBasic::= ENUMERATED { - explosives1 (0), - explosives2 (1), - explosives3 (2), - explosives4 (3), - explosives5 (4), - explosives6 (5), - flammableGases (6), - nonFlammableGases (7), - toxicGases (8), - flammableLiquids (9), - flammableSolids (10), - substancesLiableToSpontaneousCombustion (11), - substancesEmittingFlammableGasesUponContactWithWater (12), - oxidizingSubstances (13), - organicPeroxides (14), - toxicSubstances (15), - infectiousSubstances (16), - radioactiveMaterial (17), - corrosiveSubstances (18), - miscellaneousDangerousSubstances (19) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousSituation` - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, - * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, - * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, - * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, - * - 4 - `absEngaged` - in case Anti-lock braking system (ABS) is engaged, - * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, - * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, - * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, - * - 8-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DangerousSituationSubCauseCode ::= INTEGER { - unavailable (0), - emergencyElectronicBrakeEngaged (1), - preCrashSystemEngaged (2), - espEngaged (3), - absEngaged (4), - ebEngaged (5), - brakeWarningEngaged (6), - collisionRiskWarningEngaged (7) -} (0..255) - -/** - * This DE represents an offset altitude with regards to a defined altitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `-12700` for values equal to or lower than -127 metres. - * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 meter below the reference position. - * - `0` for no altitudinal offset. - * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 meter above the reference position. - * - `12799` for values equal to or greater than 127,99 metres. - * - `12800` when the information is unavailable. - * - * @unit: 0.01 metre - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaAltitude ::= INTEGER { - negativeOutOfRange (-12700), - positiveOutOfRange (12799), - unavailable (12800) -} (-12700..12800) - -/** - * This DE represents an offset latitude with regards to a defined latitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. - * - `0` for no latitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the north from the reference position. - * - `131072` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLatitude ::= INTEGER { - unavailable (131072) -} (-131071..131072) - - -/** - * This DE represents an offset latitude with regards to a defined latitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. - * - `0` for no latitudinal offset. - * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the north from the reference position. - * - `32767` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLatitudeSmall::= INTEGER { - unavailable (32767) -} (-32766..32767) - - -/** - * This DE represents an offset longitude with regards to a defined longitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. - * - `0` for no longitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the east from the reference position. - * - `131072` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLongitude ::= INTEGER { - unavailable (131072) -} (-131071..131072) - -/** - * This DE represents an offset longitude with regards to a defined longitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. - * - `0` for no longitudinal offset. - * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the east from the reference position. - * - `32767` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLongitudeSmall::= INTEGER { - unavailable (32767) -} (-32766..32767) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 0,01 s - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) - -/** - * This DE represents a difference in time with respect to a reference time. - - * Example: a time interval between two consecutive message transmissions. - * - * @unit: 1 ms - * @category: Basic information - * @revision: Created in V2.1.1 from the DE TransmissionInterval - */ -DeltaTimeMilliSecondPos ::= INTEGER (1..10000) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 1 ms - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) - -/** - * This DE represents a difference in time with respect to a reference time. - * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, - * multiply by 256 (i.e. append a `00` byte) - * - * @unit: 256 milliseconds - * @category: Basic information - * @revision: Created in V2.1.1 - */ -DeltaTimeQuarterSecond::= INTEGER (1..255) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 0,1 s - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeTenthOfSecond::= INTEGER { - unavailable (127) -} (0..127) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 1 s - * @category: Basic information - * @revision: Created in V2.1.1 from ValidityDuration -*/ -DeltaTimeSecond ::= INTEGER (0..86400) - - -/** - * This DE indicates a direction with respect to a defined reference direction. - * Example: a reference direction may be implicitly defined by the definition of a geographical zone. - * - * The value shall be set to: - * - 0 - `sameDirection` - to indicate the same direction as the reference direction. - * - 1 - `oppositeDirection` - to indicateopposite direction as the reference direction. - * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction. - * - 3 - `unavailable` - to indicate that the information is unavailable. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -Direction::= INTEGER{ - sameDirection (0), - oppositeDirection (1), - bothDirections (2), - unavailable (3) - } (0..3) - -/** - * This DE indicates in which direction something is moving. - * - * The value shall be set to: - * - 0 - `forward` - to indicate it is moving forward. - * - 1 - `backwards` - to indicate it is moving backwards. - * - 2 - `unavailable` - to indicate that the information is unavailable. - * - * @category: Kinematics information - * @revision: editorial update in V2.1.1 - */ -DriveDirection ::= ENUMERATED { - forward (0), - backward (1), - unavailable (2) -} - -/** - * This DE indicates whether a driving lane is open to traffic. - * - * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall - * correspond to the total number of the driving lanes in the carriageway. - * - * The numbering is matched to @ref LanePosition. - * The bit `0` is used to indicate the innermost lane, bit `1` is used to indicate the second lane from inside border. - * - * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. - * - * @note:Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) - -/** - * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. - * If that is the case, the value is *TRUE*, otherwise *FALSE*. - * - * @category: Vehicle information - * @revision: editorial update in V2.1.1 - */ -EmbarkationStatus ::= BOOLEAN - -/** - * This DE indicates the right of priority requested or assumed by an operating emergency vehicle. - * The right-of-priority bit shall be set to `1` if the corresponding right is requested. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way. - * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. - * - * @category: Traffic information - * @revision: description revised in V2.1.1 - */ -EmergencyPriority ::= BIT STRING { - requestForRightOfWay (0), - requestForFreeCrossingAtATrafficLight (1) -} (SIZE(2)) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event - * is unavailable, - * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, - * - 2 -`prioritizedVehicleApproaching` - in case a prioritized vehicle (e.g. bus) is approaching, - * - 3-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -EmergencyVehicleApproachingSubCauseCode ::= INTEGER { - unavailable (0), - emergencyVehicleApproaching (1), - prioritizedVehicleApproaching (2) -} (0..255) - -/** - * This DE indicated the type of energy being used and stored in vehicle. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle. - * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle. - * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle. - * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle. - * - 4 - `diesel` - when diesel is being used and stored in vehicle. - * - 5 - `gasoline` - when gasoline is being used and stored in vehicle. - * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. - * - * - Otherwise, the corresponding bit shall be set to `0`. - * - * @category: Vehicle information - * @revision: editorial revision in V2.1.1 - */ -EnergyStorageType ::= BIT STRING { - hydrogenStorage (0), - electricEnergyStorage (1), - liquidPropaneGas (2), - compressedNaturalGas (3), - diesel (4), - gasoline (5), - ammonia (6) -}(SIZE(7)) - -/** - * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } - -/** - * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} - -/** - * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} - -/** - * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} - -/** - * This DE describes the status of the exterior light switches of a vehicle. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on. - * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on. - * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on. - * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on. - * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on. - * - 5 - `reverseLightOn` - when the reverse light switch is on. - * - 6 - `fogLightOn` - when the tail fog light switch is on. - * - 7 - `parkingLightsOn` - when the parking light switch is on. - * - * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, - * either manually by the driver or automatically by a vehicle system. The bit value does not indicate - * if the corresponding lamps are alight or not. - * - * If a vehicle is not equipped with a certain light or if the light switch status information is not available, - * the corresponding bit shall be set to `0`. - * - * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not - * alternate with the blinking interval. - * - * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. - * - * @category Vehicle information - * @revision: Description revised in V2.1.1 - */ -ExteriorLights ::= BIT STRING { - lowBeamHeadlightsOn (0), - highBeamHeadlightsOn (1), - leftTurnSignalOn (2), - rightTurnSignalOn (3), - daytimeRunningLightsOn (4), - reverseLightOn (5), - fogLightOn (6), - parkingLightsOn (7) -} (SIZE(8)) - -/** - * This DE represents a timestamp based on TimestampIts modulo 65 536. - * This means that generationDeltaTime = TimestampIts mod 65 536. - * - * @category Time information - * @revision: Created in V2.1.1 based on EN 302 637-2 -*/ -GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) - -/** - * This DE indicates the current status of a hard shoulder: whether it is available for special usage - * (e.g. for stopping or for driving) or closed for all vehicles. - * - * The value shall be set to: - * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations. - * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case. - * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 - */ -HardShoulderStatus ::= ENUMERATED { - availableForStopping (0), - closed (1), - availableForDriving (2)} - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, - * - 1 - `wildAnimals` - in case wild animals are detected on the road, - * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, - * - 3 - `smallAnimals` - in case small size animal is detected on the road, - * - 4 - `largeAnimals` - in case large size animal is detected on the road, - * - 5-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - wildAnimals (1), - herdOfAnimals (2), - smallAnimals (3), - largeAnimals (4) -} (0..255) - -/** - * This DE represents the sub cause code of the @ref CauseCode `hazardousLocation-DangerousCurve`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, - * - 1 - `dangerousLeftTurnCurve` - in case the dangerous curve is a left turn curve, - * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, - * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, - * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, - * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves stating with a right turn curve, - * - 6-255 - are reserved for future usage. - * - * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass - * and vehicle speed driving on the curve. This definition is out of scope of the present document. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { - unavailable (0), - dangerousLeftTurnCurve (1), - dangerousRightTurnCurve (2), - multipleCurvesStartingWithUnknownTurningDirection (3), - multipleCurvesStartingWithLeftTurn (4), - multipleCurvesStartingWithRightTurn (5) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the detected obstacle is unavailable, - * - 1 - `shedLoad` - in case detected obstacle is large amount of obstacles (shedload), - * - 2 - `partsOfVehicles`- in case detected obstacles are parts of vehicles, - * - 3 - `partsOfTyres` - in case the detected obstacles are parts of tyres, - * - 4 - `bigObjects` - in case the detected obstacles are big objects, - * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, - * - 6 - `hubCaps` - in case the detected obstacles are hub caps, - * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles, - * - 8-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - shedLoad (1), - partsOfVehicles (2), - partsOfTyres (3), - bigObjects (4), - fallenTrees (5), - hubCaps (6), - waitingVehicles (7) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. - * -The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the road surface condition is unavailable, - * - 1 - `rockfalls` - in case rock falls are detected on the road surface, - * - 2 - `earthquakeDamage`- in case the road surface is damaged by earthquake, - * - 3 - `sewerCollapse` - in case of sewer collapse on the road surface, - * - 4 - `subsidence` - in case road surface is damaged by subsidence, - * - 5 - `snowDrifts` - in case road surface is damaged due to snow drift, - * - 6 - `stormDamage` - in case road surface is damaged by strong storm, - * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, - * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, - * - 9 - `fallingIce` - in case road surface damage is due to falling ice, - * - 10 - `fire` - in case there is fire on or near to the road surface, - * - 11-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { - unavailable (0), - rockfalls (1), - earthquakeDamage (2), - sewerCollapse (3), - subsidence (4), - snowDrifts (5), - stormDamage (6), - burstPipe (7), - volcanoEruption (8), - fallingIce (9), - fire (10) -} (0..255) - -/** - * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. - * -The value shall be set to: - * - `1` if the heading accuracy is equal to or less than 0,1 degree, - * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, - * - `125` if the heading accuracy is equal to or less than 12,5 degrees, - * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, - * - `127` if the heading accuracy information is not available. - * - * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, - * such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported heading value may be valid and used by the application. - * - * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported - * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleConfidence instead. - * - * @unit: 0,1 degree - * @category: GeoReference information - * @revision: Description revised in V2.1.1 - */ -HeadingConfidence ::= Wgs84AngleConfidence - -/** -HeadingValue - * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. - * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. - * - * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleValue instead. - * - * Unit: 0,1 degree - * Categories: GeoReference information - * @revision: Description revised in V2.1.1 (usage of value 3600 specified) -*/ -HeadingValue ::= Wgs84AngleValue - -/** - * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle - * rear to front). - * - * The value shall be set to: - * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter. - * - `99` if the height is out of range, i.e. equal to or greater than 98 cm. - * - `100` if the height information is not available. - * - * @unit 0,01 meter - * @category Vehicle information - * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) - */ -HeightLonCarr ::= INTEGER { - unavailable(100) -} (1..100) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, - * - 1 - `childrenOnRoadway` - in case children are detected on the road event, - * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, - * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road, - * - 4-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - childrenOnRoadway (1), - cyclistOnRoadway (2), - motorcyclistOnRoadway (3) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, - * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, - * - 2 - `heartProblem` - in case human problem is due to heart problem, - * - 3-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HumanProblemSubCauseCode ::= INTEGER { - unavailable (0), - glycemiaProblem (1), - heartProblem (2) -} (0..255) - -/** - * This DE is a general identifier. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -Identifier1B ::= INTEGER (0..255) - -/** - * This DE is a general identifier. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -Identifier2B ::= INTEGER (0..65535) - -/** - * This DE represents the quality level of provided information. - * - * The value shall be set to: - * - 0 - if the information is unavailable. - * - 1 - if the quality level is lowest - * - `n (n > 1 and n < 7)` if the quality level is n. - * - 7 - if the quality level is highest - * @note: Definition of quality level is out of scope of the present document. - * - * @category: Basic information - * @revision: Editorial update in V2.1.1 - */ -InformationQuality ::= INTEGER (0..7) - -/** - * This DE defines the type of an interference management zone, so that an ITS-S can - * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). - * It is an extension of the type @ref ProtectedZoneType. - - * - * The value shall be set to: - * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] - * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] - * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling - * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -InterferenceManagementZoneType ::= ENUMERATED { - permanentCenDsrcTolling (0), - temporaryCenDsrcTolling (1), - unavailable (2), - urbanRail (3), - satelliteStation (4), - fixedLinks (5), - ... -} - -/** - * This DE represents the vehicle type according to ISO 3833 [4]. - * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. - * - * The value shall be set to: - * - 0 - `passengerCar` - term No 3.1.1 - * - 1 - `saloon` - term No 3.1.1.1 (sedan) - * - 2 - `convertibleSaloon` - term No 3.1.1.2 - * - 3 - `pullmanSaloon` - term No 3.1.1.3 - * - 4 - `stationWagon` - term No 3.1.1.4 - * - 5 - `truckStationWagon` - term No 3.1.1.4.1 - * - 6 - `coupe` - term No 3.1.1.5 (coupe) - * - 7 - `convertible` - term No 3.1.1.6 (open tourer, roadstar, spider) - * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 - * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 - * - 10 - `specialPassengerCar` - term No 3.1.1.9 - * - 11 - `bus (11)` - term No 3.1.2 - * - 12 - `minibus` - term No 3.1.2.1 - * - 13 - `urbanBus` - term No 3.1.2.2 - * - 14 - `interurbanCoach` - term No 3.1.2.3 - * - 15 - `longDistanceCoach` - term No 3.1.2.4 - * - 16 - `articulatedBus` - term No 3.1.2.5 - * - 17 - `trolleyBus ` - term No 3.1.2.6 - * - 18 - `specialBus` - term No 3.1.2.7 - * - 19 - `commercialVehicle ` - term No 3.1.3 - * - 20 - `specialCommercialVehicle` - term No 3.1.3.1 - * - 21 - `specialVehicle ` - term No 3.1.4 - * - 22 - `trailingTowingVehicle ` - term No 3.1.5 (draw-bar tractor) - * - 23 - `semiTrailerTowingVehicle` - term No 3.1.6 (fifth wheel tractor) - * - 24 - `trailer` - term No 3.2.1 - * - 25 - `busTrailer` - term No 3.2.1.1 - * - 26 - `generalPurposeTrailer` - term No 3.2.1.2 - * - 27 - `caravan` - term No 3.2.1.3 - * - 28 - `specialTrailer` - term No 3.2.1.4 - * - 29 - `semiTrailer` - term No 3.2.2 - * - 30 - `busSemiTrailer ` - term No 3.2.2.1 - * - 31 - `generalPurposeSemiTrailer` - term No 3.2.2.2 - * - 32 - `specialSemiTrailer` - term No 3.2.2.3 - * - 33 - `roadTrain` - term No 3.3.1 - * - 34 - `passengerRoadTrain ` - term No 3.3.2 - * - 35 - `articulatedRoadTrain` - term No 3.3.3 - * - 36 - `doubleRoadTrain` - term No 3.3.4 - * - 37 - `compositeRoadTrain` - term No 3.3.5 - * - 38 - `specialRoadTrain` - term No 3.3.6 - * - 39 - `moped` - term No 3.4 - * - 40 - `motorCycle` - term No 3.5 - * - 41-255 - reserved for future use - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ - -Iso3833VehicleType ::= INTEGER { - passengerCar (0), - saloon (1), - convertibleSaloon (2), - pullmanSaloon (3), - stationWagon (4), - truckStationWagon (5), - coupe (6), - convertible (7), - multipurposePassengerCar (8), - forwardControlPassengerCar (9), - specialPassengerCar (10), - bus (11), - minibus (12), - urbanBus (13), - interurbanCoach (14), - longDistanceCoach (15), - articulatedBus (16), - trolleyBus (17), - specialBus (18), - commercialVehicle (19), - specialCommercialVehicle (20), - specialVehicle (21), - trailingTowingVehicle (22), - semiTrailerTowingVehicle (23), - trailer (24), - busTrailer (25), - generalPurposeTrailer (26), - caravan (27), - specialTrailer (28), - semiTrailer (29), - busSemiTrailer (30), - generalPurposeSemiTrailer (31), - specialSemiTrailer (32), - roadTrain (33), - passengerRoadTrain (34), - articulatedRoadTrain (35), - doubleRoadTrain (36), - compositeRoadTrain (37), - specialRoadTrain (38), - moped (39), - motorCycle (40) - } (0..255) - -/** - * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. - * - * For right-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road. - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane. - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction. - * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). - * - * For left-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road. - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane. - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction. - * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). - - * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. - * - * If the carriageway allows only traffic in one direction (e.g. in case of dual or multiple carriageway roads), the position is counted from the physical border of the carriageway. - * If the carriageway allows traffic in both directions and there is no physical delimitation between traffic directions (e.g. on a single carrriageway road), - * the position is counted from the legal (i.e. optical) separation between traffic directions (horizontal marking). - - * @category: Road topology information - * @revision: Description revised in V2.1.1 -*/ -LanePosition ::= INTEGER { - offTheRoad (-1), - innerHardShoulder (0), - outerHardShoulder (14) -} (-1..14) - -/** - * This DE represents the type of a lane. - * - * The value shall be set to: - * - 0 - `traffic` - Lane dedicated to the movement of vehicles. - * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning. - * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow. - * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. - * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it. - * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. - * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic. - * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. - * - 8 - `bus` - Lane dedicated to movement of buses providing public transport. - * - 9 - `taxi` - Lane dedicated to movement of taxis. - * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane. - * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. - * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths. - * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles. - * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median - separating the two directional carriageways of the highway. - * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings. - * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys. - * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes. - * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. - * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between - the road surface edge and the boundary of a road. - * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. - * - values 21 to 30 reserved for future use - * - * @category: Road topology information - * @revision: V2.1.1 -*/ -LaneType::= INTEGER{ - traffic (0), - through (1), - reversible (2), - acceleration (3), - deceleration (4), - leftHandTurning (5), - rightHandTurning (6), - dedicatedVehicle (7), - bus (8), - taxi (9), - hov (10), - hot (11), - pedestrian (12), - cycleLane (13), - median (14), - striping (15), - trackedVehicle (16), - parking (17), - emergency (18), - verge (19), - minimumRiskManoeuvre (20), - unknown (31) -}(0..31) - -/** - * This DE represents the width of a lane measured at a defined position. - * - * @unit: 0.01 meter - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -LaneWidth::= INTEGER (0..1023) - -/** - * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or - * in south hemisphere. - * - * The value shall be set to: - * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitudes south of the Equator. - * - `0` is used for the latitude of the equator. - * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitudes north of the Equator. - * - `900 000 001` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -Latitude ::= INTEGER { - unavailable(900000001) -} (-900000000..900000001) - -/** - * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - - * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation - * with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation - with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead - * - * @unit: 0.1 m/s2 - * @category Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. - */ -LateralAccelerationValue ::= AccelerationValue - -/** - * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. - * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lightBarActivated` - when the light bar is activated. - * - 1 - `sirenActivated` - when the siren is activated. - * - * Otherwise, it shall be set to 0. - * - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -LightBarSirenInUse ::= BIT STRING { - lightBarActivated (0), - sirenActivated (1) -} (SIZE(2)) - -/** - * This DE represents the absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees - * to the east or to the west of the prime meridian. - * - * The value shall be set to: - * - `n (n > -1800000000 and n < 0)`, i.e. negative values for longitudes to the west. - * - `0` to indicate the prime meridian. - * - `n (n > 0 and n < 1800000001)`, i.e. positive values for longitudes to the east. - * - `1 800 000 001` when the information is unavailable. - * - * The value -1800000000 shall not be used. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: Description revised in V2.1.1 - */ -Longitude ::= INTEGER { - valueNotUsed (-1800000000), - unavailable (1800000001) -} (-1800000000..1800000001) - - /** - * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * -* The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * This acceleration is along the tangent plane of the road surface and does not include gravity components. - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * @category: Vehicle information - * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. - */ -LongitudinalAccelerationValue::= AccelerationValue - -/** - * This DE represents the longitudinal offset of the map-matched position of a particular object along the - * matched lane, beginning from the lane's starting point. - * - * @unit 0,1 m - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -LongitudinalLanePositionValue ::= INTEGER (0..32767) - -/** - * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. - * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. - * - `102` if the data is unavailable. - * - * @unit 0,01 meter - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -LongitudinalLanePositionConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) - -/** - * This DE represents the type of facility layer message. - * - * The value shall be set to: - * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], - * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], - * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], - * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], - * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], - * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], - * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], - * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], - * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], - * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], - * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], - * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], - * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], - * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], - * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], - * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], - * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. - * - 18-255 - reserved for future usage, - * - * @category: Communication information - * @revision: Created in V2.1.1 from @ref ItsPduHeader. - */ -MessageId::= INTEGER { - denm (1), - cam (2), - poi (3), - spatem (4), - mapem (5), - ivim (6), - ev-rsr (7), - tistpgtransaction (8), - srem (9), - ssem (10), - evcsn (11), - saem (12), - rtcmem (13), - cpm (14), - imzm (15), - vam (16), - dsm (17) -} (0..255) - -/** - * This DE represents the number of occupants in a vehicle. - * - * The value shall be set to: - * - `n (n > 1 and n < 126)` for the number n of occupants. - * - `126` for values equal to or higher than 126. - * - `127` if information is not available.`. - * - * @unit: 1 person - * @category: Vehicle information - * @revision: Editorial update in V2.1.1 - */ -NumberOfOccupants ::= INTEGER { - outOfRange (126), - unavailable (127) -} (0 .. 127) - -/** - * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. - * - * The value shall be set to: - * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. - * - `n (n > 0 and n < 15)` : for the applicable confidence value. - * -`15` : if there is full confidence in the detected ObjectDescriptor. - * - * @unit n/a - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectConfidence ::= INTEGER { - noConfidence (0), - fullConfidence (15) -} (0..15) - -/** - * This DE represents a single dimension of an object. - * - * @unit 0,1 m - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimensionValue ::= INTEGER (0..1023) - -/** - * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . - * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. - * - `102` if the data is unavailable. - * - * @unit 0,01 m - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimensionConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) - -/** - * The DE indicates whether the detected object is classified as a dynamic (i.e. moving) object. - * This value indicates whether an object has the general capability to move, i.e. change its - * position. - * - * The value shall be set to: - * - `0` - dynamic - if the object is moving. - * - `1` - hasBeenDynamic - if the object has been dynamic before, e.g., a car stopping at a traffic light. - * - `2` - static - if the object has been detected to be not moving throughout any previous observation. - * - `3` - unavailable - if the information is unavailable. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDynamicStatus ::= INTEGER { - dynamic (0), - hasBeenDynamic (1), - static (2), - unavailable (3) -} (0..3) - -/** - * This DE indicates the approximate position of the reference point of measurement for the object dimensions using a 9 cell grid. - * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -ObjectRefPoint ::= INTEGER { - bottomLeft (0), - midLeft (1), - topLeft (2), - bottomMid (3), - midMid (4), - topMid (5), - bottomRight (6), - midRight (7), - topRight (8) -} (0..8) - -/** - * This DE indicates the face or part of a face of a solid object. - * - * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: - * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object. - * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object. - * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. - * - * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. - * - * @category: Basic information - * @revision: V2.1.1 -*/ -ObjectFace ::= ENUMERATED { - front (0), - sideLeftFront (1), - sideLeftBack (2), - sideRightFront (3), - sideRightBack (4), - back (5) -} - -/** - * This DE represent a lateral position with lane-level resolution on the road reservation, which is not on regular traffic lanes. - * - * The value shall be set to: - * - 0 - `unavailable` - if information on the lane position is unavailable. - * - 1 - `sidewalk` - if the position is on the side-walk. - * - 2 - `parkingLane` - if the position is on an area at the side of the road not intended for travel but for vehicular parking. - * - 3 - `bikeLane` - if the position is on an area reserved for bicycles. - * - 4-15 - reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. - * - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -OffRoadLanePosition ::= ENUMERATED { - unavailable (0), - sidewalk (1), - parkingLane (2), - bikeLane (3), - max (15) -} - -/** - * This DE represents a time period to describe the opening days and hours of a Point of Interest. - * (for example local commerce). - * - * @category: Time information - * @revision: V1.3.1 - */ -OpeningDaysHours ::= UTF8String - -/** - * The DE represents an ordinal number that indicates the position of an element in a set. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -OrdinalNumber1B ::= INTEGER(1..255) - -/** - * This DE indicates the subclass of a detected object for object class "otherSubclass". - * - * The value shall be set to: - * - `0` - unknown - if the subclass is unknown. - * - `1` - roadSideUnit - if the object is a roadside unit. - * - * @category: Sensing information - * @revision: Created in V2.1.1 - */ -OtherSubClass ::= INTEGER { - unknown (0), - roadSideUnit (1) -} (0..255) - -/** - * This DE represents the recorded or estimated travel time between a position and a predefined reference position. - * - * @unit 0.01 second - * @category GeoReference information - * @revision: same type as in V1.3.1 but now based on a basic type - */ -PathDeltaTime ::= DeltaTimeHundredthOfSecond - -/** - * This DE denotes the ability of an ITS-S to provide up-to-date information. - * A performance class value is used to describe age of data. The exact values are out of scope of the present document. - * - * The value shall be set to: - * - `0` if the performance class is unknown. - * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.6] - * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.6] - * - Values in the range `3 to 7` are reserved for future use. - * - * @category: Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PerformanceClass ::= INTEGER { - unavailable (0), - performanceClassA (1), - performanceClassB (2) -} (0..7) - -/** - * This DE represents a telephone number - * - * @category: Basic information - * @revision: V1.3.1 - */ -PhoneNumber ::= NumericString (SIZE(1..16)) - -/** - * This DE indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of - * the vehicle bounding box of the empty load vehicle. - * - * The value shall be set to: - * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 meter and 6,2 meters. - * - `62` for values equal to or higher than `6.2 metres`. - * - `63` if the information is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @unit 0,1 metre - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PosCentMass ::= INTEGER { - tenCentimeters (1), - outOfRange (62), - unavailable (63) -} (1..63) - -/** - * This DE indicates the positioning technology being used to estimate a geographical position. - * - * The value shall be set to: - * - 0 `noPositioningSolution` : no positioning solution used, - * - 1 `sGNSS` : Global Navigation Satellite System used, - * - 2 `dGNSS` : Differential GNSS used, - * - 3 `sGNSSplusDR` : GNSS and dead reckoning used, - * - 4 `dGNSSplusDR` : Differential GNSS and dead reckoning used, - * - 5 `dR` : dead reckoning used. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -PositioningSolutionType ::= ENUMERATED { - noPositioningSolution (0), - sGNSS (1), - dGNSS (2), - sGNSSplusDR (3), - dGNSSplusDR (4), - dR (5), - ... -} - -/** - * This DE indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. - * - * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear - * of the vehicle. - * The left side seat of a row refers to the left hand side seen from vehicle rear to front. - * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, - * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. - * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, - * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. - * - * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. - * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. - * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. - * Otherwise, the value of seat occupation bit shall be set according to the following conditions: - * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. - * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row - * shall be set to `1`. - * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. - * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row - * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PositionOfOccupants ::= BIT STRING { - row1LeftOccupied (0), - row1RightOccupied (1), - row1MidOccupied (2), - row1NotDetectable (3), - row1NotPresent (4), - row2LeftOccupied (5), - row2RightOccupied (6), - row2MidOccupied (7), - row2NotDetectable (8), - row2NotPresent (9), - row3LeftOccupied (10), - row3RightOccupied (11), - row3MidOccupied (12), - row3NotDetectable (13), - row3NotPresent (14), - row4LeftOccupied (15), - row4RightOccupied (16), - row4MidOccupied (17), - row4NotDetectable (18), - row4NotPresent (19) -} (SIZE(20)) - -/** - * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. - * - * The value shall be set to: - * - `n (n > 0 and n < 19) for any aplicable value between 0,1 meter and 1,9 meters. - * - `19` for values equal to or higher than 1.9 metres. - * - `20` if the information is unavailable. - * - * @category: Vehicle information - * @unit 0.1 metre - * @revision: Editorial update in V2.1.1 - */ -PosFrontAx ::= INTEGER { - outOfRange (19), - unavailable(20) -} (1..20) - -/** - * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. - * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 meter and 1,26 meters. - * - `126` for values equal to or higher than 1.26 metres. - * - `127` if the information is unavailable. - * - * @unit 0,01 metre - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PosLonCarr ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the - * middle point of the front line of the vehicle bounding box. - * - * The value shall be set to: - * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 meter and 2,9 meters. - * - `29` for values equal to or greater than 2.9 metres. - * - `30` if the information is unavailable. - * - * @unit 0,1 metre - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PosPillar ::= INTEGER { - outOfRange (29), - unavailable (30) -} (1..30) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on post crash event is unavailable, - * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, - * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, - * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, - * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle, - * - 5-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -PostCrashSubCauseCode ::= INTEGER { - unavailable (0), - accidentWithoutECallTriggered (1), - accidentWithECallManuallyTriggered (2), - accidentWithECallAutomaticallyTriggered (3), - accidentWithECallTriggeredWithoutAccessToCellularNetwork (4) -} (0..255) - -/** -* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square meter. -* -* The following values are specified: -* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0.1 mm/h and greater than (n-1) x 0.1 mm/h. -* - `2000` if the amount of rain falling is greater than 199.9 mm/h -* - `2001` if the information is not available -* -* @unit: 0.1 mm/h -* @category: Basic Information -* @revision: created in V2.1.1 -*/ -PrecipitationIntensity ::= INTEGER { - outOfRange (2000), - unavailable (2001) -} (1..2001) - -/** - * This DE represenst the indentifier of a protected communication zone. - * - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedZoneID ::= INTEGER (0.. 134217727) - -/** - * This DE represenst the radius of a protected communication zone. - * - * - * @unit: metre - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedZoneRadius ::= INTEGER (1..255,...) - -/** - * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do - * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). - * - * The protected zone type is defined in ETSI TS 102 792 [i.16]. - * - * - * @category: Communication information - * @revision: V1.3.1 - */ -ProtectedZoneType::= ENUMERATED { - permanentCenDsrcTolling (0), - ..., - temporaryCenDsrcTolling (1) -} - -/** - * This DE is used for various tasks in the public transportation environment, especially for controlling traffic - * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). - * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation - * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the - * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to - * traffic congestion. Other usage of the DE is the provision of information like the public transport line number - * or the schedule delay of a public transport vehicle. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivationData ::= OCTET STRING (SIZE(1..20)) - -/** - * This DE indicates a certain coding type of the PtActivationData data. - * - * The folowing value are specified: - * - `0` undefinedCodingType : undefined coding type, - * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.8], - * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.8]. - * - values 3 to 255 : reserved for alternative and future use. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivationType ::= INTEGER { - undefinedCodingType (0), - r09-16CodingType (1), - vdv-50149CodingType (2) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . - * - * The value shall be set to: - * - 0 `unavailable` : in case no further detailed information on the railway level crossing status is available, - * - 1 `doNotCrossAbnormalSituation` : in case when something wrong is detected by equation or sensors of the railway level crossing, - including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), - * - 2 `closed` : in case the crossing is closed (barriers down), - * - 3 `unguarded` : in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), - * - 4 `nominal` : in case the barriers are up and lights are off. - * - 5-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RailwayLevelCrossingSubCauseCode ::= INTEGER { - unavailable (0), - doNotCrossAbnormalSituation (1), - closed (2), - unguarded (3), - nominal (4) -} (0..255) - -/** - * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from - * ITS-S after receiving request from other ITS-Ss. - * - * The value shall be set to: - * - 0 `request` : for a request message. - * - 1 `response` : for a response message. - * - * @category Communication information - * @revision: Editorial update in V2.1.1 - */ -RequestResponseIndication ::= ENUMERATED { - request (0), - response (1) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` - * - * The following value are specified: - * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, - * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, - * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, - * - 3 `policeActivityOngoing` : in case police activity is ongoing, - * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, - * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, - * - 6-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { - unavailable (0), - emergencyVehicles (1), - rescueHelicopterLanding (2), - policeActivityOngoing (3), - medicalEmergencyOngoing (4), - childAbductionInProgress (5) -} (0..255) - - -/** - * This DE indicates the type of a road segment. - * - * The value shall be set to: - * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. - * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. - * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. - * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. - * - * @category: Road Topology Information - * @revision: Editorial update in V2.1.1 - */ -RoadType ::= ENUMERATED { - urban-NoStructuralSeparationToOppositeLanes (0), - urban-WithStructuralSeparationToOppositeLanes (1), - nonUrban-NoStructuralSeparationToOppositeLanes (2), - nonUrban-WithStructuralSeparationToOppositeLanes (3) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. - * -The value shall be set to: - * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, - * - 1 `majorRoadworks` : in case a major roadworks is ongoing, - * - 2 `roadMarkingWork` : in case a road marking work is ongoing, - * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, - * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, - * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, - * - 6 `winterService` : in case winter service work is ongoing, - * - 7-255 reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RoadworksSubCauseCode ::= INTEGER { - unavailable (0), - majorRoadworks (1), - roadMarkingWork (2), - slowMovingRoadMaintenance (3), - shortTermStationaryRoadworks (4), - streetCleaning (5), - winterService (6) -} (0..255) - -/** - * This DE indicates if a distance is safe - * This DE is FALSE if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} simultaneously satisfied with confidence of 90 % or more. - * Otherwise stationSafeDistanceIndication is set to TRUE. - * - * @Note: the ebbreviations 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) - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SafeDistanceIndicator::= BOOLEAN - -/** - * This DE represenst the absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a - * confidence level of 95 %. - * - * The value shall be set to: - * - `1` if the accuracy is equal to or less than 1 cm, - * - `n (n > 1 and n < 4 094)` if the accuracy is equal to or less than n cm, - * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, - * - `4 095` if the accuracy information is unavailable. - * - * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' - * can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported position coordinate value may be valid and used by the application. - * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that - * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful - * for the application. - - * @unit 0,01 meter - * @category: GeoReference Information - * @revision: Editorial update in V2.1.1 - */ -SemiAxisLength ::= INTEGER{ - outOfRange (4094), - unavailable (4095) -} (0..4095) - -/** - * This DE indicates the type of sensor. - * - * The value shall be set to: - * - `0` undefined : in case the sensor type is undefined. - * - `1` radar : in case the sensor is a radar. - * - `2` lidar : in case the sensor is a lidar. - * - `3` monovideo : in case the sensor is mono video. - * - `4` stereovision : in case the sensor is stereo vision. - * - `5` nightvision : in case the sensor is night vision. - * - `6` ultrasonic : in case the sensor is ultrasonic. - * - `7` pmd : in case the sensor is photonic mixing device. - * - `8` inductionLoop : in case the sensor is an induction loop. - * - `9` sphericalCamera : in case the sensor is a spherical camera. - * - `10` uwb : in case the sensor is ultra wide band. - * - `11` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. - * - `12` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. - * - * @category: Sensing Information - * @revision: created in V2.1.1 -*/ -SensorType ::= INTEGER { - undefined (0), - radar (1), - lidar (2), - monovideo (3), - stereovision (4), - nightvision (5), - ultrasonic (6), - pmd (7), - inductionLoop (8), - sphericalCamera (9), - uwb (10), - localAggregation (11), - itsAggregation (12) -} (0..15) - -/** - * This DE represents a sequence number. - * - * @category: Basic information - * @revision: V1.3.1 - */ -SequenceNumber ::= INTEGER (0..65535) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, - * - 1 `stopSignViolation` : in case a stop sign violation is detected, - * - 2 `trafficLightViolation` : in case a traffic light violation is detected, - * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, - * - 4-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -SignalViolationSubCauseCode ::= INTEGER { - unavailable (0), - stopSignViolation (1), - trafficLightViolation (2), - turningRegulationViolation (3) -} (0..255) - -/** - * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is - * unavailable, - * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, - * - 2 `vehiclesSlowingToLookAtAccident`: in case vehicle is temporally slowing down to look at accident, spot, etc., - * - 3 `abnormalLoad` : in case an abnormal loaded vehicle is driving slowly on the road, - * - 4 `abnormalWideLoad` : in case an abnormal wide load vehicle is driving slowly on the road, - * - 5 `convoy` : in case of slow driving convoy on the road, - * - 6 `snowplough` : in case of slow driving snow plough on the road, - * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, - * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road, - * - 9-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -SlowVehicleSubCauseCode ::= INTEGER { - unavailable (0), - maintenanceVehicle (1), - vehiclesSlowingToLookAtAccident (2), - abnormalLoad (3), - abnormalWideLoad (4), - convoy (5), - snowplough (6), - deicing (7), - saltingVehicles (8) -} (0..255) - -/** - * The DE indicates if a vehicle is carrying goods in the special transport conditions. - - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load. - * - 1 `excessWidth` : the vehicle is carrying goods in excess of width. - * - 2 `excessLength` : the vehicle is carrying goods in excess of length. - * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. - * - * Otherwise, the corresponding bit shall be set to 0. - * @category Vehicle information - * @revision: Description revised in V2.1.1 - */ -SpecialTransportType ::= BIT STRING { - heavyLoad (0), - excessWidth (1), - excessLength (2), - excessHeight (3) -} (SIZE(4)) - -/** - * This DE represents the absolute accuracy of a speed value information for a predefined confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the speed accuracy is equal to or less than n cm/s. - * - `126` if the speed accuracy is out of range, i.e. greater than 125 cm/s. - * - `127` if the speed accuracy information is not available. - * - * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported speed value may be valid and used by the application. - * - * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid - * and therefore cannot be trusted. Such is not useful for the application. - * - * @unit cm/s - * @category: Vehicle information - * @revision: Description revised in V2.1.1 - */ -SpeedConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents a speed limitation applied to a geographical position, a road section or a geographical region. - * - * @unit: km/h - * @category: Infrastructure information, Traffic information - * @revision: V1.3.1 - */ -SpeedLimit ::= INTEGER (1..255) - -/** - * This DE represents a speed value, i.e. the magnitude of the horizontal velocity-vector. - * - * The value shall be set to: - * - `0` in a standstill situation. - * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s. - * - `16382` for speed values greater than 163,81 m/s. - * - `16383` if the speed accuracy information is not available. - * - * @unit: 0,01 m/s - * @category: Kinematics information - * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) -*/ -SpeedValue ::= INTEGER { - standstill (0), - outOfRange (16382), - unavailable (16383) -} (0..16383) - -/** - * This DE represents the value of a velocity component in a defined coordinate system. - * - * The value shall be set to: - * - `-16383` if the speed is equal to or smaller than -163,83 m/s - * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s. - * - `16382` for speed values equal to or greater than 163,81 m/s. - * - `16383` if the speed accuracy information is not available. - * - * @unit: 0,01 m/s - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -SpeedValueExtended ::= INTEGER { - negativeOutOfRange (-16383), - psotiveOutOfRange (16382), - unavailable (16383) -} (-16383..16383) - - -/** - * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. - * - * The value shall be set to: - * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable". - * - `n (n > 0 and n < 50)` to indicate the actual stability level. - * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability". - * - the values between 51 and 62 are reserved for future use. - * - `63`: this value indicates that the information is unavailable. - * - * @unit: 2% - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -StabilityLossProbability ::= INTEGER { - stable (0), - totalLossOfStability (50), - unavailable (63) -} (0..63) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength12b::= INTEGER (0..4095) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m. - * - 1 `lessThan100m` : for distances below 100 m. - * - 2 `lessThan200m` : for distances below 200 m. - * - 3 `lessThan500m` : for distances below 300 m. - * - 4 `lessThan1000m` : for distances below 1000 m. - * - 5 `lessThan5km` : for distances below 5000 m. - * - 6 `lessThan10km` : for distances below 10000 m. - * - 7 `over10km` : for distances over 10000 m. - * - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -StandardLength3b ::= ENUMERATED { - lessThan50m (0), - lessThan100m (1), - lessThan200m (2), - lessThan500m (3), - lessThan1000m (4), - lessThan5km (5), - lessThan10km (6), - over10km (7) -} - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength9b::= INTEGER (0..511) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength1B::= INTEGER (0..255) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength2B::= INTEGER (0..65535) - -/** - * This DE indicates the duration in minutes since which something is stationary. - * - * The value shall be set to: - * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. - * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more 1 minute. - * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. - * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -StationarySince ::= ENUMERATED { - lessThan1Minute (0), - lessThan2Minutes (1), - lessThan15Minutes (2), - equalOrGreater15Minutes (3) -} - -/** - * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, - * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, - * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, - * - 3 `postCrash` : in case stationary vehicle is caused by collision, - * - 4 `publicTransportStop` : in case public transport vehicle is stationary at bus stop, - * - 5 `carryingDangerousGoods`: in case the stationary vehicle is carrying dangerous goods, - * - 6 `vehicleOnFire` : in case of vehicle on fire. - * - 7-255 reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -StationaryVehicleSubCauseCode ::= INTEGER { - unavailable (0), - humanProblem (1), - vehicleBreakdown (2), - postCrash (3), - publicTransportStop (4), - carryingDangerousGoods (5), - vehicleOnFire (6) -} (0..255) - -/** - * This DE represents the identifier of an ITS-S. - * The ITS-S ID may be a pseudonym. It may change over space and/or over time. - * - * @category: Basic information - * @revision: V1.3.1 - */ -StationID ::= INTEGER(0..4294967295) - -/** - * This DE represenst the type of technical context the ITS-S is integrated in. - * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. - * - * The value shall be set to: - * - 0 `unknown`: information about the ITS-S context is not provided, - * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). - * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, - * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] - class L1, L2 (VRU Profile 3) - * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] - class L3, L4, L5, L6, L7 (VRU Profile 3) - * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, - * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, - * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, - * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, - * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in - UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, - * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, - * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). - * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) - * - 14 reserved for future usage - * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, - on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), - * - 16-255> reserved for future usage. - * - * @category: Communication information. - * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) - */ -StationType ::= INTEGER { - unknown (0), - pedestrian (1), - cyclist (2), - moped (3), - motorcycle (4), - passengerCar (5), - bus (6), - lightTruck (7), - heavyTruck (8), - trailer (9), - specialVehicles (10), - tram (11), - lightVruVehicle (12), - animal (13), - roadSideUnit (15) -} (0..255) - -/** - * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, - * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, - * - `127` if the accuracy information is not available. - * - * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' - * can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. - * - * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', - * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. - * Such value is not useful for the application. - * - * @unit: 1.5 degree - * @category: Vehicle Information - * @revision: Description revised in V2.1.1 -*/ -SteeringWheelAngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the steering wheel angle of the vehicle at certain point in time. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - * The value shall be set to: - * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. - * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, - turning clockwise (i.e. to the right). - * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, - turning counter-clockwise (i.e. to the left). - * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. - * - `512` if information is not available. - * - * @unit: 1.5 degree - * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). - */ -SteeringWheelAngleValue ::= INTEGER { - negativeOutOfRange (-511), - positiveOutOfRange (511), - unavailable (512) -} (-511..512) - -/** - * This DE indicates the generic sub cause of a detected event. - * - * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 (this is the generic sub cause type) - */ -SubCauseCodeType ::= INTEGER (0..255) - -/** - * This DE indicates a temperature value. - - * The value shall be set to: - * - `-60` for temperature equal to or less than -60 degrees C. - * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C. - * - `67` for temperature equal to or greater than 67 degrees C. - * - * @unit: degrees Celsius - * @category: Basic information - * @revision: Editorial update in V2.1.1 - */ -Temperature ::= INTEGER { - equalOrSmallerThanMinus60Deg (-60), - equalOrGreaterThan67Deg(67)} (-60..67) - -/** - * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. - * The ITS epoch is `00:00:00.000 UTC, 1 January 2004`. - * "Elapsed" means that the true number of milliseconds is continuously counted without interruption, - * i.e. it is not altered by leap seconds, which occur in UTC. - * - * @note: International Atomic Time (TAI) is the time reference coordinate on the basis of the readings of atomic clocks, - * operated in accordance with the definition of the second, the unit of time of the International System of Units. - * TAI is a continuous time scale. UTC has discontinuities, as it is occasionally adjusted by leap seconds. - * As of 1 January, 2022, TimestampIts is 5 seconds ahead of UTC, because since the ITS epoch on 1 January 2004 00:00:00.000 UTC, - * further 5 leap seconds have been inserted in UTC. - * - * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, - * which includes one leap second insertion since the ITS epoch. - * @unit: millisecond - * @category: Basic information - * @revision: Description revised in in V2.1.1 - */ -TimestampIts ::= INTEGER (0..4398046511103) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, - * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, - * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, - * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, - * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, - * - 5 `trafficStationary` : in case traffic is stationary, - * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, - * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, - * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, - * - 9-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -TrafficConditionSubCauseCode ::= INTEGER { - unavailable (0), - increasedVolumeOfTraffic (1), - trafficJamSlowlyIncreasing (2), - trafficJamIncreasing (3), - trafficJamStronglyIncreasing (4), - trafficStationary (5), - trafficJamSlightlyDecreasing (6), - trafficJamDecreasing (7), - trafficJamStronglyDecreasing (8) -} (0..255) - -/** - * This DE indicates a traffic direction that is relevant to information indicated in a message. - * - * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions. - * - 1 `upstreamTraffic` : for upstream traffic. - * - 2 `downstreamTraffic` : for downstream traffic. - * - 3 `oppositeTraffic` : for traffic in the opposite direction. - * - * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. - * - * @note: Upstream traffic corresponds to the incoming traffic towards the event position, - * and downstream traffic to the departing traffic away from the event position. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 from RelevanceTrafficDirection - */ -TrafficDirection ::= ENUMERATED { - allTrafficDirections (0), - upstreamTraffic (1), - downstreamTraffic (2), - oppositeTraffic (3) -} - -/** - * This DE indicates traffic rules that apply to vehicles at a certain position. - * - * The value shall be set to: - * - `0` if overtaking is prohibited for all vehicles. - * - `1` if overtaking is prohibited for trucks. - * - `2` if vehicles should pass to the right lane. - * - `3` if vehicles should pass to the left lane. - * - * @category: Infrastructure information, Traffic information - * @revision: Editorial update in V2.1.1 - */ -TrafficRule ::= ENUMERATED { - noPassing (0), - noPassingForTrucks (1), - passToRight (2), - passToLeft (3), - ...} - -/** - * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. - * - * The value shall be set to: - * - `n (n >= 0 and n <= 50)` to indicate the actual stability level. - * - the values between 51 and 62 are reserved. - * - `63`: to indicate that the information is unavailable. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionProbability ::= INTEGER { - unavailable (63) -} (0..63) - -/** - * This DE defines the confidence level of the trajectoryInterceptionProbability. - * - * The value shall be set to: - * - `0` to indicate confidence less than 50 % - * - `1` to indicate confidence greater than or equal to 50 % and less than 70 %. - * - `2` to indicate confidence greater than or equal to 70 % and less than 90 %. - * - `3` to indicate confidence greater than or equal to 90%. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionConfidence ::= INTEGER { - lessthan50percent (0), - between50and70Percent (1), - between70and90Percent (2), - above90Percent (3) -} (0..3) - -/** - * This DE provides the turning direction. - * - * The value shall be set to: - * - `left` for turning to te left. - * - `right`for turing to the right. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TurningDirection::= ENUMERATED { - left, - right -} - -/** - * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. - * - * The value shall be set to: - * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 meter, and greater than (n-1) x 0,4 meters. - * - `254` indicates that the turning radius is greater than 253 x 0.4 metre = 101.2 metres. - * - `255` indicates that the information is unavailable. - * - * For vehicle with tracker, the turning radius applies to the vehicle only. - * - * @category: Vehicle information - * @unit 0.4 metre - * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) - */ -TurningRadius ::= INTEGER { - outOfRange (254), - unavailable (255) -} (1..255) - -/** - * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VDS ::= IA5String (SIZE(6)) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, - * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, - * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, - * - 3 `engineProblem` : in case vehicle break down is caused by an engine problem, - * - 4 `transmissionProblem` : in case vehicle break down is caused by transmission problem, - * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, - * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, - * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, - * - 8 `tyrePuncture` : in case vehicle break down is caused by tire puncture, - * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, - * - 10 `vehicleOnFire` : in case the vehicle is on fire, - * - 11-255: reserved for future usage. - * - * @category: Traffic information - - */ -VehicleBreakdownSubCauseCode ::= INTEGER { - unavailable (0), - lackOfFuel (1), - lackOfBatteryPower (2), - engineProblem (3), - transmissionProblem (4), - engineCoolingProblem (5), - brakingSystemProblem (6), - steeringProblem (7), - tyrePuncture (8), - tyrePressureProblem (9), - vehicleOnFire (10) -} (0..255) - -/** - * This DE represents the height if the vehicle, measured from the ground to the highest point, excluding any antennas. - * In case vehicles are equipped with adjustable ride heights, camper shells, and any other - * equipment which may result in varying height, the largest possible height shall be used. - * - * @unit 5 cm (DE ranges to 6.35 m) - * @revision: V1.3.1 -*/ -VehicleHeight ::= INTEGER (0..127) - -/** - * This DE provides information about the presence of a trailer. - * - * The value shall be set to: - * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in a reported vehicle length value. - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in a reported vehicle length value. - * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. - * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer - * nor the detection of trailer presence/absence is possible. - * - * @category: Vehicle information - * @revision: Description revised in V2.1.1 -*/ -VehicleLengthConfidenceIndication ::= ENUMERATED { - noTrailerPresent (0), - trailerPresentWithKnownLength (1), - trailerPresentWithUnknownLength (2), - trailerPresenceIsUnknown (3), - unavailable (4) -} - -/** - * This DE represents the length of a vehicle. - * - * The value shall be set to: - * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. - * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. - * - `1 023` to indicate that the information in unavailable. - * - * - * @unit: 0.1 metre - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). - */ -VehicleLengthValue ::= INTEGER { - outOfRange(1022), - unavailable(1023) -} (1..1023) - -/** - * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. - * - * The value shall be set to: - * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than n x 100 kg, and greater than (n-1) x 100 kg. - * - `1 023` indicates that the vehicle mass is greater than 102 200 kg. - * - `1 024` indicates the vehicle mass information is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @unit: 100kg - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). -*/ -VehicleMass ::= INTEGER { - outOfRange (1023), - unavailable(1024) -} (1..1024) - -/** - * This DE indicates the role played by a vehicle at a point in time. - * - * The value shall be set to: - * - 0 `default` : to indicate the default vehicle role as indicated by the vehicle type, - * - 1 `publicTransport` : to indicate that the vehicle is used to operate public transport service, - * - 2 `specialTransport` : to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, - * - 3 `dangerousGoods` : to indicate that the vehicle is used for dangerous goods transportation, - * - 4 `roadWork` : to indicate that the vehicle is used to realize roadwork or road maintenance mission, - * - 5 `rescue` : to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, - * - 6 `emergency` : to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, - * - 7 `safetyCar` : to indicate that the vehicle is used for public safety, e.g. patrol, - * - 8 `agriculture` : to indicate that the vehicle is used for agriculture, e.g. farm tractor, - * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, - * - 10 `military` : to indicate that the vehicle is used for military purpose, - * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, - * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service, - * - 13 `reserved` : reserved for future usage, - * - 14 `reserved` : reserved for future usage, - * - 15 `reserved` : reserved for future usage. - * - * @category: Vehicle Information - * @revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) - */ -VehicleRole ::= ENUMERATED { - default (0), - publicTransport (1), - specialTransport(2), - dangerousGoods (3), - roadWork (4), - rescue (5), - emergency (6), - safetyCar (7), - agriculture (8), - commercial (9), - military (10), - roadOperator (11), - taxi (12), - reserved1 (13), - reserved2 (14), - reserved3 (15) -} - -/** - * This DE describes the subclass of a vehicle. - * - * The value shall be set to: - * - `0` unknown : to indicate that the type of vehicle is unknown. - * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. - * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. - * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. - * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. - * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. - * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). - * - `7` tram : to indicate a vehicle running on tracks along public streets. - * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. - * - `9` agricultural : to indicate a vehicle used for agricultural purposes. - * - Values 10 to 255 are reserved for future use. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -VehicleSubClass ::= INTEGER { - unknown (0), - passengerCar (1), - bus (2), - lightTruck (3), - heavyTruck (4), - trailer (5), - specialVehicles (6), - tram (7), - emergencyVehicle (8), - agricultural (9) -} (0..255) - -/** - * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. - - * The value shall be set to: - * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. - * - `61`indicates that the vehicle width is greater than 6,0 metres. - * - `62`indicates that the information in unavailable. - * - * @unit: 0.1 metre - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). - */ -VehicleWidth ::= INTEGER { - outOfRange (61), - unavailable (62) -} (1..62) - -/** - * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @category: Vehicle information - * @unit: 0.1 m/s2 - * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. - * -*/ -VerticalAccelerationValue ::= AccelerationValue - -/** - * This DE Identifies all the VRU profile types that are believed to be within a cluster. - * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU. - * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member. - * - 2 `motorcycle` : indicates that the VRU cluster contains at least one motorcycle VRU member. - * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. - * - * Otherwise, the corresponding bit shall be set to 0. - * - * @category: VRU information - * @revision: Created in V2.1.1 -*/ -VruClusterProfiles ::= BIT STRING { - pedestrian (0), - bicyclist (1), - motorcyclist (2), - animal (3) -} (SIZE(4)) - -/** - * This DE represents the possible VRU usage conditions. - - * - The value shall be set to: - * - 0 `unavailable` : to indicate that the usage conditions are unavailable. - * - 1 `other (1)` : to indicate that the VRU is in a state not defined below. - * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device. - * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use. - * - 4 `typing (4)` : to indicate that the human is texting, entering addresses and other manual input activity. - * - 5 `calling (5)` : to indicate that the VRU device is currently received a call. - * - 6 `playingGames (6)` : to indicate that the human is playing games. - * - 7 `reading (7)` : to indicate that the human is reading on the VRU device. - * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, - * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruDeviceUsage ::= ENUMERATED { - unavailable (0), - other (1), - idle (2), - listeningToAudio (3), - typing (4), - calling (5), - playingGames (6), - reading (7), - viewing (8), - max (255) -} - -/** - * This DE represents the possible VRU environment conditions. - * - * - The value shall be set to: - * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, - * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing. - * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). - * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. - * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. - * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. - * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruEnvironment ::= ENUMERATED { - unavailable (0), - intersectionCrossing (1), - zebraCrossing (2), - sidewalk (3), - onVehicleRoad (4), - protectedGeographicArea (5), - max (255) -} - -/** - * This DE indicates the status of the possible human control over a VRU vehicle. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable. - * - 1 `braking` : to indicate that the VRU is braking. - * - 2 `hardBraking` : to indicate that the VRU is braking hard. - * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling. - * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking. - * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard. - * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. - * - value 7 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruMovementControl ::= ENUMERATED { - unavailable (0), - braking (1), - hardBraking (2), - stopPedaling (3), - brakingAndStopPedaling (4), - hardBrakingAndStopPedaling (5), - noReaction (6), - max (255) -} - -/** - * This DE indicates the profile of a pedestrian. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable. - * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies. - * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker. - * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfilePedestrian ::= ENUMERATED { - unavailable (0), - ordinary-pedestrian (1), - road-worker (2), - first-responder (3), - max (15) -} - -/** - * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable. - * - 1 `bicyclist ` : to indicate a cycle and bicyclist. - * - 2 `wheelchair-user` : to indicate a wheelchair and its user. - * - 3 `horse-and-rider` : to indicate a horse and rider. - * - 4 `rollerskater` : to indicate a rolleskater and skater. - * - 5 `e-scooter` : to indicate an e-scooter and rider. - * - 6 `personal-transporter` : to indicate a personal-transporter and rider. - * - 7 `pedelec` : to indicate a pedelec and rider. - * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. - * - value 9 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileBicyclist ::= ENUMERATED { - unavailable (0), - bicyclist (1), - wheelchair-user (2), - horse-and-rider (3), - rollerskater (4), - e-scooter (5), - personal-transporter (6), - pedelec (7), - speed-pedelec (8), - max (15) -} - -/** - * This DE indicates the profile of a motorcyclist and corresponding vehicle. - * - * The value shall be set to: - * - 0 `unavailable ` : to indicate that the information is unavailable. - * - 1 `moped (1)` : to indicate a moped and rider. - * - 2 `motorcycle` : to indicate a motorcycle and rider. - * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider. - * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. - * - value 5 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileMotorcyclist ::= ENUMERATED { - unavailable (0), - moped (1), - motorcycle (2), - motorcycle-and-sidecar-right (3), - motorcycle-and-sidecar-left (4), - max (15) -} - -/** - * This DE indicates the profile of a animal - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable. - * - 1 `wild-animal` : to indicate a animal living in the wildness. - * - 2 `farm-animal` : to indicate an animal beloning to a farm. - * - 3 `service-animal` : to indicate an animal that supports a human being. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileAnimal ::= ENUMERATED { - unavailable (0), - wild-animal (1), - farm-animal (2), - service-animal (3), - max (15) -} - -/** - * This DE indicates the approximate size of a VRU including the VRU vehicle used. - * - * The value shall be set to: - * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1. - * - 1 `low (1)` : the VRU size class is low depending on the VRU profile. - * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile. - * - 3 `high (3)` : the VRU size class is high depending on the VRU profile. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSizeClass ::= ENUMERATED { - unavailable (0), - low (1), - medium (2), - high (3), - max (15) -} - -/** - * This DE describes the status of the exterior light switches of a vehicle or a VRU. - * The DE is an extension of the existing vehicular DE ExteriorLight. - * - * The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU - * or automatically by a vehicle or VRU system: - * - 0 `unavailable` : indicates no information available. - * - 1 `backFlashLight ` : indicates the status of the back flash light. - * - 2 `helmetLight` : indicates the status of the helmet light. - * - 3 `armLight` : indicates the status of the arm light. - * - 4 `legLight` : indicates the status of the leg leight. - * - 5 `wheelLight` : indicates the status of the wheel light. - * - Bits 6 to 8 : reserved for future use. - * The bit values do not indicate if the corresponding lamps are alight or not. - * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSpecificExteriorLights ::= BIT STRING { - unavailable (0), - backFlashLight (1), - helmetLight (2), - armLight (3), - legLight (4), - wheelLight (5) -} (SIZE(8)) - -/** - * Perpendicular distance between front and rear axle of the wheel base of vehicle. - * - * The value shall be set to: - * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0.1 metres and more than (n-1) x 0.1 metres. - * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. - * - `127` indicates that the information is unavailable. - * - * @unit 0.1 metre - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -WheelBaseVehicle ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. - * The required confidence level is defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n (n >=1 and n < 126)` is equal to or less than n x 0.1 degrees and more than (n-1) x 0.1 degrees. - * - `126` if the angle accuracy is out of range, i.e. greater than 12,5 degrees. - * - `127` if the angle accuracy information is not available. - * - * - * @unit 0,1 degrees - * @category: GeoReference Information - * @revision: Created in V2.1.1 -*/ -Wgs84AngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - - -/** - * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. - * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. - * - * @unit 0,1 degrees - * @category: GeoReference Information - * @revision: Created in V2.1.1 -*/ -Wgs84AngleValue ::= INTEGER { - wgs84North (0), - wgs84East (900), - wgs84South (1800), - wgs84West (2700), - doNotUse (3600), - unavailable (3601) -} (0..3601) - -/** - * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. - * - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -WMInumber ::= IA5String (SIZE(1..3)) - -/** - * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on wrong way driving event is unavailable, - * - 1 `wrongLane` : in case vehicle is driving on a lane for which it has no authorization to use, - * - 2 `wrongDirection` : in case vehicle is driving in a direction that it is not allowed, - * - 3-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -WrongWayDrivingSubCauseCode ::= INTEGER { - unavailable (0), - wrongLane (1), - wrongDirection (2) -} (0..255) - -/** - * This DE denotes the absolute accuracy range for reported yaw rate value for a confidence level of 95%. - * - * The value shall be set to: - * - `0` indicates that the accuracy is equal to or less than 0,01 degree/second. - * - `1` indicates that the accuracy is equal to or less than 0,05 degrees/second. - * - `2` indicates that the accuracy is equal to or less than 0,1 degree/second. - * - `3` indicates that the accuracy is equal to or less than 1 degree/second. - * - `4` indicates that the accuracy is equal to or less than 5 degrees/second. - * - `5` indicates that the accuracy is equal to or less than 10 degrees/second. - * - `6` indicates that the accuracy is equal to or less than 100 degrees/second. - * - `7` indicates that the accuracy is out of range, i.e. greater than 100 degrees/second. - * - `8` indicates that the accuracy information is unavailable - * - * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by - * several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported yaw rate value may be valid and used by the application. - * - * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported - * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 - */ -YawRateConfidence ::= ENUMERATED { - degSec-000-01 (0), - degSec-000-05 (1), - degSec-000-10 (2), - degSec-001-00 (3), - degSec-005-00 (4), - degSec-010-00 (5), - degSec-100-00 (6), - outOfRange (7), - unavailable (8) -} - -/** - * This DE represents the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded - * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. The leading sign denotes the direction of rotation. - * - * The value shall be set to: - * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. - * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s. - * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s. - * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. - * - `32 767` to indicate that the information is not available. - * - * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. - * The reading instant should be the same as for the vehicle acceleration. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @unit: 0,01 degree per second. - * @category: Vehicle Information - * @revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). -*/ -YawRateValue ::= INTEGER { - negativeOutOfRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) - ----------------------------------------- --- Specification of CDD Data Frames: ----------------------------------------- - -/** - * This DF represents an acceleration component along with a confidence with a predefined confidence level of 95% for the component. - * - * It includes the following components: - * - * @field value: the acceleration value which can be estimated as the mean of the current distribution. - * - * @field value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. - * - * @category: Kinematic Information - * @revision: Created in V2.1.1 - */ -Acceleration1d ::= SEQUENCE { - value AccelerationValue, - confidence AccelerationConfidence -} - -/** - * This DF represents information associated to changes in acceleration. - * - * It includes the following components: - * - * @field accelOrDecel: the indication of an acceleration change. - * - * @field value actionDeltaTime: the period in which the acceleration change action is performed. - * - * @category: Kinematic Information - * @revision: Created in V2.1.1 - */ -AccelerationChangeIndication ::= SEQUENCE { - accelOrDecel AccelerationChange, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents an identifier used to describe a protocol action taken by an ITS-S. - * - * It includes the following components: - * - * @field originatingStationID: ID of the ITS-S that takes the action. - * - * @field sequenceNumber: a sequence number. - * - * @category: Communication information - * @revision: V1.3.1 - */ -ActionID ::= SEQUENCE { - originatingStationID StationID, - sequenceNumber SequenceNumber -} - -/** - * This DF represents a list of @ref ActionID. - - * @category: Communication Information - * @revision: Created in V2.1.1 based on ReferenceDenms -*/ -ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID - -/** - * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. - * - * It includes the following components: - * - * @field altitudeValue: altitude of a geographical point. - * - * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -Altitude ::= SEQUENCE { - altitudeValue AltitudeValue, - altitudeConfidence AltitudeConfidence -} - -/** - * This DE represents a general container for usage in various types of messages. - * - * It includes the following components: - * - * @field stationType: the type of station that has generated the message that contains the basic container. - * - * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -BasicContainer ::= SEQUENCE { - stationType StationType, - referencePosition ReferencePosition, - ... -} - -/** - * This DF represents a general Data Frame to describe an angle component along with a confidence in a cartesian coordinate system. - * - * It includes the following components: - * - * @field value: The angle value which can be estimated as the mean of the current distribution. - * - * @field confidence: The accuracy associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngle ::= SEQUENCE { - value CartesianAngleValue, - confidence AngleConfidence -} - -/** - * This DF represents a general Data Frame to describe an angular speed component along with a confidence in a cartesian coordinate system. - * - * It includes the following components: - * - * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. - * - * @field confidence: The accuracy associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngularSpeed ::= SEQUENCE { - value CartesianAngularSpeedValue, - confidence AngularSpeedConfidence -} - -/** - * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence in a cartesian coordinate system. - * - * It includes the following components: - * - * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. - * - * @field confidence: The accuracy associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngularAcceleration ::= SEQUENCE { - value CartesianAngularAccelerationValue, - confidence AngularAccelerationConfidence -} - -/** - * This DF represents a coordinate in a cartesian reference system - * - * It includes the following components: - * - * @field value: the coordinate value which can be estimated as the mean of the current distribution. - * - * @field confidence: the coordinate accuracy associated to the provided value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateWithConfidence ::= SEQUENCE { - value CartesianCoordinateLarge, - confidence CoordinateConfidence -} - -/** - * This DF represents a position in a two- or three-dimensional cartesian coordinate system. - * - * It includes the following components: - * - * @field xCoordinate: the X coordinate value. - * - * @field yCoordinate: the Y coordinate value. - * - * @field zCoordinate: the optional Z coordinate value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -CartesianPosition3d::=SEQUENCE{ - xCoordinate CartesianCoordinate, - yCoordinate CartesianCoordinate, - zCoordinate CartesianCoordinate OPTIONAL -} - -/** - * This DF is a representation of the cause code value of a traffic event. - * - * It includes the following components: - * - * @field causeCode: the main cause of a detected event. - * - * @field subCauseCode: the subordinate cause of a detected event. - * - * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may - * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. - * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. - * - * @category: Traffic information - * @revision: Editorial update in V2.1.1 - */ -CauseCode ::= SEQUENCE { - causeCode CauseCodeType, - subCauseCode SubCauseCodeType, - ... -} - -/** - * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. - * - * - * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. - * @category: Traffic information - * @revision: Editorial update in V2.1.1 - */ - -CauseCodeChoice::= CHOICE { - reserved SubCauseCodeType, - trafficCondition TrafficConditionSubCauseCode, - accident AccidentSubCauseCode, - roadworks RoadworksSubCauseCode, - reserved4 SubCauseCodeType, - impassability SubCauseCodeType, - adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, - aquaplaning SubCauseCodeType, - reserved8 SubCauseCodeType, - hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, - hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, - hazardousLocation-AnimalOnTheRoad HazardousLocation-AnimalOnTheRoadSubCauseCode, - humanPresenceOnTheRoad HumanPresenceOnTheRoadSubCauseCode, - reserved13 SubCauseCodeType, - wrongWayDriving WrongWayDrivingSubCauseCode, - rescueAndRecoveryWorkInProgress RescueAndRecoveryWorkInProgressSubCauseCode, - reserved16 SubCauseCodeType, - adverseWeatherCondition-ExtremeWeatherCondition AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, - adverseWeatherCondition-Visibility AdverseWeatherCondition-VisibilitySubCauseCode, - adverseWeatherCondition-Precipitation AdverseWeatherCondition-PrecipitationSubCauseCode, - violence SubCauseCodeType, - reserved21 SubCauseCodeType, - reserved22 SubCauseCodeType, - reserved23 SubCauseCodeType, - reserved24 SubCauseCodeType, - reserved25 SubCauseCodeType, - slowVehicle SlowVehicleSubCauseCode, - dangerousEndOfQueue DangerousEndOfQueueSubCauseCode, - reserved28 SubCauseCodeType, - reserved29 SubCauseCodeType, - reserved30 SubCauseCodeType, - reserved31 SubCauseCodeType, - reserved32 SubCauseCodeType, - reserved33 SubCauseCodeType, - reserved34 SubCauseCodeType, - reserved35 SubCauseCodeType, - reserved36 SubCauseCodeType, - reserved37 SubCauseCodeType, - reserved38 SubCauseCodeType, - reserved39 SubCauseCodeType, - reserved40 SubCauseCodeType, - reserved41 SubCauseCodeType, - reserved42 SubCauseCodeType, - reserved43 SubCauseCodeType, - reserved44 SubCauseCodeType, - reserved45 SubCauseCodeType, - reserved46 SubCauseCodeType, - reserved47 SubCauseCodeType, - reserved48 SubCauseCodeType, - reserved49 SubCauseCodeType, - reserved50 SubCauseCodeType, - reserved51 SubCauseCodeType, - reserved52 SubCauseCodeType, - reserved53 SubCauseCodeType, - reserved54 SubCauseCodeType, - reserved55 SubCauseCodeType, - reserved56 SubCauseCodeType, - reserved57 SubCauseCodeType, - reserved58 SubCauseCodeType, - reserved59 SubCauseCodeType, - reserved60 SubCauseCodeType, - reserved61 SubCauseCodeType, - reserved62 SubCauseCodeType, - reserved63 SubCauseCodeType, - reserved64 SubCauseCodeType, - reserved65 SubCauseCodeType, - reserved66 SubCauseCodeType, - reserved67 SubCauseCodeType, - reserved68 SubCauseCodeType, - reserved69 SubCauseCodeType, - reserved70 SubCauseCodeType, - reserved71 SubCauseCodeType, - reserved72 SubCauseCodeType, - reserved73 SubCauseCodeType, - reserved74 SubCauseCodeType, - reserved75 SubCauseCodeType, - reserved76 SubCauseCodeType, - reserved77 SubCauseCodeType, - reserved78 SubCauseCodeType, - reserved79 SubCauseCodeType, - reserved80 SubCauseCodeType, - reserved81 SubCauseCodeType, - reserved82 SubCauseCodeType, - reserved83 SubCauseCodeType, - reserved84 SubCauseCodeType, - reserved85 SubCauseCodeType, - reserved86 SubCauseCodeType, - reserved87 SubCauseCodeType, - reserved88 SubCauseCodeType, - reserved89 SubCauseCodeType, - reserved90 SubCauseCodeType, - vehicleBreakdown VehicleBreakdownSubCauseCode, - postCrash PostCrashSubCauseCode, - humanProblem HumanProblemSubCauseCode, - stationaryVehicle StationaryVehicleSubCauseCode, - emergencyVehicleApproaching EmergencyVehicleApproachingSubCauseCode, - hazardousLocation-DangerousCurve HazardousLocation-DangerousCurveSubCauseCode, - collisionRisk CollisionRiskSubCauseCode, - signalViolation SignalViolationSubCauseCode, - dangerousSituation DangerousSituationSubCauseCode, - railwayLevelCrossing RailwayLevelCrossingSubCauseCode, - reserved101 SubCauseCodeType, - reserved102 SubCauseCodeType, - reserved103 SubCauseCodeType, - reserved104 SubCauseCodeType, - reserved105 SubCauseCodeType, - reserved106 SubCauseCodeType, - reserved107 SubCauseCodeType, - reserved108 SubCauseCodeType, - reserved109 SubCauseCodeType, - reserved110 SubCauseCodeType, - reserved111 SubCauseCodeType, - reserved112 SubCauseCodeType, - reserved113 SubCauseCodeType, - reserved114 SubCauseCodeType, - reserved115 SubCauseCodeType, - reserved116 SubCauseCodeType, - reserved117 SubCauseCodeType, - reserved118 SubCauseCodeType, - reserved119 SubCauseCodeType, - reserved120 SubCauseCodeType, - reserved121 SubCauseCodeType, - reserved122 SubCauseCodeType, - reserved123 SubCauseCodeType, - reserved124 SubCauseCodeType, - reserved125 SubCauseCodeType, - reserved126 SubCauseCodeType, - reserved127 SubCauseCodeType, - reserved128 SubCauseCodeType - } - -/** - * This DF is an alternative representation of the cause code value of a traffic event. - * - * It includes the following components: - * - * @field ccAndScc: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. - * - * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may - * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. - * - * @category: Traffic information - * @revision: Created in V2.1.1 - */ - -CauseCodeV2 ::= SEQUENCE { - ccAndScc CauseCodeChoice, - ... -} - -/** - * The DF describes the position of a CEN DSRC road side equipment. - * - * It includes the following components: - * - * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. - * - * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. - * - * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -CenDsrcTollingZone ::= SEQUENCE { - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, - ... -} - -/** - * - * This DF represents the shape of a circular area or a right cylinder that is centred on a reference position defined outside of the context of this DF. - * - * It includes the following components: - * - * @field nodeCenterPoint: optional offset point which the rectangle is centred on with respect to the reference position. - * - * @field radius: the radius of the circular area. - * - * @field height: the optional height, present if the shape is a right cylinder extending in the positive z-axis. - * - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -CircularShape ::= SEQUENCE { - nodeCenterPoint CartesianPosition3d OPTIONAL, - radius StandardLength12b, - height StandardLength12b OPTIONAL, - ... -} - -/** - * This DF indicates the opening/closure status of a lane or a set of lanes. - * - * It includes the following components: - * - * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of inner hard shoulder lanes. - * - * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of outer hard shoulder lanes. - * - * @field drivingLaneStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of driving lanes. - * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. - * - * @category: GeoReference information, Road topology information - * @revision: V1.3.1 - */ -ClosedLanes ::= SEQUENCE { - innerhardShoulderStatus HardShoulderStatus OPTIONAL, - outerhardShoulderStatus HardShoulderStatus OPTIONAL, - drivingLaneStatus DrivingLaneStatus OPTIONAL, - ... -} - -/** - * This DF provides information about the breakup of a cluster. - * - * It includes the following components: - * - * @field clusterBreakupReason: indicates the reason for breakup. - * - * @field breakupTime: indicates the time of breakup. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterBreakupInfo ::= SEQUENCE { - clusterBreakupReason ClusterBreakupReason, - breakupTime DeltaTimeQuarterSecond, - ... -} - -/** - * This DF provides information about the joining of a cluster. - * - * It includes the following components: - * - * @field clusterId: indicates the identifier of the cluster. - * - * @field joinTime: indicates the time of joining. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterJoinInfo ::= SEQUENCE { - clusterId ClusterId, - joinTime DeltaTimeQuarterSecond, - ... -} - -/** - * The DF provides information about the leaving of a cluster. - * - * It includes the following components: - * - * @field clusterId: indicates the cluster. - * - * @field clusterLeaveReason: indicates the reason for leaving. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterLeaveInfo ::= SEQUENCE { - clusterId ClusterId, - clusterLeaveReason ClusterLeaveReason, - ... -} - -/** - * This DF represents the column of the lower triangular positive semi-definite matrix and consists of a list of correlation row values. - * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. - * Each column "i" of the lower triangular then contains k-(i-1) values, where "i" refers to the column number count - * starting at 1 from the left. - * - * @category: Sensing Information - * @revision: Created in V2.1.1 -*/ -CorrelationColumn ::= SEQUENCE SIZE (1..21) OF CorrelationRowValue - -/** - * This DF represents the curvature of the vehicle trajectory and the accuracy. - * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. - * - * It includes the following components: - * - * @field curvatureValue: Detected curvature of the vehicle trajectory. - * - * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -Curvature ::= SEQUENCE { - curvatureValue CurvatureValue, - curvatureConfidence CurvatureConfidence -} - -/** - * This DF provides a description of dangerous goods being carried by a heavy vehicle. - * - * It includes the following components: - * - * @field dangerousGoodsType: Type of dangerous goods. - * - * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in - * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], - * - * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. - * If yes, the value shall be set to TRUE, - * - * @field tunnelsRestricted: whether the heavy vehicle carrying dangerous goods is restricted to enter tunnels. - * If yes, the value shall be set to TRUE, - * - * @field limitedQuantity: whether the carried dangerous goods are packed with limited quantity. - * If yes, the value shall be set to TRUE, - * - * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency - * service should deal with an incident. This component is optional; it shall be present if the information is available, - * - * @field phoneNumber: contact phone number of assistance service in case of incident or accident. - * This component is optional, it shall be present if the information is available. - * - * @field companyName: name of company that manages the transportation of the dangerous goods. - * This component is optional; it shall be present if the information is available. - * - * @category Vehicle information - * @revision: V1.3.1 - */ -DangerousGoodsExtended ::= SEQUENCE { - dangerousGoodsType DangerousGoodsBasic, - unNumber INTEGER (0..9999), - elevatedTemperature BOOLEAN, - tunnelsRestricted BOOLEAN, - limitedQuantity BOOLEAN, - emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, - phoneNumber PhoneNumber OPTIONAL, - companyName UTF8String (SIZE (1..24)) OPTIONAL, - ... -} - -/** - * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. - * - * It includes the following components: - * - * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. - * - * @field deltaLongitude: A delta longitude offset with regards to the longitude value of the reference position. - * - * @field deltaAltitude: A delta altitude offset with regards to the altitude value of the reference position. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -DeltaReferencePosition ::= SEQUENCE { - deltaLatitude DeltaLatitude, - deltaLongitude DeltaLongitude, - deltaAltitude DeltaAltitude -} - -/** - * This DF represents a portion of digital map, described using a list of waypoints @ref ReferencePosition. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition - -/** - * - * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on a reference position which is defined outside of the context of this DF. - * - * It includes the following components: - * - * @field centerPoint: optional offset point which the ellipse is centred on with respect to the reference position. - * - * @field semiMajorAxisLength: half length of the major axis of the ellipse. - * - * @field semiMinorAxisLength: half length of the minor axis of the ellipse. - * - * @field orientation: the optional orientation of the major axis of the ellipse in the WGS84 coordinate system. - * - * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ - -EllipticalShape ::= SEQUENCE { - centerPoint CartesianPosition3d OPTIONAL, - semiMajorAxisLength StandardLength12b, - semiMinorAxisLength StandardLength12b, - orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL, - ... -} - -/** - * - * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * The following options are available: - * - * @field euVehicleCategoryL: indicates a vehicle in the L category. - * - * @field euVehicleCategoryM: indicates a vehicle in the M category. - * - * @field euVehicleCategoryN: indicates a vehicle in the N category. - * - * @field euVehicleCategoryO: indicates a vehicle in the O category. - * - * @field euVehicleCategoryT: indicates a vehicle in the T category. - * - * @field euVehicleCategoryG: indicates a vehicle in the G category. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -EuVehicleCategoryCode ::= CHOICE { - euVehicleCategoryL EuVehicleCategoryL, - euVehicleCategoryM EuVehicleCategoryM, - euVehicleCategoryN EuVehicleCategoryN, - euVehicleCategoryO EuVehicleCategoryO, - euVehicleCategoryT NULL, - euVehicleCategoryG NULL - } - -/** - * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime - * or do not contain the COMPONENT eventDeltaTime. - * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. - * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. - * - * @category: GeoReference information, Traffic information - * @revision: created in V2.1.1 based on EventHistory - */ -EventZone::= EventHistory - ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | - (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) - -/** - * The DF consists of a list of @ref EventPoint. - * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. - * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. - * - * @category: GeoReference information, Traffic information - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref EventZone instead. - * @revision: Generalized the semantics in V2.1.1 - */ -EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint - - -/** - * This DF provides information related to an event at a defined position. - * - * It includes the following components: - * - * @field eventPosition: offset position of a detected event point to a defined position. - * - * @field eventDeltaTime: optional time travelled by the detecting ITS-S since the previous detected event point. - * - * @field informationQuality: Information quality of the detection for this event point. - * - * @category: GeoReference information, Traffic information - * @revision: generalized the semantics in V2.1.1 - */ -EventPoint ::= SEQUENCE { - eventPosition DeltaReferencePosition, - eventDeltaTime PathDeltaTime OPTIONAL, - informationQuality InformationQuality -} - -/** - * This DF represents the status of the exterior light switches of a traffic participant. - * - * It includes the following components: - * - * @field vehicular: represents the status of the exterior light switches of a road vehicle. - * - * @field vruSpecific: represents the status of the exterior light switches of a VRU. - * - * @category: VRU information - * @revision: created in V2.1.1 - */ -ExteriorLightsExtended ::= SEQUENCE { - vehicular ExteriorLights, - vruSpecific VruSpecificExteriorLights, - ... -} - - -/** - * This DF indicates a transversal position in relation to the different lanes of the road. - * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where V-ITS-S would normally not be present. - * - * The following options are available: - * - * @field trafficLanePosition: a position on a traffic lane. - * - * @field nonTrafficLanePosition: a position on a lane which is not a traffic lane. - * - * @field trafficIslandPosition: a position on a traffic island - * - * @field mapPosition: a position on a lane identified in a MAPEM. - * - * @category: Road Topology information - * @revision: created in V2.1.1 - */ -GeneralizedLanePosition::= CHOICE { - trafficLanePosition LanePosition, - nonTrafficLanePosition LanePositionAndType, - trafficIslandPosition TrafficIslandPosition, - mapPosition MapPosition, - ... -} - -/** - * This DF represents the Heading in a WGS84 co-ordinates system. - * - * It includes the following components: - * - * @field headingValue: the heading value. - * - * @field headingConfidence: the accuracy of the reported heading value with a predefined confidence level. - * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84Angle instead. - * @category: Kinematics Information - * @revision: V1.3.1 - */ -Heading ::= SEQUENCE { - headingValue HeadingValue, - headingConfidence HeadingConfidence -} - - -/** - * This DF provides information associated to heading change indicators such as a change of direction. - * - * It includes the following components: - * - * @field direction: the direction of heading change value. - * - * @field actionDeltaTime: the period over which a direction change action is performed. - * - * @category: Kinematics Information - * @revision: created in V2.1.1 - */ -HeadingChangeIndication ::= SEQUENCE { - direction TurningDirection, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents a frequency channel - * - * It includes the following components: - * - * @field centreFrequency: the centre frequency of the channel - * @unit: 10exp+2 Hz (where exp is exponent) - * - * @field channelWidth: width of the channel - * @unit: 10exp Hz (where exp is exponent) - * - * @field exponent of the power of 10 - * @unit: N/A - * - * @category: Communication information - * @revision: created in V2.1.1 -*/ -InterferenceManagementChannel ::= SEQUENCE { - centreFrequency INTEGER (1 .. 99999), - channelWidth INTEGER (0 .. 9999), - exponent INTEGER (0 .. 15) -} - -/** - * - * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. - * - * It includes the following components: - * - * @field zoneDefinition: contains the geographical definition of the zone. - * - * @field managementInfo: contains interference management information applicable in the zone defined in the component zoneDefinition. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZone ::= SEQUENCE { - zoneDefinition InterferenceManagementZoneDefinition, - managementInfo InterferenceManagementInfo -} - -/** - * This DF represents the geographical definition of the zone where band sharing occurs. - * - * It includes the following components: - * - * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. - * - * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. - * - * @field interferenceManagementZoneRadius: optional radius of the interference management zone in metres. - * - * @field interferenceManagementZoneID: optional identification of the interference management zone. - * - * @field interferenceManagementZoneShape: shape of the interference management zone. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZoneDefinition::= SEQUENCE{ - interferenceManagementZoneLatitude Latitude, - interferenceManagementZoneLongitude Longitude, - interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, - interferenceManagementZoneID ProtectedZoneID OPTIONAL, - interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, - ... -} - -/** - * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. - * - * @category: Communication information. - * @revision: created in V2.1.1 - */ -InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel - - -/** - * This DF contains interference management information for one affected frequency channel. - * - * It includes the following components: - * - * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management - * - * @field interferenceManagementZoneType: type of the interference management zone. - * - * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. - * In the case where no mitigation should be applied by the ITS-S, this is indicated by the field interferenceManagementMitigationType being absent. - * - * @field expiryTime: 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 - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementInfoPerChannel ::= SEQUENCE { - interferenceManagementChannel InterferenceManagementChannel, - interferenceManagementZoneType InterferenceManagementZoneType, - interferenceManagementMitigationType MitigationForTechnologies OPTIONAL, - expiryTime TimestampIts OPTIONAL, - ... -} - -/** - * 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. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone - -/** - * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.17]. - * - * It includes the following components: - * - * @field region: 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 @ref Id is unique within the region. - * - * @field id: the identifier of the intersection - * - * @note: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique. - * @category: Road topology information - * @revision: created in V2.1.1 - */ -IntersectionReferenceId ::= SEQUENCE { - region Identifier2B OPTIONAL, - id Identifier2B -} - -/** - * This DF consists of a list of waypoints @ref ReferencePosition. - * - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition - -/** - * 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: - * - * @field protocolVersion: version of the ITS message. - * - * @field messageId: type of the ITS message. - * - * @field stationId: the identifier of the ITS-S that generates the ITS message in question. - * - * @category: Communication information - * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. - */ -ItsPduHeader ::= SEQUENCE { - protocolVersion INTEGER (0..255), - messageId MessageId, - stationId StationID -} - -/** - * This DF indicates a transversal position in resolution of lanes and the associated lane type. - * - * It includes the following components: - * - * @field transversalPosition: the transversal position. - * - * @field laneType: the type of the lane identified in the component transversalPosition. - * - * @category GeoReference information - * @revision: Created in V2.1.1 - */ -LanePositionAndType::= SEQUENCE { - transversalPosition LanePosition, - laneType LaneType, - ... -} - -/** - * This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. - * - * It includes the following components: - * - * @field lateralAccelerationValue: lateral acceleration value at a point in time. - * - * @field lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. - * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. - * @category Vehicle information - * @revision: V1.3.1 - */ -LateralAcceleration ::= SEQUENCE { - lateralAccelerationValue LateralAccelerationValue, - lateralAccelerationConfidence AccelerationConfidence -} - -/** - * This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. - * - * It includes the following components: - * - * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. - - * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined - * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. - * @category: Vehicle information - * @revision: V1.3.1 - */ -LongitudinalAcceleration ::= SEQUENCE { - longitudinalAccelerationValue LongitudinalAccelerationValue, - longitudinalAccelerationConfidence AccelerationConfidence -} - -/** - * This DF represents the estimated position along the longitudinal length of a particular lane. - * - * It includes the following components: - * - * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. - * - * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. - * - * @category: Road topology information - * @revision: created in V2.1.1 - */ -LongitudinalLanePosition ::= SEQUENCE { - longitudinalLanePositionValue LongitudinalLanePositionValue, - longitudinalLanePositionConfidence LongitudinalLanePositionConfidence -} - -/** - * 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 @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. - * - * @category: Vehicle information - * @revision: V1.3.1 -*/ -LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn - -/** - * 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: - * - * @field mapReference: optionally identifies the MAPEM containing the topology information. - * It is absent if the MAPEM topology is known from the context. - * - * @field laneId: identifies the lane in the road segment or intersection topology on which the position is located. - * - * @field connectionId: identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the - * conflict area of an intersection which connects e.g an ingress with an egress lane. - * - * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. - * - * @category: Road topology information - * @revision: Created in V2.1.1 - */ -MapPosition ::= SEQUENCE { - mapReference MapReference OPTIONAL, - laneId Identifier1B, - longitudinalLanePosition LongitudinalLanePosition OPTIONAL, - connectionId Identifier1B, - ... -} - -/** - * 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: - * - * @field roadsegment: option that identifies the description of a road segment contained in a MAPEM. - * - * @field intersection: option that identifies the description of an intersection contained in a MAPEM. - * - * @category: Road topology information - * @revision: Created in V2.1.1 - */ - -MapReference::= CHOICE { - roadsegment RoadSegmentReferenceId, - intersection IntersectionReferenceId - } - -/** - * This DF provides information about a message with respect to the segmentation process at the sender. - * - * It includes the following components: - * - * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. - * - * @field thisMsgNo: indicates the position of the message within of the total set of messages. - -*/ -MessageSegmentationInfo ::= SEQUENCE { - totalMsgNo CardinalNumber1B, - thisMsgNo OrdinalNumber1B - } - -/** - * - * This DF represents a list of @ref MitigationPerTechnologyClass. - * @category: Communication information - * @revision: Created in V2.1.1 -*/ -MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF 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: - * - * @field accessTechnologyClass: channel access technology to which this mitigation is applied. - * - * @field lowDutyCycle: duty cycle limit. - * @unit: 0.01% steps - * - * @field powerReduction: the delta value of power to be reduced. - * @unit: dB - * - * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.25]. - * @unit: ms - * - * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.26]. - * @unit: ms - * - * @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. - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -MitigationPerTechnologyClass ::= SEQUENCE { - accessTechnologyClass AccessTechnologyClass, - lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, - powerReduction INTEGER (0 .. 30) OPTIONAL, - dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, - dmcTonLimit INTEGER (0 .. 20) OPTIONAL, - ... -} - -/** - * This DF indicates both the class and associated subclass that best describes an object. - * - * The following options are available: - * - * @field vehicleSubClass: the object is a road vehicle. - * - * @field vruSubClass: the object is a VRU. - * - * @field groupSubClass: the object is a VRU group or cluster. - * - * @field otherSubClass: the object is of a different types as the above. - * - * @category: Sensing information - * @revision: Created in V2.1.1 - */ -ObjectClass ::= CHOICE { - vehicleSubClass VehicleSubClass, - vruSubClass VruProfileAndSubprofile, - groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), - otherSubClass OtherSubClass, - ... -} - -/** - * This DF consist of a list of object classes. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence - -/** - * This DF represents the classification of a detected object together with a confidence indication. - * - * It includes the following components: - * - * @field objectClass: the class of the object. - * - * @field ObjectClassConfidence: the associated confidence information. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectClassWithConfidence ::= SEQUENCE { - objectClass ObjectClass, - confidence ConfidenceLevel -} -/** - * This DF represents a dimension of an object together with a confidence indication. - * - * It includes the following components: - * - * @field ObjectDimensionValue: the object dimension value which can be estimated as the mean of the current distribution. - * - * @field ObjectDimensionValue: the associated confidence information. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimension ::= SEQUENCE { - value ObjectDimensionValue, - confidence ObjectDimensionValue -} - -/** - * This DF that represents a path with a set of path points. - * It may contain up to `40` @ref 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. - * - * @category: GeoReference information, Vehicle information - * @revision: created in V2.1.1 based on PathHistory - */ -Path::= SEQUENCE (SIZE(0..40)) OF PathPoint - -/** - * This DF that represents a path history with a set of path points. - * It may contain up to `40` @ref 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. - * - * @category: GeoReference information, Vehicle information - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead - * @revision: semantics updated in V2.1.1 - */ -PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint - -/** - * This DF that represents a predicted path with a set of path points. - * It may contain up to `15` @ref 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. - * - * @category: GeoReference information - * @revision: created in V2.1.1 based on PathHistory - */ -PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted - -/** - * This DF defines an offset waypoint position within a path. - * - * It includes the following components: - * - * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. - * - * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. - * - * @category GeoReference information - * @revision: semantics updated in V2.1.1 - */ -PathPoint ::= SEQUENCE { - pathPosition DeltaReferencePosition, - pathDeltaTime PathDeltaTime OPTIONAL -} - -/** - * This DF defines a predicted offset waypoint position within a path. - * - * It includes the following components: - * - * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. - * - * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. - * - * @field horizontalPositionConfidence: the accuracy of the horizontal geographical position. - * - * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. - * - * @field altitudeConfidence: the accuracy of the altitude value of the geographical position. - * - * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. - * - * @category GeoReference information - * @revision: semantics updated in V2.1.1 - */ - -PathPointPredicted::= SEQUENCE { - deltaLatitude DeltaLatitudeSmall, - deltaLongitude DeltaLongitudeSmall, - horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, - deltaAltitude DeltaAltitude DEFAULT unavailable, - altitudeConfidence AltitudeConfidence DEFAULT unavailable, - pathDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * 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: - * - * @field objectID: optional identifier assigned to a detected object. - * - * @field timeOfMeasurement: 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. - * - * @field xCoordinate: 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. - * - * @field yCoordinate: 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. - * - * @field zCoordinate: 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. - * - * @field velocityMagnitude: 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 - * - * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. - * - * @field xVelocity: velocity component of the detected object in x-direction at the time of measurement, with the associated variance. - * - * @field yVelocity: velocity component of the detected object in y-direction at the time of measurement, with the associated variance. - * - * @field zVelocity: optional velocity component of the detected object in z-direction at the time of measurement, with the associated variance. - * - * @field accelerationMagnitude: 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. - * - * @field accelerationDirection: polar angle of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. - * - * @field xAcceleration: optional Acceleration of the detected object in x-direction at the time of measurement, with the associated variance. - * - * @field yAcceleration: optional Acceleration of the detected object in y-direction at the time of measurement, with the associated variance. - * - * @field zAcceleration: optional Acceleration of the detected object in z-direction at the time of measurement, with the associated variance. - * - * @field rollAngle: 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. - * - * @field pitchAngle: 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. - * - * @field yawAngle: 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. - * - * @field rollSpeed: 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. - * - * @field pitchSpeed: 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. - * - * @field yawSpeed: 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. - * - * @field rollAcceleration: 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. - * - * @field pitchAcceleration: 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. - * - * @field yawAcceleration: 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. - * - * @field lowerTriangularCorrelationMatrixColumns: 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. - * - * @field planarObjectDimension1: 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. - * - * @field planarObjectDimension2: 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. - * - * @field verticalObjectDimension: optional vertical dimension of object as provided by the sensor or object model. - * - * @field objectRefPoint: 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. - * - * @field objectAge: 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. - * - * @field objectConfidence: 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. - * - * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. - * - * @field dynamicStatus: optional dynamic capabilities of a detected object. - * - * @field classification: optional classification of the described object - * - * @field matchedPosition: optional map-matched position of an object. - * - * @category Sensing information - * @revision: created in V2.1.1 - */ - -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, - ... -} - -/** - * This DF represents the shape of a polygonal area or of a right prism. - * - * It includes the following components: - * - * @field polygon: the polygonal area and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. - * - * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. - * - * @category GeoReference information - * @revision: created in V2.1.1 - * - */ -PolygonalShape ::= SEQUENCE { - polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), - height StandardLength12b OPTIONAL, - ... -} - -/** - * 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: - * - * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point - * and major axis point of the position accuracy ellipse. - * - * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point - * and minor axis point of the position accuracy ellipse. - * - * @field semiMajorOrientation: orientation direction of the ellipse major axis of the position accuracy - * ellipse with regards to the WGS84 north. - * - * - * @category GeoReference information - * @revision: V1.3.1 - */ -PosConfidenceEllipse ::= SEQUENCE { - semiMajorConfidence SemiAxisLength, - semiMinorConfidence SemiAxisLength, - semiMajorOrientation Wgs84AngleValue -} - -/** - * This DF contains a list of distances @ref 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. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar - -/** - * This DF describes a zone of protection inside which the ITSG5 communication should be restricted. - * - * It includes the following components: - * - * @field protectedZoneType: type of the protected zone. - * - * @field expiryTime: optional time at which the validity of the protected communication zone will expire. - * - * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. - * - * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. - * - * @field protectedZoneRadius: optional radius of the protected communication zone in metres. - * - * @field protectedZoneID: the optional ID of the protected communication zone. - * - * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedCommunicationZone ::= SEQUENCE { - protectedZoneType ProtectedZoneType, - expiryTime TimestampIts OPTIONAL, - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - protectedZoneRadius ProtectedZoneRadius OPTIONAL, - protectedZoneID ProtectedZoneID OPTIONAL, - ... -} - -/** - * This DF consist of a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). - * - * It may provide up to 16 protected communication zones information. - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone - -/** - * 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). - * - * @field ptActivationType: type of activation. - * - * @field ptActicationData: data of activation. - * - * 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) - * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, - * destination, priority, etc. - * - * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: - * - 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. - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivation ::= SEQUENCE { - ptActivationType PtActivationType, - ptActivationData PtActivationData -} - -/** - * This DF describes a radial shape. 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). - * - * It includes the following components: - * - * @field sensorPositionOffset: the optional offset opoint. - * - * @field range: the radial range of the sensor from the reference point or sensor point offset. - * - * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor's horizontal opening angle in positive angular direction with respect to the - * WGS84 coordinate system. - * - * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor's horizontal opening angle in positive angular direction with respect to the WGS84 coordinate - * system. - * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's - * 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. - * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's - * 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 using the DE CartesianAngleValue. - * - * @category Sensing information - * @revision: created in V2.1.1 -*/ -RadialShape ::= SEQUENCE { - offsetPoint CartesianPosition3d OPTIONAL, - range StandardLength12b, - stationaryHorizontalOpeningAngleStart Wgs84AngleValue, - stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, - verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, - ... -} - - -/** - * This DF describes a list of radial shapes. - * - * It includes the following components: - - * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). - * - * @field xCoordinate: the x-coordinate of the offset point. - * - * @field yCoordinate: the y-coordinate of the offset point. - * - * @field zCoordinate: the optional z-coordinate of the offset point. - * - * @field radialShapesList: the list of radial shape details. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ -RadialShapes ::= SEQUENCE { - refPointId Identifier1B, - xCoordinate CartesianCoordinateSmall, -- tbd: is this along the positive or the negative x axis? - yCoordinate CartesianCoordinateSmall, - zCoordinate CartesianCoordinateSmall OPTIONAL, - radialShapesList RadialShapesList, - ... -} - -/** - * The DF contains a list of @ref RadialShapeDetails. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ - -RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF 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). - * - * It includes the following components: - * - * @field range: the radial range of the sensor from the reference point or sensor point offset. - * - * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor's horizontal opening angle in positive angular direction. - * - * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor's horizontal opening angle in positive angular direction. - * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's - * 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. - * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's - * 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. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ -RadialShapeDetails ::= SEQUENCE { - range StandardLength12b, - horizontalOpeningAngleStart CartesianAngleValue, - horizontalOpeningAngleEnd CartesianAngleValue, - verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, - ... -} - -/** - * 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. - * - * It includes the following components: - * - * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. - * - * @field semiLength: represents half the length of the rectangle. - * - * @field semiBreadth: represents half the breadth of the rectangle. - * - * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. - * - * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. - * - * @category GeoReference information - * @revision: created in V2.1.1 - */ -RectangularShape ::= SEQUENCE { - centerPoint CartesianPosition3d OPTIONAL, - semiLength StandardLength12b, - semiBreadth StandardLength12b, - orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL -} - -/** - * A position within a geographic coordinate system together with a confidence indication. - * - * It includes the following components: - * - * @field latitude: the latitude of the geographical point. - * - * @field longitude: the longitude of the geographical point. - * - * @field positionConfidenceEllipse: the accuracy of the geographical position. - * - * @field altitude: the altitude and an altitude accuracy of the geographical point. - * - * @category: GeoReference information - * @revision: description updated in V2.1.1 - */ -ReferencePosition ::= SEQUENCE { - latitude Latitude, - longitude Longitude, - positionConfidenceEllipse PosConfidenceEllipse, - altitude Altitude -} - -/** - * This DF consist of a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. - * - * @category: Infrastructure information, Traffic information - * @revision: V1.3.1 - */ -RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType - -/** - * This DF represents a unique id for a road segment - * - * It includes the following components: - * - * @field region: 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 @ref Id is unique within the region. - * - * @field id: the identifier of the road segment - * - * @note: when the RoadRegulatorID is present, the RoadSegmentReferenceID is guaranteed to be globally unique. - * @category: GeoReference information - * @revision: created in V2.1.1 - */ -RoadSegmentReferenceId ::= SEQUENCE { - region Identifier2B OPTIONAL, - id Identifier2B -} - -/** - * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). - * - * It includes the following components: - * - * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. - * - * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. - * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant inidcated in the component subjectStation is safe. - * - * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed - * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 - */ -SafeDistanceIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, - safeDistanceIndicator SafeDistanceIndicator, - timeToCollision DeltaTimeTenthOfSecond OPTIONAL, - ... -} - -/** - * This DF represents a list of maximum `16` @ref CartesianPosition3d. - * - * @category: GeoReference information - * @revision: created in V2.1.1 - */ -SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d - -/** - * The DF contains a list of identifiers. - * - * @category: Basic information - * @revision: created in V2.1.1 -*/ -SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B - -/** - * The DF contains a list of DF SafeDistanceIndication. - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication - -/** - * The DF contains a list of DF TrajectoryInterceptionIndication. - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication - -/** - * This DF provides the definition of a geographical area or volume, based on different options. - * - * It includes the following components: - * - * @field rectangle: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. - * - * @field circle: definition of an area of circular shape or a right circular cylinder. - * - * @field polygon: definition of an area of polygonal shape or a right prism. - * - * @field ellipse: definition of an area of elliptical shape or a right elliptical cylinder. - * - * @field radial: definition of a radial shape. - * - * @field radialShapes: definition of list of radial shapes. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ - -Shape::= CHOICE { - rectangle RectangularShape, - circle CircularShape, - polygon PolygonalShape, - ellipse EllipticalShape, - radial RadialShape, - radialShapes RadialShapes, - ... -} - -/** - * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). - * - * It includes the following components: - * - * @field speedValue: the speed value. - * - * @field speedConfidence: the accuracy of the reported speed value. - * - * @category: Kinematics information - * @revision: V1.3.1 - */ -Speed ::= SEQUENCE { - speedValue SpeedValue, - speedConfidence SpeedConfidence -} - -/** - * This DF describes the extended speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). - * - * It includes the following components: - * - * @field speedValue: the extended speed value. - * - * @field speedConfidence: the accuracy of the reported speed value. - * - * @category: Kinematics information - * @revision: V2.1.1 - */ -SpeedExtended ::= SEQUENCE { - speedValue SpeedValueExtended, - speedConfidence SpeedConfidence -} - -/** - * This DF provides the indication of change in stability. - * - * It includes the following components: - * - * @field lossProbability: the probability of stability loss. - * - * @field actionDeltaTime: accuracy of the reported speed value. - * - * @category: Kinematics information - * @revision: V2.1.1 - */ -StabilityChangeIndication ::= SEQUENCE { - lossProbability StabilityLossProbability, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents the steering wheel angle of the vehicle at certain point in time. - * - * It includes the following components: - * - * @field steeringWheelAngleValue: steering wheel angle value. - * - * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -SteeringWheelAngle ::= SEQUENCE { - steeringWheelAngleValue SteeringWheelAngleValue, - steeringWheelAngleConfidence SteeringWheelAngleConfidence -} - -/** - * This DF represents one or more paths using @ref PathHistory. - * - * @category: GeoReference information - * @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory - */ -Traces ::= SEQUENCE SIZE(1..7) OF Path - -/** - * Ths DF represents the a position on a traffic island between two lanes. - * - * It includes the following components: - * - * @field oneSide: represents one lane. - * - * @field otherSide: represents the other lane. - * - * @category: Road Topology information - * @revision: Created in V2.1.1 - */ -TrafficIslandPosition ::= SEQUENCE { - oneSide LanePositionAndType, - otherSide LanePositionAndType, - ... -} - -/** - * This DF provides detailed information about an attached trailer. - * - * It includes the following components: - * - * @field refPointId: identifier of the reference point of the trailer. - * - * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the - * vehicle Reference Point. - * - * @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the - * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer - * is not overhanging to the front with respect to the trailer reference point. - * - * @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the - * trailer Reference Point indicated by the refPointID. - * - * @field trailerWidth: optional width of the trailer. - * - * @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x - * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of - * the segment having as end points the reference point of the trailer and the reference point of - * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane - * xy, described in the local Cartesian coordinate system of the preceding reference point. The - * angle is measured with negative values considering the trailer orientation turning clockwise - * starting from the segment direction. The angle value accuracy is provided with the - * confidence level of 95 %. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -TrailerData ::= SEQUENCE { --tbd check descriptions above - refPointId Identifier1B, - hitchPointOffset StandardLength1B, -- tbd is the value unavailable needed? - frontOverhang StandardLength1B, - rearOverhang StandardLength1B, - trailerWidth VehicleWidth, - hitchAngle CartesianAngle, - ... -} - -/** - * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. - * - * It includes the following components: - * - * @field subjectStation: indicates the subject station. - * - * @field trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory - * with the trajectory of the station indicated in the component subjectStation. - * - * @field trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory - * with the trajectory of the station indicated in the component subjectStation. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, - trajectoryInterceptionProbability TrajectoryInterceptionProbability, - trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, - ... - } - -/** - * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -VarLengthNumber::=CHOICE{ - content [0] INTEGER(0..127), -- one octet length - extension [1] Ext1 - } -Ext1::=CHOICE{ - content [0] INTEGER(128..16511), -- two octets length - extension [1] Ext2 -} -Ext2::=CHOICE{ - content [0] INTEGER(16512..2113663), -- three octets length - extension [1] Ext3 - } -Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length - -/** - * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. - * - * It includes the following components: - * - * @field verticalAccelerationValue: vertical acceleration value at a point in time. - * - * @field verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. - * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead - * @category Vehicle information - * @revision: V1.3.1 - */ -VerticalAcceleration ::= SEQUENCE { - verticalAccelerationValue VerticalAccelerationValue, - verticalAccelerationConfidence AccelerationConfidence -} - -/** - * This DF provides information related to the identification of a vehicle. - * - * It includes the following components: - * - * @field wMInumber: World Manufacturer Identifier (WMI) code. - * - * @field vDS: Vehicle Descriptor Section (VDS). - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VehicleIdentification ::= SEQUENCE { - wMInumber WMInumber OPTIONAL, - vDS VDS OPTIONAL, - ... -} - -/** - * This DF represents the length of vehicle and accuracy indication information. - * - * It includes the following components: - * - * @field vehicleLengthValue: length of vehicle. - * - * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VehicleLength ::= SEQUENCE { - vehicleLengthValue VehicleLengthValue, - vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication -} - -/** - * This DF provides information about a VRU cluster. - * - * It includes the following components: - * - * @field clusterId: optional identifier of a VRU cluster . - * - * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. - * - * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. - * - * @field clusterProfiles: identifies all the VRU profile types that are believed to be within the cluster . - * - * @category: VRU information - * @revision: Created in V2.1.1 -*/ -VruClusterInformation ::= SEQUENCE { - clusterId ClusterId OPTIONAL, - clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, - clusterCardinalitySize ClusterCardinalitySize, - clusterProfiles VruClusterProfiles, - ... -} - -/** - * This DF indicates the profile of a VRU including sub-profile information - * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.22]: - * - * @field pedestrian: VRU Profile 1 - Pedestrian. - * - * @field bicyclistAndLightVruVehicle: VRU Profile 2 - Bicyclist. - * - * @field motorcyclist: VRU Profile 3 - Motorcyclist. - * - * @field animal: VRU Profile 4 - Animals. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruProfileAndSubprofile ::= CHOICE { - pedestrian VruSubProfilePedestrian, - bicyclistAndLightVruVehicle VruSubProfileBicyclist, - motorcylist VruSubProfileMotorcyclist, - animal VruSubProfileAnimal, - ... -} - -/** - * This DF represents an angular component along with a confidence in the WGS84 coordinate system. - * - * It includes the following components: - * - * @field value: the angle value which can be estimated as the mean of the current distribution. - * - * @field confidence: the accuracy associated to the provided value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -Wgs84Angle ::= SEQUENCE { - value Wgs84AngleValue, - confidence Wgs84AngleConfidence -} - - -/** - * This DF represents a yaw rate of vehicle at a point in time. - * - * It includes the following components: - * - * @field yawRateValue: yaw rate value at a point in time. - * - * @field yawRateConfidence: accuracy of reported yaw rate value. - * - * @category: Vehicle Information - * @revision: V1.3.1 - */ -YawRate::= SEQUENCE { - yawRateValue YawRateValue, - yawRateConfidence YawRateConfidence -} - -END -- GitLab From 44bc97e3718e62532e64f6c66c18019556e56886 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Fri, 10 Jun 2022 08:21:35 +0000 Subject: [PATCH 34/91] Delete ITS-Container.md --- docs/ITS-Container.md | Bin 290433 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 docs/ITS-Container.md diff --git a/docs/ITS-Container.md b/docs/ITS-Container.md deleted file mode 100644 index 1c6e94862d834cf40c938aedfe5ee6dab5426654..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 290433 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�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 Date: Fri, 10 Jun 2022 08:21:50 +0000 Subject: [PATCH 35/91] Delete ETSI-ITS-CDD.md --- docs/ETSI-ITS-CDD.md | Bin 304614 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 docs/ETSI-ITS-CDD.md diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md deleted file mode 100644 index 535a4138bdd3dff2f160e03e0c0a073292d9cb00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304614 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 Lr9wxdyLbN&iBH?y -- GitLab From 6d2951cd0d4ad35f4d10274b5f2e99d83bdf4a20 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Fri, 10 Jun 2022 08:25:47 +0000 Subject: [PATCH 38/91] Delete ETSI-ITS-CDD.asn --- ETSI-ITS-CDD.asn | 6048 ---------------------------------------------- 1 file changed, 6048 deletions(-) delete mode 100644 ETSI-ITS-CDD.asn diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn deleted file mode 100644 index e27e6a7..0000000 --- a/ETSI-ITS-CDD.asn +++ /dev/null @@ -1,6048 +0,0 @@ --- Draft CDD ASN.1 module Release 2. --- Date: 08.06.2022 - - -ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} - -DEFINITIONS AUTOMATIC TAGS ::= - -BEGIN - ------------------------------------------- --- Specification of CDD Data Elements: ------------------------------------------- - - -/** - * This DE indicates a change of acceleration. - * - * The value shall be set to: - * - 0 - `accelerate` - if the acceleration is positive. - * - 1 - `decelerate` - if the acceleration is negative. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AccelerationChange::= ENUMERATED { - accelerate (0), - decelerate (1) -} - -/** - * This DE represents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. - * - `102` if the data is unavailable. - * - * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported acceleration value may be valid and used by the application. - * - * @note: If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * - * @unit 0,1 m/s2 - * @category: Kinematics information - * @revision: Description revised in V2.1.1 - */ -AccelerationConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) - -/** - * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. - * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle - * acceleration control system is engaged or not. Currently, this DE includes the information of the - * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise - * control system, cruise control system and speed limiter system. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `brakePedalEngaged` - Driver is stepping on the brake pedal, - * - 1 - `gasPedalEngaged` - Driver is stepping on the gas pedal, - * - 2 - `emergencyBrakeEngaged` - emergency brake system is engaged, - * - 3 - `collisionWarningEngaged`- collision warning system is engaged, - * - 4 - `accEngaged` - ACC is engaged, - * - 5 - `cruiseControlEngaged` - cruise control is engaged, - * - 6 - `speedLimiterEngaged` - speed limiter is engaged. - * - * Otherwise (for example when the corresponding system is not available due to non equipped system - * or information is unavailable), the corresponding bit shall be set to _0_. - * - * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. - * @category: Kinematics information - * @revision: V1.3.1 - */ -AccelerationControl ::= BIT STRING { - brakePedalEngaged (0), - gasPedalEngaged (1), - emergencyBrakeEngaged (2), - collisionWarningEngaged (3), - accEngaged (4), - cruiseControlEngaged (5), - speedLimiterEngaged (6) -} (SIZE(7)) - -/** - * This DE represents the value of an acceleration component in a defined coordinate system. - * - * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * @note: zero acceleration is indicated using n=0. - * @unit 0,1 m/s2 - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AccelerationValue ::= INTEGER { - negativeOutOfRange (-160), - positiveOutOfRange (160), - unavailable (161) -- tbd delete unavailable value? -} (-160 .. 161) - - -/** - * This DE indicates an access technology. - * - * The value shall be set to: - * - `0`: in case of any access technology class. - * - `1`: in case of ITS-G5 access technology class. - * - `2`: in case of LTE-V2X access technology class. - * - `3`: in case of NR-V2X access technology class. - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -AccessTechnologyClass ::= ENUMERATED { - any (0), - itsg5Class (1), - ltev2xClass (2), - nrv2xClass (3), - ... -} - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case the information on the sub cause of the accident is unavailable, - * - 1 - `multiVehicleAccident` - in case more than two vehicles are involved in accident, - * - 2 - `heavyAccident` - in case the airbag of the vehicle involved in the accident is triggered, - * the accident requires important rescue and/or recovery work, - * - 3 - `accidentInvolvingLorry` - in case the accident involves a lorry, - * - 4 - `accidentInvolvingBus` - in case the accident involves a bus, - * - 5 - `accidentInvolvingHazardousMaterials`- in case the accident involves hazardous material, - * - 6 - `accidentOnOppositeLane` - in case the accident happens on opposite lanes, - * - 7 - `unsecuredAccident` - in case the accident is not secured, - * - 8 - `assistanceRequested` - in case rescue and assistance are requested, - * - 9-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AccidentSubCauseCode ::= INTEGER { - unavailable (0), - multiVehicleAccident (1), - heavyAccident (2), - accidentInvolvingLorry (3), - accidentInvolvingBus (4), - accidentInvolvingHazardousMaterials (5), - accidentOnOppositeLane (6), - unsecuredAccident (7), - assistanceRequested (8) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailabl. - * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road. - * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road. - * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road. - * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road. - * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road. - * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road. - * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road. - * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. - * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface. - * - 10 - `roadsSalted` - when the low road adhesion is due to salted road. - * - 11-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { - unavailable (0), - heavyFrostOnRoad (1), - fuelOnRoad (2), - mudOnRoad (3), - snowOnRoad (4), - iceOnRoad (5), - blackIceOnRoad (6), - oilOnRoad (7), - looseChippings (8), - instantBlackIce (9), - roadsSalted (10) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable. - * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind. - * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail. - * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane. - * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm. - * - 5 - `tornado` - in case the type of extreme weather condition is tornado. - * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. - * - 7-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { - unavailable (0), - strongWinds (1), - damagingHail (2), - hurricane (3), - thunderstorm (4), - tornado (5), - blizzard (6) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. - * - * The value shall be set to: - * - 0 - `unavailable` : in case information on the type of precipitation is unavailable. - * - 1 - `heavyRain` : in case the type of precipitation is heavy rain. - * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall. - * - 3 - `softHail` : in case the type of precipitation is soft hail. - * - 4-255 : are reserved for future usage - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { - unavailable (0), - heavyRain (1), - heavySnowfall (2), - softHail (3) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable. - * - 1 - `fog` - in case the cause of low visibility is fog. - * - 2 - `smoke` - in case the cause of low visibility is smoke. - * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall. - * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain. - * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail. - * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare. - * - 7 - `sandstorms` - in case the cause of low visibility is sand storm. - * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. - * - 9-255 - are reserved for future usage - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { - unavailable (0), - fog (1), - smoke (2), - heavySnowfall (3), - heavyRain (4), - heavyHail (5), - lowSunGlare (6), - sandstorms (7), - swarmsOfInsects (8) -} (0..255) - -/** - * This DE represents the air humidity in tens of percent. - * - * The value shall be set to: - * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0.1 percent and greater than (n-1) x 0.1 percent. - * - `1001` indicates that the air humidity is unavailable. - * - * @category: Basic information - * @unit: 0,1 % - * @revision: created in V2.1.1 - */ -AirHumidity ::= INTEGER { - oneHundredPercent (1000), - unavailable (1001) -} (1..1001) - -/** - * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. - * - * The value shall be set to: - * - 0 - `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. - * - 1 - `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. - * - 2 - `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. - * - 3 - `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. - * - 4 - `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. - * - 5 - `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. - * - 6 - `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. - * - 7 - `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. - * - 8 - `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. - * - 9 - `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. - * - 10 - `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. - * - 11 - `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. - * - 12 - `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. - * - 13 - `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. - * - 14 - `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. - * - 15 - `unavailable` if the altitude accuracy information is unavailable - * - * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused - * by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported altitude value may be valid and used by the application. - * - * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported - * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -AltitudeConfidence ::= ENUMERATED { - alt-000-01 (0), - alt-000-02 (1), - alt-000-05 (2), - alt-000-10 (3), - alt-000-20 (4), - alt-000-50 (5), - alt-001-00 (6), - alt-002-00 (7), - alt-005-00 (8), - alt-010-00 (9), - alt-020-00 (10), - alt-050-00 (11), - alt-100-00 (12), - alt-200-00 (13), - outOfRange (14), - unavailable (15) -} - -/** - * This DE represents the altitude value in a WGS84 co-ordinate system. - * - * The value shall be set to: - * - `-100 000` if the altitude is equal to or less than -1 000 m. - * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0.01 meters and greater than (n-1) x 0,01 meters. - * - `800 000` if the altitude greater than 7 999 m. - * - `800 001` if the information is not available. - * - * @unit: 0.01 meter - * @category: GeoReference information - * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) - */ -AltitudeValue ::= INTEGER { - negativeOutOFRange (-100000), - postiveOutOfRange (800000), - unavailable (800001) -} (-100000..800001) - -/** - * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. - * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. - * - `127` if the accuracy information is not available. - * - * @unit: 0,1 degrees - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. - * For correlation computation, maximum interval levels can be assumed. - * - * The value shall be set to: - * - 0 - `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second - * - 1 - `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second - * - 2 - `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second - * - 3 - `degSec-001-00` if the accuracy is equal to or less than 1 degree/second - * - 4 - `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second - * - 5 - `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second - * - 6 - `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second - * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second - * - 8 - `unavailable` if the accuracy information is unavailable - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngularSpeedConfidence ::= ENUMERATED { - degSec-000-01 (0), - degSec-000-05 (1), - degSec-000-10 (2), - degSec-001-00 (3), - degSec-005-00 (4), - degSec-010-00 (5), - degSec-100-00 (6), - outOfRange (7), - unavailable (8) -} - -/** - * Tis DE represents the absolute accuracy of a reported angular acceleration value for a confidence level of 95%. - * For correlation computation, maximum interval levels shall be assumed. - * - * The value shall be set to: - * - 0 - `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second2 - * - 1 - `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second2 - * - 2 - `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second2 - * - 3 - `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second2 - * - 4 - `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second2 - * - 5 - `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second2 - * - 6 - `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second2 - * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second2 - * - 8 - `unavailable` if the accuracy information is unavailable - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngularAccelerationConfidence ::= ENUMERATED { - degSecSquared-000-01 (0), - degSecSquared-000-05 (1), - degSecSquared-000-10 (2), - degSecSquared-001-00 (3), - degSecSquared-005-00 (4), - degSecSquared-010-00 (5), - degSecSquared-100-00 (6), - outOfRange (7), - unavailable (8) -} - -/** - * This DE indicates the number of axels of a passing train. - * - * The following values are specified: - * - `n(n > 2 and n < 1001)` indicates that the train has n x axels. - * - `1001`indicates that the number of axels is out of range. - * - `1002` the information is unavailable. - * - * - * @unit: Number of axels - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -AxlesCount ::= INTEGER{ - outOfRange (1001), - unavailable (1002) -} (2..1002) - -/** - * This DE represent the measured uncompesated atmospheric pressure in units of hPascal (hPa). - * - * The following values are specified: - * - `2999` indicates that the applicable value is less than 299.9 hPa. - * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 0.1 hPa and greater than (n-1) x 0.1 hPa. - * - `12001` indicates that the values is greater than 1200 hPa. - * - `12002` indicates that the information is not available. - * - * @category: Basic information - * @unit: 0.1 hPa - * @revision: Created in V2.1.1 -*/ -BarometricPressure ::= INTEGER{ - outOfRangelower (2999), - outOfRangeUpper (12001), - unavailable (12002) -} (2999..12002) - - -/** - * This DE indicates the cardinal number of bogies of a train. - * -* The value shall be set to: - * - `n (n > 1 and n < 100)` indicates that the train has n x bogie - * - `100`indicates that the number of bogie is out of range. - * - `101` the information is unavailable. - * - * @unit: Number of bogies - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -BogiesCount ::= INTEGER{ - outOfRange (100), - unavailable (101) -} (2..101) - -/** - * The DE represents a cardinal number that counts the size of a set. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CardinalNumber1B ::= INTEGER(1..255) - -/** - * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. - * - `36001` if the accuracy information is not available. - * - * The value 3600 shall not be used. - * - * @unit 0,1 degrees - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngleValue ::= INTEGER { - valueNotUsed (3600), - unavailable (3601) -} (0..3601) - -/** - * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `-32766` if the speed is equal to or less than 327,66 degrees/s. - * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s. - * - `32766` if the speed is greater than 327,65 degrees/s. - * - `32767` if the information is unavailable. - * - * @unit 0,01 degrees/s - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngularSpeedValue ::= INTEGER { - negativeOutofRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) - -/** - * This DE represents an angular acceleration value described in a local Cartesian coordinate system, counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `-32766` if the acceleration is equal to or less than 327,66 degrees/s2 - * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than n x 0,01 degrees/s2, - and greater than `(n-1)` x 0,01 degrees/s2. - * - `32766` if the acceleration is greater than 327,65 degrees/s2 - * - `32767` if the information is unavailable - * - * @unit 0,01 degrees/s2 (degrees per second squared) - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngularAccelerationValue ::= INTEGER { - negativeOutofRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) - -/** - *The DE represents the value of the cause code of an event. - * - * The value shall be set to: - * - 0 - - reserved for future use, - * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, - * - 2 - `accident` - in case the type of event is a road accident, - * - 3 - `roadworks` - in case the type of event is roadwork, - * - 4 - reserved for future usage, - * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any - * blocking of a road, partial or total, which has not been adequately - * secured and signposted, - * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, - * - 7 - `aquaplaning` - danger of aquaplaning on the road, - * - 8 - reserved for future usage, - * - 9 - `hazardousLocation-SurfaceCondition` - in case the type of event is abnormal road surface condition, - * - 10 - `hazardousLocation-ObstacleOnTheRoad` - in case the type of event is obstacle on the road, - * - 11 - `hazardousLocation-AnimalOnTheRoad` - in case the type of event is animal on the road, - * - 12 - `humanPresenceOnTheRoad` - in case the type of event is human presence on the road, - * - 13 - reserved for future usage, - * - 14 - `wrongWayDriving` - in case the type of the event is vehicle driving in wrong way, - * - 15 - `rescueAndRecoveryWorkInProgress` - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, - * - 16 - reserved for future usage, - * - 17 - `adverseWeatherCondition-ExtremeWeatherCondition`- in case the type of event is extreme weather condition, - * - 18 - `adverseWeatherCondition-Visibility` - in case the type of event is low visibility, - * - 19 - `adverseWeatherCondition-Precipitation` - in case the type of event is precipitation, - * - 20 - `violence` - in case the the type of event is human violence on or near the road, - * - 21-25 - reserved for future usage, - * - 26 - `slowVehicle` - in case the type of event is slow vehicle driving on the road, - * - 27 - `dangerousEndOfQueue` - in case the type of event is dangerous end of vehicle queue, - * - 28-90 - are reserved for future usage, - * - 91 - `vehicleBreakdown` - in case the type of event is break down vehicle on the road, - * - 92 - `postCrash` - in case the type of event is a detected crash, - * - 93 - `humanProblem` - in case the type of event is human health problem in vehicles involved in traffic, - * - 94 - `stationaryVehicle` - in case the type of event is stationary vehicle, - * - 95 - `emergencyVehicleApproaching` - in case the type of event is approaching vehicle operating emergency mission, - * - 96 - `hazardousLocation-DangerousCurve` - in case the type of event is dangerous curve, - * - 97 - `collisionRisk` - in case the type of event is a collision risk, - * - 98 - `signalViolation` - in case the type of event is signal violation, - * - 99 - `dangerousSituation` - in case the type of event is dangerous situation in which autonomous safety system in vehicle - * is activated, - * - 100 - `railwayLevelCrossing` - in case the type of event is a railway level crossing. - * - 101-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -CauseCodeType ::= INTEGER { - trafficCondition (1), - accident (2), - roadworks (3), - - impassability (5), - adverseWeatherCondition-Adhesion (6), - aquaplaning (7), - - hazardousLocation-SurfaceCondition (9), - hazardousLocation-ObstacleOnTheRoad (10), - hazardousLocation-AnimalOnTheRoad (11), - humanPresenceOnTheRoad (12), - - wrongWayDriving (14), - rescueAndRecoveryWorkInProgress (15), - - adverseWeatherCondition-ExtremeWeatherCondition (17), - adverseWeatherCondition-Visibility (18), - adverseWeatherCondition-Precipitation (19), - violence (20), - - slowVehicle (26), - dangerousEndOfQueue (27), - - vehicleBreakdown (91), - postCrash (92), - humanProblem (93), - stationaryVehicle (94), - emergencyVehicleApproaching (95), - hazardousLocation-DangerousCurve (96), - collisionRisk (97), - signalViolation (98), - dangerousSituation (99), - railwayLevelCrossing (100) -} (0..255) - -/** - * This DF represents the value of a cartesian coordinate with a range of -30,93 meters to +10,00 meters. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateSmall::= INTEGER { - negativeOutOfRange (-3094), - positiveOutOfRange (1001) -} (-3094..1001) -- this is 12 bit, tbd question: increase the range by "one bit" to make this more practical for common usage? - -/** - * This DF represents the value of a cartesian coordinate with a range of -327,67 to + 327,66 meters. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinate::= INTEGER{ - negativeOutOfRange (-32768), - positiveOutOfRange (32767) -} (-32768..32767) - -/** - * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateLarge::= INTEGER{ - negativeOutOfRange (-131072), - positiveOutOfRange (131071) -} (-131072..131071) - -/** - * This DE represents the ID of a CEN DSRC tolling zone. - * - * @category: Communication information - * @revision: V1.3.1 - */ -CenDsrcTollingZoneID::= ProtectedZoneID - -/** - * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 (for the cluster leader) . - * - * The value shall be set to `0` if the information is unavailable. - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterCardinalitySize::= INTEGER { - unavailable (0), - onlyLeader (1) -} (0..255) - -/** - * This DE represents the identifier of a cluster. - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterId ::= INTEGER(0..255) - -/** - * This DE indicates the reason why a cluster leader intends to break up the cluster. - * - * The value shall be set to: - * - 0 - `notProvided` - if the information is not provided. - * - 1 - `clusteringPurposeCompleted` - if the cluster purposes has been completed. - * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box. - * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster. - * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps. - * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. - * - 6 to 15 - reserved for future use - * - * @category: Cluster information - * @revision: Created in V2.1.1 -*/ -ClusterBreakupReason ::= ENUMERATED { - notProvided (0), - clusteringPurposeCompleted (1), - leaderMovedOutOfClusterBoundingBox (2), - joiningAnotherCluster (3), - enteringLowRiskAreaBasedOnMaps (4), - receptionOfCpmContainingCluster (5), - max(15) -} - -/** - * This DE indicates the reason why a cluster participant is leaving the cluster. - * - * The value shall be set to: - * - 0 - `notProvided ` - if the information is not provided. - * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore. - * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbounded by the leader. - * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box. - * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of adefined range. - * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster. - * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure. - * - 7 - `failedJoin` - if the participant failed to join the cluster. - * - 8 - `safetyCondition` - if a safety condition applies. - * - 9 to 15 - reserved for future use - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterLeaveReason ::= ENUMERATED { - notProvided (0), - clusterLeaderLost (1), - clusterDisbandedByLeader (2), - outOfClusterBoundingBox (3), - outOfClusterSpeedRange (4), - joiningAnotherCluster (5), - cancelledJoin (6), - failedJoin (7), - safetyCondition (8), - max(15) -} - -/** - * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of collision risk is unavailable, - * - 1 - `longitudinalCollisionRisk`- in case the type of detected collision risk is longitudinal collision risk, - * e.g. forward collision or face to face collision, - * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, - * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, - * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users - * e.g. pedestrians or bicycles, - * - 5-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -CollisionRiskSubCauseCode ::= INTEGER { - unavailable (0), - longitudinalCollisionRisk (1), - crossingCollisionRisk (2), - lateralCollisionRisk (3), - vulnerableRoadUser (4) -}(0..255) - -/** - * This DE represents a confidence level in percentage. - * - * The value shall be set to: - * - * - `0` : in case the confidence value is unknown but the reported value is valid. - * - `n (n > 0 and n < 101)` : for the confidence value in %. - * - `101` : in case the confidence value is not available. - * - * @unit Percent - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -ConfidenceLevel ::= INTEGER { - unknown (0), - unavailable (101) -} (0..101) - -/** - * This DE represents the absolute accuracy of measurement to a confidence level of 95%. - * - * The value shall be set to: - * - `n` (`n > 0` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. - * - `4094` if the accuracy information is greater than 40,93 meter. - * - `4095` if the accuracy information is not available. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CoordinateConfidence ::= INTEGER { - outOfRange (4094), - unavailable (4095) -} (0..4095) - -/** - * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. - * - * The following values are specified. - * - `-100` indicates full negative correlation - * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100. - * - `0` indicates not correlated or unavailable - * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. - * - `100` indicates full positive correlation - * - * @unit: the value is scaled by 100 - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -CorrelationRowValue ::= INTEGER { - full-negative-correlation (-100), - no-correlation (0), - full-positive-correlation (100) -} (-100..100) - -/** - * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. - * - * The value shall be set to: - * - 0 - `yawRateUsed` - if the yaw rate is used. - * - 1 - `yawRateNotUsed` - if the yaw rate is not used. - * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -CurvatureCalculationMode ::= ENUMERATED { - yawRateUsed (0), - yawRateNotUsed (1), - unavailable (2), - ... -} - -/** - * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. - * - * The value shall be set to: - * - 0 - `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. - * - 1 - `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. - * - 2 - `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. - * - 3 - `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. - * - 4 - `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. - * - 5 - `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. - * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. - * - 7 - `unavailable` if the information is not available. - * - * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by - * several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported curvature value may be valid and used by the application. - * - * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid - * and therefore cannot be trusted. Such value is not useful for the application. - * - * @category: Vehicle information - * @revision: description revised in V2.1.1 -*/ -CurvatureConfidence ::= ENUMERATED { - onePerMeter-0-00002 (0), - onePerMeter-0-0001 (1), - onePerMeter-0-0005 (2), - onePerMeter-0-002 (3), - onePerMeter-0-01 (4), - onePerMeter-0-1 (5), - outOfRange (6), - unavailable (7) -} - -/** - * This DE describes vehicle turning curve with the following information: - * ``` - * Value = 1 / Radius * 10000 - * ``` - * wherein radius is the vehicle turning curve radius in meters. - * - * Positive values indicate a turning curve to the left hand side of the driver. - * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. - * - * The value shall be set to: - * - `-1023` for values smaller than -1023. - * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1). - * - `0` when the vehicle is moving straight. - * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1). - * - `1022`, for values greater than 1021. - * - `1023`, if the information is not available. - * - * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. - * - * @unit: 1 over 10 000 metres - * @category: Vehicle information - * @revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) - */ -CurvatureValue ::= INTEGER { - outOfRangeNegative (-1023), - straight (0), - outOfRangePositive (1022), - unavailable (1023) -} (-1023..1023) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. - * - * The following value are specified: - * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, - * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, - * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, - * - 3 - `queueAroundBend` - in case the dangerous end of queue is detected around the road bend, - * - 4 - `queueInTunnel` - in case queue is detected in tunnel, - * - 5-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DangerousEndOfQueueSubCauseCode ::= INTEGER { - unavailable (0), - suddenEndOfQueue (1), - queueOverHill (2), - queueAroundBend (3), - queueInTunnel (4) -} (0..255) - -/** - * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. - * The value is assigned according to `_class_` and `_division_` definitions of dangerous goods as specified in part II, - * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. - * - * - * @category Vehicle information - * @revision: V1.3.1 - */ -DangerousGoodsBasic::= ENUMERATED { - explosives1 (0), - explosives2 (1), - explosives3 (2), - explosives4 (3), - explosives5 (4), - explosives6 (5), - flammableGases (6), - nonFlammableGases (7), - toxicGases (8), - flammableLiquids (9), - flammableSolids (10), - substancesLiableToSpontaneousCombustion (11), - substancesEmittingFlammableGasesUponContactWithWater (12), - oxidizingSubstances (13), - organicPeroxides (14), - toxicSubstances (15), - infectiousSubstances (16), - radioactiveMaterial (17), - corrosiveSubstances (18), - miscellaneousDangerousSubstances (19) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousSituation` - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, - * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, - * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, - * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, - * - 4 - `absEngaged` - in case Anti-lock braking system (ABS) is engaged, - * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, - * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, - * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, - * - 8-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DangerousSituationSubCauseCode ::= INTEGER { - unavailable (0), - emergencyElectronicBrakeEngaged (1), - preCrashSystemEngaged (2), - espEngaged (3), - absEngaged (4), - ebEngaged (5), - brakeWarningEngaged (6), - collisionRiskWarningEngaged (7) -} (0..255) - -/** - * This DE represents an offset altitude with regards to a defined altitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `-12700` for values equal to or lower than -127 metres. - * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 meter below the reference position. - * - `0` for no altitudinal offset. - * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 meter above the reference position. - * - `12799` for values equal to or greater than 127,99 metres. - * - `12800` when the information is unavailable. - * - * @unit: 0.01 metre - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaAltitude ::= INTEGER { - negativeOutOfRange (-12700), - positiveOutOfRange (12799), - unavailable (12800) -} (-12700..12800) - -/** - * This DE represents an offset latitude with regards to a defined latitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. - * - `0` for no latitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the north from the reference position. - * - `131072` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLatitude ::= INTEGER { - unavailable (131072) -} (-131071..131072) - - -/** - * This DE represents an offset latitude with regards to a defined latitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. - * - `0` for no latitudinal offset. - * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the north from the reference position. - * - `32767` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLatitudeSmall::= INTEGER { - unavailable (32767) -} (-32766..32767) - - -/** - * This DE represents an offset longitude with regards to a defined longitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. - * - `0` for no longitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the east from the reference position. - * - `131072` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLongitude ::= INTEGER { - unavailable (131072) -} (-131071..131072) - -/** - * This DE represents an offset longitude with regards to a defined longitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. - * - `0` for no longitudinal offset. - * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the east from the reference position. - * - `32767` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLongitudeSmall::= INTEGER { - unavailable (32767) -} (-32766..32767) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 0,01 s - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) - -/** - * This DE represents a difference in time with respect to a reference time. - - * Example: a time interval between two consecutive message transmissions. - * - * @unit: 1 ms - * @category: Basic information - * @revision: Created in V2.1.1 from the DE TransmissionInterval - */ -DeltaTimeMilliSecondPos ::= INTEGER (1..10000) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 1 ms - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) - -/** - * This DE represents a difference in time with respect to a reference time. - * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, - * multiply by 256 (i.e. append a `00` byte) - * - * @unit: 256 milliseconds - * @category: Basic information - * @revision: Created in V2.1.1 - */ -DeltaTimeQuarterSecond::= INTEGER (1..255) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 0,1 s - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeTenthOfSecond::= INTEGER { - unavailable (127) -} (0..127) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 1 s - * @category: Basic information - * @revision: Created in V2.1.1 from ValidityDuration -*/ -DeltaTimeSecond ::= INTEGER (0..86400) - - -/** - * This DE indicates a direction with respect to a defined reference direction. - * Example: a reference direction may be implicitly defined by the definition of a geographical zone. - * - * The value shall be set to: - * - 0 - `sameDirection` - to indicate the same direction as the reference direction. - * - 1 - `oppositeDirection` - to indicateopposite direction as the reference direction. - * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction. - * - 3 - `unavailable` - to indicate that the information is unavailable. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -Direction::= INTEGER{ - sameDirection (0), - oppositeDirection (1), - bothDirections (2), - unavailable (3) - } (0..3) - -/** - * This DE indicates in which direction something is moving. - * - * The value shall be set to: - * - 0 - `forward` - to indicate it is moving forward. - * - 1 - `backwards` - to indicate it is moving backwards. - * - 2 - `unavailable` - to indicate that the information is unavailable. - * - * @category: Kinematics information - * @revision: editorial update in V2.1.1 - */ -DriveDirection ::= ENUMERATED { - forward (0), - backward (1), - unavailable (2) -} - -/** - * This DE indicates whether a driving lane is open to traffic. - * - * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall - * correspond to the total number of the driving lanes in the carriageway. - * - * The numbering is matched to @ref LanePosition. - * The bit `0` is used to indicate the innermost lane, bit `1` is used to indicate the second lane from inside border. - * - * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. - * - * @note:Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) - -/** - * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. - * If that is the case, the value is *TRUE*, otherwise *FALSE*. - * - * @category: Vehicle information - * @revision: editorial update in V2.1.1 - */ -EmbarkationStatus ::= BOOLEAN - -/** - * This DE indicates the right of priority requested or assumed by an operating emergency vehicle. - * The right-of-priority bit shall be set to `1` if the corresponding right is requested. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way. - * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. - * - * @category: Traffic information - * @revision: description revised in V2.1.1 - */ -EmergencyPriority ::= BIT STRING { - requestForRightOfWay (0), - requestForFreeCrossingAtATrafficLight (1) -} (SIZE(2)) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event - * is unavailable, - * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, - * - 2 -`prioritizedVehicleApproaching` - in case a prioritized vehicle (e.g. bus) is approaching, - * - 3-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -EmergencyVehicleApproachingSubCauseCode ::= INTEGER { - unavailable (0), - emergencyVehicleApproaching (1), - prioritizedVehicleApproaching (2) -} (0..255) - -/** - * This DE indicated the type of energy being used and stored in vehicle. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle. - * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle. - * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle. - * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle. - * - 4 - `diesel` - when diesel is being used and stored in vehicle. - * - 5 - `gasoline` - when gasoline is being used and stored in vehicle. - * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. - * - * - Otherwise, the corresponding bit shall be set to `0`. - * - * @category: Vehicle information - * @revision: editorial revision in V2.1.1 - */ -EnergyStorageType ::= BIT STRING { - hydrogenStorage (0), - electricEnergyStorage (1), - liquidPropaneGas (2), - compressedNaturalGas (3), - diesel (4), - gasoline (5), - ammonia (6) -}(SIZE(7)) - -/** - * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } - -/** - * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} - -/** - * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} - -/** - * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} - -/** - * This DE describes the status of the exterior light switches of a vehicle. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on. - * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on. - * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on. - * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on. - * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on. - * - 5 - `reverseLightOn` - when the reverse light switch is on. - * - 6 - `fogLightOn` - when the tail fog light switch is on. - * - 7 - `parkingLightsOn` - when the parking light switch is on. - * - * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, - * either manually by the driver or automatically by a vehicle system. The bit value does not indicate - * if the corresponding lamps are alight or not. - * - * If a vehicle is not equipped with a certain light or if the light switch status information is not available, - * the corresponding bit shall be set to `0`. - * - * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not - * alternate with the blinking interval. - * - * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. - * - * @category Vehicle information - * @revision: Description revised in V2.1.1 - */ -ExteriorLights ::= BIT STRING { - lowBeamHeadlightsOn (0), - highBeamHeadlightsOn (1), - leftTurnSignalOn (2), - rightTurnSignalOn (3), - daytimeRunningLightsOn (4), - reverseLightOn (5), - fogLightOn (6), - parkingLightsOn (7) -} (SIZE(8)) - -/** - * This DE represents a timestamp based on TimestampIts modulo 65 536. - * This means that generationDeltaTime = TimestampIts mod 65 536. - * - * @category Time information - * @revision: Created in V2.1.1 based on EN 302 637-2 -*/ -GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) - -/** - * This DE indicates the current status of a hard shoulder: whether it is available for special usage - * (e.g. for stopping or for driving) or closed for all vehicles. - * - * The value shall be set to: - * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations. - * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case. - * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 - */ -HardShoulderStatus ::= ENUMERATED { - availableForStopping (0), - closed (1), - availableForDriving (2)} - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, - * - 1 - `wildAnimals` - in case wild animals are detected on the road, - * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, - * - 3 - `smallAnimals` - in case small size animal is detected on the road, - * - 4 - `largeAnimals` - in case large size animal is detected on the road, - * - 5-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - wildAnimals (1), - herdOfAnimals (2), - smallAnimals (3), - largeAnimals (4) -} (0..255) - -/** - * This DE represents the sub cause code of the @ref CauseCode `hazardousLocation-DangerousCurve`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, - * - 1 - `dangerousLeftTurnCurve` - in case the dangerous curve is a left turn curve, - * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, - * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, - * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, - * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves stating with a right turn curve, - * - 6-255 - are reserved for future usage. - * - * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass - * and vehicle speed driving on the curve. This definition is out of scope of the present document. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { - unavailable (0), - dangerousLeftTurnCurve (1), - dangerousRightTurnCurve (2), - multipleCurvesStartingWithUnknownTurningDirection (3), - multipleCurvesStartingWithLeftTurn (4), - multipleCurvesStartingWithRightTurn (5) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the detected obstacle is unavailable, - * - 1 - `shedLoad` - in case detected obstacle is large amount of obstacles (shedload), - * - 2 - `partsOfVehicles`- in case detected obstacles are parts of vehicles, - * - 3 - `partsOfTyres` - in case the detected obstacles are parts of tyres, - * - 4 - `bigObjects` - in case the detected obstacles are big objects, - * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, - * - 6 - `hubCaps` - in case the detected obstacles are hub caps, - * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles, - * - 8-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - shedLoad (1), - partsOfVehicles (2), - partsOfTyres (3), - bigObjects (4), - fallenTrees (5), - hubCaps (6), - waitingVehicles (7) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. - * -The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the road surface condition is unavailable, - * - 1 - `rockfalls` - in case rock falls are detected on the road surface, - * - 2 - `earthquakeDamage`- in case the road surface is damaged by earthquake, - * - 3 - `sewerCollapse` - in case of sewer collapse on the road surface, - * - 4 - `subsidence` - in case road surface is damaged by subsidence, - * - 5 - `snowDrifts` - in case road surface is damaged due to snow drift, - * - 6 - `stormDamage` - in case road surface is damaged by strong storm, - * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, - * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, - * - 9 - `fallingIce` - in case road surface damage is due to falling ice, - * - 10 - `fire` - in case there is fire on or near to the road surface, - * - 11-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { - unavailable (0), - rockfalls (1), - earthquakeDamage (2), - sewerCollapse (3), - subsidence (4), - snowDrifts (5), - stormDamage (6), - burstPipe (7), - volcanoEruption (8), - fallingIce (9), - fire (10) -} (0..255) - -/** - * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. - * -The value shall be set to: - * - `1` if the heading accuracy is equal to or less than 0,1 degree, - * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, - * - `125` if the heading accuracy is equal to or less than 12,5 degrees, - * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, - * - `127` if the heading accuracy information is not available. - * - * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, - * such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported heading value may be valid and used by the application. - * - * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported - * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleConfidence instead. - * - * @unit: 0,1 degree - * @category: GeoReference information - * @revision: Description revised in V2.1.1 - */ -HeadingConfidence ::= Wgs84AngleConfidence - -/** -HeadingValue - * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. - * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. - * - * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleValue instead. - * - * Unit: 0,1 degree - * Categories: GeoReference information - * @revision: Description revised in V2.1.1 (usage of value 3600 specified) -*/ -HeadingValue ::= Wgs84AngleValue - -/** - * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle - * rear to front). - * - * The value shall be set to: - * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter. - * - `99` if the height is out of range, i.e. equal to or greater than 98 cm. - * - `100` if the height information is not available. - * - * @unit 0,01 meter - * @category Vehicle information - * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) - */ -HeightLonCarr ::= INTEGER { - unavailable(100) -} (1..100) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, - * - 1 - `childrenOnRoadway` - in case children are detected on the road event, - * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, - * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road, - * - 4-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - childrenOnRoadway (1), - cyclistOnRoadway (2), - motorcyclistOnRoadway (3) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, - * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, - * - 2 - `heartProblem` - in case human problem is due to heart problem, - * - 3-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HumanProblemSubCauseCode ::= INTEGER { - unavailable (0), - glycemiaProblem (1), - heartProblem (2) -} (0..255) - -/** - * This DE is a general identifier. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -Identifier1B ::= INTEGER (0..255) - -/** - * This DE is a general identifier. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -Identifier2B ::= INTEGER (0..65535) - -/** - * This DE represents the quality level of provided information. - * - * The value shall be set to: - * - 0 - if the information is unavailable. - * - 1 - if the quality level is lowest - * - `n (n > 1 and n < 7)` if the quality level is n. - * - 7 - if the quality level is highest - * @note: Definition of quality level is out of scope of the present document. - * - * @category: Basic information - * @revision: Editorial update in V2.1.1 - */ -InformationQuality ::= INTEGER (0..7) - -/** - * This DE defines the type of an interference management zone, so that an ITS-S can - * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). - * It is an extension of the type @ref ProtectedZoneType. - - * - * The value shall be set to: - * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] - * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] - * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling - * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -InterferenceManagementZoneType ::= ENUMERATED { - permanentCenDsrcTolling (0), - temporaryCenDsrcTolling (1), - unavailable (2), - urbanRail (3), - satelliteStation (4), - fixedLinks (5), - ... -} - -/** - * This DE represents the vehicle type according to ISO 3833 [4]. - * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. - * - * The value shall be set to: - * - 0 - `passengerCar` - term No 3.1.1 - * - 1 - `saloon` - term No 3.1.1.1 (sedan) - * - 2 - `convertibleSaloon` - term No 3.1.1.2 - * - 3 - `pullmanSaloon` - term No 3.1.1.3 - * - 4 - `stationWagon` - term No 3.1.1.4 - * - 5 - `truckStationWagon` - term No 3.1.1.4.1 - * - 6 - `coupe` - term No 3.1.1.5 (coupe) - * - 7 - `convertible` - term No 3.1.1.6 (open tourer, roadstar, spider) - * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 - * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 - * - 10 - `specialPassengerCar` - term No 3.1.1.9 - * - 11 - `bus (11)` - term No 3.1.2 - * - 12 - `minibus` - term No 3.1.2.1 - * - 13 - `urbanBus` - term No 3.1.2.2 - * - 14 - `interurbanCoach` - term No 3.1.2.3 - * - 15 - `longDistanceCoach` - term No 3.1.2.4 - * - 16 - `articulatedBus` - term No 3.1.2.5 - * - 17 - `trolleyBus ` - term No 3.1.2.6 - * - 18 - `specialBus` - term No 3.1.2.7 - * - 19 - `commercialVehicle ` - term No 3.1.3 - * - 20 - `specialCommercialVehicle` - term No 3.1.3.1 - * - 21 - `specialVehicle ` - term No 3.1.4 - * - 22 - `trailingTowingVehicle ` - term No 3.1.5 (draw-bar tractor) - * - 23 - `semiTrailerTowingVehicle` - term No 3.1.6 (fifth wheel tractor) - * - 24 - `trailer` - term No 3.2.1 - * - 25 - `busTrailer` - term No 3.2.1.1 - * - 26 - `generalPurposeTrailer` - term No 3.2.1.2 - * - 27 - `caravan` - term No 3.2.1.3 - * - 28 - `specialTrailer` - term No 3.2.1.4 - * - 29 - `semiTrailer` - term No 3.2.2 - * - 30 - `busSemiTrailer ` - term No 3.2.2.1 - * - 31 - `generalPurposeSemiTrailer` - term No 3.2.2.2 - * - 32 - `specialSemiTrailer` - term No 3.2.2.3 - * - 33 - `roadTrain` - term No 3.3.1 - * - 34 - `passengerRoadTrain ` - term No 3.3.2 - * - 35 - `articulatedRoadTrain` - term No 3.3.3 - * - 36 - `doubleRoadTrain` - term No 3.3.4 - * - 37 - `compositeRoadTrain` - term No 3.3.5 - * - 38 - `specialRoadTrain` - term No 3.3.6 - * - 39 - `moped` - term No 3.4 - * - 40 - `motorCycle` - term No 3.5 - * - 41-255 - reserved for future use - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ - -Iso3833VehicleType ::= INTEGER { - passengerCar (0), - saloon (1), - convertibleSaloon (2), - pullmanSaloon (3), - stationWagon (4), - truckStationWagon (5), - coupe (6), - convertible (7), - multipurposePassengerCar (8), - forwardControlPassengerCar (9), - specialPassengerCar (10), - bus (11), - minibus (12), - urbanBus (13), - interurbanCoach (14), - longDistanceCoach (15), - articulatedBus (16), - trolleyBus (17), - specialBus (18), - commercialVehicle (19), - specialCommercialVehicle (20), - specialVehicle (21), - trailingTowingVehicle (22), - semiTrailerTowingVehicle (23), - trailer (24), - busTrailer (25), - generalPurposeTrailer (26), - caravan (27), - specialTrailer (28), - semiTrailer (29), - busSemiTrailer (30), - generalPurposeSemiTrailer (31), - specialSemiTrailer (32), - roadTrain (33), - passengerRoadTrain (34), - articulatedRoadTrain (35), - doubleRoadTrain (36), - compositeRoadTrain (37), - specialRoadTrain (38), - moped (39), - motorCycle (40) - } (0..255) - -/** - * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. - * - * For right-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road. - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane. - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction. - * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). - * - * For left-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road. - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane. - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction. - * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). - - * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. - * - * If the carriageway allows only traffic in one direction (e.g. in case of dual or multiple carriageway roads), the position is counted from the physical border of the carriageway. - * If the carriageway allows traffic in both directions and there is no physical delimitation between traffic directions (e.g. on a single carrriageway road), - * the position is counted from the legal (i.e. optical) separation between traffic directions (horizontal marking). - - * @category: Road topology information - * @revision: Description revised in V2.1.1 -*/ -LanePosition ::= INTEGER { - offTheRoad (-1), - innerHardShoulder (0), - outerHardShoulder (14) -} (-1..14) - -/** - * This DE represents the type of a lane. - * - * The value shall be set to: - * - 0 - `traffic` - Lane dedicated to the movement of vehicles. - * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning. - * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow. - * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. - * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it. - * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. - * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic. - * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. - * - 8 - `bus` - Lane dedicated to movement of buses providing public transport. - * - 9 - `taxi` - Lane dedicated to movement of taxis. - * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane. - * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. - * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths. - * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles. - * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median - separating the two directional carriageways of the highway. - * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings. - * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys. - * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes. - * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. - * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between - the road surface edge and the boundary of a road. - * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. - * - values 21 to 30 reserved for future use - * - * @category: Road topology information - * @revision: V2.1.1 -*/ -LaneType::= INTEGER{ - traffic (0), - through (1), - reversible (2), - acceleration (3), - deceleration (4), - leftHandTurning (5), - rightHandTurning (6), - dedicatedVehicle (7), - bus (8), - taxi (9), - hov (10), - hot (11), - pedestrian (12), - cycleLane (13), - median (14), - striping (15), - trackedVehicle (16), - parking (17), - emergency (18), - verge (19), - minimumRiskManoeuvre (20), - unknown (31) -}(0..31) - -/** - * This DE represents the width of a lane measured at a defined position. - * - * @unit: 0.01 meter - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -LaneWidth::= INTEGER (0..1023) - -/** - * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or - * in south hemisphere. - * - * The value shall be set to: - * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitudes south of the Equator. - * - `0` is used for the latitude of the equator. - * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitudes north of the Equator. - * - `900 000 001` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -Latitude ::= INTEGER { - unavailable(900000001) -} (-900000000..900000001) - -/** - * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - - * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation - * with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation - with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead - * - * @unit: 0.1 m/s2 - * @category Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. - */ -LateralAccelerationValue ::= AccelerationValue - -/** - * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. - * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lightBarActivated` - when the light bar is activated. - * - 1 - `sirenActivated` - when the siren is activated. - * - * Otherwise, it shall be set to 0. - * - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -LightBarSirenInUse ::= BIT STRING { - lightBarActivated (0), - sirenActivated (1) -} (SIZE(2)) - -/** - * This DE represents the absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees - * to the east or to the west of the prime meridian. - * - * The value shall be set to: - * - `n (n > -1800000000 and n < 0)`, i.e. negative values for longitudes to the west. - * - `0` to indicate the prime meridian. - * - `n (n > 0 and n < 1800000001)`, i.e. positive values for longitudes to the east. - * - `1 800 000 001` when the information is unavailable. - * - * The value -1800000000 shall not be used. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: Description revised in V2.1.1 - */ -Longitude ::= INTEGER { - valueNotUsed (-1800000000), - unavailable (1800000001) -} (-1800000000..1800000001) - - /** - * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * -* The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * This acceleration is along the tangent plane of the road surface and does not include gravity components. - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * @category: Vehicle information - * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. - */ -LongitudinalAccelerationValue::= AccelerationValue - -/** - * This DE represents the longitudinal offset of the map-matched position of a particular object along the - * matched lane, beginning from the lane's starting point. - * - * @unit 0,1 m - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -LongitudinalLanePositionValue ::= INTEGER (0..32767) - -/** - * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. - * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. - * - `102` if the data is unavailable. - * - * @unit 0,01 meter - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -LongitudinalLanePositionConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) - -/** - * This DE represents the type of facility layer message. - * - * The value shall be set to: - * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], - * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], - * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], - * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], - * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], - * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], - * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], - * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], - * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], - * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], - * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], - * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], - * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], - * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], - * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], - * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], - * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. - * - 18-255 - reserved for future usage, - * - * @category: Communication information - * @revision: Created in V2.1.1 from @ref ItsPduHeader. - */ -MessageId::= INTEGER { - denm (1), - cam (2), - poi (3), - spatem (4), - mapem (5), - ivim (6), - ev-rsr (7), - tistpgtransaction (8), - srem (9), - ssem (10), - evcsn (11), - saem (12), - rtcmem (13), - cpm (14), - imzm (15), - vam (16), - dsm (17) -} (0..255) - -/** - * This DE represents the number of occupants in a vehicle. - * - * The value shall be set to: - * - `n (n > 1 and n < 126)` for the number n of occupants. - * - `126` for values equal to or higher than 126. - * - `127` if information is not available.`. - * - * @unit: 1 person - * @category: Vehicle information - * @revision: Editorial update in V2.1.1 - */ -NumberOfOccupants ::= INTEGER { - outOfRange (126), - unavailable (127) -} (0 .. 127) - -/** - * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. - * - * The value shall be set to: - * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. - * - `n (n > 0 and n < 15)` : for the applicable confidence value. - * -`15` : if there is full confidence in the detected ObjectDescriptor. - * - * @unit n/a - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectConfidence ::= INTEGER { - noConfidence (0), - fullConfidence (15) -} (0..15) - -/** - * This DE represents a single dimension of an object. - * - * @unit 0,1 m - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimensionValue ::= INTEGER (0..1023) - -/** - * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . - * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. - * - `102` if the data is unavailable. - * - * @unit 0,01 m - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimensionConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) - -/** - * The DE indicates whether the detected object is classified as a dynamic (i.e. moving) object. - * This value indicates whether an object has the general capability to move, i.e. change its - * position. - * - * The value shall be set to: - * - `0` - dynamic - if the object is moving. - * - `1` - hasBeenDynamic - if the object has been dynamic before, e.g., a car stopping at a traffic light. - * - `2` - static - if the object has been detected to be not moving throughout any previous observation. - * - `3` - unavailable - if the information is unavailable. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDynamicStatus ::= INTEGER { - dynamic (0), - hasBeenDynamic (1), - static (2), - unavailable (3) -} (0..3) - -/** - * This DE indicates the approximate position of the reference point of measurement for the object dimensions using a 9 cell grid. - * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -ObjectRefPoint ::= INTEGER { - bottomLeft (0), - midLeft (1), - topLeft (2), - bottomMid (3), - midMid (4), - topMid (5), - bottomRight (6), - midRight (7), - topRight (8) -} (0..8) - -/** - * This DE indicates the face or part of a face of a solid object. - * - * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: - * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object. - * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object. - * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. - * - * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. - * - * @category: Basic information - * @revision: V2.1.1 -*/ -ObjectFace ::= ENUMERATED { - front (0), - sideLeftFront (1), - sideLeftBack (2), - sideRightFront (3), - sideRightBack (4), - back (5) -} - -/** - * This DE represent a lateral position with lane-level resolution on the road reservation, which is not on regular traffic lanes. - * - * The value shall be set to: - * - 0 - `unavailable` - if information on the lane position is unavailable. - * - 1 - `sidewalk` - if the position is on the side-walk. - * - 2 - `parkingLane` - if the position is on an area at the side of the road not intended for travel but for vehicular parking. - * - 3 - `bikeLane` - if the position is on an area reserved for bicycles. - * - 4-15 - reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. - * - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -OffRoadLanePosition ::= ENUMERATED { - unavailable (0), - sidewalk (1), - parkingLane (2), - bikeLane (3), - max (15) -} - -/** - * This DE represents a time period to describe the opening days and hours of a Point of Interest. - * (for example local commerce). - * - * @category: Time information - * @revision: V1.3.1 - */ -OpeningDaysHours ::= UTF8String - -/** - * The DE represents an ordinal number that indicates the position of an element in a set. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -OrdinalNumber1B ::= INTEGER(1..255) - -/** - * This DE indicates the subclass of a detected object for object class "otherSubclass". - * - * The value shall be set to: - * - `0` - unknown - if the subclass is unknown. - * - `1` - roadSideUnit - if the object is a roadside unit. - * - * @category: Sensing information - * @revision: Created in V2.1.1 - */ -OtherSubClass ::= INTEGER { - unknown (0), - roadSideUnit (1) -} (0..255) - -/** - * This DE represents the recorded or estimated travel time between a position and a predefined reference position. - * - * @unit 0.01 second - * @category GeoReference information - * @revision: same type as in V1.3.1 but now based on a basic type - */ -PathDeltaTime ::= DeltaTimeHundredthOfSecond - -/** - * This DE denotes the ability of an ITS-S to provide up-to-date information. - * A performance class value is used to describe age of data. The exact values are out of scope of the present document. - * - * The value shall be set to: - * - `0` if the performance class is unknown. - * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.6] - * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.6] - * - Values in the range `3 to 7` are reserved for future use. - * - * @category: Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PerformanceClass ::= INTEGER { - unavailable (0), - performanceClassA (1), - performanceClassB (2) -} (0..7) - -/** - * This DE represents a telephone number - * - * @category: Basic information - * @revision: V1.3.1 - */ -PhoneNumber ::= NumericString (SIZE(1..16)) - -/** - * This DE indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of - * the vehicle bounding box of the empty load vehicle. - * - * The value shall be set to: - * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 meter and 6,2 meters. - * - `62` for values equal to or higher than `6.2 metres`. - * - `63` if the information is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @unit 0,1 metre - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PosCentMass ::= INTEGER { - tenCentimeters (1), - outOfRange (62), - unavailable (63) -} (1..63) - -/** - * This DE indicates the positioning technology being used to estimate a geographical position. - * - * The value shall be set to: - * - 0 `noPositioningSolution` : no positioning solution used, - * - 1 `sGNSS` : Global Navigation Satellite System used, - * - 2 `dGNSS` : Differential GNSS used, - * - 3 `sGNSSplusDR` : GNSS and dead reckoning used, - * - 4 `dGNSSplusDR` : Differential GNSS and dead reckoning used, - * - 5 `dR` : dead reckoning used. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -PositioningSolutionType ::= ENUMERATED { - noPositioningSolution (0), - sGNSS (1), - dGNSS (2), - sGNSSplusDR (3), - dGNSSplusDR (4), - dR (5), - ... -} - -/** - * This DE indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. - * - * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear - * of the vehicle. - * The left side seat of a row refers to the left hand side seen from vehicle rear to front. - * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, - * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. - * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, - * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. - * - * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. - * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. - * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. - * Otherwise, the value of seat occupation bit shall be set according to the following conditions: - * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. - * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row - * shall be set to `1`. - * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. - * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row - * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PositionOfOccupants ::= BIT STRING { - row1LeftOccupied (0), - row1RightOccupied (1), - row1MidOccupied (2), - row1NotDetectable (3), - row1NotPresent (4), - row2LeftOccupied (5), - row2RightOccupied (6), - row2MidOccupied (7), - row2NotDetectable (8), - row2NotPresent (9), - row3LeftOccupied (10), - row3RightOccupied (11), - row3MidOccupied (12), - row3NotDetectable (13), - row3NotPresent (14), - row4LeftOccupied (15), - row4RightOccupied (16), - row4MidOccupied (17), - row4NotDetectable (18), - row4NotPresent (19) -} (SIZE(20)) - -/** - * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. - * - * The value shall be set to: - * - `n (n > 0 and n < 19) for any aplicable value between 0,1 meter and 1,9 meters. - * - `19` for values equal to or higher than 1.9 metres. - * - `20` if the information is unavailable. - * - * @category: Vehicle information - * @unit 0.1 metre - * @revision: Editorial update in V2.1.1 - */ -PosFrontAx ::= INTEGER { - outOfRange (19), - unavailable(20) -} (1..20) - -/** - * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. - * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 meter and 1,26 meters. - * - `126` for values equal to or higher than 1.26 metres. - * - `127` if the information is unavailable. - * - * @unit 0,01 metre - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PosLonCarr ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the - * middle point of the front line of the vehicle bounding box. - * - * The value shall be set to: - * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 meter and 2,9 meters. - * - `29` for values equal to or greater than 2.9 metres. - * - `30` if the information is unavailable. - * - * @unit 0,1 metre - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PosPillar ::= INTEGER { - outOfRange (29), - unavailable (30) -} (1..30) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on post crash event is unavailable, - * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, - * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, - * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, - * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle, - * - 5-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -PostCrashSubCauseCode ::= INTEGER { - unavailable (0), - accidentWithoutECallTriggered (1), - accidentWithECallManuallyTriggered (2), - accidentWithECallAutomaticallyTriggered (3), - accidentWithECallTriggeredWithoutAccessToCellularNetwork (4) -} (0..255) - -/** -* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square meter. -* -* The following values are specified: -* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0.1 mm/h and greater than (n-1) x 0.1 mm/h. -* - `2000` if the amount of rain falling is greater than 199.9 mm/h -* - `2001` if the information is not available -* -* @unit: 0.1 mm/h -* @category: Basic Information -* @revision: created in V2.1.1 -*/ -PrecipitationIntensity ::= INTEGER { - outOfRange (2000), - unavailable (2001) -} (1..2001) - -/** - * This DE represenst the indentifier of a protected communication zone. - * - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedZoneID ::= INTEGER (0.. 134217727) - -/** - * This DE represenst the radius of a protected communication zone. - * - * - * @unit: metre - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedZoneRadius ::= INTEGER (1..255,...) - -/** - * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do - * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). - * - * The protected zone type is defined in ETSI TS 102 792 [i.16]. - * - * - * @category: Communication information - * @revision: V1.3.1 - */ -ProtectedZoneType::= ENUMERATED { - permanentCenDsrcTolling (0), - ..., - temporaryCenDsrcTolling (1) -} - -/** - * This DE is used for various tasks in the public transportation environment, especially for controlling traffic - * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). - * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation - * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the - * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to - * traffic congestion. Other usage of the DE is the provision of information like the public transport line number - * or the schedule delay of a public transport vehicle. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivationData ::= OCTET STRING (SIZE(1..20)) - -/** - * This DE indicates a certain coding type of the PtActivationData data. - * - * The folowing value are specified: - * - `0` undefinedCodingType : undefined coding type, - * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.8], - * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.8]. - * - values 3 to 255 : reserved for alternative and future use. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivationType ::= INTEGER { - undefinedCodingType (0), - r09-16CodingType (1), - vdv-50149CodingType (2) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . - * - * The value shall be set to: - * - 0 `unavailable` : in case no further detailed information on the railway level crossing status is available, - * - 1 `doNotCrossAbnormalSituation` : in case when something wrong is detected by equation or sensors of the railway level crossing, - including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), - * - 2 `closed` : in case the crossing is closed (barriers down), - * - 3 `unguarded` : in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), - * - 4 `nominal` : in case the barriers are up and lights are off. - * - 5-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RailwayLevelCrossingSubCauseCode ::= INTEGER { - unavailable (0), - doNotCrossAbnormalSituation (1), - closed (2), - unguarded (3), - nominal (4) -} (0..255) - -/** - * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from - * ITS-S after receiving request from other ITS-Ss. - * - * The value shall be set to: - * - 0 `request` : for a request message. - * - 1 `response` : for a response message. - * - * @category Communication information - * @revision: Editorial update in V2.1.1 - */ -RequestResponseIndication ::= ENUMERATED { - request (0), - response (1) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` - * - * The following value are specified: - * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, - * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, - * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, - * - 3 `policeActivityOngoing` : in case police activity is ongoing, - * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, - * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, - * - 6-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { - unavailable (0), - emergencyVehicles (1), - rescueHelicopterLanding (2), - policeActivityOngoing (3), - medicalEmergencyOngoing (4), - childAbductionInProgress (5) -} (0..255) - - -/** - * This DE indicates the type of a road segment. - * - * The value shall be set to: - * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. - * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. - * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. - * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. - * - * @category: Road Topology Information - * @revision: Editorial update in V2.1.1 - */ -RoadType ::= ENUMERATED { - urban-NoStructuralSeparationToOppositeLanes (0), - urban-WithStructuralSeparationToOppositeLanes (1), - nonUrban-NoStructuralSeparationToOppositeLanes (2), - nonUrban-WithStructuralSeparationToOppositeLanes (3) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. - * -The value shall be set to: - * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, - * - 1 `majorRoadworks` : in case a major roadworks is ongoing, - * - 2 `roadMarkingWork` : in case a road marking work is ongoing, - * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, - * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, - * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, - * - 6 `winterService` : in case winter service work is ongoing, - * - 7-255 reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RoadworksSubCauseCode ::= INTEGER { - unavailable (0), - majorRoadworks (1), - roadMarkingWork (2), - slowMovingRoadMaintenance (3), - shortTermStationaryRoadworks (4), - streetCleaning (5), - winterService (6) -} (0..255) - -/** - * This DE indicates if a distance is safe - * This DE is FALSE if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} simultaneously satisfied with confidence of 90 % or more. - * Otherwise stationSafeDistanceIndication is set to TRUE. - * - * @Note: the ebbreviations 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) - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SafeDistanceIndicator::= BOOLEAN - -/** - * This DE represenst the absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a - * confidence level of 95 %. - * - * The value shall be set to: - * - `1` if the accuracy is equal to or less than 1 cm, - * - `n (n > 1 and n < 4 094)` if the accuracy is equal to or less than n cm, - * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, - * - `4 095` if the accuracy information is unavailable. - * - * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' - * can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported position coordinate value may be valid and used by the application. - * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that - * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful - * for the application. - - * @unit 0,01 meter - * @category: GeoReference Information - * @revision: Editorial update in V2.1.1 - */ -SemiAxisLength ::= INTEGER{ - outOfRange (4094), - unavailable (4095) -} (0..4095) - -/** - * This DE indicates the type of sensor. - * - * The value shall be set to: - * - `0` undefined : in case the sensor type is undefined. - * - `1` radar : in case the sensor is a radar. - * - `2` lidar : in case the sensor is a lidar. - * - `3` monovideo : in case the sensor is mono video. - * - `4` stereovision : in case the sensor is stereo vision. - * - `5` nightvision : in case the sensor is night vision. - * - `6` ultrasonic : in case the sensor is ultrasonic. - * - `7` pmd : in case the sensor is photonic mixing device. - * - `8` inductionLoop : in case the sensor is an induction loop. - * - `9` sphericalCamera : in case the sensor is a spherical camera. - * - `10` uwb : in case the sensor is ultra wide band. - * - `11` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. - * - `12` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. - * - * @category: Sensing Information - * @revision: created in V2.1.1 -*/ -SensorType ::= INTEGER { - undefined (0), - radar (1), - lidar (2), - monovideo (3), - stereovision (4), - nightvision (5), - ultrasonic (6), - pmd (7), - inductionLoop (8), - sphericalCamera (9), - uwb (10), - localAggregation (11), - itsAggregation (12) -} (0..15) - -/** - * This DE represents a sequence number. - * - * @category: Basic information - * @revision: V1.3.1 - */ -SequenceNumber ::= INTEGER (0..65535) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, - * - 1 `stopSignViolation` : in case a stop sign violation is detected, - * - 2 `trafficLightViolation` : in case a traffic light violation is detected, - * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, - * - 4-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -SignalViolationSubCauseCode ::= INTEGER { - unavailable (0), - stopSignViolation (1), - trafficLightViolation (2), - turningRegulationViolation (3) -} (0..255) - -/** - * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is - * unavailable, - * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, - * - 2 `vehiclesSlowingToLookAtAccident`: in case vehicle is temporally slowing down to look at accident, spot, etc., - * - 3 `abnormalLoad` : in case an abnormal loaded vehicle is driving slowly on the road, - * - 4 `abnormalWideLoad` : in case an abnormal wide load vehicle is driving slowly on the road, - * - 5 `convoy` : in case of slow driving convoy on the road, - * - 6 `snowplough` : in case of slow driving snow plough on the road, - * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, - * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road, - * - 9-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -SlowVehicleSubCauseCode ::= INTEGER { - unavailable (0), - maintenanceVehicle (1), - vehiclesSlowingToLookAtAccident (2), - abnormalLoad (3), - abnormalWideLoad (4), - convoy (5), - snowplough (6), - deicing (7), - saltingVehicles (8) -} (0..255) - -/** - * The DE indicates if a vehicle is carrying goods in the special transport conditions. - - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load. - * - 1 `excessWidth` : the vehicle is carrying goods in excess of width. - * - 2 `excessLength` : the vehicle is carrying goods in excess of length. - * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. - * - * Otherwise, the corresponding bit shall be set to 0. - * @category Vehicle information - * @revision: Description revised in V2.1.1 - */ -SpecialTransportType ::= BIT STRING { - heavyLoad (0), - excessWidth (1), - excessLength (2), - excessHeight (3) -} (SIZE(4)) - -/** - * This DE represents the absolute accuracy of a speed value information for a predefined confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the speed accuracy is equal to or less than n cm/s. - * - `126` if the speed accuracy is out of range, i.e. greater than 125 cm/s. - * - `127` if the speed accuracy information is not available. - * - * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported speed value may be valid and used by the application. - * - * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid - * and therefore cannot be trusted. Such is not useful for the application. - * - * @unit cm/s - * @category: Vehicle information - * @revision: Description revised in V2.1.1 - */ -SpeedConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents a speed limitation applied to a geographical position, a road section or a geographical region. - * - * @unit: km/h - * @category: Infrastructure information, Traffic information - * @revision: V1.3.1 - */ -SpeedLimit ::= INTEGER (1..255) - -/** - * This DE represents a speed value, i.e. the magnitude of the horizontal velocity-vector. - * - * The value shall be set to: - * - `0` in a standstill situation. - * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s. - * - `16382` for speed values greater than 163,81 m/s. - * - `16383` if the speed accuracy information is not available. - * - * @unit: 0,01 m/s - * @category: Kinematics information - * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) -*/ -SpeedValue ::= INTEGER { - standstill (0), - outOfRange (16382), - unavailable (16383) -} (0..16383) - -/** - * This DE represents the value of a velocity component in a defined coordinate system. - * - * The value shall be set to: - * - `-16383` if the speed is equal to or smaller than -163,83 m/s - * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s. - * - `16382` for speed values equal to or greater than 163,81 m/s. - * - `16383` if the speed accuracy information is not available. - * - * @unit: 0,01 m/s - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -SpeedValueExtended ::= INTEGER { - negativeOutOfRange (-16383), - psotiveOutOfRange (16382), - unavailable (16383) -} (-16383..16383) - - -/** - * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. - * - * The value shall be set to: - * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable". - * - `n (n > 0 and n < 50)` to indicate the actual stability level. - * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability". - * - the values between 51 and 62 are reserved for future use. - * - `63`: this value indicates that the information is unavailable. - * - * @unit: 2% - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -StabilityLossProbability ::= INTEGER { - stable (0), - totalLossOfStability (50), - unavailable (63) -} (0..63) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength12b::= INTEGER (0..4095) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m. - * - 1 `lessThan100m` : for distances below 100 m. - * - 2 `lessThan200m` : for distances below 200 m. - * - 3 `lessThan500m` : for distances below 300 m. - * - 4 `lessThan1000m` : for distances below 1000 m. - * - 5 `lessThan5km` : for distances below 5000 m. - * - 6 `lessThan10km` : for distances below 10000 m. - * - 7 `over10km` : for distances over 10000 m. - * - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -StandardLength3b ::= ENUMERATED { - lessThan50m (0), - lessThan100m (1), - lessThan200m (2), - lessThan500m (3), - lessThan1000m (4), - lessThan5km (5), - lessThan10km (6), - over10km (7) -} - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength9b::= INTEGER (0..511) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength1B::= INTEGER (0..255) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength2B::= INTEGER (0..65535) - -/** - * This DE indicates the duration in minutes since which something is stationary. - * - * The value shall be set to: - * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. - * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more 1 minute. - * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. - * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -StationarySince ::= ENUMERATED { - lessThan1Minute (0), - lessThan2Minutes (1), - lessThan15Minutes (2), - equalOrGreater15Minutes (3) -} - -/** - * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, - * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, - * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, - * - 3 `postCrash` : in case stationary vehicle is caused by collision, - * - 4 `publicTransportStop` : in case public transport vehicle is stationary at bus stop, - * - 5 `carryingDangerousGoods`: in case the stationary vehicle is carrying dangerous goods, - * - 6 `vehicleOnFire` : in case of vehicle on fire. - * - 7-255 reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -StationaryVehicleSubCauseCode ::= INTEGER { - unavailable (0), - humanProblem (1), - vehicleBreakdown (2), - postCrash (3), - publicTransportStop (4), - carryingDangerousGoods (5), - vehicleOnFire (6) -} (0..255) - -/** - * This DE represents the identifier of an ITS-S. - * The ITS-S ID may be a pseudonym. It may change over space and/or over time. - * - * @category: Basic information - * @revision: V1.3.1 - */ -StationID ::= INTEGER(0..4294967295) - -/** - * This DE represenst the type of technical context the ITS-S is integrated in. - * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. - * - * The value shall be set to: - * - 0 `unknown`: information about the ITS-S context is not provided, - * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). - * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, - * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] - class L1, L2 (VRU Profile 3) - * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] - class L3, L4, L5, L6, L7 (VRU Profile 3) - * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, - * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, - * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, - * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, - * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in - UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, - * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, - * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). - * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) - * - 14 reserved for future usage - * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, - on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), - * - 16-255> reserved for future usage. - * - * @category: Communication information. - * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) - */ -StationType ::= INTEGER { - unknown (0), - pedestrian (1), - cyclist (2), - moped (3), - motorcycle (4), - passengerCar (5), - bus (6), - lightTruck (7), - heavyTruck (8), - trailer (9), - specialVehicles (10), - tram (11), - lightVruVehicle (12), - animal (13), - roadSideUnit (15) -} (0..255) - -/** - * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, - * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, - * - `127` if the accuracy information is not available. - * - * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' - * can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. - * - * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', - * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. - * Such value is not useful for the application. - * - * @unit: 1.5 degree - * @category: Vehicle Information - * @revision: Description revised in V2.1.1 -*/ -SteeringWheelAngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the steering wheel angle of the vehicle at certain point in time. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - * The value shall be set to: - * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. - * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, - turning clockwise (i.e. to the right). - * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, - turning counter-clockwise (i.e. to the left). - * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. - * - `512` if information is not available. - * - * @unit: 1.5 degree - * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). - */ -SteeringWheelAngleValue ::= INTEGER { - negativeOutOfRange (-511), - positiveOutOfRange (511), - unavailable (512) -} (-511..512) - -/** - * This DE indicates the generic sub cause of a detected event. - * - * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 (this is the generic sub cause type) - */ -SubCauseCodeType ::= INTEGER (0..255) - -/** - * This DE indicates a temperature value. - - * The value shall be set to: - * - `-60` for temperature equal to or less than -60 degrees C. - * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C. - * - `67` for temperature equal to or greater than 67 degrees C. - * - * @unit: degrees Celsius - * @category: Basic information - * @revision: Editorial update in V2.1.1 - */ -Temperature ::= INTEGER { - equalOrSmallerThanMinus60Deg (-60), - equalOrGreaterThan67Deg(67)} (-60..67) - -/** - * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. - * The ITS epoch is `00:00:00.000 UTC, 1 January 2004`. - * "Elapsed" means that the true number of milliseconds is continuously counted without interruption, - * i.e. it is not altered by leap seconds, which occur in UTC. - * - * @note: International Atomic Time (TAI) is the time reference coordinate on the basis of the readings of atomic clocks, - * operated in accordance with the definition of the second, the unit of time of the International System of Units. - * TAI is a continuous time scale. UTC has discontinuities, as it is occasionally adjusted by leap seconds. - * As of 1 January, 2022, TimestampIts is 5 seconds ahead of UTC, because since the ITS epoch on 1 January 2004 00:00:00.000 UTC, - * further 5 leap seconds have been inserted in UTC. - * - * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, - * which includes one leap second insertion since the ITS epoch. - * @unit: millisecond - * @category: Basic information - * @revision: Description revised in in V2.1.1 - */ -TimestampIts ::= INTEGER (0..4398046511103) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, - * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, - * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, - * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, - * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, - * - 5 `trafficStationary` : in case traffic is stationary, - * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, - * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, - * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, - * - 9-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -TrafficConditionSubCauseCode ::= INTEGER { - unavailable (0), - increasedVolumeOfTraffic (1), - trafficJamSlowlyIncreasing (2), - trafficJamIncreasing (3), - trafficJamStronglyIncreasing (4), - trafficStationary (5), - trafficJamSlightlyDecreasing (6), - trafficJamDecreasing (7), - trafficJamStronglyDecreasing (8) -} (0..255) - -/** - * This DE indicates a traffic direction that is relevant to information indicated in a message. - * - * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions. - * - 1 `upstreamTraffic` : for upstream traffic. - * - 2 `downstreamTraffic` : for downstream traffic. - * - 3 `oppositeTraffic` : for traffic in the opposite direction. - * - * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. - * - * @note: Upstream traffic corresponds to the incoming traffic towards the event position, - * and downstream traffic to the departing traffic away from the event position. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 from RelevanceTrafficDirection - */ -TrafficDirection ::= ENUMERATED { - allTrafficDirections (0), - upstreamTraffic (1), - downstreamTraffic (2), - oppositeTraffic (3) -} - -/** - * This DE indicates traffic rules that apply to vehicles at a certain position. - * - * The value shall be set to: - * - `0` if overtaking is prohibited for all vehicles. - * - `1` if overtaking is prohibited for trucks. - * - `2` if vehicles should pass to the right lane. - * - `3` if vehicles should pass to the left lane. - * - * @category: Infrastructure information, Traffic information - * @revision: Editorial update in V2.1.1 - */ -TrafficRule ::= ENUMERATED { - noPassing (0), - noPassingForTrucks (1), - passToRight (2), - passToLeft (3), - ...} - -/** - * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. - * - * The value shall be set to: - * - `n (n >= 0 and n <= 50)` to indicate the actual stability level. - * - the values between 51 and 62 are reserved. - * - `63`: to indicate that the information is unavailable. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionProbability ::= INTEGER { - unavailable (63) -} (0..63) - -/** - * This DE defines the confidence level of the trajectoryInterceptionProbability. - * - * The value shall be set to: - * - `0` to indicate confidence less than 50 % - * - `1` to indicate confidence greater than or equal to 50 % and less than 70 %. - * - `2` to indicate confidence greater than or equal to 70 % and less than 90 %. - * - `3` to indicate confidence greater than or equal to 90%. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionConfidence ::= INTEGER { - lessthan50percent (0), - between50and70Percent (1), - between70and90Percent (2), - above90Percent (3) -} (0..3) - -/** - * This DE provides the turning direction. - * - * The value shall be set to: - * - `left` for turning to te left. - * - `right`for turing to the right. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TurningDirection::= ENUMERATED { - left, - right -} - -/** - * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. - * - * The value shall be set to: - * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 meter, and greater than (n-1) x 0,4 meters. - * - `254` indicates that the turning radius is greater than 253 x 0.4 metre = 101.2 metres. - * - `255` indicates that the information is unavailable. - * - * For vehicle with tracker, the turning radius applies to the vehicle only. - * - * @category: Vehicle information - * @unit 0.4 metre - * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) - */ -TurningRadius ::= INTEGER { - outOfRange (254), - unavailable (255) -} (1..255) - -/** - * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VDS ::= IA5String (SIZE(6)) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, - * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, - * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, - * - 3 `engineProblem` : in case vehicle break down is caused by an engine problem, - * - 4 `transmissionProblem` : in case vehicle break down is caused by transmission problem, - * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, - * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, - * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, - * - 8 `tyrePuncture` : in case vehicle break down is caused by tire puncture, - * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, - * - 10 `vehicleOnFire` : in case the vehicle is on fire, - * - 11-255: reserved for future usage. - * - * @category: Traffic information - - */ -VehicleBreakdownSubCauseCode ::= INTEGER { - unavailable (0), - lackOfFuel (1), - lackOfBatteryPower (2), - engineProblem (3), - transmissionProblem (4), - engineCoolingProblem (5), - brakingSystemProblem (6), - steeringProblem (7), - tyrePuncture (8), - tyrePressureProblem (9), - vehicleOnFire (10) -} (0..255) - -/** - * This DE represents the height if the vehicle, measured from the ground to the highest point, excluding any antennas. - * In case vehicles are equipped with adjustable ride heights, camper shells, and any other - * equipment which may result in varying height, the largest possible height shall be used. - * - * @unit 5 cm (DE ranges to 6.35 m) - * @revision: V1.3.1 -*/ -VehicleHeight ::= INTEGER (0..127) - -/** - * This DE provides information about the presence of a trailer. - * - * The value shall be set to: - * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in a reported vehicle length value. - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in a reported vehicle length value. - * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. - * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer - * nor the detection of trailer presence/absence is possible. - * - * @category: Vehicle information - * @revision: Description revised in V2.1.1 -*/ -VehicleLengthConfidenceIndication ::= ENUMERATED { - noTrailerPresent (0), - trailerPresentWithKnownLength (1), - trailerPresentWithUnknownLength (2), - trailerPresenceIsUnknown (3), - unavailable (4) -} - -/** - * This DE represents the length of a vehicle. - * - * The value shall be set to: - * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. - * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. - * - `1 023` to indicate that the information in unavailable. - * - * - * @unit: 0.1 metre - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). - */ -VehicleLengthValue ::= INTEGER { - outOfRange(1022), - unavailable(1023) -} (1..1023) - -/** - * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. - * - * The value shall be set to: - * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than n x 100 kg, and greater than (n-1) x 100 kg. - * - `1 023` indicates that the vehicle mass is greater than 102 200 kg. - * - `1 024` indicates the vehicle mass information is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @unit: 100kg - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). -*/ -VehicleMass ::= INTEGER { - outOfRange (1023), - unavailable(1024) -} (1..1024) - -/** - * This DE indicates the role played by a vehicle at a point in time. - * - * The value shall be set to: - * - 0 `default` : to indicate the default vehicle role as indicated by the vehicle type, - * - 1 `publicTransport` : to indicate that the vehicle is used to operate public transport service, - * - 2 `specialTransport` : to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, - * - 3 `dangerousGoods` : to indicate that the vehicle is used for dangerous goods transportation, - * - 4 `roadWork` : to indicate that the vehicle is used to realize roadwork or road maintenance mission, - * - 5 `rescue` : to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, - * - 6 `emergency` : to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, - * - 7 `safetyCar` : to indicate that the vehicle is used for public safety, e.g. patrol, - * - 8 `agriculture` : to indicate that the vehicle is used for agriculture, e.g. farm tractor, - * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, - * - 10 `military` : to indicate that the vehicle is used for military purpose, - * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, - * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service, - * - 13 `reserved` : reserved for future usage, - * - 14 `reserved` : reserved for future usage, - * - 15 `reserved` : reserved for future usage. - * - * @category: Vehicle Information - * @revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) - */ -VehicleRole ::= ENUMERATED { - default (0), - publicTransport (1), - specialTransport(2), - dangerousGoods (3), - roadWork (4), - rescue (5), - emergency (6), - safetyCar (7), - agriculture (8), - commercial (9), - military (10), - roadOperator (11), - taxi (12), - reserved1 (13), - reserved2 (14), - reserved3 (15) -} - -/** - * This DE describes the subclass of a vehicle. - * - * The value shall be set to: - * - `0` unknown : to indicate that the type of vehicle is unknown. - * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. - * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. - * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. - * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. - * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. - * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). - * - `7` tram : to indicate a vehicle running on tracks along public streets. - * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. - * - `9` agricultural : to indicate a vehicle used for agricultural purposes. - * - Values 10 to 255 are reserved for future use. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -VehicleSubClass ::= INTEGER { - unknown (0), - passengerCar (1), - bus (2), - lightTruck (3), - heavyTruck (4), - trailer (5), - specialVehicles (6), - tram (7), - emergencyVehicle (8), - agricultural (9) -} (0..255) - -/** - * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. - - * The value shall be set to: - * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. - * - `61`indicates that the vehicle width is greater than 6,0 metres. - * - `62`indicates that the information in unavailable. - * - * @unit: 0.1 metre - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). - */ -VehicleWidth ::= INTEGER { - outOfRange (61), - unavailable (62) -} (1..62) - -/** - * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @category: Vehicle information - * @unit: 0.1 m/s2 - * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. - * -*/ -VerticalAccelerationValue ::= AccelerationValue - -/** - * This DE Identifies all the VRU profile types that are believed to be within a cluster. - * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU. - * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member. - * - 2 `motorcycle` : indicates that the VRU cluster contains at least one motorcycle VRU member. - * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. - * - * Otherwise, the corresponding bit shall be set to 0. - * - * @category: VRU information - * @revision: Created in V2.1.1 -*/ -VruClusterProfiles ::= BIT STRING { - pedestrian (0), - bicyclist (1), - motorcyclist (2), - animal (3) -} (SIZE(4)) - -/** - * This DE represents the possible VRU usage conditions. - - * - The value shall be set to: - * - 0 `unavailable` : to indicate that the usage conditions are unavailable. - * - 1 `other (1)` : to indicate that the VRU is in a state not defined below. - * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device. - * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use. - * - 4 `typing (4)` : to indicate that the human is texting, entering addresses and other manual input activity. - * - 5 `calling (5)` : to indicate that the VRU device is currently received a call. - * - 6 `playingGames (6)` : to indicate that the human is playing games. - * - 7 `reading (7)` : to indicate that the human is reading on the VRU device. - * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, - * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruDeviceUsage ::= ENUMERATED { - unavailable (0), - other (1), - idle (2), - listeningToAudio (3), - typing (4), - calling (5), - playingGames (6), - reading (7), - viewing (8), - max (255) -} - -/** - * This DE represents the possible VRU environment conditions. - * - * - The value shall be set to: - * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, - * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing. - * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). - * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. - * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. - * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. - * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruEnvironment ::= ENUMERATED { - unavailable (0), - intersectionCrossing (1), - zebraCrossing (2), - sidewalk (3), - onVehicleRoad (4), - protectedGeographicArea (5), - max (255) -} - -/** - * This DE indicates the status of the possible human control over a VRU vehicle. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable. - * - 1 `braking` : to indicate that the VRU is braking. - * - 2 `hardBraking` : to indicate that the VRU is braking hard. - * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling. - * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking. - * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard. - * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. - * - value 7 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruMovementControl ::= ENUMERATED { - unavailable (0), - braking (1), - hardBraking (2), - stopPedaling (3), - brakingAndStopPedaling (4), - hardBrakingAndStopPedaling (5), - noReaction (6), - max (255) -} - -/** - * This DE indicates the profile of a pedestrian. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable. - * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies. - * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker. - * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfilePedestrian ::= ENUMERATED { - unavailable (0), - ordinary-pedestrian (1), - road-worker (2), - first-responder (3), - max (15) -} - -/** - * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable. - * - 1 `bicyclist ` : to indicate a cycle and bicyclist. - * - 2 `wheelchair-user` : to indicate a wheelchair and its user. - * - 3 `horse-and-rider` : to indicate a horse and rider. - * - 4 `rollerskater` : to indicate a rolleskater and skater. - * - 5 `e-scooter` : to indicate an e-scooter and rider. - * - 6 `personal-transporter` : to indicate a personal-transporter and rider. - * - 7 `pedelec` : to indicate a pedelec and rider. - * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. - * - value 9 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileBicyclist ::= ENUMERATED { - unavailable (0), - bicyclist (1), - wheelchair-user (2), - horse-and-rider (3), - rollerskater (4), - e-scooter (5), - personal-transporter (6), - pedelec (7), - speed-pedelec (8), - max (15) -} - -/** - * This DE indicates the profile of a motorcyclist and corresponding vehicle. - * - * The value shall be set to: - * - 0 `unavailable ` : to indicate that the information is unavailable. - * - 1 `moped (1)` : to indicate a moped and rider. - * - 2 `motorcycle` : to indicate a motorcycle and rider. - * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider. - * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. - * - value 5 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileMotorcyclist ::= ENUMERATED { - unavailable (0), - moped (1), - motorcycle (2), - motorcycle-and-sidecar-right (3), - motorcycle-and-sidecar-left (4), - max (15) -} - -/** - * This DE indicates the profile of a animal - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable. - * - 1 `wild-animal` : to indicate a animal living in the wildness. - * - 2 `farm-animal` : to indicate an animal beloning to a farm. - * - 3 `service-animal` : to indicate an animal that supports a human being. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileAnimal ::= ENUMERATED { - unavailable (0), - wild-animal (1), - farm-animal (2), - service-animal (3), - max (15) -} - -/** - * This DE indicates the approximate size of a VRU including the VRU vehicle used. - * - * The value shall be set to: - * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1. - * - 1 `low (1)` : the VRU size class is low depending on the VRU profile. - * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile. - * - 3 `high (3)` : the VRU size class is high depending on the VRU profile. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSizeClass ::= ENUMERATED { - unavailable (0), - low (1), - medium (2), - high (3), - max (15) -} - -/** - * This DE describes the status of the exterior light switches of a vehicle or a VRU. - * The DE is an extension of the existing vehicular DE ExteriorLight. - * - * The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU - * or automatically by a vehicle or VRU system: - * - 0 `unavailable` : indicates no information available. - * - 1 `backFlashLight ` : indicates the status of the back flash light. - * - 2 `helmetLight` : indicates the status of the helmet light. - * - 3 `armLight` : indicates the status of the arm light. - * - 4 `legLight` : indicates the status of the leg leight. - * - 5 `wheelLight` : indicates the status of the wheel light. - * - Bits 6 to 8 : reserved for future use. - * The bit values do not indicate if the corresponding lamps are alight or not. - * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSpecificExteriorLights ::= BIT STRING { - unavailable (0), - backFlashLight (1), - helmetLight (2), - armLight (3), - legLight (4), - wheelLight (5) -} (SIZE(8)) - -/** - * Perpendicular distance between front and rear axle of the wheel base of vehicle. - * - * The value shall be set to: - * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0.1 metres and more than (n-1) x 0.1 metres. - * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. - * - `127` indicates that the information is unavailable. - * - * @unit 0.1 metre - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -WheelBaseVehicle ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. - * The required confidence level is defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n (n >=1 and n < 126)` is equal to or less than n x 0.1 degrees and more than (n-1) x 0.1 degrees. - * - `126` if the angle accuracy is out of range, i.e. greater than 12,5 degrees. - * - `127` if the angle accuracy information is not available. - * - * - * @unit 0,1 degrees - * @category: GeoReference Information - * @revision: Created in V2.1.1 -*/ -Wgs84AngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - - -/** - * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. - * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. - * - * @unit 0,1 degrees - * @category: GeoReference Information - * @revision: Created in V2.1.1 -*/ -Wgs84AngleValue ::= INTEGER { - wgs84North (0), - wgs84East (900), - wgs84South (1800), - wgs84West (2700), - doNotUse (3600), - unavailable (3601) -} (0..3601) - -/** - * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. - * - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -WMInumber ::= IA5String (SIZE(1..3)) - -/** - * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on wrong way driving event is unavailable, - * - 1 `wrongLane` : in case vehicle is driving on a lane for which it has no authorization to use, - * - 2 `wrongDirection` : in case vehicle is driving in a direction that it is not allowed, - * - 3-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -WrongWayDrivingSubCauseCode ::= INTEGER { - unavailable (0), - wrongLane (1), - wrongDirection (2) -} (0..255) - -/** - * This DE denotes the absolute accuracy range for reported yaw rate value for a confidence level of 95%. - * - * The value shall be set to: - * - `0` indicates that the accuracy is equal to or less than 0,01 degree/second. - * - `1` indicates that the accuracy is equal to or less than 0,05 degrees/second. - * - `2` indicates that the accuracy is equal to or less than 0,1 degree/second. - * - `3` indicates that the accuracy is equal to or less than 1 degree/second. - * - `4` indicates that the accuracy is equal to or less than 5 degrees/second. - * - `5` indicates that the accuracy is equal to or less than 10 degrees/second. - * - `6` indicates that the accuracy is equal to or less than 100 degrees/second. - * - `7` indicates that the accuracy is out of range, i.e. greater than 100 degrees/second. - * - `8` indicates that the accuracy information is unavailable - * - * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by - * several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported yaw rate value may be valid and used by the application. - * - * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported - * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 - */ -YawRateConfidence ::= ENUMERATED { - degSec-000-01 (0), - degSec-000-05 (1), - degSec-000-10 (2), - degSec-001-00 (3), - degSec-005-00 (4), - degSec-010-00 (5), - degSec-100-00 (6), - outOfRange (7), - unavailable (8) -} - -/** - * This DE represents the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded - * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. The leading sign denotes the direction of rotation. - * - * The value shall be set to: - * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. - * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s. - * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s. - * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. - * - `32 767` to indicate that the information is not available. - * - * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. - * The reading instant should be the same as for the vehicle acceleration. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @unit: 0,01 degree per second. - * @category: Vehicle Information - * @revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). -*/ -YawRateValue ::= INTEGER { - negativeOutOfRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) - ----------------------------------------- --- Specification of CDD Data Frames: ----------------------------------------- - -/** - * This DF represents an acceleration component along with a confidence with a predefined confidence level of 95% for the component. - * - * It includes the following components: - * - * @field value: the acceleration value which can be estimated as the mean of the current distribution. - * - * @field value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. - * - * @category: Kinematic Information - * @revision: Created in V2.1.1 - */ -Acceleration1d ::= SEQUENCE { - value AccelerationValue, - confidence AccelerationConfidence -} - -/** - * This DF represents information associated to changes in acceleration. - * - * It includes the following components: - * - * @field accelOrDecel: the indication of an acceleration change. - * - * @field value actionDeltaTime: the period in which the acceleration change action is performed. - * - * @category: Kinematic Information - * @revision: Created in V2.1.1 - */ -AccelerationChangeIndication ::= SEQUENCE { - accelOrDecel AccelerationChange, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents an identifier used to describe a protocol action taken by an ITS-S. - * - * It includes the following components: - * - * @field originatingStationID: ID of the ITS-S that takes the action. - * - * @field sequenceNumber: a sequence number. - * - * @category: Communication information - * @revision: V1.3.1 - */ -ActionID ::= SEQUENCE { - originatingStationID StationID, - sequenceNumber SequenceNumber -} - -/** - * This DF represents a list of @ref ActionID. - - * @category: Communication Information - * @revision: Created in V2.1.1 based on ReferenceDenms -*/ -ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID - -/** - * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. - * - * It includes the following components: - * - * @field altitudeValue: altitude of a geographical point. - * - * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -Altitude ::= SEQUENCE { - altitudeValue AltitudeValue, - altitudeConfidence AltitudeConfidence -} - -/** - * This DE represents a general container for usage in various types of messages. - * - * It includes the following components: - * - * @field stationType: the type of station that has generated the message that contains the basic container. - * - * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -BasicContainer ::= SEQUENCE { - stationType StationType, - referencePosition ReferencePosition, - ... -} - -/** - * This DF represents a general Data Frame to describe an angle component along with a confidence in a cartesian coordinate system. - * - * It includes the following components: - * - * @field value: The angle value which can be estimated as the mean of the current distribution. - * - * @field confidence: The accuracy associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngle ::= SEQUENCE { - value CartesianAngleValue, - confidence AngleConfidence -} - -/** - * This DF represents a general Data Frame to describe an angular speed component along with a confidence in a cartesian coordinate system. - * - * It includes the following components: - * - * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. - * - * @field confidence: The accuracy associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngularSpeed ::= SEQUENCE { - value CartesianAngularSpeedValue, - confidence AngularSpeedConfidence -} - -/** - * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence in a cartesian coordinate system. - * - * It includes the following components: - * - * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. - * - * @field confidence: The accuracy associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngularAcceleration ::= SEQUENCE { - value CartesianAngularAccelerationValue, - confidence AngularAccelerationConfidence -} - -/** - * This DF represents a coordinate in a cartesian reference system - * - * It includes the following components: - * - * @field value: the coordinate value which can be estimated as the mean of the current distribution. - * - * @field confidence: the coordinate accuracy associated to the provided value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateWithConfidence ::= SEQUENCE { - value CartesianCoordinateLarge, - confidence CoordinateConfidence -} - -/** - * This DF represents a position in a two- or three-dimensional cartesian coordinate system. - * - * It includes the following components: - * - * @field xCoordinate: the X coordinate value. - * - * @field yCoordinate: the Y coordinate value. - * - * @field zCoordinate: the optional Z coordinate value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -CartesianPosition3d::=SEQUENCE{ - xCoordinate CartesianCoordinate, - yCoordinate CartesianCoordinate, - zCoordinate CartesianCoordinate OPTIONAL -} - -/** - * This DF is a representation of the cause code value of a traffic event. - * - * It includes the following components: - * - * @field causeCode: the main cause of a detected event. - * - * @field subCauseCode: the subordinate cause of a detected event. - * - * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may - * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. - * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. - * - * @category: Traffic information - * @revision: Editorial update in V2.1.1 - */ -CauseCode ::= SEQUENCE { - causeCode CauseCodeType, - subCauseCode SubCauseCodeType, - ... -} - -/** - * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. - * - * - * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. - * @category: Traffic information - * @revision: Editorial update in V2.1.1 - */ - -CauseCodeChoice::= CHOICE { - reserved SubCauseCodeType, - trafficCondition TrafficConditionSubCauseCode, - accident AccidentSubCauseCode, - roadworks RoadworksSubCauseCode, - reserved4 SubCauseCodeType, - impassability SubCauseCodeType, - adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, - aquaplaning SubCauseCodeType, - reserved8 SubCauseCodeType, - hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, - hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, - hazardousLocation-AnimalOnTheRoad HazardousLocation-AnimalOnTheRoadSubCauseCode, - humanPresenceOnTheRoad HumanPresenceOnTheRoadSubCauseCode, - reserved13 SubCauseCodeType, - wrongWayDriving WrongWayDrivingSubCauseCode, - rescueAndRecoveryWorkInProgress RescueAndRecoveryWorkInProgressSubCauseCode, - reserved16 SubCauseCodeType, - adverseWeatherCondition-ExtremeWeatherCondition AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, - adverseWeatherCondition-Visibility AdverseWeatherCondition-VisibilitySubCauseCode, - adverseWeatherCondition-Precipitation AdverseWeatherCondition-PrecipitationSubCauseCode, - violence SubCauseCodeType, - reserved21 SubCauseCodeType, - reserved22 SubCauseCodeType, - reserved23 SubCauseCodeType, - reserved24 SubCauseCodeType, - reserved25 SubCauseCodeType, - slowVehicle SlowVehicleSubCauseCode, - dangerousEndOfQueue DangerousEndOfQueueSubCauseCode, - reserved28 SubCauseCodeType, - reserved29 SubCauseCodeType, - reserved30 SubCauseCodeType, - reserved31 SubCauseCodeType, - reserved32 SubCauseCodeType, - reserved33 SubCauseCodeType, - reserved34 SubCauseCodeType, - reserved35 SubCauseCodeType, - reserved36 SubCauseCodeType, - reserved37 SubCauseCodeType, - reserved38 SubCauseCodeType, - reserved39 SubCauseCodeType, - reserved40 SubCauseCodeType, - reserved41 SubCauseCodeType, - reserved42 SubCauseCodeType, - reserved43 SubCauseCodeType, - reserved44 SubCauseCodeType, - reserved45 SubCauseCodeType, - reserved46 SubCauseCodeType, - reserved47 SubCauseCodeType, - reserved48 SubCauseCodeType, - reserved49 SubCauseCodeType, - reserved50 SubCauseCodeType, - reserved51 SubCauseCodeType, - reserved52 SubCauseCodeType, - reserved53 SubCauseCodeType, - reserved54 SubCauseCodeType, - reserved55 SubCauseCodeType, - reserved56 SubCauseCodeType, - reserved57 SubCauseCodeType, - reserved58 SubCauseCodeType, - reserved59 SubCauseCodeType, - reserved60 SubCauseCodeType, - reserved61 SubCauseCodeType, - reserved62 SubCauseCodeType, - reserved63 SubCauseCodeType, - reserved64 SubCauseCodeType, - reserved65 SubCauseCodeType, - reserved66 SubCauseCodeType, - reserved67 SubCauseCodeType, - reserved68 SubCauseCodeType, - reserved69 SubCauseCodeType, - reserved70 SubCauseCodeType, - reserved71 SubCauseCodeType, - reserved72 SubCauseCodeType, - reserved73 SubCauseCodeType, - reserved74 SubCauseCodeType, - reserved75 SubCauseCodeType, - reserved76 SubCauseCodeType, - reserved77 SubCauseCodeType, - reserved78 SubCauseCodeType, - reserved79 SubCauseCodeType, - reserved80 SubCauseCodeType, - reserved81 SubCauseCodeType, - reserved82 SubCauseCodeType, - reserved83 SubCauseCodeType, - reserved84 SubCauseCodeType, - reserved85 SubCauseCodeType, - reserved86 SubCauseCodeType, - reserved87 SubCauseCodeType, - reserved88 SubCauseCodeType, - reserved89 SubCauseCodeType, - reserved90 SubCauseCodeType, - vehicleBreakdown VehicleBreakdownSubCauseCode, - postCrash PostCrashSubCauseCode, - humanProblem HumanProblemSubCauseCode, - stationaryVehicle StationaryVehicleSubCauseCode, - emergencyVehicleApproaching EmergencyVehicleApproachingSubCauseCode, - hazardousLocation-DangerousCurve HazardousLocation-DangerousCurveSubCauseCode, - collisionRisk CollisionRiskSubCauseCode, - signalViolation SignalViolationSubCauseCode, - dangerousSituation DangerousSituationSubCauseCode, - railwayLevelCrossing RailwayLevelCrossingSubCauseCode, - reserved101 SubCauseCodeType, - reserved102 SubCauseCodeType, - reserved103 SubCauseCodeType, - reserved104 SubCauseCodeType, - reserved105 SubCauseCodeType, - reserved106 SubCauseCodeType, - reserved107 SubCauseCodeType, - reserved108 SubCauseCodeType, - reserved109 SubCauseCodeType, - reserved110 SubCauseCodeType, - reserved111 SubCauseCodeType, - reserved112 SubCauseCodeType, - reserved113 SubCauseCodeType, - reserved114 SubCauseCodeType, - reserved115 SubCauseCodeType, - reserved116 SubCauseCodeType, - reserved117 SubCauseCodeType, - reserved118 SubCauseCodeType, - reserved119 SubCauseCodeType, - reserved120 SubCauseCodeType, - reserved121 SubCauseCodeType, - reserved122 SubCauseCodeType, - reserved123 SubCauseCodeType, - reserved124 SubCauseCodeType, - reserved125 SubCauseCodeType, - reserved126 SubCauseCodeType, - reserved127 SubCauseCodeType, - reserved128 SubCauseCodeType - } - -/** - * This DF is an alternative representation of the cause code value of a traffic event. - * - * It includes the following components: - * - * @field ccAndScc: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. - * - * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may - * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. - * - * @category: Traffic information - * @revision: Created in V2.1.1 - */ - -CauseCodeV2 ::= SEQUENCE { - ccAndScc CauseCodeChoice, - ... -} - -/** - * The DF describes the position of a CEN DSRC road side equipment. - * - * It includes the following components: - * - * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. - * - * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. - * - * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -CenDsrcTollingZone ::= SEQUENCE { - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, - ... -} - -/** - * - * This DF represents the shape of a circular area or a right cylinder that is centred on a reference position defined outside of the context of this DF. - * - * It includes the following components: - * - * @field nodeCenterPoint: optional offset point which the rectangle is centred on with respect to the reference position. - * - * @field radius: the radius of the circular area. - * - * @field height: the optional height, present if the shape is a right cylinder extending in the positive z-axis. - * - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -CircularShape ::= SEQUENCE { - nodeCenterPoint CartesianPosition3d OPTIONAL, - radius StandardLength12b, - height StandardLength12b OPTIONAL, - ... -} - -/** - * This DF indicates the opening/closure status of a lane or a set of lanes. - * - * It includes the following components: - * - * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of inner hard shoulder lanes. - * - * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of outer hard shoulder lanes. - * - * @field drivingLaneStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of driving lanes. - * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. - * - * @category: GeoReference information, Road topology information - * @revision: V1.3.1 - */ -ClosedLanes ::= SEQUENCE { - innerhardShoulderStatus HardShoulderStatus OPTIONAL, - outerhardShoulderStatus HardShoulderStatus OPTIONAL, - drivingLaneStatus DrivingLaneStatus OPTIONAL, - ... -} - -/** - * This DF provides information about the breakup of a cluster. - * - * It includes the following components: - * - * @field clusterBreakupReason: indicates the reason for breakup. - * - * @field breakupTime: indicates the time of breakup. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterBreakupInfo ::= SEQUENCE { - clusterBreakupReason ClusterBreakupReason, - breakupTime DeltaTimeQuarterSecond, - ... -} - -/** - * This DF provides information about the joining of a cluster. - * - * It includes the following components: - * - * @field clusterId: indicates the identifier of the cluster. - * - * @field joinTime: indicates the time of joining. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterJoinInfo ::= SEQUENCE { - clusterId ClusterId, - joinTime DeltaTimeQuarterSecond, - ... -} - -/** - * The DF provides information about the leaving of a cluster. - * - * It includes the following components: - * - * @field clusterId: indicates the cluster. - * - * @field clusterLeaveReason: indicates the reason for leaving. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterLeaveInfo ::= SEQUENCE { - clusterId ClusterId, - clusterLeaveReason ClusterLeaveReason, - ... -} - -/** - * This DF represents the column of the lower triangular positive semi-definite matrix and consists of a list of correlation row values. - * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. - * Each column "i" of the lower triangular then contains k-(i-1) values, where "i" refers to the column number count - * starting at 1 from the left. - * - * @category: Sensing Information - * @revision: Created in V2.1.1 -*/ -CorrelationColumn ::= SEQUENCE SIZE (1..21) OF CorrelationRowValue - -/** - * This DF represents the curvature of the vehicle trajectory and the accuracy. - * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. - * - * It includes the following components: - * - * @field curvatureValue: Detected curvature of the vehicle trajectory. - * - * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -Curvature ::= SEQUENCE { - curvatureValue CurvatureValue, - curvatureConfidence CurvatureConfidence -} - -/** - * This DF provides a description of dangerous goods being carried by a heavy vehicle. - * - * It includes the following components: - * - * @field dangerousGoodsType: Type of dangerous goods. - * - * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in - * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], - * - * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. - * If yes, the value shall be set to TRUE, - * - * @field tunnelsRestricted: whether the heavy vehicle carrying dangerous goods is restricted to enter tunnels. - * If yes, the value shall be set to TRUE, - * - * @field limitedQuantity: whether the carried dangerous goods are packed with limited quantity. - * If yes, the value shall be set to TRUE, - * - * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency - * service should deal with an incident. This component is optional; it shall be present if the information is available, - * - * @field phoneNumber: contact phone number of assistance service in case of incident or accident. - * This component is optional, it shall be present if the information is available. - * - * @field companyName: name of company that manages the transportation of the dangerous goods. - * This component is optional; it shall be present if the information is available. - * - * @category Vehicle information - * @revision: V1.3.1 - */ -DangerousGoodsExtended ::= SEQUENCE { - dangerousGoodsType DangerousGoodsBasic, - unNumber INTEGER (0..9999), - elevatedTemperature BOOLEAN, - tunnelsRestricted BOOLEAN, - limitedQuantity BOOLEAN, - emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, - phoneNumber PhoneNumber OPTIONAL, - companyName UTF8String (SIZE (1..24)) OPTIONAL, - ... -} - -/** - * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. - * - * It includes the following components: - * - * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. - * - * @field deltaLongitude: A delta longitude offset with regards to the longitude value of the reference position. - * - * @field deltaAltitude: A delta altitude offset with regards to the altitude value of the reference position. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -DeltaReferencePosition ::= SEQUENCE { - deltaLatitude DeltaLatitude, - deltaLongitude DeltaLongitude, - deltaAltitude DeltaAltitude -} - -/** - * This DF represents a portion of digital map, described using a list of waypoints @ref ReferencePosition. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition - -/** - * - * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on a reference position which is defined outside of the context of this DF. - * - * It includes the following components: - * - * @field centerPoint: optional offset point which the ellipse is centred on with respect to the reference position. - * - * @field semiMajorAxisLength: half length of the major axis of the ellipse. - * - * @field semiMinorAxisLength: half length of the minor axis of the ellipse. - * - * @field orientation: the optional orientation of the major axis of the ellipse in the WGS84 coordinate system. - * - * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ - -EllipticalShape ::= SEQUENCE { - centerPoint CartesianPosition3d OPTIONAL, - semiMajorAxisLength StandardLength12b, - semiMinorAxisLength StandardLength12b, - orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL, - ... -} - -/** - * - * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * The following options are available: - * - * @field euVehicleCategoryL: indicates a vehicle in the L category. - * - * @field euVehicleCategoryM: indicates a vehicle in the M category. - * - * @field euVehicleCategoryN: indicates a vehicle in the N category. - * - * @field euVehicleCategoryO: indicates a vehicle in the O category. - * - * @field euVehicleCategoryT: indicates a vehicle in the T category. - * - * @field euVehicleCategoryG: indicates a vehicle in the G category. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -EuVehicleCategoryCode ::= CHOICE { - euVehicleCategoryL EuVehicleCategoryL, - euVehicleCategoryM EuVehicleCategoryM, - euVehicleCategoryN EuVehicleCategoryN, - euVehicleCategoryO EuVehicleCategoryO, - euVehicleCategoryT NULL, - euVehicleCategoryG NULL - } - -/** - * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime - * or do not contain the COMPONENT eventDeltaTime. - * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. - * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. - * - * @category: GeoReference information, Traffic information - * @revision: created in V2.1.1 based on EventHistory - */ -EventZone::= EventHistory - ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | - (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) - -/** - * The DF consists of a list of @ref EventPoint. - * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. - * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. - * - * @category: GeoReference information, Traffic information - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref EventZone instead. - * @revision: Generalized the semantics in V2.1.1 - */ -EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint - - -/** - * This DF provides information related to an event at a defined position. - * - * It includes the following components: - * - * @field eventPosition: offset position of a detected event point to a defined position. - * - * @field eventDeltaTime: optional time travelled by the detecting ITS-S since the previous detected event point. - * - * @field informationQuality: Information quality of the detection for this event point. - * - * @category: GeoReference information, Traffic information - * @revision: generalized the semantics in V2.1.1 - */ -EventPoint ::= SEQUENCE { - eventPosition DeltaReferencePosition, - eventDeltaTime PathDeltaTime OPTIONAL, - informationQuality InformationQuality -} - -/** - * This DF represents the status of the exterior light switches of a traffic participant. - * - * It includes the following components: - * - * @field vehicular: represents the status of the exterior light switches of a road vehicle. - * - * @field vruSpecific: represents the status of the exterior light switches of a VRU. - * - * @category: VRU information - * @revision: created in V2.1.1 - */ -ExteriorLightsExtended ::= SEQUENCE { - vehicular ExteriorLights, - vruSpecific VruSpecificExteriorLights, - ... -} - - -/** - * This DF indicates a transversal position in relation to the different lanes of the road. - * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where V-ITS-S would normally not be present. - * - * The following options are available: - * - * @field trafficLanePosition: a position on a traffic lane. - * - * @field nonTrafficLanePosition: a position on a lane which is not a traffic lane. - * - * @field trafficIslandPosition: a position on a traffic island - * - * @field mapPosition: a position on a lane identified in a MAPEM. - * - * @category: Road Topology information - * @revision: created in V2.1.1 - */ -GeneralizedLanePosition::= CHOICE { - trafficLanePosition LanePosition, - nonTrafficLanePosition LanePositionAndType, - trafficIslandPosition TrafficIslandPosition, - mapPosition MapPosition, - ... -} - -/** - * This DF represents the Heading in a WGS84 co-ordinates system. - * - * It includes the following components: - * - * @field headingValue: the heading value. - * - * @field headingConfidence: the accuracy of the reported heading value with a predefined confidence level. - * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84Angle instead. - * @category: Kinematics Information - * @revision: V1.3.1 - */ -Heading ::= SEQUENCE { - headingValue HeadingValue, - headingConfidence HeadingConfidence -} - - -/** - * This DF provides information associated to heading change indicators such as a change of direction. - * - * It includes the following components: - * - * @field direction: the direction of heading change value. - * - * @field actionDeltaTime: the period over which a direction change action is performed. - * - * @category: Kinematics Information - * @revision: created in V2.1.1 - */ -HeadingChangeIndication ::= SEQUENCE { - direction TurningDirection, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents a frequency channel - * - * It includes the following components: - * - * @field centreFrequency: the centre frequency of the channel - * @unit: 10exp+2 Hz (where exp is exponent) - * - * @field channelWidth: width of the channel - * @unit: 10exp Hz (where exp is exponent) - * - * @field exponent of the power of 10 - * @unit: N/A - * - * @category: Communication information - * @revision: created in V2.1.1 -*/ -InterferenceManagementChannel ::= SEQUENCE { - centreFrequency INTEGER (1 .. 99999), - channelWidth INTEGER (0 .. 9999), - exponent INTEGER (0 .. 15) -} - -/** - * - * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. - * - * It includes the following components: - * - * @field zoneDefinition: contains the geographical definition of the zone. - * - * @field managementInfo: contains interference management information applicable in the zone defined in the component zoneDefinition. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZone ::= SEQUENCE { - zoneDefinition InterferenceManagementZoneDefinition, - managementInfo InterferenceManagementInfo -} - -/** - * This DF represents the geographical definition of the zone where band sharing occurs. - * - * It includes the following components: - * - * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. - * - * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. - * - * @field interferenceManagementZoneRadius: optional radius of the interference management zone in metres. - * - * @field interferenceManagementZoneID: optional identification of the interference management zone. - * - * @field interferenceManagementZoneShape: shape of the interference management zone. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZoneDefinition::= SEQUENCE{ - interferenceManagementZoneLatitude Latitude, - interferenceManagementZoneLongitude Longitude, - interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, - interferenceManagementZoneID ProtectedZoneID OPTIONAL, - interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, - ... -} - -/** - * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. - * - * @category: Communication information. - * @revision: created in V2.1.1 - */ -InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel - - -/** - * This DF contains interference management information for one affected frequency channel. - * - * It includes the following components: - * - * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management - * - * @field interferenceManagementZoneType: type of the interference management zone. - * - * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. - * In the case where no mitigation should be applied by the ITS-S, this is indicated by the field interferenceManagementMitigationType being absent. - * - * @field expiryTime: 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 - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementInfoPerChannel ::= SEQUENCE { - interferenceManagementChannel InterferenceManagementChannel, - interferenceManagementZoneType InterferenceManagementZoneType, - interferenceManagementMitigationType MitigationForTechnologies OPTIONAL, - expiryTime TimestampIts OPTIONAL, - ... -} - -/** - * 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. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone - -/** - * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.17]. - * - * It includes the following components: - * - * @field region: 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 @ref Id is unique within the region. - * - * @field id: the identifier of the intersection - * - * @note: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique. - * @category: Road topology information - * @revision: created in V2.1.1 - */ -IntersectionReferenceId ::= SEQUENCE { - region Identifier2B OPTIONAL, - id Identifier2B -} - -/** - * This DF consists of a list of waypoints @ref ReferencePosition. - * - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition - -/** - * 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: - * - * @field protocolVersion: version of the ITS message. - * - * @field messageId: type of the ITS message. - * - * @field stationId: the identifier of the ITS-S that generates the ITS message in question. - * - * @category: Communication information - * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. - */ -ItsPduHeader ::= SEQUENCE { - protocolVersion INTEGER (0..255), - messageId MessageId, - stationId StationID -} - -/** - * This DF indicates a transversal position in resolution of lanes and the associated lane type. - * - * It includes the following components: - * - * @field transversalPosition: the transversal position. - * - * @field laneType: the type of the lane identified in the component transversalPosition. - * - * @category GeoReference information - * @revision: Created in V2.1.1 - */ -LanePositionAndType::= SEQUENCE { - transversalPosition LanePosition, - laneType LaneType, - ... -} - -/** - * This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. - * - * It includes the following components: - * - * @field lateralAccelerationValue: lateral acceleration value at a point in time. - * - * @field lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. - * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. - * @category Vehicle information - * @revision: V1.3.1 - */ -LateralAcceleration ::= SEQUENCE { - lateralAccelerationValue LateralAccelerationValue, - lateralAccelerationConfidence AccelerationConfidence -} - -/** - * This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. - * - * It includes the following components: - * - * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. - - * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined - * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. - * @category: Vehicle information - * @revision: V1.3.1 - */ -LongitudinalAcceleration ::= SEQUENCE { - longitudinalAccelerationValue LongitudinalAccelerationValue, - longitudinalAccelerationConfidence AccelerationConfidence -} - -/** - * This DF represents the estimated position along the longitudinal length of a particular lane. - * - * It includes the following components: - * - * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. - * - * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. - * - * @category: Road topology information - * @revision: created in V2.1.1 - */ -LongitudinalLanePosition ::= SEQUENCE { - longitudinalLanePositionValue LongitudinalLanePositionValue, - longitudinalLanePositionConfidence LongitudinalLanePositionConfidence -} - -/** - * 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 @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. - * - * @category: Vehicle information - * @revision: V1.3.1 -*/ -LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn - -/** - * 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: - * - * @field mapReference: optionally identifies the MAPEM containing the topology information. - * It is absent if the MAPEM topology is known from the context. - * - * @field laneId: identifies the lane in the road segment or intersection topology on which the position is located. - * - * @field connectionId: identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the - * conflict area of an intersection which connects e.g an ingress with an egress lane. - * - * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. - * - * @category: Road topology information - * @revision: Created in V2.1.1 - */ -MapPosition ::= SEQUENCE { - mapReference MapReference OPTIONAL, - laneId Identifier1B, - longitudinalLanePosition LongitudinalLanePosition OPTIONAL, - connectionId Identifier1B, - ... -} - -/** - * 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: - * - * @field roadsegment: option that identifies the description of a road segment contained in a MAPEM. - * - * @field intersection: option that identifies the description of an intersection contained in a MAPEM. - * - * @category: Road topology information - * @revision: Created in V2.1.1 - */ - -MapReference::= CHOICE { - roadsegment RoadSegmentReferenceId, - intersection IntersectionReferenceId - } - -/** - * This DF provides information about a message with respect to the segmentation process at the sender. - * - * It includes the following components: - * - * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. - * - * @field thisMsgNo: indicates the position of the message within of the total set of messages. - -*/ -MessageSegmentationInfo ::= SEQUENCE { - totalMsgNo CardinalNumber1B, - thisMsgNo OrdinalNumber1B - } - -/** - * - * This DF represents a list of @ref MitigationPerTechnologyClass. - * @category: Communication information - * @revision: Created in V2.1.1 -*/ -MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF 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: - * - * @field accessTechnologyClass: channel access technology to which this mitigation is applied. - * - * @field lowDutyCycle: duty cycle limit. - * @unit: 0.01% steps - * - * @field powerReduction: the delta value of power to be reduced. - * @unit: dB - * - * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.25]. - * @unit: ms - * - * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.26]. - * @unit: ms - * - * @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. - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -MitigationPerTechnologyClass ::= SEQUENCE { - accessTechnologyClass AccessTechnologyClass, - lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, - powerReduction INTEGER (0 .. 30) OPTIONAL, - dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, - dmcTonLimit INTEGER (0 .. 20) OPTIONAL, - ... -} - -/** - * This DF indicates both the class and associated subclass that best describes an object. - * - * The following options are available: - * - * @field vehicleSubClass: the object is a road vehicle. - * - * @field vruSubClass: the object is a VRU. - * - * @field groupSubClass: the object is a VRU group or cluster. - * - * @field otherSubClass: the object is of a different types as the above. - * - * @category: Sensing information - * @revision: Created in V2.1.1 - */ -ObjectClass ::= CHOICE { - vehicleSubClass VehicleSubClass, - vruSubClass VruProfileAndSubprofile, - groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), - otherSubClass OtherSubClass, - ... -} - -/** - * This DF consist of a list of object classes. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence - -/** - * This DF represents the classification of a detected object together with a confidence indication. - * - * It includes the following components: - * - * @field objectClass: the class of the object. - * - * @field ObjectClassConfidence: the associated confidence information. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectClassWithConfidence ::= SEQUENCE { - objectClass ObjectClass, - confidence ConfidenceLevel -} -/** - * This DF represents a dimension of an object together with a confidence indication. - * - * It includes the following components: - * - * @field ObjectDimensionValue: the object dimension value which can be estimated as the mean of the current distribution. - * - * @field ObjectDimensionValue: the associated confidence information. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimension ::= SEQUENCE { - value ObjectDimensionValue, - confidence ObjectDimensionValue -} - -/** - * This DF that represents a path with a set of path points. - * It may contain up to `40` @ref 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. - * - * @category: GeoReference information, Vehicle information - * @revision: created in V2.1.1 based on PathHistory - */ -Path::= SEQUENCE (SIZE(0..40)) OF PathPoint - -/** - * This DF that represents a path history with a set of path points. - * It may contain up to `40` @ref 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. - * - * @category: GeoReference information, Vehicle information - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead - * @revision: semantics updated in V2.1.1 - */ -PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint - -/** - * This DF that represents a predicted path with a set of path points. - * It may contain up to `15` @ref 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. - * - * @category: GeoReference information - * @revision: created in V2.1.1 based on PathHistory - */ -PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted - -/** - * This DF defines an offset waypoint position within a path. - * - * It includes the following components: - * - * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. - * - * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. - * - * @category GeoReference information - * @revision: semantics updated in V2.1.1 - */ -PathPoint ::= SEQUENCE { - pathPosition DeltaReferencePosition, - pathDeltaTime PathDeltaTime OPTIONAL -} - -/** - * This DF defines a predicted offset waypoint position within a path. - * - * It includes the following components: - * - * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. - * - * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. - * - * @field horizontalPositionConfidence: the accuracy of the horizontal geographical position. - * - * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. - * - * @field altitudeConfidence: the accuracy of the altitude value of the geographical position. - * - * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. - * - * @category GeoReference information - * @revision: semantics updated in V2.1.1 - */ - -PathPointPredicted::= SEQUENCE { - deltaLatitude DeltaLatitudeSmall, - deltaLongitude DeltaLongitudeSmall, - horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, - deltaAltitude DeltaAltitude DEFAULT unavailable, - altitudeConfidence AltitudeConfidence DEFAULT unavailable, - pathDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * 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: - * - * @field objectID: optional identifier assigned to a detected object. - * - * @field timeOfMeasurement: 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. - * - * @field xCoordinate: 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. - * - * @field yCoordinate: 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. - * - * @field zCoordinate: 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. - * - * @field velocityMagnitude: 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 - * - * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. - * - * @field xVelocity: velocity component of the detected object in x-direction at the time of measurement, with the associated variance. - * - * @field yVelocity: velocity component of the detected object in y-direction at the time of measurement, with the associated variance. - * - * @field zVelocity: optional velocity component of the detected object in z-direction at the time of measurement, with the associated variance. - * - * @field accelerationMagnitude: 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. - * - * @field accelerationDirection: polar angle of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. - * - * @field xAcceleration: optional Acceleration of the detected object in x-direction at the time of measurement, with the associated variance. - * - * @field yAcceleration: optional Acceleration of the detected object in y-direction at the time of measurement, with the associated variance. - * - * @field zAcceleration: optional Acceleration of the detected object in z-direction at the time of measurement, with the associated variance. - * - * @field rollAngle: 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. - * - * @field pitchAngle: 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. - * - * @field yawAngle: 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. - * - * @field rollSpeed: 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. - * - * @field pitchSpeed: 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. - * - * @field yawSpeed: 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. - * - * @field rollAcceleration: 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. - * - * @field pitchAcceleration: 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. - * - * @field yawAcceleration: 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. - * - * @field lowerTriangularCorrelationMatrixColumns: 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. - * - * @field planarObjectDimension1: 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. - * - * @field planarObjectDimension2: 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. - * - * @field verticalObjectDimension: optional vertical dimension of object as provided by the sensor or object model. - * - * @field objectRefPoint: 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. - * - * @field objectAge: 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. - * - * @field objectConfidence: 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. - * - * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. - * - * @field dynamicStatus: optional dynamic capabilities of a detected object. - * - * @field classification: optional classification of the described object - * - * @field matchedPosition: optional map-matched position of an object. - * - * @category Sensing information - * @revision: created in V2.1.1 - */ - -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, - ... -} - -/** - * This DF represents the shape of a polygonal area or of a right prism. - * - * It includes the following components: - * - * @field polygon: the polygonal area and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. - * - * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. - * - * @category GeoReference information - * @revision: created in V2.1.1 - * - */ -PolygonalShape ::= SEQUENCE { - polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), - height StandardLength12b OPTIONAL, - ... -} - -/** - * 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: - * - * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point - * and major axis point of the position accuracy ellipse. - * - * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point - * and minor axis point of the position accuracy ellipse. - * - * @field semiMajorOrientation: orientation direction of the ellipse major axis of the position accuracy - * ellipse with regards to the WGS84 north. - * - * - * @category GeoReference information - * @revision: V1.3.1 - */ -PosConfidenceEllipse ::= SEQUENCE { - semiMajorConfidence SemiAxisLength, - semiMinorConfidence SemiAxisLength, - semiMajorOrientation Wgs84AngleValue -} - -/** - * This DF contains a list of distances @ref 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. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar - -/** - * This DF describes a zone of protection inside which the ITSG5 communication should be restricted. - * - * It includes the following components: - * - * @field protectedZoneType: type of the protected zone. - * - * @field expiryTime: optional time at which the validity of the protected communication zone will expire. - * - * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. - * - * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. - * - * @field protectedZoneRadius: optional radius of the protected communication zone in metres. - * - * @field protectedZoneID: the optional ID of the protected communication zone. - * - * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedCommunicationZone ::= SEQUENCE { - protectedZoneType ProtectedZoneType, - expiryTime TimestampIts OPTIONAL, - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - protectedZoneRadius ProtectedZoneRadius OPTIONAL, - protectedZoneID ProtectedZoneID OPTIONAL, - ... -} - -/** - * This DF consist of a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). - * - * It may provide up to 16 protected communication zones information. - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone - -/** - * 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). - * - * @field ptActivationType: type of activation. - * - * @field ptActicationData: data of activation. - * - * 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) - * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, - * destination, priority, etc. - * - * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: - * - 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. - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivation ::= SEQUENCE { - ptActivationType PtActivationType, - ptActivationData PtActivationData -} - -/** - * This DF describes a radial shape. 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). - * - * It includes the following components: - * - * @field sensorPositionOffset: the optional offset opoint. - * - * @field range: the radial range of the sensor from the reference point or sensor point offset. - * - * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor's horizontal opening angle in positive angular direction with respect to the - * WGS84 coordinate system. - * - * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor's horizontal opening angle in positive angular direction with respect to the WGS84 coordinate - * system. - * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's - * 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. - * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's - * 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 using the DE CartesianAngleValue. - * - * @category Sensing information - * @revision: created in V2.1.1 -*/ -RadialShape ::= SEQUENCE { - offsetPoint CartesianPosition3d OPTIONAL, - range StandardLength12b, - stationaryHorizontalOpeningAngleStart Wgs84AngleValue, - stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, - verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, - ... -} - - -/** - * This DF describes a list of radial shapes. - * - * It includes the following components: - - * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). - * - * @field xCoordinate: the x-coordinate of the offset point. - * - * @field yCoordinate: the y-coordinate of the offset point. - * - * @field zCoordinate: the optional z-coordinate of the offset point. - * - * @field radialShapesList: the list of radial shape details. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ -RadialShapes ::= SEQUENCE { - refPointId Identifier1B, - xCoordinate CartesianCoordinateSmall, -- tbd: is this along the positive or the negative x axis? - yCoordinate CartesianCoordinateSmall, - zCoordinate CartesianCoordinateSmall OPTIONAL, - radialShapesList RadialShapesList, - ... -} - -/** - * The DF contains a list of @ref RadialShapeDetails. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ - -RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF 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). - * - * It includes the following components: - * - * @field range: the radial range of the sensor from the reference point or sensor point offset. - * - * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor's horizontal opening angle in positive angular direction. - * - * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor's horizontal opening angle in positive angular direction. - * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's - * 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. - * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's - * 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. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ -RadialShapeDetails ::= SEQUENCE { - range StandardLength12b, - horizontalOpeningAngleStart CartesianAngleValue, - horizontalOpeningAngleEnd CartesianAngleValue, - verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, - ... -} - -/** - * 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. - * - * It includes the following components: - * - * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. - * - * @field semiLength: represents half the length of the rectangle. - * - * @field semiBreadth: represents half the breadth of the rectangle. - * - * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. - * - * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. - * - * @category GeoReference information - * @revision: created in V2.1.1 - */ -RectangularShape ::= SEQUENCE { - centerPoint CartesianPosition3d OPTIONAL, - semiLength StandardLength12b, - semiBreadth StandardLength12b, - orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL -} - -/** - * A position within a geographic coordinate system together with a confidence indication. - * - * It includes the following components: - * - * @field latitude: the latitude of the geographical point. - * - * @field longitude: the longitude of the geographical point. - * - * @field positionConfidenceEllipse: the accuracy of the geographical position. - * - * @field altitude: the altitude and an altitude accuracy of the geographical point. - * - * @category: GeoReference information - * @revision: description updated in V2.1.1 - */ -ReferencePosition ::= SEQUENCE { - latitude Latitude, - longitude Longitude, - positionConfidenceEllipse PosConfidenceEllipse, - altitude Altitude -} - -/** - * This DF consist of a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. - * - * @category: Infrastructure information, Traffic information - * @revision: V1.3.1 - */ -RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType - -/** - * This DF represents a unique id for a road segment - * - * It includes the following components: - * - * @field region: 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 @ref Id is unique within the region. - * - * @field id: the identifier of the road segment - * - * @note: when the RoadRegulatorID is present, the RoadSegmentReferenceID is guaranteed to be globally unique. - * @category: GeoReference information - * @revision: created in V2.1.1 - */ -RoadSegmentReferenceId ::= SEQUENCE { - region Identifier2B OPTIONAL, - id Identifier2B -} - -/** - * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). - * - * It includes the following components: - * - * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. - * - * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. - * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant inidcated in the component subjectStation is safe. - * - * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed - * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 - */ -SafeDistanceIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, - safeDistanceIndicator SafeDistanceIndicator, - timeToCollision DeltaTimeTenthOfSecond OPTIONAL, - ... -} - -/** - * This DF represents a list of maximum `16` @ref CartesianPosition3d. - * - * @category: GeoReference information - * @revision: created in V2.1.1 - */ -SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d - -/** - * The DF contains a list of identifiers. - * - * @category: Basic information - * @revision: created in V2.1.1 -*/ -SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B - -/** - * The DF contains a list of DF SafeDistanceIndication. - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication - -/** - * The DF contains a list of DF TrajectoryInterceptionIndication. - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication - -/** - * This DF provides the definition of a geographical area or volume, based on different options. - * - * It includes the following components: - * - * @field rectangle: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. - * - * @field circle: definition of an area of circular shape or a right circular cylinder. - * - * @field polygon: definition of an area of polygonal shape or a right prism. - * - * @field ellipse: definition of an area of elliptical shape or a right elliptical cylinder. - * - * @field radial: definition of a radial shape. - * - * @field radialShapes: definition of list of radial shapes. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ - -Shape::= CHOICE { - rectangle RectangularShape, - circle CircularShape, - polygon PolygonalShape, - ellipse EllipticalShape, - radial RadialShape, - radialShapes RadialShapes, - ... -} - -/** - * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). - * - * It includes the following components: - * - * @field speedValue: the speed value. - * - * @field speedConfidence: the accuracy of the reported speed value. - * - * @category: Kinematics information - * @revision: V1.3.1 - */ -Speed ::= SEQUENCE { - speedValue SpeedValue, - speedConfidence SpeedConfidence -} - -/** - * This DF describes the extended speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). - * - * It includes the following components: - * - * @field speedValue: the extended speed value. - * - * @field speedConfidence: the accuracy of the reported speed value. - * - * @category: Kinematics information - * @revision: V2.1.1 - */ -SpeedExtended ::= SEQUENCE { - speedValue SpeedValueExtended, - speedConfidence SpeedConfidence -} - -/** - * This DF provides the indication of change in stability. - * - * It includes the following components: - * - * @field lossProbability: the probability of stability loss. - * - * @field actionDeltaTime: accuracy of the reported speed value. - * - * @category: Kinematics information - * @revision: V2.1.1 - */ -StabilityChangeIndication ::= SEQUENCE { - lossProbability StabilityLossProbability, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents the steering wheel angle of the vehicle at certain point in time. - * - * It includes the following components: - * - * @field steeringWheelAngleValue: steering wheel angle value. - * - * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -SteeringWheelAngle ::= SEQUENCE { - steeringWheelAngleValue SteeringWheelAngleValue, - steeringWheelAngleConfidence SteeringWheelAngleConfidence -} - -/** - * This DF represents one or more paths using @ref PathHistory. - * - * @category: GeoReference information - * @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory - */ -Traces ::= SEQUENCE SIZE(1..7) OF Path - -/** - * Ths DF represents the a position on a traffic island between two lanes. - * - * It includes the following components: - * - * @field oneSide: represents one lane. - * - * @field otherSide: represents the other lane. - * - * @category: Road Topology information - * @revision: Created in V2.1.1 - */ -TrafficIslandPosition ::= SEQUENCE { - oneSide LanePositionAndType, - otherSide LanePositionAndType, - ... -} - -/** - * This DF provides detailed information about an attached trailer. - * - * It includes the following components: - * - * @field refPointId: identifier of the reference point of the trailer. - * - * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the - * vehicle Reference Point. - * - * @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the - * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer - * is not overhanging to the front with respect to the trailer reference point. - * - * @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the - * trailer Reference Point indicated by the refPointID. - * - * @field trailerWidth: optional width of the trailer. - * - * @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x - * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of - * the segment having as end points the reference point of the trailer and the reference point of - * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane - * xy, described in the local Cartesian coordinate system of the preceding reference point. The - * angle is measured with negative values considering the trailer orientation turning clockwise - * starting from the segment direction. The angle value accuracy is provided with the - * confidence level of 95 %. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -TrailerData ::= SEQUENCE { --tbd check descriptions above - refPointId Identifier1B, - hitchPointOffset StandardLength1B, -- tbd is the value unavailable needed? - frontOverhang StandardLength1B, - rearOverhang StandardLength1B, - trailerWidth VehicleWidth, - hitchAngle CartesianAngle, - ... -} - -/** - * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. - * - * It includes the following components: - * - * @field subjectStation: indicates the subject station. - * - * @field trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory - * with the trajectory of the station indicated in the component subjectStation. - * - * @field trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory - * with the trajectory of the station indicated in the component subjectStation. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, - trajectoryInterceptionProbability TrajectoryInterceptionProbability, - trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, - ... - } - -/** - * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -VarLengthNumber::=CHOICE{ - content [0] INTEGER(0..127), -- one octet length - extension [1] Ext1 - } -Ext1::=CHOICE{ - content [0] INTEGER(128..16511), -- two octets length - extension [1] Ext2 -} -Ext2::=CHOICE{ - content [0] INTEGER(16512..2113663), -- three octets length - extension [1] Ext3 - } -Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length - -/** - * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. - * - * It includes the following components: - * - * @field verticalAccelerationValue: vertical acceleration value at a point in time. - * - * @field verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. - * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead - * @category Vehicle information - * @revision: V1.3.1 - */ -VerticalAcceleration ::= SEQUENCE { - verticalAccelerationValue VerticalAccelerationValue, - verticalAccelerationConfidence AccelerationConfidence -} - -/** - * This DF provides information related to the identification of a vehicle. - * - * It includes the following components: - * - * @field wMInumber: World Manufacturer Identifier (WMI) code. - * - * @field vDS: Vehicle Descriptor Section (VDS). - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VehicleIdentification ::= SEQUENCE { - wMInumber WMInumber OPTIONAL, - vDS VDS OPTIONAL, - ... -} - -/** - * This DF represents the length of vehicle and accuracy indication information. - * - * It includes the following components: - * - * @field vehicleLengthValue: length of vehicle. - * - * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VehicleLength ::= SEQUENCE { - vehicleLengthValue VehicleLengthValue, - vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication -} - -/** - * This DF provides information about a VRU cluster. - * - * It includes the following components: - * - * @field clusterId: optional identifier of a VRU cluster . - * - * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. - * - * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. - * - * @field clusterProfiles: identifies all the VRU profile types that are believed to be within the cluster . - * - * @category: VRU information - * @revision: Created in V2.1.1 -*/ -VruClusterInformation ::= SEQUENCE { - clusterId ClusterId OPTIONAL, - clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, - clusterCardinalitySize ClusterCardinalitySize, - clusterProfiles VruClusterProfiles, - ... -} - -/** - * This DF indicates the profile of a VRU including sub-profile information - * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.22]: - * - * @field pedestrian: VRU Profile 1 - Pedestrian. - * - * @field bicyclistAndLightVruVehicle: VRU Profile 2 - Bicyclist. - * - * @field motorcyclist: VRU Profile 3 - Motorcyclist. - * - * @field animal: VRU Profile 4 - Animals. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruProfileAndSubprofile ::= CHOICE { - pedestrian VruSubProfilePedestrian, - bicyclistAndLightVruVehicle VruSubProfileBicyclist, - motorcylist VruSubProfileMotorcyclist, - animal VruSubProfileAnimal, - ... -} - -/** - * This DF represents an angular component along with a confidence in the WGS84 coordinate system. - * - * It includes the following components: - * - * @field value: the angle value which can be estimated as the mean of the current distribution. - * - * @field confidence: the accuracy associated to the provided value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -Wgs84Angle ::= SEQUENCE { - value Wgs84AngleValue, - confidence Wgs84AngleConfidence -} - - -/** - * This DF represents a yaw rate of vehicle at a point in time. - * - * It includes the following components: - * - * @field yawRateValue: yaw rate value at a point in time. - * - * @field yawRateConfidence: accuracy of reported yaw rate value. - * - * @category: Vehicle Information - * @revision: V1.3.1 - */ -YawRate::= SEQUENCE { - yawRateValue YawRateValue, - yawRateConfidence YawRateConfidence -} - -END -- GitLab From 7a93b45b5ef2cb0e63dbfe58836e344b10876786 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Fri, 10 Jun 2022 08:26:00 +0000 Subject: [PATCH 39/91] Upload New File --- ETSI-ITS-CDD.asn | 6048 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 6048 insertions(+) create mode 100644 ETSI-ITS-CDD.asn diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn new file mode 100644 index 0000000..e27e6a7 --- /dev/null +++ b/ETSI-ITS-CDD.asn @@ -0,0 +1,6048 @@ +-- Draft CDD ASN.1 module Release 2. +-- Date: 08.06.2022 + + +ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +------------------------------------------ +-- Specification of CDD Data Elements: +------------------------------------------ + + +/** + * This DE indicates a change of acceleration. + * + * The value shall be set to: + * - 0 - `accelerate` - if the acceleration is positive. + * - 1 - `decelerate` - if the acceleration is negative. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AccelerationChange::= ENUMERATED { + accelerate (0), + decelerate (1) +} + +/** + * This DE represents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. + * - `102` if the data is unavailable. + * + * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported acceleration value may be valid and used by the application. + * + * @note: If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @unit 0,1 m/s2 + * @category: Kinematics information + * @revision: Description revised in V2.1.1 + */ +AccelerationConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. + * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle + * acceleration control system is engaged or not. Currently, this DE includes the information of the + * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise + * control system, cruise control system and speed limiter system. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `brakePedalEngaged` - Driver is stepping on the brake pedal, + * - 1 - `gasPedalEngaged` - Driver is stepping on the gas pedal, + * - 2 - `emergencyBrakeEngaged` - emergency brake system is engaged, + * - 3 - `collisionWarningEngaged`- collision warning system is engaged, + * - 4 - `accEngaged` - ACC is engaged, + * - 5 - `cruiseControlEngaged` - cruise control is engaged, + * - 6 - `speedLimiterEngaged` - speed limiter is engaged. + * + * Otherwise (for example when the corresponding system is not available due to non equipped system + * or information is unavailable), the corresponding bit shall be set to _0_. + * + * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. + * @category: Kinematics information + * @revision: V1.3.1 + */ +AccelerationControl ::= BIT STRING { + brakePedalEngaged (0), + gasPedalEngaged (1), + emergencyBrakeEngaged (2), + collisionWarningEngaged (3), + accEngaged (4), + cruiseControlEngaged (5), + speedLimiterEngaged (6) +} (SIZE(7)) + +/** + * This DE represents the value of an acceleration component in a defined coordinate system. + * + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: zero acceleration is indicated using n=0. + * @unit 0,1 m/s2 + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AccelerationValue ::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) -- tbd delete unavailable value? +} (-160 .. 161) + + +/** + * This DE indicates an access technology. + * + * The value shall be set to: + * - `0`: in case of any access technology class. + * - `1`: in case of ITS-G5 access technology class. + * - `2`: in case of LTE-V2X access technology class. + * - `3`: in case of NR-V2X access technology class. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +AccessTechnologyClass ::= ENUMERATED { + any (0), + itsg5Class (1), + ltev2xClass (2), + nrv2xClass (3), + ... +} + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case the information on the sub cause of the accident is unavailable, + * - 1 - `multiVehicleAccident` - in case more than two vehicles are involved in accident, + * - 2 - `heavyAccident` - in case the airbag of the vehicle involved in the accident is triggered, + * the accident requires important rescue and/or recovery work, + * - 3 - `accidentInvolvingLorry` - in case the accident involves a lorry, + * - 4 - `accidentInvolvingBus` - in case the accident involves a bus, + * - 5 - `accidentInvolvingHazardousMaterials`- in case the accident involves hazardous material, + * - 6 - `accidentOnOppositeLane` - in case the accident happens on opposite lanes, + * - 7 - `unsecuredAccident` - in case the accident is not secured, + * - 8 - `assistanceRequested` - in case rescue and assistance are requested, + * - 9-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AccidentSubCauseCode ::= INTEGER { + unavailable (0), + multiVehicleAccident (1), + heavyAccident (2), + accidentInvolvingLorry (3), + accidentInvolvingBus (4), + accidentInvolvingHazardousMaterials (5), + accidentOnOppositeLane (6), + unsecuredAccident (7), + assistanceRequested (8) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailabl. + * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road. + * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road. + * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road. + * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road. + * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road. + * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road. + * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road. + * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. + * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface. + * - 10 - `roadsSalted` - when the low road adhesion is due to salted road. + * - 11-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { + unavailable (0), + heavyFrostOnRoad (1), + fuelOnRoad (2), + mudOnRoad (3), + snowOnRoad (4), + iceOnRoad (5), + blackIceOnRoad (6), + oilOnRoad (7), + looseChippings (8), + instantBlackIce (9), + roadsSalted (10) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable. + * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind. + * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail. + * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane. + * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm. + * - 5 - `tornado` - in case the type of extreme weather condition is tornado. + * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. + * - 7-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { + unavailable (0), + strongWinds (1), + damagingHail (2), + hurricane (3), + thunderstorm (4), + tornado (5), + blizzard (6) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. + * + * The value shall be set to: + * - 0 - `unavailable` : in case information on the type of precipitation is unavailable. + * - 1 - `heavyRain` : in case the type of precipitation is heavy rain. + * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall. + * - 3 - `softHail` : in case the type of precipitation is soft hail. + * - 4-255 : are reserved for future usage + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { + unavailable (0), + heavyRain (1), + heavySnowfall (2), + softHail (3) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable. + * - 1 - `fog` - in case the cause of low visibility is fog. + * - 2 - `smoke` - in case the cause of low visibility is smoke. + * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall. + * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain. + * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail. + * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare. + * - 7 - `sandstorms` - in case the cause of low visibility is sand storm. + * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. + * - 9-255 - are reserved for future usage + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { + unavailable (0), + fog (1), + smoke (2), + heavySnowfall (3), + heavyRain (4), + heavyHail (5), + lowSunGlare (6), + sandstorms (7), + swarmsOfInsects (8) +} (0..255) + +/** + * This DE represents the air humidity in tens of percent. + * + * The value shall be set to: + * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0.1 percent and greater than (n-1) x 0.1 percent. + * - `1001` indicates that the air humidity is unavailable. + * + * @category: Basic information + * @unit: 0,1 % + * @revision: created in V2.1.1 + */ +AirHumidity ::= INTEGER { + oneHundredPercent (1000), + unavailable (1001) +} (1..1001) + +/** + * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. + * + * The value shall be set to: + * - 0 - `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. + * - 1 - `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. + * - 2 - `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. + * - 3 - `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. + * - 4 - `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. + * - 5 - `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. + * - 6 - `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. + * - 7 - `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. + * - 8 - `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. + * - 9 - `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. + * - 10 - `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. + * - 11 - `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. + * - 12 - `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. + * - 13 - `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. + * - 14 - `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. + * - 15 - `unavailable` if the altitude accuracy information is unavailable + * + * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused + * by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported altitude value may be valid and used by the application. + * + * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported + * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +AltitudeConfidence ::= ENUMERATED { + alt-000-01 (0), + alt-000-02 (1), + alt-000-05 (2), + alt-000-10 (3), + alt-000-20 (4), + alt-000-50 (5), + alt-001-00 (6), + alt-002-00 (7), + alt-005-00 (8), + alt-010-00 (9), + alt-020-00 (10), + alt-050-00 (11), + alt-100-00 (12), + alt-200-00 (13), + outOfRange (14), + unavailable (15) +} + +/** + * This DE represents the altitude value in a WGS84 co-ordinate system. + * + * The value shall be set to: + * - `-100 000` if the altitude is equal to or less than -1 000 m. + * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0.01 meters and greater than (n-1) x 0,01 meters. + * - `800 000` if the altitude greater than 7 999 m. + * - `800 001` if the information is not available. + * + * @unit: 0.01 meter + * @category: GeoReference information + * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) + */ +AltitudeValue ::= INTEGER { + negativeOutOFRange (-100000), + postiveOutOfRange (800000), + unavailable (800001) +} (-100000..800001) + +/** + * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. + * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. + * - `127` if the accuracy information is not available. + * + * @unit: 0,1 degrees + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. + * For correlation computation, maximum interval levels can be assumed. + * + * The value shall be set to: + * - 0 - `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second + * - 1 - `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second + * - 2 - `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second + * - 3 - `degSec-001-00` if the accuracy is equal to or less than 1 degree/second + * - 4 - `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second + * - 5 - `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second + * - 6 - `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second + * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second + * - 8 - `unavailable` if the accuracy information is unavailable + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngularSpeedConfidence ::= ENUMERATED { + degSec-000-01 (0), + degSec-000-05 (1), + degSec-000-10 (2), + degSec-001-00 (3), + degSec-005-00 (4), + degSec-010-00 (5), + degSec-100-00 (6), + outOfRange (7), + unavailable (8) +} + +/** + * Tis DE represents the absolute accuracy of a reported angular acceleration value for a confidence level of 95%. + * For correlation computation, maximum interval levels shall be assumed. + * + * The value shall be set to: + * - 0 - `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second2 + * - 1 - `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second2 + * - 2 - `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second2 + * - 3 - `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second2 + * - 4 - `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second2 + * - 5 - `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second2 + * - 6 - `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second2 + * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second2 + * - 8 - `unavailable` if the accuracy information is unavailable + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngularAccelerationConfidence ::= ENUMERATED { + degSecSquared-000-01 (0), + degSecSquared-000-05 (1), + degSecSquared-000-10 (2), + degSecSquared-001-00 (3), + degSecSquared-005-00 (4), + degSecSquared-010-00 (5), + degSecSquared-100-00 (6), + outOfRange (7), + unavailable (8) +} + +/** + * This DE indicates the number of axels of a passing train. + * + * The following values are specified: + * - `n(n > 2 and n < 1001)` indicates that the train has n x axels. + * - `1001`indicates that the number of axels is out of range. + * - `1002` the information is unavailable. + * + * + * @unit: Number of axels + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +AxlesCount ::= INTEGER{ + outOfRange (1001), + unavailable (1002) +} (2..1002) + +/** + * This DE represent the measured uncompesated atmospheric pressure in units of hPascal (hPa). + * + * The following values are specified: + * - `2999` indicates that the applicable value is less than 299.9 hPa. + * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 0.1 hPa and greater than (n-1) x 0.1 hPa. + * - `12001` indicates that the values is greater than 1200 hPa. + * - `12002` indicates that the information is not available. + * + * @category: Basic information + * @unit: 0.1 hPa + * @revision: Created in V2.1.1 +*/ +BarometricPressure ::= INTEGER{ + outOfRangelower (2999), + outOfRangeUpper (12001), + unavailable (12002) +} (2999..12002) + + +/** + * This DE indicates the cardinal number of bogies of a train. + * +* The value shall be set to: + * - `n (n > 1 and n < 100)` indicates that the train has n x bogie + * - `100`indicates that the number of bogie is out of range. + * - `101` the information is unavailable. + * + * @unit: Number of bogies + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +BogiesCount ::= INTEGER{ + outOfRange (100), + unavailable (101) +} (2..101) + +/** + * The DE represents a cardinal number that counts the size of a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CardinalNumber1B ::= INTEGER(1..255) + +/** + * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. + * - `36001` if the accuracy information is not available. + * + * The value 3600 shall not be used. + * + * @unit 0,1 degrees + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngleValue ::= INTEGER { + valueNotUsed (3600), + unavailable (3601) +} (0..3601) + +/** + * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `-32766` if the speed is equal to or less than 327,66 degrees/s. + * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s. + * - `32766` if the speed is greater than 327,65 degrees/s. + * - `32767` if the information is unavailable. + * + * @unit 0,01 degrees/s + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngularSpeedValue ::= INTEGER { + negativeOutofRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +/** + * This DE represents an angular acceleration value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `-32766` if the acceleration is equal to or less than 327,66 degrees/s2 + * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than n x 0,01 degrees/s2, + and greater than `(n-1)` x 0,01 degrees/s2. + * - `32766` if the acceleration is greater than 327,65 degrees/s2 + * - `32767` if the information is unavailable + * + * @unit 0,01 degrees/s2 (degrees per second squared) + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngularAccelerationValue ::= INTEGER { + negativeOutofRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +/** + *The DE represents the value of the cause code of an event. + * + * The value shall be set to: + * - 0 - - reserved for future use, + * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, + * - 2 - `accident` - in case the type of event is a road accident, + * - 3 - `roadworks` - in case the type of event is roadwork, + * - 4 - reserved for future usage, + * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any + * blocking of a road, partial or total, which has not been adequately + * secured and signposted, + * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, + * - 7 - `aquaplaning` - danger of aquaplaning on the road, + * - 8 - reserved for future usage, + * - 9 - `hazardousLocation-SurfaceCondition` - in case the type of event is abnormal road surface condition, + * - 10 - `hazardousLocation-ObstacleOnTheRoad` - in case the type of event is obstacle on the road, + * - 11 - `hazardousLocation-AnimalOnTheRoad` - in case the type of event is animal on the road, + * - 12 - `humanPresenceOnTheRoad` - in case the type of event is human presence on the road, + * - 13 - reserved for future usage, + * - 14 - `wrongWayDriving` - in case the type of the event is vehicle driving in wrong way, + * - 15 - `rescueAndRecoveryWorkInProgress` - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, + * - 16 - reserved for future usage, + * - 17 - `adverseWeatherCondition-ExtremeWeatherCondition`- in case the type of event is extreme weather condition, + * - 18 - `adverseWeatherCondition-Visibility` - in case the type of event is low visibility, + * - 19 - `adverseWeatherCondition-Precipitation` - in case the type of event is precipitation, + * - 20 - `violence` - in case the the type of event is human violence on or near the road, + * - 21-25 - reserved for future usage, + * - 26 - `slowVehicle` - in case the type of event is slow vehicle driving on the road, + * - 27 - `dangerousEndOfQueue` - in case the type of event is dangerous end of vehicle queue, + * - 28-90 - are reserved for future usage, + * - 91 - `vehicleBreakdown` - in case the type of event is break down vehicle on the road, + * - 92 - `postCrash` - in case the type of event is a detected crash, + * - 93 - `humanProblem` - in case the type of event is human health problem in vehicles involved in traffic, + * - 94 - `stationaryVehicle` - in case the type of event is stationary vehicle, + * - 95 - `emergencyVehicleApproaching` - in case the type of event is approaching vehicle operating emergency mission, + * - 96 - `hazardousLocation-DangerousCurve` - in case the type of event is dangerous curve, + * - 97 - `collisionRisk` - in case the type of event is a collision risk, + * - 98 - `signalViolation` - in case the type of event is signal violation, + * - 99 - `dangerousSituation` - in case the type of event is dangerous situation in which autonomous safety system in vehicle + * is activated, + * - 100 - `railwayLevelCrossing` - in case the type of event is a railway level crossing. + * - 101-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +CauseCodeType ::= INTEGER { + trafficCondition (1), + accident (2), + roadworks (3), + + impassability (5), + adverseWeatherCondition-Adhesion (6), + aquaplaning (7), + + hazardousLocation-SurfaceCondition (9), + hazardousLocation-ObstacleOnTheRoad (10), + hazardousLocation-AnimalOnTheRoad (11), + humanPresenceOnTheRoad (12), + + wrongWayDriving (14), + rescueAndRecoveryWorkInProgress (15), + + adverseWeatherCondition-ExtremeWeatherCondition (17), + adverseWeatherCondition-Visibility (18), + adverseWeatherCondition-Precipitation (19), + violence (20), + + slowVehicle (26), + dangerousEndOfQueue (27), + + vehicleBreakdown (91), + postCrash (92), + humanProblem (93), + stationaryVehicle (94), + emergencyVehicleApproaching (95), + hazardousLocation-DangerousCurve (96), + collisionRisk (97), + signalViolation (98), + dangerousSituation (99), + railwayLevelCrossing (100) +} (0..255) + +/** + * This DF represents the value of a cartesian coordinate with a range of -30,93 meters to +10,00 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateSmall::= INTEGER { + negativeOutOfRange (-3094), + positiveOutOfRange (1001) +} (-3094..1001) -- this is 12 bit, tbd question: increase the range by "one bit" to make this more practical for common usage? + +/** + * This DF represents the value of a cartesian coordinate with a range of -327,67 to + 327,66 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinate::= INTEGER{ + negativeOutOfRange (-32768), + positiveOutOfRange (32767) +} (-32768..32767) + +/** + * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateLarge::= INTEGER{ + negativeOutOfRange (-131072), + positiveOutOfRange (131071) +} (-131072..131071) + +/** + * This DE represents the ID of a CEN DSRC tolling zone. + * + * @category: Communication information + * @revision: V1.3.1 + */ +CenDsrcTollingZoneID::= ProtectedZoneID + +/** + * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 (for the cluster leader) . + * + * The value shall be set to `0` if the information is unavailable. + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterCardinalitySize::= INTEGER { + unavailable (0), + onlyLeader (1) +} (0..255) + +/** + * This DE represents the identifier of a cluster. + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterId ::= INTEGER(0..255) + +/** + * This DE indicates the reason why a cluster leader intends to break up the cluster. + * + * The value shall be set to: + * - 0 - `notProvided` - if the information is not provided. + * - 1 - `clusteringPurposeCompleted` - if the cluster purposes has been completed. + * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box. + * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster. + * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps. + * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. + * - 6 to 15 - reserved for future use + * + * @category: Cluster information + * @revision: Created in V2.1.1 +*/ +ClusterBreakupReason ::= ENUMERATED { + notProvided (0), + clusteringPurposeCompleted (1), + leaderMovedOutOfClusterBoundingBox (2), + joiningAnotherCluster (3), + enteringLowRiskAreaBasedOnMaps (4), + receptionOfCpmContainingCluster (5), + max(15) +} + +/** + * This DE indicates the reason why a cluster participant is leaving the cluster. + * + * The value shall be set to: + * - 0 - `notProvided ` - if the information is not provided. + * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore. + * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbounded by the leader. + * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box. + * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of adefined range. + * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster. + * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure. + * - 7 - `failedJoin` - if the participant failed to join the cluster. + * - 8 - `safetyCondition` - if a safety condition applies. + * - 9 to 15 - reserved for future use + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterLeaveReason ::= ENUMERATED { + notProvided (0), + clusterLeaderLost (1), + clusterDisbandedByLeader (2), + outOfClusterBoundingBox (3), + outOfClusterSpeedRange (4), + joiningAnotherCluster (5), + cancelledJoin (6), + failedJoin (7), + safetyCondition (8), + max(15) +} + +/** + * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of collision risk is unavailable, + * - 1 - `longitudinalCollisionRisk`- in case the type of detected collision risk is longitudinal collision risk, + * e.g. forward collision or face to face collision, + * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, + * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, + * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users + * e.g. pedestrians or bicycles, + * - 5-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +CollisionRiskSubCauseCode ::= INTEGER { + unavailable (0), + longitudinalCollisionRisk (1), + crossingCollisionRisk (2), + lateralCollisionRisk (3), + vulnerableRoadUser (4) +}(0..255) + +/** + * This DE represents a confidence level in percentage. + * + * The value shall be set to: + * + * - `0` : in case the confidence value is unknown but the reported value is valid. + * - `n (n > 0 and n < 101)` : for the confidence value in %. + * - `101` : in case the confidence value is not available. + * + * @unit Percent + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +ConfidenceLevel ::= INTEGER { + unknown (0), + unavailable (101) +} (0..101) + +/** + * This DE represents the absolute accuracy of measurement to a confidence level of 95%. + * + * The value shall be set to: + * - `n` (`n > 0` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. + * - `4094` if the accuracy information is greater than 40,93 meter. + * - `4095` if the accuracy information is not available. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CoordinateConfidence ::= INTEGER { + outOfRange (4094), + unavailable (4095) +} (0..4095) + +/** + * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. + * + * The following values are specified. + * - `-100` indicates full negative correlation + * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100. + * - `0` indicates not correlated or unavailable + * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. + * - `100` indicates full positive correlation + * + * @unit: the value is scaled by 100 + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +CorrelationRowValue ::= INTEGER { + full-negative-correlation (-100), + no-correlation (0), + full-positive-correlation (100) +} (-100..100) + +/** + * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. + * + * The value shall be set to: + * - 0 - `yawRateUsed` - if the yaw rate is used. + * - 1 - `yawRateNotUsed` - if the yaw rate is not used. + * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +CurvatureCalculationMode ::= ENUMERATED { + yawRateUsed (0), + yawRateNotUsed (1), + unavailable (2), + ... +} + +/** + * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. + * + * The value shall be set to: + * - 0 - `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. + * - 1 - `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. + * - 2 - `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. + * - 3 - `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. + * - 4 - `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. + * - 5 - `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. + * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. + * - 7 - `unavailable` if the information is not available. + * + * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported curvature value may be valid and used by the application. + * + * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid + * and therefore cannot be trusted. Such value is not useful for the application. + * + * @category: Vehicle information + * @revision: description revised in V2.1.1 +*/ +CurvatureConfidence ::= ENUMERATED { + onePerMeter-0-00002 (0), + onePerMeter-0-0001 (1), + onePerMeter-0-0005 (2), + onePerMeter-0-002 (3), + onePerMeter-0-01 (4), + onePerMeter-0-1 (5), + outOfRange (6), + unavailable (7) +} + +/** + * This DE describes vehicle turning curve with the following information: + * ``` + * Value = 1 / Radius * 10000 + * ``` + * wherein radius is the vehicle turning curve radius in meters. + * + * Positive values indicate a turning curve to the left hand side of the driver. + * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. + * + * The value shall be set to: + * - `-1023` for values smaller than -1023. + * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1). + * - `0` when the vehicle is moving straight. + * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1). + * - `1022`, for values greater than 1021. + * - `1023`, if the information is not available. + * + * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. + * + * @unit: 1 over 10 000 metres + * @category: Vehicle information + * @revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) + */ +CurvatureValue ::= INTEGER { + outOfRangeNegative (-1023), + straight (0), + outOfRangePositive (1022), + unavailable (1023) +} (-1023..1023) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. + * + * The following value are specified: + * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, + * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, + * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, + * - 3 - `queueAroundBend` - in case the dangerous end of queue is detected around the road bend, + * - 4 - `queueInTunnel` - in case queue is detected in tunnel, + * - 5-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DangerousEndOfQueueSubCauseCode ::= INTEGER { + unavailable (0), + suddenEndOfQueue (1), + queueOverHill (2), + queueAroundBend (3), + queueInTunnel (4) +} (0..255) + +/** + * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. + * The value is assigned according to `_class_` and `_division_` definitions of dangerous goods as specified in part II, + * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. + * + * + * @category Vehicle information + * @revision: V1.3.1 + */ +DangerousGoodsBasic::= ENUMERATED { + explosives1 (0), + explosives2 (1), + explosives3 (2), + explosives4 (3), + explosives5 (4), + explosives6 (5), + flammableGases (6), + nonFlammableGases (7), + toxicGases (8), + flammableLiquids (9), + flammableSolids (10), + substancesLiableToSpontaneousCombustion (11), + substancesEmittingFlammableGasesUponContactWithWater (12), + oxidizingSubstances (13), + organicPeroxides (14), + toxicSubstances (15), + infectiousSubstances (16), + radioactiveMaterial (17), + corrosiveSubstances (18), + miscellaneousDangerousSubstances (19) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousSituation` + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, + * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, + * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, + * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, + * - 4 - `absEngaged` - in case Anti-lock braking system (ABS) is engaged, + * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, + * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, + * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, + * - 8-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DangerousSituationSubCauseCode ::= INTEGER { + unavailable (0), + emergencyElectronicBrakeEngaged (1), + preCrashSystemEngaged (2), + espEngaged (3), + absEngaged (4), + ebEngaged (5), + brakeWarningEngaged (6), + collisionRiskWarningEngaged (7) +} (0..255) + +/** + * This DE represents an offset altitude with regards to a defined altitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `-12700` for values equal to or lower than -127 metres. + * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 meter below the reference position. + * - `0` for no altitudinal offset. + * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 meter above the reference position. + * - `12799` for values equal to or greater than 127,99 metres. + * - `12800` when the information is unavailable. + * + * @unit: 0.01 metre + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaAltitude ::= INTEGER { + negativeOutOfRange (-12700), + positiveOutOfRange (12799), + unavailable (12800) +} (-12700..12800) + +/** + * This DE represents an offset latitude with regards to a defined latitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. + * - `0` for no latitudinal offset. + * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the north from the reference position. + * - `131072` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLatitude ::= INTEGER { + unavailable (131072) +} (-131071..131072) + + +/** + * This DE represents an offset latitude with regards to a defined latitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. + * - `0` for no latitudinal offset. + * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the north from the reference position. + * - `32767` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLatitudeSmall::= INTEGER { + unavailable (32767) +} (-32766..32767) + + +/** + * This DE represents an offset longitude with regards to a defined longitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. + * - `0` for no longitudinal offset. + * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the east from the reference position. + * - `131072` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLongitude ::= INTEGER { + unavailable (131072) +} (-131071..131072) + +/** + * This DE represents an offset longitude with regards to a defined longitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. + * - `0` for no longitudinal offset. + * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the east from the reference position. + * - `32767` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLongitudeSmall::= INTEGER { + unavailable (32767) +} (-32766..32767) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 0,01 s + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) + +/** + * This DE represents a difference in time with respect to a reference time. + + * Example: a time interval between two consecutive message transmissions. + * + * @unit: 1 ms + * @category: Basic information + * @revision: Created in V2.1.1 from the DE TransmissionInterval + */ +DeltaTimeMilliSecondPos ::= INTEGER (1..10000) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 1 ms + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) + +/** + * This DE represents a difference in time with respect to a reference time. + * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, + * multiply by 256 (i.e. append a `00` byte) + * + * @unit: 256 milliseconds + * @category: Basic information + * @revision: Created in V2.1.1 + */ +DeltaTimeQuarterSecond::= INTEGER (1..255) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 0,1 s + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeTenthOfSecond::= INTEGER { + unavailable (127) +} (0..127) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 1 s + * @category: Basic information + * @revision: Created in V2.1.1 from ValidityDuration +*/ +DeltaTimeSecond ::= INTEGER (0..86400) + + +/** + * This DE indicates a direction with respect to a defined reference direction. + * Example: a reference direction may be implicitly defined by the definition of a geographical zone. + * + * The value shall be set to: + * - 0 - `sameDirection` - to indicate the same direction as the reference direction. + * - 1 - `oppositeDirection` - to indicateopposite direction as the reference direction. + * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction. + * - 3 - `unavailable` - to indicate that the information is unavailable. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +Direction::= INTEGER{ + sameDirection (0), + oppositeDirection (1), + bothDirections (2), + unavailable (3) + } (0..3) + +/** + * This DE indicates in which direction something is moving. + * + * The value shall be set to: + * - 0 - `forward` - to indicate it is moving forward. + * - 1 - `backwards` - to indicate it is moving backwards. + * - 2 - `unavailable` - to indicate that the information is unavailable. + * + * @category: Kinematics information + * @revision: editorial update in V2.1.1 + */ +DriveDirection ::= ENUMERATED { + forward (0), + backward (1), + unavailable (2) +} + +/** + * This DE indicates whether a driving lane is open to traffic. + * + * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall + * correspond to the total number of the driving lanes in the carriageway. + * + * The numbering is matched to @ref LanePosition. + * The bit `0` is used to indicate the innermost lane, bit `1` is used to indicate the second lane from inside border. + * + * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. + * + * @note:Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) + +/** + * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. + * If that is the case, the value is *TRUE*, otherwise *FALSE*. + * + * @category: Vehicle information + * @revision: editorial update in V2.1.1 + */ +EmbarkationStatus ::= BOOLEAN + +/** + * This DE indicates the right of priority requested or assumed by an operating emergency vehicle. + * The right-of-priority bit shall be set to `1` if the corresponding right is requested. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way. + * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. + * + * @category: Traffic information + * @revision: description revised in V2.1.1 + */ +EmergencyPriority ::= BIT STRING { + requestForRightOfWay (0), + requestForFreeCrossingAtATrafficLight (1) +} (SIZE(2)) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event + * is unavailable, + * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, + * - 2 -`prioritizedVehicleApproaching` - in case a prioritized vehicle (e.g. bus) is approaching, + * - 3-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +EmergencyVehicleApproachingSubCauseCode ::= INTEGER { + unavailable (0), + emergencyVehicleApproaching (1), + prioritizedVehicleApproaching (2) +} (0..255) + +/** + * This DE indicated the type of energy being used and stored in vehicle. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle. + * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle. + * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle. + * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle. + * - 4 - `diesel` - when diesel is being used and stored in vehicle. + * - 5 - `gasoline` - when gasoline is being used and stored in vehicle. + * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. + * + * - Otherwise, the corresponding bit shall be set to `0`. + * + * @category: Vehicle information + * @revision: editorial revision in V2.1.1 + */ +EnergyStorageType ::= BIT STRING { + hydrogenStorage (0), + electricEnergyStorage (1), + liquidPropaneGas (2), + compressedNaturalGas (3), + diesel (4), + gasoline (5), + ammonia (6) +}(SIZE(7)) + +/** + * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } + +/** + * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} + +/** + * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} + +/** + * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} + +/** + * This DE describes the status of the exterior light switches of a vehicle. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on. + * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on. + * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on. + * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on. + * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on. + * - 5 - `reverseLightOn` - when the reverse light switch is on. + * - 6 - `fogLightOn` - when the tail fog light switch is on. + * - 7 - `parkingLightsOn` - when the parking light switch is on. + * + * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, + * either manually by the driver or automatically by a vehicle system. The bit value does not indicate + * if the corresponding lamps are alight or not. + * + * If a vehicle is not equipped with a certain light or if the light switch status information is not available, + * the corresponding bit shall be set to `0`. + * + * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not + * alternate with the blinking interval. + * + * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. + * + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +ExteriorLights ::= BIT STRING { + lowBeamHeadlightsOn (0), + highBeamHeadlightsOn (1), + leftTurnSignalOn (2), + rightTurnSignalOn (3), + daytimeRunningLightsOn (4), + reverseLightOn (5), + fogLightOn (6), + parkingLightsOn (7) +} (SIZE(8)) + +/** + * This DE represents a timestamp based on TimestampIts modulo 65 536. + * This means that generationDeltaTime = TimestampIts mod 65 536. + * + * @category Time information + * @revision: Created in V2.1.1 based on EN 302 637-2 +*/ +GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) + +/** + * This DE indicates the current status of a hard shoulder: whether it is available for special usage + * (e.g. for stopping or for driving) or closed for all vehicles. + * + * The value shall be set to: + * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations. + * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case. + * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 + */ +HardShoulderStatus ::= ENUMERATED { + availableForStopping (0), + closed (1), + availableForDriving (2)} + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, + * - 1 - `wildAnimals` - in case wild animals are detected on the road, + * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, + * - 3 - `smallAnimals` - in case small size animal is detected on the road, + * - 4 - `largeAnimals` - in case large size animal is detected on the road, + * - 5-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + wildAnimals (1), + herdOfAnimals (2), + smallAnimals (3), + largeAnimals (4) +} (0..255) + +/** + * This DE represents the sub cause code of the @ref CauseCode `hazardousLocation-DangerousCurve`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, + * - 1 - `dangerousLeftTurnCurve` - in case the dangerous curve is a left turn curve, + * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, + * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, + * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, + * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves stating with a right turn curve, + * - 6-255 - are reserved for future usage. + * + * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass + * and vehicle speed driving on the curve. This definition is out of scope of the present document. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { + unavailable (0), + dangerousLeftTurnCurve (1), + dangerousRightTurnCurve (2), + multipleCurvesStartingWithUnknownTurningDirection (3), + multipleCurvesStartingWithLeftTurn (4), + multipleCurvesStartingWithRightTurn (5) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the detected obstacle is unavailable, + * - 1 - `shedLoad` - in case detected obstacle is large amount of obstacles (shedload), + * - 2 - `partsOfVehicles`- in case detected obstacles are parts of vehicles, + * - 3 - `partsOfTyres` - in case the detected obstacles are parts of tyres, + * - 4 - `bigObjects` - in case the detected obstacles are big objects, + * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, + * - 6 - `hubCaps` - in case the detected obstacles are hub caps, + * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles, + * - 8-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + shedLoad (1), + partsOfVehicles (2), + partsOfTyres (3), + bigObjects (4), + fallenTrees (5), + hubCaps (6), + waitingVehicles (7) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. + * +The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the road surface condition is unavailable, + * - 1 - `rockfalls` - in case rock falls are detected on the road surface, + * - 2 - `earthquakeDamage`- in case the road surface is damaged by earthquake, + * - 3 - `sewerCollapse` - in case of sewer collapse on the road surface, + * - 4 - `subsidence` - in case road surface is damaged by subsidence, + * - 5 - `snowDrifts` - in case road surface is damaged due to snow drift, + * - 6 - `stormDamage` - in case road surface is damaged by strong storm, + * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, + * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, + * - 9 - `fallingIce` - in case road surface damage is due to falling ice, + * - 10 - `fire` - in case there is fire on or near to the road surface, + * - 11-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { + unavailable (0), + rockfalls (1), + earthquakeDamage (2), + sewerCollapse (3), + subsidence (4), + snowDrifts (5), + stormDamage (6), + burstPipe (7), + volcanoEruption (8), + fallingIce (9), + fire (10) +} (0..255) + +/** + * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. + * +The value shall be set to: + * - `1` if the heading accuracy is equal to or less than 0,1 degree, + * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, + * - `125` if the heading accuracy is equal to or less than 12,5 degrees, + * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, + * - `127` if the heading accuracy information is not available. + * + * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, + * such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported heading value may be valid and used by the application. + * + * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported + * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleConfidence instead. + * + * @unit: 0,1 degree + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +HeadingConfidence ::= Wgs84AngleConfidence + +/** +HeadingValue + * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. + * + * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleValue instead. + * + * Unit: 0,1 degree + * Categories: GeoReference information + * @revision: Description revised in V2.1.1 (usage of value 3600 specified) +*/ +HeadingValue ::= Wgs84AngleValue + +/** + * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle + * rear to front). + * + * The value shall be set to: + * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter. + * - `99` if the height is out of range, i.e. equal to or greater than 98 cm. + * - `100` if the height information is not available. + * + * @unit 0,01 meter + * @category Vehicle information + * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) + */ +HeightLonCarr ::= INTEGER { + unavailable(100) +} (1..100) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, + * - 1 - `childrenOnRoadway` - in case children are detected on the road event, + * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, + * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road, + * - 4-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + childrenOnRoadway (1), + cyclistOnRoadway (2), + motorcyclistOnRoadway (3) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, + * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, + * - 2 - `heartProblem` - in case human problem is due to heart problem, + * - 3-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HumanProblemSubCauseCode ::= INTEGER { + unavailable (0), + glycemiaProblem (1), + heartProblem (2) +} (0..255) + +/** + * This DE is a general identifier. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +Identifier1B ::= INTEGER (0..255) + +/** + * This DE is a general identifier. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +Identifier2B ::= INTEGER (0..65535) + +/** + * This DE represents the quality level of provided information. + * + * The value shall be set to: + * - 0 - if the information is unavailable. + * - 1 - if the quality level is lowest + * - `n (n > 1 and n < 7)` if the quality level is n. + * - 7 - if the quality level is highest + * @note: Definition of quality level is out of scope of the present document. + * + * @category: Basic information + * @revision: Editorial update in V2.1.1 + */ +InformationQuality ::= INTEGER (0..7) + +/** + * This DE defines the type of an interference management zone, so that an ITS-S can + * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * It is an extension of the type @ref ProtectedZoneType. + + * + * The value shall be set to: + * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling + * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.24], clause 7 + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +InterferenceManagementZoneType ::= ENUMERATED { + permanentCenDsrcTolling (0), + temporaryCenDsrcTolling (1), + unavailable (2), + urbanRail (3), + satelliteStation (4), + fixedLinks (5), + ... +} + +/** + * This DE represents the vehicle type according to ISO 3833 [4]. + * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. + * + * The value shall be set to: + * - 0 - `passengerCar` - term No 3.1.1 + * - 1 - `saloon` - term No 3.1.1.1 (sedan) + * - 2 - `convertibleSaloon` - term No 3.1.1.2 + * - 3 - `pullmanSaloon` - term No 3.1.1.3 + * - 4 - `stationWagon` - term No 3.1.1.4 + * - 5 - `truckStationWagon` - term No 3.1.1.4.1 + * - 6 - `coupe` - term No 3.1.1.5 (coupe) + * - 7 - `convertible` - term No 3.1.1.6 (open tourer, roadstar, spider) + * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 + * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 + * - 10 - `specialPassengerCar` - term No 3.1.1.9 + * - 11 - `bus (11)` - term No 3.1.2 + * - 12 - `minibus` - term No 3.1.2.1 + * - 13 - `urbanBus` - term No 3.1.2.2 + * - 14 - `interurbanCoach` - term No 3.1.2.3 + * - 15 - `longDistanceCoach` - term No 3.1.2.4 + * - 16 - `articulatedBus` - term No 3.1.2.5 + * - 17 - `trolleyBus ` - term No 3.1.2.6 + * - 18 - `specialBus` - term No 3.1.2.7 + * - 19 - `commercialVehicle ` - term No 3.1.3 + * - 20 - `specialCommercialVehicle` - term No 3.1.3.1 + * - 21 - `specialVehicle ` - term No 3.1.4 + * - 22 - `trailingTowingVehicle ` - term No 3.1.5 (draw-bar tractor) + * - 23 - `semiTrailerTowingVehicle` - term No 3.1.6 (fifth wheel tractor) + * - 24 - `trailer` - term No 3.2.1 + * - 25 - `busTrailer` - term No 3.2.1.1 + * - 26 - `generalPurposeTrailer` - term No 3.2.1.2 + * - 27 - `caravan` - term No 3.2.1.3 + * - 28 - `specialTrailer` - term No 3.2.1.4 + * - 29 - `semiTrailer` - term No 3.2.2 + * - 30 - `busSemiTrailer ` - term No 3.2.2.1 + * - 31 - `generalPurposeSemiTrailer` - term No 3.2.2.2 + * - 32 - `specialSemiTrailer` - term No 3.2.2.3 + * - 33 - `roadTrain` - term No 3.3.1 + * - 34 - `passengerRoadTrain ` - term No 3.3.2 + * - 35 - `articulatedRoadTrain` - term No 3.3.3 + * - 36 - `doubleRoadTrain` - term No 3.3.4 + * - 37 - `compositeRoadTrain` - term No 3.3.5 + * - 38 - `specialRoadTrain` - term No 3.3.6 + * - 39 - `moped` - term No 3.4 + * - 40 - `motorCycle` - term No 3.5 + * - 41-255 - reserved for future use + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ + +Iso3833VehicleType ::= INTEGER { + passengerCar (0), + saloon (1), + convertibleSaloon (2), + pullmanSaloon (3), + stationWagon (4), + truckStationWagon (5), + coupe (6), + convertible (7), + multipurposePassengerCar (8), + forwardControlPassengerCar (9), + specialPassengerCar (10), + bus (11), + minibus (12), + urbanBus (13), + interurbanCoach (14), + longDistanceCoach (15), + articulatedBus (16), + trolleyBus (17), + specialBus (18), + commercialVehicle (19), + specialCommercialVehicle (20), + specialVehicle (21), + trailingTowingVehicle (22), + semiTrailerTowingVehicle (23), + trailer (24), + busTrailer (25), + generalPurposeTrailer (26), + caravan (27), + specialTrailer (28), + semiTrailer (29), + busSemiTrailer (30), + generalPurposeSemiTrailer (31), + specialSemiTrailer (32), + roadTrain (33), + passengerRoadTrain (34), + articulatedRoadTrain (35), + doubleRoadTrain (36), + compositeRoadTrain (37), + specialRoadTrain (38), + moped (39), + motorCycle (40) + } (0..255) + +/** + * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. + * + * For right-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road. + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane. + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction. + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). + * + * For left-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road. + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane. + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction. + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). + + * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. + * + * If the carriageway allows only traffic in one direction (e.g. in case of dual or multiple carriageway roads), the position is counted from the physical border of the carriageway. + * If the carriageway allows traffic in both directions and there is no physical delimitation between traffic directions (e.g. on a single carrriageway road), + * the position is counted from the legal (i.e. optical) separation between traffic directions (horizontal marking). + + * @category: Road topology information + * @revision: Description revised in V2.1.1 +*/ +LanePosition ::= INTEGER { + offTheRoad (-1), + innerHardShoulder (0), + outerHardShoulder (14) +} (-1..14) + +/** + * This DE represents the type of a lane. + * + * The value shall be set to: + * - 0 - `traffic` - Lane dedicated to the movement of vehicles. + * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning. + * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow. + * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. + * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it. + * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. + * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic. + * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. + * - 8 - `bus` - Lane dedicated to movement of buses providing public transport. + * - 9 - `taxi` - Lane dedicated to movement of taxis. + * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane. + * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. + * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths. + * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles. + * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median + separating the two directional carriageways of the highway. + * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings. + * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys. + * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes. + * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. + * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between + the road surface edge and the boundary of a road. + * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. + * - values 21 to 30 reserved for future use + * + * @category: Road topology information + * @revision: V2.1.1 +*/ +LaneType::= INTEGER{ + traffic (0), + through (1), + reversible (2), + acceleration (3), + deceleration (4), + leftHandTurning (5), + rightHandTurning (6), + dedicatedVehicle (7), + bus (8), + taxi (9), + hov (10), + hot (11), + pedestrian (12), + cycleLane (13), + median (14), + striping (15), + trackedVehicle (16), + parking (17), + emergency (18), + verge (19), + minimumRiskManoeuvre (20), + unknown (31) +}(0..31) + +/** + * This DE represents the width of a lane measured at a defined position. + * + * @unit: 0.01 meter + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +LaneWidth::= INTEGER (0..1023) + +/** + * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or + * in south hemisphere. + * + * The value shall be set to: + * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitudes south of the Equator. + * - `0` is used for the latitude of the equator. + * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitudes north of the Equator. + * - `900 000 001` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +Latitude ::= INTEGER { + unavailable(900000001) +} (-900000000..900000001) + +/** + * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation + * with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation + with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * + * @unit: 0.1 m/s2 + * @category Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. + */ +LateralAccelerationValue ::= AccelerationValue + +/** + * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. + * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `lightBarActivated` - when the light bar is activated. + * - 1 - `sirenActivated` - when the siren is activated. + * + * Otherwise, it shall be set to 0. + * + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +LightBarSirenInUse ::= BIT STRING { + lightBarActivated (0), + sirenActivated (1) +} (SIZE(2)) + +/** + * This DE represents the absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees + * to the east or to the west of the prime meridian. + * + * The value shall be set to: + * - `n (n > -1800000000 and n < 0)`, i.e. negative values for longitudes to the west. + * - `0` to indicate the prime meridian. + * - `n (n > 0 and n < 1800000001)`, i.e. positive values for longitudes to the east. + * - `1 800 000 001` when the information is unavailable. + * + * The value -1800000000 shall not be used. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +Longitude ::= INTEGER { + valueNotUsed (-1800000000), + unavailable (1800000001) +} (-1800000000..1800000001) + + /** + * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * +* The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * This acceleration is along the tangent plane of the road surface and does not include gravity components. + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @category: Vehicle information + * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. + */ +LongitudinalAccelerationValue::= AccelerationValue + +/** + * This DE represents the longitudinal offset of the map-matched position of a particular object along the + * matched lane, beginning from the lane's starting point. + * + * @unit 0,1 m + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +LongitudinalLanePositionValue ::= INTEGER (0..32767) + +/** + * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. + * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. + * - `102` if the data is unavailable. + * + * @unit 0,01 meter + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +LongitudinalLanePositionConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * This DE represents the type of facility layer message. + * + * The value shall be set to: + * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], + * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], + * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], + * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], + * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], + * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], + * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], + * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], + * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], + * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], + * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], + * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], + * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], + * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], + * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], + * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], + * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. + * - 18-255 - reserved for future usage, + * + * @category: Communication information + * @revision: Created in V2.1.1 from @ref ItsPduHeader. + */ +MessageId::= INTEGER { + denm (1), + cam (2), + poi (3), + spatem (4), + mapem (5), + ivim (6), + ev-rsr (7), + tistpgtransaction (8), + srem (9), + ssem (10), + evcsn (11), + saem (12), + rtcmem (13), + cpm (14), + imzm (15), + vam (16), + dsm (17) +} (0..255) + +/** + * This DE represents the number of occupants in a vehicle. + * + * The value shall be set to: + * - `n (n > 1 and n < 126)` for the number n of occupants. + * - `126` for values equal to or higher than 126. + * - `127` if information is not available.`. + * + * @unit: 1 person + * @category: Vehicle information + * @revision: Editorial update in V2.1.1 + */ +NumberOfOccupants ::= INTEGER { + outOfRange (126), + unavailable (127) +} (0 .. 127) + +/** + * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. + * + * The value shall be set to: + * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. + * - `n (n > 0 and n < 15)` : for the applicable confidence value. + * -`15` : if there is full confidence in the detected ObjectDescriptor. + * + * @unit n/a + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectConfidence ::= INTEGER { + noConfidence (0), + fullConfidence (15) +} (0..15) + +/** + * This DE represents a single dimension of an object. + * + * @unit 0,1 m + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimensionValue ::= INTEGER (0..1023) + +/** + * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . + * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. + * - `102` if the data is unavailable. + * + * @unit 0,01 m + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimensionConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * The DE indicates whether the detected object is classified as a dynamic (i.e. moving) object. + * This value indicates whether an object has the general capability to move, i.e. change its + * position. + * + * The value shall be set to: + * - `0` - dynamic - if the object is moving. + * - `1` - hasBeenDynamic - if the object has been dynamic before, e.g., a car stopping at a traffic light. + * - `2` - static - if the object has been detected to be not moving throughout any previous observation. + * - `3` - unavailable - if the information is unavailable. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDynamicStatus ::= INTEGER { + dynamic (0), + hasBeenDynamic (1), + static (2), + unavailable (3) +} (0..3) + +/** + * This DE indicates the approximate position of the reference point of measurement for the object dimensions using a 9 cell grid. + * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +ObjectRefPoint ::= INTEGER { + bottomLeft (0), + midLeft (1), + topLeft (2), + bottomMid (3), + midMid (4), + topMid (5), + bottomRight (6), + midRight (7), + topRight (8) +} (0..8) + +/** + * This DE indicates the face or part of a face of a solid object. + * + * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: + * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object. + * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object. + * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. + * + * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. + * + * @category: Basic information + * @revision: V2.1.1 +*/ +ObjectFace ::= ENUMERATED { + front (0), + sideLeftFront (1), + sideLeftBack (2), + sideRightFront (3), + sideRightBack (4), + back (5) +} + +/** + * This DE represent a lateral position with lane-level resolution on the road reservation, which is not on regular traffic lanes. + * + * The value shall be set to: + * - 0 - `unavailable` - if information on the lane position is unavailable. + * - 1 - `sidewalk` - if the position is on the side-walk. + * - 2 - `parkingLane` - if the position is on an area at the side of the road not intended for travel but for vehicular parking. + * - 3 - `bikeLane` - if the position is on an area reserved for bicycles. + * - 4-15 - reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. + * + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +OffRoadLanePosition ::= ENUMERATED { + unavailable (0), + sidewalk (1), + parkingLane (2), + bikeLane (3), + max (15) +} + +/** + * This DE represents a time period to describe the opening days and hours of a Point of Interest. + * (for example local commerce). + * + * @category: Time information + * @revision: V1.3.1 + */ +OpeningDaysHours ::= UTF8String + +/** + * The DE represents an ordinal number that indicates the position of an element in a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +OrdinalNumber1B ::= INTEGER(1..255) + +/** + * This DE indicates the subclass of a detected object for object class "otherSubclass". + * + * The value shall be set to: + * - `0` - unknown - if the subclass is unknown. + * - `1` - roadSideUnit - if the object is a roadside unit. + * + * @category: Sensing information + * @revision: Created in V2.1.1 + */ +OtherSubClass ::= INTEGER { + unknown (0), + roadSideUnit (1) +} (0..255) + +/** + * This DE represents the recorded or estimated travel time between a position and a predefined reference position. + * + * @unit 0.01 second + * @category GeoReference information + * @revision: same type as in V1.3.1 but now based on a basic type + */ +PathDeltaTime ::= DeltaTimeHundredthOfSecond + +/** + * This DE denotes the ability of an ITS-S to provide up-to-date information. + * A performance class value is used to describe age of data. The exact values are out of scope of the present document. + * + * The value shall be set to: + * - `0` if the performance class is unknown. + * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.6] + * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.6] + * - Values in the range `3 to 7` are reserved for future use. + * + * @category: Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PerformanceClass ::= INTEGER { + unavailable (0), + performanceClassA (1), + performanceClassB (2) +} (0..7) + +/** + * This DE represents a telephone number + * + * @category: Basic information + * @revision: V1.3.1 + */ +PhoneNumber ::= NumericString (SIZE(1..16)) + +/** + * This DE indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of + * the vehicle bounding box of the empty load vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 meter and 6,2 meters. + * - `62` for values equal to or higher than `6.2 metres`. + * - `63` if the information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit 0,1 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosCentMass ::= INTEGER { + tenCentimeters (1), + outOfRange (62), + unavailable (63) +} (1..63) + +/** + * This DE indicates the positioning technology being used to estimate a geographical position. + * + * The value shall be set to: + * - 0 `noPositioningSolution` : no positioning solution used, + * - 1 `sGNSS` : Global Navigation Satellite System used, + * - 2 `dGNSS` : Differential GNSS used, + * - 3 `sGNSSplusDR` : GNSS and dead reckoning used, + * - 4 `dGNSSplusDR` : Differential GNSS and dead reckoning used, + * - 5 `dR` : dead reckoning used. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +PositioningSolutionType ::= ENUMERATED { + noPositioningSolution (0), + sGNSS (1), + dGNSS (2), + sGNSSplusDR (3), + dGNSSplusDR (4), + dR (5), + ... +} + +/** + * This DE indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. + * + * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear + * of the vehicle. + * The left side seat of a row refers to the left hand side seen from vehicle rear to front. + * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, + * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. + * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, + * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. + * + * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. + * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. + * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. + * Otherwise, the value of seat occupation bit shall be set according to the following conditions: + * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. + * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row + * shall be set to `1`. + * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. + * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row + * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PositionOfOccupants ::= BIT STRING { + row1LeftOccupied (0), + row1RightOccupied (1), + row1MidOccupied (2), + row1NotDetectable (3), + row1NotPresent (4), + row2LeftOccupied (5), + row2RightOccupied (6), + row2MidOccupied (7), + row2NotDetectable (8), + row2NotPresent (9), + row3LeftOccupied (10), + row3RightOccupied (11), + row3MidOccupied (12), + row3NotDetectable (13), + row3NotPresent (14), + row4LeftOccupied (15), + row4RightOccupied (16), + row4MidOccupied (17), + row4NotDetectable (18), + row4NotPresent (19) +} (SIZE(20)) + +/** + * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. + * + * The value shall be set to: + * - `n (n > 0 and n < 19) for any aplicable value between 0,1 meter and 1,9 meters. + * - `19` for values equal to or higher than 1.9 metres. + * - `20` if the information is unavailable. + * + * @category: Vehicle information + * @unit 0.1 metre + * @revision: Editorial update in V2.1.1 + */ +PosFrontAx ::= INTEGER { + outOfRange (19), + unavailable(20) +} (1..20) + +/** + * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. + * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 meter and 1,26 meters. + * - `126` for values equal to or higher than 1.26 metres. + * - `127` if the information is unavailable. + * + * @unit 0,01 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosLonCarr ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the + * middle point of the front line of the vehicle bounding box. + * + * The value shall be set to: + * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 meter and 2,9 meters. + * - `29` for values equal to or greater than 2.9 metres. + * - `30` if the information is unavailable. + * + * @unit 0,1 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosPillar ::= INTEGER { + outOfRange (29), + unavailable (30) +} (1..30) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on post crash event is unavailable, + * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, + * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, + * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, + * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle, + * - 5-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +PostCrashSubCauseCode ::= INTEGER { + unavailable (0), + accidentWithoutECallTriggered (1), + accidentWithECallManuallyTriggered (2), + accidentWithECallAutomaticallyTriggered (3), + accidentWithECallTriggeredWithoutAccessToCellularNetwork (4) +} (0..255) + +/** +* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square meter. +* +* The following values are specified: +* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0.1 mm/h and greater than (n-1) x 0.1 mm/h. +* - `2000` if the amount of rain falling is greater than 199.9 mm/h +* - `2001` if the information is not available +* +* @unit: 0.1 mm/h +* @category: Basic Information +* @revision: created in V2.1.1 +*/ +PrecipitationIntensity ::= INTEGER { + outOfRange (2000), + unavailable (2001) +} (1..2001) + +/** + * This DE represenst the indentifier of a protected communication zone. + * + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedZoneID ::= INTEGER (0.. 134217727) + +/** + * This DE represenst the radius of a protected communication zone. + * + * + * @unit: metre + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedZoneRadius ::= INTEGER (1..255,...) + +/** + * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do + * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * + * The protected zone type is defined in ETSI TS 102 792 [i.16]. + * + * + * @category: Communication information + * @revision: V1.3.1 + */ +ProtectedZoneType::= ENUMERATED { + permanentCenDsrcTolling (0), + ..., + temporaryCenDsrcTolling (1) +} + +/** + * This DE is used for various tasks in the public transportation environment, especially for controlling traffic + * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). + * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation + * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the + * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to + * traffic congestion. Other usage of the DE is the provision of information like the public transport line number + * or the schedule delay of a public transport vehicle. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivationData ::= OCTET STRING (SIZE(1..20)) + +/** + * This DE indicates a certain coding type of the PtActivationData data. + * + * The folowing value are specified: + * - `0` undefinedCodingType : undefined coding type, + * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.8], + * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.8]. + * - values 3 to 255 : reserved for alternative and future use. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivationType ::= INTEGER { + undefinedCodingType (0), + r09-16CodingType (1), + vdv-50149CodingType (2) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . + * + * The value shall be set to: + * - 0 `unavailable` : in case no further detailed information on the railway level crossing status is available, + * - 1 `doNotCrossAbnormalSituation` : in case when something wrong is detected by equation or sensors of the railway level crossing, + including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), + * - 2 `closed` : in case the crossing is closed (barriers down), + * - 3 `unguarded` : in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), + * - 4 `nominal` : in case the barriers are up and lights are off. + * - 5-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RailwayLevelCrossingSubCauseCode ::= INTEGER { + unavailable (0), + doNotCrossAbnormalSituation (1), + closed (2), + unguarded (3), + nominal (4) +} (0..255) + +/** + * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from + * ITS-S after receiving request from other ITS-Ss. + * + * The value shall be set to: + * - 0 `request` : for a request message. + * - 1 `response` : for a response message. + * + * @category Communication information + * @revision: Editorial update in V2.1.1 + */ +RequestResponseIndication ::= ENUMERATED { + request (0), + response (1) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` + * + * The following value are specified: + * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, + * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, + * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, + * - 3 `policeActivityOngoing` : in case police activity is ongoing, + * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, + * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, + * - 6-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { + unavailable (0), + emergencyVehicles (1), + rescueHelicopterLanding (2), + policeActivityOngoing (3), + medicalEmergencyOngoing (4), + childAbductionInProgress (5) +} (0..255) + + +/** + * This DE indicates the type of a road segment. + * + * The value shall be set to: + * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. + * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. + * + * @category: Road Topology Information + * @revision: Editorial update in V2.1.1 + */ +RoadType ::= ENUMERATED { + urban-NoStructuralSeparationToOppositeLanes (0), + urban-WithStructuralSeparationToOppositeLanes (1), + nonUrban-NoStructuralSeparationToOppositeLanes (2), + nonUrban-WithStructuralSeparationToOppositeLanes (3) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. + * +The value shall be set to: + * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, + * - 1 `majorRoadworks` : in case a major roadworks is ongoing, + * - 2 `roadMarkingWork` : in case a road marking work is ongoing, + * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, + * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, + * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, + * - 6 `winterService` : in case winter service work is ongoing, + * - 7-255 reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RoadworksSubCauseCode ::= INTEGER { + unavailable (0), + majorRoadworks (1), + roadMarkingWork (2), + slowMovingRoadMaintenance (3), + shortTermStationaryRoadworks (4), + streetCleaning (5), + winterService (6) +} (0..255) + +/** + * This DE indicates if a distance is safe + * This DE is FALSE if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} simultaneously satisfied with confidence of 90 % or more. + * Otherwise stationSafeDistanceIndication is set to TRUE. + * + * @Note: the ebbreviations 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) + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SafeDistanceIndicator::= BOOLEAN + +/** + * This DE represenst the absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a + * confidence level of 95 %. + * + * The value shall be set to: + * - `1` if the accuracy is equal to or less than 1 cm, + * - `n (n > 1 and n < 4 094)` if the accuracy is equal to or less than n cm, + * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, + * - `4 095` if the accuracy information is unavailable. + * + * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported position coordinate value may be valid and used by the application. + * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that + * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful + * for the application. + + * @unit 0,01 meter + * @category: GeoReference Information + * @revision: Editorial update in V2.1.1 + */ +SemiAxisLength ::= INTEGER{ + outOfRange (4094), + unavailable (4095) +} (0..4095) + +/** + * This DE indicates the type of sensor. + * + * The value shall be set to: + * - `0` undefined : in case the sensor type is undefined. + * - `1` radar : in case the sensor is a radar. + * - `2` lidar : in case the sensor is a lidar. + * - `3` monovideo : in case the sensor is mono video. + * - `4` stereovision : in case the sensor is stereo vision. + * - `5` nightvision : in case the sensor is night vision. + * - `6` ultrasonic : in case the sensor is ultrasonic. + * - `7` pmd : in case the sensor is photonic mixing device. + * - `8` inductionLoop : in case the sensor is an induction loop. + * - `9` sphericalCamera : in case the sensor is a spherical camera. + * - `10` uwb : in case the sensor is ultra wide band. + * - `11` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. + * - `12` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. + * + * @category: Sensing Information + * @revision: created in V2.1.1 +*/ +SensorType ::= INTEGER { + undefined (0), + radar (1), + lidar (2), + monovideo (3), + stereovision (4), + nightvision (5), + ultrasonic (6), + pmd (7), + inductionLoop (8), + sphericalCamera (9), + uwb (10), + localAggregation (11), + itsAggregation (12) +} (0..15) + +/** + * This DE represents a sequence number. + * + * @category: Basic information + * @revision: V1.3.1 + */ +SequenceNumber ::= INTEGER (0..65535) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, + * - 1 `stopSignViolation` : in case a stop sign violation is detected, + * - 2 `trafficLightViolation` : in case a traffic light violation is detected, + * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, + * - 4-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +SignalViolationSubCauseCode ::= INTEGER { + unavailable (0), + stopSignViolation (1), + trafficLightViolation (2), + turningRegulationViolation (3) +} (0..255) + +/** + * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is + * unavailable, + * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, + * - 2 `vehiclesSlowingToLookAtAccident`: in case vehicle is temporally slowing down to look at accident, spot, etc., + * - 3 `abnormalLoad` : in case an abnormal loaded vehicle is driving slowly on the road, + * - 4 `abnormalWideLoad` : in case an abnormal wide load vehicle is driving slowly on the road, + * - 5 `convoy` : in case of slow driving convoy on the road, + * - 6 `snowplough` : in case of slow driving snow plough on the road, + * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, + * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road, + * - 9-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +SlowVehicleSubCauseCode ::= INTEGER { + unavailable (0), + maintenanceVehicle (1), + vehiclesSlowingToLookAtAccident (2), + abnormalLoad (3), + abnormalWideLoad (4), + convoy (5), + snowplough (6), + deicing (7), + saltingVehicles (8) +} (0..255) + +/** + * The DE indicates if a vehicle is carrying goods in the special transport conditions. + + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load. + * - 1 `excessWidth` : the vehicle is carrying goods in excess of width. + * - 2 `excessLength` : the vehicle is carrying goods in excess of length. + * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. + * + * Otherwise, the corresponding bit shall be set to 0. + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +SpecialTransportType ::= BIT STRING { + heavyLoad (0), + excessWidth (1), + excessLength (2), + excessHeight (3) +} (SIZE(4)) + +/** + * This DE represents the absolute accuracy of a speed value information for a predefined confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the speed accuracy is equal to or less than n cm/s. + * - `126` if the speed accuracy is out of range, i.e. greater than 125 cm/s. + * - `127` if the speed accuracy information is not available. + * + * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported speed value may be valid and used by the application. + * + * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid + * and therefore cannot be trusted. Such is not useful for the application. + * + * @unit cm/s + * @category: Vehicle information + * @revision: Description revised in V2.1.1 + */ +SpeedConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents a speed limitation applied to a geographical position, a road section or a geographical region. + * + * @unit: km/h + * @category: Infrastructure information, Traffic information + * @revision: V1.3.1 + */ +SpeedLimit ::= INTEGER (1..255) + +/** + * This DE represents a speed value, i.e. the magnitude of the horizontal velocity-vector. + * + * The value shall be set to: + * - `0` in a standstill situation. + * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s. + * - `16382` for speed values greater than 163,81 m/s. + * - `16383` if the speed accuracy information is not available. + * + * @unit: 0,01 m/s + * @category: Kinematics information + * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) +*/ +SpeedValue ::= INTEGER { + standstill (0), + outOfRange (16382), + unavailable (16383) +} (0..16383) + +/** + * This DE represents the value of a velocity component in a defined coordinate system. + * + * The value shall be set to: + * - `-16383` if the speed is equal to or smaller than -163,83 m/s + * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s. + * - `16382` for speed values equal to or greater than 163,81 m/s. + * - `16383` if the speed accuracy information is not available. + * + * @unit: 0,01 m/s + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +SpeedValueExtended ::= INTEGER { + negativeOutOfRange (-16383), + psotiveOutOfRange (16382), + unavailable (16383) +} (-16383..16383) + + +/** + * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. + * + * The value shall be set to: + * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable". + * - `n (n > 0 and n < 50)` to indicate the actual stability level. + * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability". + * - the values between 51 and 62 are reserved for future use. + * - `63`: this value indicates that the information is unavailable. + * + * @unit: 2% + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +StabilityLossProbability ::= INTEGER { + stable (0), + totalLossOfStability (50), + unavailable (63) +} (0..63) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength12b::= INTEGER (0..4095) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * The value shall be set to: + * - 0 `lessThan50m` : for distances below 50 m. + * - 1 `lessThan100m` : for distances below 100 m. + * - 2 `lessThan200m` : for distances below 200 m. + * - 3 `lessThan500m` : for distances below 300 m. + * - 4 `lessThan1000m` : for distances below 1000 m. + * - 5 `lessThan5km` : for distances below 5000 m. + * - 6 `lessThan10km` : for distances below 10000 m. + * - 7 `over10km` : for distances over 10000 m. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +StandardLength3b ::= ENUMERATED { + lessThan50m (0), + lessThan100m (1), + lessThan200m (2), + lessThan500m (3), + lessThan1000m (4), + lessThan5km (5), + lessThan10km (6), + over10km (7) +} + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength9b::= INTEGER (0..511) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength1B::= INTEGER (0..255) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength2B::= INTEGER (0..65535) + +/** + * This DE indicates the duration in minutes since which something is stationary. + * + * The value shall be set to: + * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. + * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more 1 minute. + * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. + * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +StationarySince ::= ENUMERATED { + lessThan1Minute (0), + lessThan2Minutes (1), + lessThan15Minutes (2), + equalOrGreater15Minutes (3) +} + +/** + * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, + * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, + * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, + * - 3 `postCrash` : in case stationary vehicle is caused by collision, + * - 4 `publicTransportStop` : in case public transport vehicle is stationary at bus stop, + * - 5 `carryingDangerousGoods`: in case the stationary vehicle is carrying dangerous goods, + * - 6 `vehicleOnFire` : in case of vehicle on fire. + * - 7-255 reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +StationaryVehicleSubCauseCode ::= INTEGER { + unavailable (0), + humanProblem (1), + vehicleBreakdown (2), + postCrash (3), + publicTransportStop (4), + carryingDangerousGoods (5), + vehicleOnFire (6) +} (0..255) + +/** + * This DE represents the identifier of an ITS-S. + * The ITS-S ID may be a pseudonym. It may change over space and/or over time. + * + * @category: Basic information + * @revision: V1.3.1 + */ +StationID ::= INTEGER(0..4294967295) + +/** + * This DE represenst the type of technical context the ITS-S is integrated in. + * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. + * + * The value shall be set to: + * - 0 `unknown`: information about the ITS-S context is not provided, + * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). + * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, + * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + class L1, L2 (VRU Profile 3) + * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + class L3, L4, L5, L6, L7 (VRU Profile 3) + * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, + * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, + * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, + * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, + * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in + UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, + * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). + * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) + * - 14 reserved for future usage + * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 16-255> reserved for future usage. + * + * @category: Communication information. + * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) + */ +StationType ::= INTEGER { + unknown (0), + pedestrian (1), + cyclist (2), + moped (3), + motorcycle (4), + passengerCar (5), + bus (6), + lightTruck (7), + heavyTruck (8), + trailer (9), + specialVehicles (10), + tram (11), + lightVruVehicle (12), + animal (13), + roadSideUnit (15) +} (0..255) + +/** + * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, + * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, + * - `127` if the accuracy information is not available. + * + * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. + * + * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', + * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. + * Such value is not useful for the application. + * + * @unit: 1.5 degree + * @category: Vehicle Information + * @revision: Description revised in V2.1.1 +*/ +SteeringWheelAngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the steering wheel angle of the vehicle at certain point in time. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The value shall be set to: + * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. + * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, + turning clockwise (i.e. to the right). + * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + turning counter-clockwise (i.e. to the left). + * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. + * - `512` if information is not available. + * + * @unit: 1.5 degree + * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). + */ +SteeringWheelAngleValue ::= INTEGER { + negativeOutOfRange (-511), + positiveOutOfRange (511), + unavailable (512) +} (-511..512) + +/** + * This DE indicates the generic sub cause of a detected event. + * + * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 (this is the generic sub cause type) + */ +SubCauseCodeType ::= INTEGER (0..255) + +/** + * This DE indicates a temperature value. + + * The value shall be set to: + * - `-60` for temperature equal to or less than -60 degrees C. + * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C. + * - `67` for temperature equal to or greater than 67 degrees C. + * + * @unit: degrees Celsius + * @category: Basic information + * @revision: Editorial update in V2.1.1 + */ +Temperature ::= INTEGER { + equalOrSmallerThanMinus60Deg (-60), + equalOrGreaterThan67Deg(67)} (-60..67) + +/** + * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. + * The ITS epoch is `00:00:00.000 UTC, 1 January 2004`. + * "Elapsed" means that the true number of milliseconds is continuously counted without interruption, + * i.e. it is not altered by leap seconds, which occur in UTC. + * + * @note: International Atomic Time (TAI) is the time reference coordinate on the basis of the readings of atomic clocks, + * operated in accordance with the definition of the second, the unit of time of the International System of Units. + * TAI is a continuous time scale. UTC has discontinuities, as it is occasionally adjusted by leap seconds. + * As of 1 January, 2022, TimestampIts is 5 seconds ahead of UTC, because since the ITS epoch on 1 January 2004 00:00:00.000 UTC, + * further 5 leap seconds have been inserted in UTC. + * + * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, + * which includes one leap second insertion since the ITS epoch. + * @unit: millisecond + * @category: Basic information + * @revision: Description revised in in V2.1.1 + */ +TimestampIts ::= INTEGER (0..4398046511103) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, + * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, + * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, + * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, + * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, + * - 5 `trafficStationary` : in case traffic is stationary, + * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, + * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, + * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, + * - 9-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +TrafficConditionSubCauseCode ::= INTEGER { + unavailable (0), + increasedVolumeOfTraffic (1), + trafficJamSlowlyIncreasing (2), + trafficJamIncreasing (3), + trafficJamStronglyIncreasing (4), + trafficStationary (5), + trafficJamSlightlyDecreasing (6), + trafficJamDecreasing (7), + trafficJamStronglyDecreasing (8) +} (0..255) + +/** + * This DE indicates a traffic direction that is relevant to information indicated in a message. + * + * The value shall be set to: + * - 0 `allTrafficDirections` : for all traffic directions. + * - 1 `upstreamTraffic` : for upstream traffic. + * - 2 `downstreamTraffic` : for downstream traffic. + * - 3 `oppositeTraffic` : for traffic in the opposite direction. + * + * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * + * @note: Upstream traffic corresponds to the incoming traffic towards the event position, + * and downstream traffic to the departing traffic away from the event position. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 from RelevanceTrafficDirection + */ +TrafficDirection ::= ENUMERATED { + allTrafficDirections (0), + upstreamTraffic (1), + downstreamTraffic (2), + oppositeTraffic (3) +} + +/** + * This DE indicates traffic rules that apply to vehicles at a certain position. + * + * The value shall be set to: + * - `0` if overtaking is prohibited for all vehicles. + * - `1` if overtaking is prohibited for trucks. + * - `2` if vehicles should pass to the right lane. + * - `3` if vehicles should pass to the left lane. + * + * @category: Infrastructure information, Traffic information + * @revision: Editorial update in V2.1.1 + */ +TrafficRule ::= ENUMERATED { + noPassing (0), + noPassingForTrucks (1), + passToRight (2), + passToLeft (3), + ...} + +/** + * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. + * + * The value shall be set to: + * - `n (n >= 0 and n <= 50)` to indicate the actual stability level. + * - the values between 51 and 62 are reserved. + * - `63`: to indicate that the information is unavailable. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionProbability ::= INTEGER { + unavailable (63) +} (0..63) + +/** + * This DE defines the confidence level of the trajectoryInterceptionProbability. + * + * The value shall be set to: + * - `0` to indicate confidence less than 50 % + * - `1` to indicate confidence greater than or equal to 50 % and less than 70 %. + * - `2` to indicate confidence greater than or equal to 70 % and less than 90 %. + * - `3` to indicate confidence greater than or equal to 90%. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionConfidence ::= INTEGER { + lessthan50percent (0), + between50and70Percent (1), + between70and90Percent (2), + above90Percent (3) +} (0..3) + +/** + * This DE provides the turning direction. + * + * The value shall be set to: + * - `left` for turning to te left. + * - `right`for turing to the right. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TurningDirection::= ENUMERATED { + left, + right +} + +/** + * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. + * + * The value shall be set to: + * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 meter, and greater than (n-1) x 0,4 meters. + * - `254` indicates that the turning radius is greater than 253 x 0.4 metre = 101.2 metres. + * - `255` indicates that the information is unavailable. + * + * For vehicle with tracker, the turning radius applies to the vehicle only. + * + * @category: Vehicle information + * @unit 0.4 metre + * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) + */ +TurningRadius ::= INTEGER { + outOfRange (254), + unavailable (255) +} (1..255) + +/** + * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VDS ::= IA5String (SIZE(6)) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, + * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, + * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, + * - 3 `engineProblem` : in case vehicle break down is caused by an engine problem, + * - 4 `transmissionProblem` : in case vehicle break down is caused by transmission problem, + * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, + * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, + * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, + * - 8 `tyrePuncture` : in case vehicle break down is caused by tire puncture, + * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, + * - 10 `vehicleOnFire` : in case the vehicle is on fire, + * - 11-255: reserved for future usage. + * + * @category: Traffic information + + */ +VehicleBreakdownSubCauseCode ::= INTEGER { + unavailable (0), + lackOfFuel (1), + lackOfBatteryPower (2), + engineProblem (3), + transmissionProblem (4), + engineCoolingProblem (5), + brakingSystemProblem (6), + steeringProblem (7), + tyrePuncture (8), + tyrePressureProblem (9), + vehicleOnFire (10) +} (0..255) + +/** + * This DE represents the height if the vehicle, measured from the ground to the highest point, excluding any antennas. + * In case vehicles are equipped with adjustable ride heights, camper shells, and any other + * equipment which may result in varying height, the largest possible height shall be used. + * + * @unit 5 cm (DE ranges to 6.35 m) + * @revision: V1.3.1 +*/ +VehicleHeight ::= INTEGER (0..127) + +/** + * This DE provides information about the presence of a trailer. + * + * The value shall be set to: + * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in a reported vehicle length value. + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in a reported vehicle length value. + * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. + * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * nor the detection of trailer presence/absence is possible. + * + * @category: Vehicle information + * @revision: Description revised in V2.1.1 +*/ +VehicleLengthConfidenceIndication ::= ENUMERATED { + noTrailerPresent (0), + trailerPresentWithKnownLength (1), + trailerPresentWithUnknownLength (2), + trailerPresenceIsUnknown (3), + unavailable (4) +} + +/** + * This DE represents the length of a vehicle. + * + * The value shall be set to: + * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. + * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. + * - `1 023` to indicate that the information in unavailable. + * + * + * @unit: 0.1 metre + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). + */ +VehicleLengthValue ::= INTEGER { + outOfRange(1022), + unavailable(1023) +} (1..1023) + +/** + * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. + * + * The value shall be set to: + * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than n x 100 kg, and greater than (n-1) x 100 kg. + * - `1 023` indicates that the vehicle mass is greater than 102 200 kg. + * - `1 024` indicates the vehicle mass information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit: 100kg + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). +*/ +VehicleMass ::= INTEGER { + outOfRange (1023), + unavailable(1024) +} (1..1024) + +/** + * This DE indicates the role played by a vehicle at a point in time. + * + * The value shall be set to: + * - 0 `default` : to indicate the default vehicle role as indicated by the vehicle type, + * - 1 `publicTransport` : to indicate that the vehicle is used to operate public transport service, + * - 2 `specialTransport` : to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, + * - 3 `dangerousGoods` : to indicate that the vehicle is used for dangerous goods transportation, + * - 4 `roadWork` : to indicate that the vehicle is used to realize roadwork or road maintenance mission, + * - 5 `rescue` : to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, + * - 6 `emergency` : to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, + * - 7 `safetyCar` : to indicate that the vehicle is used for public safety, e.g. patrol, + * - 8 `agriculture` : to indicate that the vehicle is used for agriculture, e.g. farm tractor, + * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, + * - 10 `military` : to indicate that the vehicle is used for military purpose, + * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, + * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service, + * - 13 `reserved` : reserved for future usage, + * - 14 `reserved` : reserved for future usage, + * - 15 `reserved` : reserved for future usage. + * + * @category: Vehicle Information + * @revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) + */ +VehicleRole ::= ENUMERATED { + default (0), + publicTransport (1), + specialTransport(2), + dangerousGoods (3), + roadWork (4), + rescue (5), + emergency (6), + safetyCar (7), + agriculture (8), + commercial (9), + military (10), + roadOperator (11), + taxi (12), + reserved1 (13), + reserved2 (14), + reserved3 (15) +} + +/** + * This DE describes the subclass of a vehicle. + * + * The value shall be set to: + * - `0` unknown : to indicate that the type of vehicle is unknown. + * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. + * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. + * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. + * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. + * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. + * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). + * - `7` tram : to indicate a vehicle running on tracks along public streets. + * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. + * - `9` agricultural : to indicate a vehicle used for agricultural purposes. + * - Values 10 to 255 are reserved for future use. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +VehicleSubClass ::= INTEGER { + unknown (0), + passengerCar (1), + bus (2), + lightTruck (3), + heavyTruck (4), + trailer (5), + specialVehicles (6), + tram (7), + emergencyVehicle (8), + agricultural (9) +} (0..255) + +/** + * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. + + * The value shall be set to: + * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. + * - `61`indicates that the vehicle width is greater than 6,0 metres. + * - `62`indicates that the information in unavailable. + * + * @unit: 0.1 metre + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). + */ +VehicleWidth ::= INTEGER { + outOfRange (61), + unavailable (62) +} (1..62) + +/** + * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @category: Vehicle information + * @unit: 0.1 m/s2 + * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. + * +*/ +VerticalAccelerationValue ::= AccelerationValue + +/** + * This DE Identifies all the VRU profile types that are believed to be within a cluster. + * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU. + * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member. + * - 2 `motorcycle` : indicates that the VRU cluster contains at least one motorcycle VRU member. + * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. + * + * Otherwise, the corresponding bit shall be set to 0. + * + * @category: VRU information + * @revision: Created in V2.1.1 +*/ +VruClusterProfiles ::= BIT STRING { + pedestrian (0), + bicyclist (1), + motorcyclist (2), + animal (3) +} (SIZE(4)) + +/** + * This DE represents the possible VRU usage conditions. + + * - The value shall be set to: + * - 0 `unavailable` : to indicate that the usage conditions are unavailable. + * - 1 `other (1)` : to indicate that the VRU is in a state not defined below. + * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device. + * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use. + * - 4 `typing (4)` : to indicate that the human is texting, entering addresses and other manual input activity. + * - 5 `calling (5)` : to indicate that the VRU device is currently received a call. + * - 6 `playingGames (6)` : to indicate that the human is playing games. + * - 7 `reading (7)` : to indicate that the human is reading on the VRU device. + * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, + * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruDeviceUsage ::= ENUMERATED { + unavailable (0), + other (1), + idle (2), + listeningToAudio (3), + typing (4), + calling (5), + playingGames (6), + reading (7), + viewing (8), + max (255) +} + +/** + * This DE represents the possible VRU environment conditions. + * + * - The value shall be set to: + * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, + * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing. + * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). + * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. + * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. + * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruEnvironment ::= ENUMERATED { + unavailable (0), + intersectionCrossing (1), + zebraCrossing (2), + sidewalk (3), + onVehicleRoad (4), + protectedGeographicArea (5), + max (255) +} + +/** + * This DE indicates the status of the possible human control over a VRU vehicle. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information on is unavailable. + * - 1 `braking` : to indicate that the VRU is braking. + * - 2 `hardBraking` : to indicate that the VRU is braking hard. + * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling. + * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking. + * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard. + * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. + * - value 7 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruMovementControl ::= ENUMERATED { + unavailable (0), + braking (1), + hardBraking (2), + stopPedaling (3), + brakingAndStopPedaling (4), + hardBrakingAndStopPedaling (5), + noReaction (6), + max (255) +} + +/** + * This DE indicates the profile of a pedestrian. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information on is unavailable. + * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies. + * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker. + * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfilePedestrian ::= ENUMERATED { + unavailable (0), + ordinary-pedestrian (1), + road-worker (2), + first-responder (3), + max (15) +} + +/** + * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information is unavailable. + * - 1 `bicyclist ` : to indicate a cycle and bicyclist. + * - 2 `wheelchair-user` : to indicate a wheelchair and its user. + * - 3 `horse-and-rider` : to indicate a horse and rider. + * - 4 `rollerskater` : to indicate a rolleskater and skater. + * - 5 `e-scooter` : to indicate an e-scooter and rider. + * - 6 `personal-transporter` : to indicate a personal-transporter and rider. + * - 7 `pedelec` : to indicate a pedelec and rider. + * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. + * - value 9 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileBicyclist ::= ENUMERATED { + unavailable (0), + bicyclist (1), + wheelchair-user (2), + horse-and-rider (3), + rollerskater (4), + e-scooter (5), + personal-transporter (6), + pedelec (7), + speed-pedelec (8), + max (15) +} + +/** + * This DE indicates the profile of a motorcyclist and corresponding vehicle. + * + * The value shall be set to: + * - 0 `unavailable ` : to indicate that the information is unavailable. + * - 1 `moped (1)` : to indicate a moped and rider. + * - 2 `motorcycle` : to indicate a motorcycle and rider. + * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider. + * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. + * - value 5 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileMotorcyclist ::= ENUMERATED { + unavailable (0), + moped (1), + motorcycle (2), + motorcycle-and-sidecar-right (3), + motorcycle-and-sidecar-left (4), + max (15) +} + +/** + * This DE indicates the profile of a animal + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information is unavailable. + * - 1 `wild-animal` : to indicate a animal living in the wildness. + * - 2 `farm-animal` : to indicate an animal beloning to a farm. + * - 3 `service-animal` : to indicate an animal that supports a human being. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileAnimal ::= ENUMERATED { + unavailable (0), + wild-animal (1), + farm-animal (2), + service-animal (3), + max (15) +} + +/** + * This DE indicates the approximate size of a VRU including the VRU vehicle used. + * + * The value shall be set to: + * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1. + * - 1 `low (1)` : the VRU size class is low depending on the VRU profile. + * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile. + * - 3 `high (3)` : the VRU size class is high depending on the VRU profile. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSizeClass ::= ENUMERATED { + unavailable (0), + low (1), + medium (2), + high (3), + max (15) +} + +/** + * This DE describes the status of the exterior light switches of a vehicle or a VRU. + * The DE is an extension of the existing vehicular DE ExteriorLight. + * + * The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU + * or automatically by a vehicle or VRU system: + * - 0 `unavailable` : indicates no information available. + * - 1 `backFlashLight ` : indicates the status of the back flash light. + * - 2 `helmetLight` : indicates the status of the helmet light. + * - 3 `armLight` : indicates the status of the arm light. + * - 4 `legLight` : indicates the status of the leg leight. + * - 5 `wheelLight` : indicates the status of the wheel light. + * - Bits 6 to 8 : reserved for future use. + * The bit values do not indicate if the corresponding lamps are alight or not. + * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSpecificExteriorLights ::= BIT STRING { + unavailable (0), + backFlashLight (1), + helmetLight (2), + armLight (3), + legLight (4), + wheelLight (5) +} (SIZE(8)) + +/** + * Perpendicular distance between front and rear axle of the wheel base of vehicle. + * + * The value shall be set to: + * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0.1 metres and more than (n-1) x 0.1 metres. + * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. + * - `127` indicates that the information is unavailable. + * + * @unit 0.1 metre + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +WheelBaseVehicle ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. + * The required confidence level is defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n >=1 and n < 126)` is equal to or less than n x 0.1 degrees and more than (n-1) x 0.1 degrees. + * - `126` if the angle accuracy is out of range, i.e. greater than 12,5 degrees. + * - `127` if the angle accuracy information is not available. + * + * + * @unit 0,1 degrees + * @category: GeoReference Information + * @revision: Created in V2.1.1 +*/ +Wgs84AngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + + +/** + * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. + * + * @unit 0,1 degrees + * @category: GeoReference Information + * @revision: Created in V2.1.1 +*/ +Wgs84AngleValue ::= INTEGER { + wgs84North (0), + wgs84East (900), + wgs84South (1800), + wgs84West (2700), + doNotUse (3600), + unavailable (3601) +} (0..3601) + +/** + * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. + * + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +WMInumber ::= IA5String (SIZE(1..3)) + +/** + * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on wrong way driving event is unavailable, + * - 1 `wrongLane` : in case vehicle is driving on a lane for which it has no authorization to use, + * - 2 `wrongDirection` : in case vehicle is driving in a direction that it is not allowed, + * - 3-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +WrongWayDrivingSubCauseCode ::= INTEGER { + unavailable (0), + wrongLane (1), + wrongDirection (2) +} (0..255) + +/** + * This DE denotes the absolute accuracy range for reported yaw rate value for a confidence level of 95%. + * + * The value shall be set to: + * - `0` indicates that the accuracy is equal to or less than 0,01 degree/second. + * - `1` indicates that the accuracy is equal to or less than 0,05 degrees/second. + * - `2` indicates that the accuracy is equal to or less than 0,1 degree/second. + * - `3` indicates that the accuracy is equal to or less than 1 degree/second. + * - `4` indicates that the accuracy is equal to or less than 5 degrees/second. + * - `5` indicates that the accuracy is equal to or less than 10 degrees/second. + * - `6` indicates that the accuracy is equal to or less than 100 degrees/second. + * - `7` indicates that the accuracy is out of range, i.e. greater than 100 degrees/second. + * - `8` indicates that the accuracy information is unavailable + * + * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported yaw rate value may be valid and used by the application. + * + * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported + * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 + */ +YawRateConfidence ::= ENUMERATED { + degSec-000-01 (0), + degSec-000-05 (1), + degSec-000-10 (2), + degSec-001-00 (3), + degSec-005-00 (4), + degSec-010-00 (5), + degSec-100-00 (6), + outOfRange (7), + unavailable (8) +} + +/** + * This DE represents the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded + * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. The leading sign denotes the direction of rotation. + * + * The value shall be set to: + * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. + * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s. + * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s. + * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. + * - `32 767` to indicate that the information is not available. + * + * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. + * The reading instant should be the same as for the vehicle acceleration. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit: 0,01 degree per second. + * @category: Vehicle Information + * @revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). +*/ +YawRateValue ::= INTEGER { + negativeOutOfRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +---------------------------------------- +-- Specification of CDD Data Frames: +---------------------------------------- + +/** + * This DF represents an acceleration component along with a confidence with a predefined confidence level of 95% for the component. + * + * It includes the following components: + * + * @field value: the acceleration value which can be estimated as the mean of the current distribution. + * + * @field value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * + * @category: Kinematic Information + * @revision: Created in V2.1.1 + */ +Acceleration1d ::= SEQUENCE { + value AccelerationValue, + confidence AccelerationConfidence +} + +/** + * This DF represents information associated to changes in acceleration. + * + * It includes the following components: + * + * @field accelOrDecel: the indication of an acceleration change. + * + * @field value actionDeltaTime: the period in which the acceleration change action is performed. + * + * @category: Kinematic Information + * @revision: Created in V2.1.1 + */ +AccelerationChangeIndication ::= SEQUENCE { + accelOrDecel AccelerationChange, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents an identifier used to describe a protocol action taken by an ITS-S. + * + * It includes the following components: + * + * @field originatingStationID: ID of the ITS-S that takes the action. + * + * @field sequenceNumber: a sequence number. + * + * @category: Communication information + * @revision: V1.3.1 + */ +ActionID ::= SEQUENCE { + originatingStationID StationID, + sequenceNumber SequenceNumber +} + +/** + * This DF represents a list of @ref ActionID. + + * @category: Communication Information + * @revision: Created in V2.1.1 based on ReferenceDenms +*/ +ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID + +/** + * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. + * + * It includes the following components: + * + * @field altitudeValue: altitude of a geographical point. + * + * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +Altitude ::= SEQUENCE { + altitudeValue AltitudeValue, + altitudeConfidence AltitudeConfidence +} + +/** + * This DE represents a general container for usage in various types of messages. + * + * It includes the following components: + * + * @field stationType: the type of station that has generated the message that contains the basic container. + * + * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +BasicContainer ::= SEQUENCE { + stationType StationType, + referencePosition ReferencePosition, + ... +} + +/** + * This DF represents a general Data Frame to describe an angle component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angle value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngle ::= SEQUENCE { + value CartesianAngleValue, + confidence AngleConfidence +} + +/** + * This DF represents a general Data Frame to describe an angular speed component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngularSpeed ::= SEQUENCE { + value CartesianAngularSpeedValue, + confidence AngularSpeedConfidence +} + +/** + * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngularAcceleration ::= SEQUENCE { + value CartesianAngularAccelerationValue, + confidence AngularAccelerationConfidence +} + +/** + * This DF represents a coordinate in a cartesian reference system + * + * It includes the following components: + * + * @field value: the coordinate value which can be estimated as the mean of the current distribution. + * + * @field confidence: the coordinate accuracy associated to the provided value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateWithConfidence ::= SEQUENCE { + value CartesianCoordinateLarge, + confidence CoordinateConfidence +} + +/** + * This DF represents a position in a two- or three-dimensional cartesian coordinate system. + * + * It includes the following components: + * + * @field xCoordinate: the X coordinate value. + * + * @field yCoordinate: the Y coordinate value. + * + * @field zCoordinate: the optional Z coordinate value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianPosition3d::=SEQUENCE{ + xCoordinate CartesianCoordinate, + yCoordinate CartesianCoordinate, + zCoordinate CartesianCoordinate OPTIONAL +} + +/** + * This DF is a representation of the cause code value of a traffic event. + * + * It includes the following components: + * + * @field causeCode: the main cause of a detected event. + * + * @field subCauseCode: the subordinate cause of a detected event. + * + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. + * + * @category: Traffic information + * @revision: Editorial update in V2.1.1 + */ +CauseCode ::= SEQUENCE { + causeCode CauseCodeType, + subCauseCode SubCauseCodeType, + ... +} + +/** + * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. + * + * + * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. + * @category: Traffic information + * @revision: Editorial update in V2.1.1 + */ + +CauseCodeChoice::= CHOICE { + reserved SubCauseCodeType, + trafficCondition TrafficConditionSubCauseCode, + accident AccidentSubCauseCode, + roadworks RoadworksSubCauseCode, + reserved4 SubCauseCodeType, + impassability SubCauseCodeType, + adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, + aquaplaning SubCauseCodeType, + reserved8 SubCauseCodeType, + hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, + hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, + hazardousLocation-AnimalOnTheRoad HazardousLocation-AnimalOnTheRoadSubCauseCode, + humanPresenceOnTheRoad HumanPresenceOnTheRoadSubCauseCode, + reserved13 SubCauseCodeType, + wrongWayDriving WrongWayDrivingSubCauseCode, + rescueAndRecoveryWorkInProgress RescueAndRecoveryWorkInProgressSubCauseCode, + reserved16 SubCauseCodeType, + adverseWeatherCondition-ExtremeWeatherCondition AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, + adverseWeatherCondition-Visibility AdverseWeatherCondition-VisibilitySubCauseCode, + adverseWeatherCondition-Precipitation AdverseWeatherCondition-PrecipitationSubCauseCode, + violence SubCauseCodeType, + reserved21 SubCauseCodeType, + reserved22 SubCauseCodeType, + reserved23 SubCauseCodeType, + reserved24 SubCauseCodeType, + reserved25 SubCauseCodeType, + slowVehicle SlowVehicleSubCauseCode, + dangerousEndOfQueue DangerousEndOfQueueSubCauseCode, + reserved28 SubCauseCodeType, + reserved29 SubCauseCodeType, + reserved30 SubCauseCodeType, + reserved31 SubCauseCodeType, + reserved32 SubCauseCodeType, + reserved33 SubCauseCodeType, + reserved34 SubCauseCodeType, + reserved35 SubCauseCodeType, + reserved36 SubCauseCodeType, + reserved37 SubCauseCodeType, + reserved38 SubCauseCodeType, + reserved39 SubCauseCodeType, + reserved40 SubCauseCodeType, + reserved41 SubCauseCodeType, + reserved42 SubCauseCodeType, + reserved43 SubCauseCodeType, + reserved44 SubCauseCodeType, + reserved45 SubCauseCodeType, + reserved46 SubCauseCodeType, + reserved47 SubCauseCodeType, + reserved48 SubCauseCodeType, + reserved49 SubCauseCodeType, + reserved50 SubCauseCodeType, + reserved51 SubCauseCodeType, + reserved52 SubCauseCodeType, + reserved53 SubCauseCodeType, + reserved54 SubCauseCodeType, + reserved55 SubCauseCodeType, + reserved56 SubCauseCodeType, + reserved57 SubCauseCodeType, + reserved58 SubCauseCodeType, + reserved59 SubCauseCodeType, + reserved60 SubCauseCodeType, + reserved61 SubCauseCodeType, + reserved62 SubCauseCodeType, + reserved63 SubCauseCodeType, + reserved64 SubCauseCodeType, + reserved65 SubCauseCodeType, + reserved66 SubCauseCodeType, + reserved67 SubCauseCodeType, + reserved68 SubCauseCodeType, + reserved69 SubCauseCodeType, + reserved70 SubCauseCodeType, + reserved71 SubCauseCodeType, + reserved72 SubCauseCodeType, + reserved73 SubCauseCodeType, + reserved74 SubCauseCodeType, + reserved75 SubCauseCodeType, + reserved76 SubCauseCodeType, + reserved77 SubCauseCodeType, + reserved78 SubCauseCodeType, + reserved79 SubCauseCodeType, + reserved80 SubCauseCodeType, + reserved81 SubCauseCodeType, + reserved82 SubCauseCodeType, + reserved83 SubCauseCodeType, + reserved84 SubCauseCodeType, + reserved85 SubCauseCodeType, + reserved86 SubCauseCodeType, + reserved87 SubCauseCodeType, + reserved88 SubCauseCodeType, + reserved89 SubCauseCodeType, + reserved90 SubCauseCodeType, + vehicleBreakdown VehicleBreakdownSubCauseCode, + postCrash PostCrashSubCauseCode, + humanProblem HumanProblemSubCauseCode, + stationaryVehicle StationaryVehicleSubCauseCode, + emergencyVehicleApproaching EmergencyVehicleApproachingSubCauseCode, + hazardousLocation-DangerousCurve HazardousLocation-DangerousCurveSubCauseCode, + collisionRisk CollisionRiskSubCauseCode, + signalViolation SignalViolationSubCauseCode, + dangerousSituation DangerousSituationSubCauseCode, + railwayLevelCrossing RailwayLevelCrossingSubCauseCode, + reserved101 SubCauseCodeType, + reserved102 SubCauseCodeType, + reserved103 SubCauseCodeType, + reserved104 SubCauseCodeType, + reserved105 SubCauseCodeType, + reserved106 SubCauseCodeType, + reserved107 SubCauseCodeType, + reserved108 SubCauseCodeType, + reserved109 SubCauseCodeType, + reserved110 SubCauseCodeType, + reserved111 SubCauseCodeType, + reserved112 SubCauseCodeType, + reserved113 SubCauseCodeType, + reserved114 SubCauseCodeType, + reserved115 SubCauseCodeType, + reserved116 SubCauseCodeType, + reserved117 SubCauseCodeType, + reserved118 SubCauseCodeType, + reserved119 SubCauseCodeType, + reserved120 SubCauseCodeType, + reserved121 SubCauseCodeType, + reserved122 SubCauseCodeType, + reserved123 SubCauseCodeType, + reserved124 SubCauseCodeType, + reserved125 SubCauseCodeType, + reserved126 SubCauseCodeType, + reserved127 SubCauseCodeType, + reserved128 SubCauseCodeType + } + +/** + * This DF is an alternative representation of the cause code value of a traffic event. + * + * It includes the following components: + * + * @field ccAndScc: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. + * + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @category: Traffic information + * @revision: Created in V2.1.1 + */ + +CauseCodeV2 ::= SEQUENCE { + ccAndScc CauseCodeChoice, + ... +} + +/** + * The DF describes the position of a CEN DSRC road side equipment. + * + * It includes the following components: + * + * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. + * + * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. + * + * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +CenDsrcTollingZone ::= SEQUENCE { + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, + ... +} + +/** + * + * This DF represents the shape of a circular area or a right cylinder that is centred on a reference position defined outside of the context of this DF. + * + * It includes the following components: + * + * @field nodeCenterPoint: optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field radius: the radius of the circular area. + * + * @field height: the optional height, present if the shape is a right cylinder extending in the positive z-axis. + * + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +CircularShape ::= SEQUENCE { + nodeCenterPoint CartesianPosition3d OPTIONAL, + radius StandardLength12b, + height StandardLength12b OPTIONAL, + ... +} + +/** + * This DF indicates the opening/closure status of a lane or a set of lanes. + * + * It includes the following components: + * + * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of inner hard shoulder lanes. + * + * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of outer hard shoulder lanes. + * + * @field drivingLaneStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of driving lanes. + * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. + * + * @category: GeoReference information, Road topology information + * @revision: V1.3.1 + */ +ClosedLanes ::= SEQUENCE { + innerhardShoulderStatus HardShoulderStatus OPTIONAL, + outerhardShoulderStatus HardShoulderStatus OPTIONAL, + drivingLaneStatus DrivingLaneStatus OPTIONAL, + ... +} + +/** + * This DF provides information about the breakup of a cluster. + * + * It includes the following components: + * + * @field clusterBreakupReason: indicates the reason for breakup. + * + * @field breakupTime: indicates the time of breakup. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterBreakupInfo ::= SEQUENCE { + clusterBreakupReason ClusterBreakupReason, + breakupTime DeltaTimeQuarterSecond, + ... +} + +/** + * This DF provides information about the joining of a cluster. + * + * It includes the following components: + * + * @field clusterId: indicates the identifier of the cluster. + * + * @field joinTime: indicates the time of joining. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterJoinInfo ::= SEQUENCE { + clusterId ClusterId, + joinTime DeltaTimeQuarterSecond, + ... +} + +/** + * The DF provides information about the leaving of a cluster. + * + * It includes the following components: + * + * @field clusterId: indicates the cluster. + * + * @field clusterLeaveReason: indicates the reason for leaving. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterLeaveInfo ::= SEQUENCE { + clusterId ClusterId, + clusterLeaveReason ClusterLeaveReason, + ... +} + +/** + * This DF represents the column of the lower triangular positive semi-definite matrix and consists of a list of correlation row values. + * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. + * Each column "i" of the lower triangular then contains k-(i-1) values, where "i" refers to the column number count + * starting at 1 from the left. + * + * @category: Sensing Information + * @revision: Created in V2.1.1 +*/ +CorrelationColumn ::= SEQUENCE SIZE (1..21) OF CorrelationRowValue + +/** + * This DF represents the curvature of the vehicle trajectory and the accuracy. + * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. + * + * It includes the following components: + * + * @field curvatureValue: Detected curvature of the vehicle trajectory. + * + * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +Curvature ::= SEQUENCE { + curvatureValue CurvatureValue, + curvatureConfidence CurvatureConfidence +} + +/** + * This DF provides a description of dangerous goods being carried by a heavy vehicle. + * + * It includes the following components: + * + * @field dangerousGoodsType: Type of dangerous goods. + * + * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in + * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], + * + * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. + * If yes, the value shall be set to TRUE, + * + * @field tunnelsRestricted: whether the heavy vehicle carrying dangerous goods is restricted to enter tunnels. + * If yes, the value shall be set to TRUE, + * + * @field limitedQuantity: whether the carried dangerous goods are packed with limited quantity. + * If yes, the value shall be set to TRUE, + * + * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency + * service should deal with an incident. This component is optional; it shall be present if the information is available, + * + * @field phoneNumber: contact phone number of assistance service in case of incident or accident. + * This component is optional, it shall be present if the information is available. + * + * @field companyName: name of company that manages the transportation of the dangerous goods. + * This component is optional; it shall be present if the information is available. + * + * @category Vehicle information + * @revision: V1.3.1 + */ +DangerousGoodsExtended ::= SEQUENCE { + dangerousGoodsType DangerousGoodsBasic, + unNumber INTEGER (0..9999), + elevatedTemperature BOOLEAN, + tunnelsRestricted BOOLEAN, + limitedQuantity BOOLEAN, + emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, + phoneNumber PhoneNumber OPTIONAL, + companyName UTF8String (SIZE (1..24)) OPTIONAL, + ... +} + +/** + * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. + * + * It includes the following components: + * + * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. + * + * @field deltaLongitude: A delta longitude offset with regards to the longitude value of the reference position. + * + * @field deltaAltitude: A delta altitude offset with regards to the altitude value of the reference position. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +DeltaReferencePosition ::= SEQUENCE { + deltaLatitude DeltaLatitude, + deltaLongitude DeltaLongitude, + deltaAltitude DeltaAltitude +} + +/** + * This DF represents a portion of digital map, described using a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition + +/** + * + * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on a reference position which is defined outside of the context of this DF. + * + * It includes the following components: + * + * @field centerPoint: optional offset point which the ellipse is centred on with respect to the reference position. + * + * @field semiMajorAxisLength: half length of the major axis of the ellipse. + * + * @field semiMinorAxisLength: half length of the minor axis of the ellipse. + * + * @field orientation: the optional orientation of the major axis of the ellipse in the WGS84 coordinate system. + * + * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ + +EllipticalShape ::= SEQUENCE { + centerPoint CartesianPosition3d OPTIONAL, + semiMajorAxisLength StandardLength12b, + semiMinorAxisLength StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL, + ... +} + +/** + * + * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * The following options are available: + * + * @field euVehicleCategoryL: indicates a vehicle in the L category. + * + * @field euVehicleCategoryM: indicates a vehicle in the M category. + * + * @field euVehicleCategoryN: indicates a vehicle in the N category. + * + * @field euVehicleCategoryO: indicates a vehicle in the O category. + * + * @field euVehicleCategoryT: indicates a vehicle in the T category. + * + * @field euVehicleCategoryG: indicates a vehicle in the G category. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +EuVehicleCategoryCode ::= CHOICE { + euVehicleCategoryL EuVehicleCategoryL, + euVehicleCategoryM EuVehicleCategoryM, + euVehicleCategoryN EuVehicleCategoryN, + euVehicleCategoryO EuVehicleCategoryO, + euVehicleCategoryT NULL, + euVehicleCategoryG NULL + } + +/** + * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime + * or do not contain the COMPONENT eventDeltaTime. + * + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @revision: created in V2.1.1 based on EventHistory + */ +EventZone::= EventHistory + ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | + (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) + +/** + * The DF consists of a list of @ref EventPoint. + * + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref EventZone instead. + * @revision: Generalized the semantics in V2.1.1 + */ +EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint + + +/** + * This DF provides information related to an event at a defined position. + * + * It includes the following components: + * + * @field eventPosition: offset position of a detected event point to a defined position. + * + * @field eventDeltaTime: optional time travelled by the detecting ITS-S since the previous detected event point. + * + * @field informationQuality: Information quality of the detection for this event point. + * + * @category: GeoReference information, Traffic information + * @revision: generalized the semantics in V2.1.1 + */ +EventPoint ::= SEQUENCE { + eventPosition DeltaReferencePosition, + eventDeltaTime PathDeltaTime OPTIONAL, + informationQuality InformationQuality +} + +/** + * This DF represents the status of the exterior light switches of a traffic participant. + * + * It includes the following components: + * + * @field vehicular: represents the status of the exterior light switches of a road vehicle. + * + * @field vruSpecific: represents the status of the exterior light switches of a VRU. + * + * @category: VRU information + * @revision: created in V2.1.1 + */ +ExteriorLightsExtended ::= SEQUENCE { + vehicular ExteriorLights, + vruSpecific VruSpecificExteriorLights, + ... +} + + +/** + * This DF indicates a transversal position in relation to the different lanes of the road. + * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where V-ITS-S would normally not be present. + * + * The following options are available: + * + * @field trafficLanePosition: a position on a traffic lane. + * + * @field nonTrafficLanePosition: a position on a lane which is not a traffic lane. + * + * @field trafficIslandPosition: a position on a traffic island + * + * @field mapPosition: a position on a lane identified in a MAPEM. + * + * @category: Road Topology information + * @revision: created in V2.1.1 + */ +GeneralizedLanePosition::= CHOICE { + trafficLanePosition LanePosition, + nonTrafficLanePosition LanePositionAndType, + trafficIslandPosition TrafficIslandPosition, + mapPosition MapPosition, + ... +} + +/** + * This DF represents the Heading in a WGS84 co-ordinates system. + * + * It includes the following components: + * + * @field headingValue: the heading value. + * + * @field headingConfidence: the accuracy of the reported heading value with a predefined confidence level. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84Angle instead. + * @category: Kinematics Information + * @revision: V1.3.1 + */ +Heading ::= SEQUENCE { + headingValue HeadingValue, + headingConfidence HeadingConfidence +} + + +/** + * This DF provides information associated to heading change indicators such as a change of direction. + * + * It includes the following components: + * + * @field direction: the direction of heading change value. + * + * @field actionDeltaTime: the period over which a direction change action is performed. + * + * @category: Kinematics Information + * @revision: created in V2.1.1 + */ +HeadingChangeIndication ::= SEQUENCE { + direction TurningDirection, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents a frequency channel + * + * It includes the following components: + * + * @field centreFrequency: the centre frequency of the channel + * @unit: 10exp+2 Hz (where exp is exponent) + * + * @field channelWidth: width of the channel + * @unit: 10exp Hz (where exp is exponent) + * + * @field exponent of the power of 10 + * @unit: N/A + * + * @category: Communication information + * @revision: created in V2.1.1 +*/ +InterferenceManagementChannel ::= SEQUENCE { + centreFrequency INTEGER (1 .. 99999), + channelWidth INTEGER (0 .. 9999), + exponent INTEGER (0 .. 15) +} + +/** + * + * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. + * + * It includes the following components: + * + * @field zoneDefinition: contains the geographical definition of the zone. + * + * @field managementInfo: contains interference management information applicable in the zone defined in the component zoneDefinition. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZone ::= SEQUENCE { + zoneDefinition InterferenceManagementZoneDefinition, + managementInfo InterferenceManagementInfo +} + +/** + * This DF represents the geographical definition of the zone where band sharing occurs. + * + * It includes the following components: + * + * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneRadius: optional radius of the interference management zone in metres. + * + * @field interferenceManagementZoneID: optional identification of the interference management zone. + * + * @field interferenceManagementZoneShape: shape of the interference management zone. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZoneDefinition::= SEQUENCE{ + interferenceManagementZoneLatitude Latitude, + interferenceManagementZoneLongitude Longitude, + interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, + interferenceManagementZoneID ProtectedZoneID OPTIONAL, + interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, + ... +} + +/** + * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. + * + * @category: Communication information. + * @revision: created in V2.1.1 + */ +InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel + + +/** + * This DF contains interference management information for one affected frequency channel. + * + * It includes the following components: + * + * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management + * + * @field interferenceManagementZoneType: type of the interference management zone. + * + * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. + * In the case where no mitigation should be applied by the ITS-S, this is indicated by the field interferenceManagementMitigationType being absent. + * + * @field expiryTime: 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 + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementInfoPerChannel ::= SEQUENCE { + interferenceManagementChannel InterferenceManagementChannel, + interferenceManagementZoneType InterferenceManagementZoneType, + interferenceManagementMitigationType MitigationForTechnologies OPTIONAL, + expiryTime TimestampIts OPTIONAL, + ... +} + +/** + * 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. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone + +/** + * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.17]. + * + * It includes the following components: + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the intersection + * + * @note: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique. + * @category: Road topology information + * @revision: created in V2.1.1 + */ +IntersectionReferenceId ::= SEQUENCE { + region Identifier2B OPTIONAL, + id Identifier2B +} + +/** + * This DF consists of a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition + +/** + * 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: + * + * @field protocolVersion: version of the ITS message. + * + * @field messageId: type of the ITS message. + * + * @field stationId: the identifier of the ITS-S that generates the ITS message in question. + * + * @category: Communication information + * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. + */ +ItsPduHeader ::= SEQUENCE { + protocolVersion INTEGER (0..255), + messageId MessageId, + stationId StationID +} + +/** + * This DF indicates a transversal position in resolution of lanes and the associated lane type. + * + * It includes the following components: + * + * @field transversalPosition: the transversal position. + * + * @field laneType: the type of the lane identified in the component transversalPosition. + * + * @category GeoReference information + * @revision: Created in V2.1.1 + */ +LanePositionAndType::= SEQUENCE { + transversalPosition LanePosition, + laneType LaneType, + ... +} + +/** + * This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. + * + * It includes the following components: + * + * @field lateralAccelerationValue: lateral acceleration value at a point in time. + * + * @field lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @category Vehicle information + * @revision: V1.3.1 + */ +LateralAcceleration ::= SEQUENCE { + lateralAccelerationValue LateralAccelerationValue, + lateralAccelerationConfidence AccelerationConfidence +} + +/** + * This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. + * + * It includes the following components: + * + * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. + + * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @category: Vehicle information + * @revision: V1.3.1 + */ +LongitudinalAcceleration ::= SEQUENCE { + longitudinalAccelerationValue LongitudinalAccelerationValue, + longitudinalAccelerationConfidence AccelerationConfidence +} + +/** + * This DF represents the estimated position along the longitudinal length of a particular lane. + * + * It includes the following components: + * + * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. + * + * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. + * + * @category: Road topology information + * @revision: created in V2.1.1 + */ +LongitudinalLanePosition ::= SEQUENCE { + longitudinalLanePositionValue LongitudinalLanePositionValue, + longitudinalLanePositionConfidence LongitudinalLanePositionConfidence +} + +/** + * 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 @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. + * + * @category: Vehicle information + * @revision: V1.3.1 +*/ +LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn + +/** + * 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: + * + * @field mapReference: optionally identifies the MAPEM containing the topology information. + * It is absent if the MAPEM topology is known from the context. + * + * @field laneId: identifies the lane in the road segment or intersection topology on which the position is located. + * + * @field connectionId: identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the + * conflict area of an intersection which connects e.g an ingress with an egress lane. + * + * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. + * + * @category: Road topology information + * @revision: Created in V2.1.1 + */ +MapPosition ::= SEQUENCE { + mapReference MapReference OPTIONAL, + laneId Identifier1B, + longitudinalLanePosition LongitudinalLanePosition OPTIONAL, + connectionId Identifier1B, + ... +} + +/** + * 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: + * + * @field roadsegment: option that identifies the description of a road segment contained in a MAPEM. + * + * @field intersection: option that identifies the description of an intersection contained in a MAPEM. + * + * @category: Road topology information + * @revision: Created in V2.1.1 + */ + +MapReference::= CHOICE { + roadsegment RoadSegmentReferenceId, + intersection IntersectionReferenceId + } + +/** + * This DF provides information about a message with respect to the segmentation process at the sender. + * + * It includes the following components: + * + * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. + * + * @field thisMsgNo: indicates the position of the message within of the total set of messages. + +*/ +MessageSegmentationInfo ::= SEQUENCE { + totalMsgNo CardinalNumber1B, + thisMsgNo OrdinalNumber1B + } + +/** + * + * This DF represents a list of @ref MitigationPerTechnologyClass. + * @category: Communication information + * @revision: Created in V2.1.1 +*/ +MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF 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: + * + * @field accessTechnologyClass: channel access technology to which this mitigation is applied. + * + * @field lowDutyCycle: duty cycle limit. + * @unit: 0.01% steps + * + * @field powerReduction: the delta value of power to be reduced. + * @unit: dB + * + * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.25]. + * @unit: ms + * + * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.26]. + * @unit: ms + * + * @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. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +MitigationPerTechnologyClass ::= SEQUENCE { + accessTechnologyClass AccessTechnologyClass, + lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, + powerReduction INTEGER (0 .. 30) OPTIONAL, + dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, + dmcTonLimit INTEGER (0 .. 20) OPTIONAL, + ... +} + +/** + * This DF indicates both the class and associated subclass that best describes an object. + * + * The following options are available: + * + * @field vehicleSubClass: the object is a road vehicle. + * + * @field vruSubClass: the object is a VRU. + * + * @field groupSubClass: the object is a VRU group or cluster. + * + * @field otherSubClass: the object is of a different types as the above. + * + * @category: Sensing information + * @revision: Created in V2.1.1 + */ +ObjectClass ::= CHOICE { + vehicleSubClass VehicleSubClass, + vruSubClass VruProfileAndSubprofile, + groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), + otherSubClass OtherSubClass, + ... +} + +/** + * This DF consist of a list of object classes. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence + +/** + * This DF represents the classification of a detected object together with a confidence indication. + * + * It includes the following components: + * + * @field objectClass: the class of the object. + * + * @field ObjectClassConfidence: the associated confidence information. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectClassWithConfidence ::= SEQUENCE { + objectClass ObjectClass, + confidence ConfidenceLevel +} +/** + * This DF represents a dimension of an object together with a confidence indication. + * + * It includes the following components: + * + * @field ObjectDimensionValue: the object dimension value which can be estimated as the mean of the current distribution. + * + * @field ObjectDimensionValue: the associated confidence information. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimension ::= SEQUENCE { + value ObjectDimensionValue, + confidence ObjectDimensionValue +} + +/** + * This DF that represents a path with a set of path points. + * It may contain up to `40` @ref 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. + * + * @category: GeoReference information, Vehicle information + * @revision: created in V2.1.1 based on PathHistory + */ +Path::= SEQUENCE (SIZE(0..40)) OF PathPoint + +/** + * This DF that represents a path history with a set of path points. + * It may contain up to `40` @ref 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. + * + * @category: GeoReference information, Vehicle information + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead + * @revision: semantics updated in V2.1.1 + */ +PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint + +/** + * This DF that represents a predicted path with a set of path points. + * It may contain up to `15` @ref 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. + * + * @category: GeoReference information + * @revision: created in V2.1.1 based on PathHistory + */ +PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted + +/** + * This DF defines an offset waypoint position within a path. + * + * It includes the following components: + * + * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. + * + * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. + * + * @category GeoReference information + * @revision: semantics updated in V2.1.1 + */ +PathPoint ::= SEQUENCE { + pathPosition DeltaReferencePosition, + pathDeltaTime PathDeltaTime OPTIONAL +} + +/** + * This DF defines a predicted offset waypoint position within a path. + * + * It includes the following components: + * + * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. + * + * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. + * + * @field horizontalPositionConfidence: the accuracy of the horizontal geographical position. + * + * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. + * + * @field altitudeConfidence: the accuracy of the altitude value of the geographical position. + * + * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. + * + * @category GeoReference information + * @revision: semantics updated in V2.1.1 + */ + +PathPointPredicted::= SEQUENCE { + deltaLatitude DeltaLatitudeSmall, + deltaLongitude DeltaLongitudeSmall, + horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, + deltaAltitude DeltaAltitude DEFAULT unavailable, + altitudeConfidence AltitudeConfidence DEFAULT unavailable, + pathDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * 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: + * + * @field objectID: optional identifier assigned to a detected object. + * + * @field timeOfMeasurement: 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. + * + * @field xCoordinate: 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. + * + * @field yCoordinate: 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. + * + * @field zCoordinate: 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. + * + * @field velocityMagnitude: 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 + * + * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * + * @field xVelocity: velocity component of the detected object in x-direction at the time of measurement, with the associated variance. + * + * @field yVelocity: velocity component of the detected object in y-direction at the time of measurement, with the associated variance. + * + * @field zVelocity: optional velocity component of the detected object in z-direction at the time of measurement, with the associated variance. + * + * @field accelerationMagnitude: 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. + * + * @field accelerationDirection: polar angle of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * + * @field xAcceleration: optional Acceleration of the detected object in x-direction at the time of measurement, with the associated variance. + * + * @field yAcceleration: optional Acceleration of the detected object in y-direction at the time of measurement, with the associated variance. + * + * @field zAcceleration: optional Acceleration of the detected object in z-direction at the time of measurement, with the associated variance. + * + * @field rollAngle: 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. + * + * @field pitchAngle: 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. + * + * @field yawAngle: 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. + * + * @field rollSpeed: 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. + * + * @field pitchSpeed: 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. + * + * @field yawSpeed: 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. + * + * @field rollAcceleration: 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. + * + * @field pitchAcceleration: 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. + * + * @field yawAcceleration: 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. + * + * @field lowerTriangularCorrelationMatrixColumns: 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. + * + * @field planarObjectDimension1: 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. + * + * @field planarObjectDimension2: 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. + * + * @field verticalObjectDimension: optional vertical dimension of object as provided by the sensor or object model. + * + * @field objectRefPoint: 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. + * + * @field objectAge: 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. + * + * @field objectConfidence: 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. + * + * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. + * + * @field dynamicStatus: optional dynamic capabilities of a detected object. + * + * @field classification: optional classification of the described object + * + * @field matchedPosition: optional map-matched position of an object. + * + * @category Sensing information + * @revision: created in V2.1.1 + */ + +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, + ... +} + +/** + * This DF represents the shape of a polygonal area or of a right prism. + * + * It includes the following components: + * + * @field polygon: the polygonal area and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * + * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. + * + * @category GeoReference information + * @revision: created in V2.1.1 + * + */ +PolygonalShape ::= SEQUENCE { + polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), + height StandardLength12b OPTIONAL, + ... +} + +/** + * 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: + * + * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point + * and major axis point of the position accuracy ellipse. + * + * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point + * and minor axis point of the position accuracy ellipse. + * + * @field semiMajorOrientation: orientation direction of the ellipse major axis of the position accuracy + * ellipse with regards to the WGS84 north. + * + * + * @category GeoReference information + * @revision: V1.3.1 + */ +PosConfidenceEllipse ::= SEQUENCE { + semiMajorConfidence SemiAxisLength, + semiMinorConfidence SemiAxisLength, + semiMajorOrientation Wgs84AngleValue +} + +/** + * This DF contains a list of distances @ref 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. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar + +/** + * This DF describes a zone of protection inside which the ITSG5 communication should be restricted. + * + * It includes the following components: + * + * @field protectedZoneType: type of the protected zone. + * + * @field expiryTime: optional time at which the validity of the protected communication zone will expire. + * + * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. + * + * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. + * + * @field protectedZoneRadius: optional radius of the protected communication zone in metres. + * + * @field protectedZoneID: the optional ID of the protected communication zone. + * + * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedCommunicationZone ::= SEQUENCE { + protectedZoneType ProtectedZoneType, + expiryTime TimestampIts OPTIONAL, + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + protectedZoneRadius ProtectedZoneRadius OPTIONAL, + protectedZoneID ProtectedZoneID OPTIONAL, + ... +} + +/** + * This DF consist of a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). + * + * It may provide up to 16 protected communication zones information. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone + +/** + * 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). + * + * @field ptActivationType: type of activation. + * + * @field ptActicationData: data of activation. + * + * 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) + * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, + * destination, priority, etc. + * + * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: + * - 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. + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivation ::= SEQUENCE { + ptActivationType PtActivationType, + ptActivationData PtActivationData +} + +/** + * This DF describes a radial shape. 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). + * + * It includes the following components: + * + * @field sensorPositionOffset: the optional offset opoint. + * + * @field range: the radial range of the sensor from the reference point or sensor point offset. + * + * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the + * stationary sensor's horizontal opening angle in positive angular direction with respect to the + * WGS84 coordinate system. + * + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary + * sensor's horizontal opening angle in positive angular direction with respect to the WGS84 coordinate + * system. + * + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's + * 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * 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 using the DE CartesianAngleValue. + * + * @category Sensing information + * @revision: created in V2.1.1 +*/ +RadialShape ::= SEQUENCE { + offsetPoint CartesianPosition3d OPTIONAL, + range StandardLength12b, + stationaryHorizontalOpeningAngleStart Wgs84AngleValue, + stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, + ... +} + + +/** + * This DF describes a list of radial shapes. + * + * It includes the following components: + + * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). + * + * @field xCoordinate: the x-coordinate of the offset point. + * + * @field yCoordinate: the y-coordinate of the offset point. + * + * @field zCoordinate: the optional z-coordinate of the offset point. + * + * @field radialShapesList: the list of radial shape details. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ +RadialShapes ::= SEQUENCE { + refPointId Identifier1B, + xCoordinate CartesianCoordinateSmall, -- tbd: is this along the positive or the negative x axis? + yCoordinate CartesianCoordinateSmall, + zCoordinate CartesianCoordinateSmall OPTIONAL, + radialShapesList RadialShapesList, + ... +} + +/** + * The DF contains a list of @ref RadialShapeDetails. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ + +RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF 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). + * + * It includes the following components: + * + * @field range: the radial range of the sensor from the reference point or sensor point offset. + * + * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the + * stationary sensor's horizontal opening angle in positive angular direction. + * + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary + * sensor's horizontal opening angle in positive angular direction. + * + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's + * 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * 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. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ +RadialShapeDetails ::= SEQUENCE { + range StandardLength12b, + horizontalOpeningAngleStart CartesianAngleValue, + horizontalOpeningAngleEnd CartesianAngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, + ... +} + +/** + * 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. + * + * It includes the following components: + * + * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field semiLength: represents half the length of the rectangle. + * + * @field semiBreadth: represents half the breadth of the rectangle. + * + * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. + * + * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. + * + * @category GeoReference information + * @revision: created in V2.1.1 + */ +RectangularShape ::= SEQUENCE { + centerPoint CartesianPosition3d OPTIONAL, + semiLength StandardLength12b, + semiBreadth StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL +} + +/** + * A position within a geographic coordinate system together with a confidence indication. + * + * It includes the following components: + * + * @field latitude: the latitude of the geographical point. + * + * @field longitude: the longitude of the geographical point. + * + * @field positionConfidenceEllipse: the accuracy of the geographical position. + * + * @field altitude: the altitude and an altitude accuracy of the geographical point. + * + * @category: GeoReference information + * @revision: description updated in V2.1.1 + */ +ReferencePosition ::= SEQUENCE { + latitude Latitude, + longitude Longitude, + positionConfidenceEllipse PosConfidenceEllipse, + altitude Altitude +} + +/** + * This DF consist of a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. + * + * @category: Infrastructure information, Traffic information + * @revision: V1.3.1 + */ +RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType + +/** + * This DF represents a unique id for a road segment + * + * It includes the following components: + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the road segment + * + * @note: when the RoadRegulatorID is present, the RoadSegmentReferenceID is guaranteed to be globally unique. + * @category: GeoReference information + * @revision: created in V2.1.1 + */ +RoadSegmentReferenceId ::= SEQUENCE { + region Identifier2B OPTIONAL, + id Identifier2B +} + +/** + * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). + * + * It includes the following components: + * + * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. + * + * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. + * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant inidcated in the component subjectStation is safe. + * + * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed + * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 + */ +SafeDistanceIndication ::= SEQUENCE { + subjectStation StationID OPTIONAL, + safeDistanceIndicator SafeDistanceIndicator, + timeToCollision DeltaTimeTenthOfSecond OPTIONAL, + ... +} + +/** + * This DF represents a list of maximum `16` @ref CartesianPosition3d. + * + * @category: GeoReference information + * @revision: created in V2.1.1 + */ +SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d + +/** + * The DF contains a list of identifiers. + * + * @category: Basic information + * @revision: created in V2.1.1 +*/ +SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B + +/** + * The DF contains a list of DF SafeDistanceIndication. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication + +/** + * The DF contains a list of DF TrajectoryInterceptionIndication. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication + +/** + * This DF provides the definition of a geographical area or volume, based on different options. + * + * It includes the following components: + * + * @field rectangle: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. + * + * @field circle: definition of an area of circular shape or a right circular cylinder. + * + * @field polygon: definition of an area of polygonal shape or a right prism. + * + * @field ellipse: definition of an area of elliptical shape or a right elliptical cylinder. + * + * @field radial: definition of a radial shape. + * + * @field radialShapes: definition of list of radial shapes. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ + +Shape::= CHOICE { + rectangle RectangularShape, + circle CircularShape, + polygon PolygonalShape, + ellipse EllipticalShape, + radial RadialShape, + radialShapes RadialShapes, + ... +} + +/** + * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * + * It includes the following components: + * + * @field speedValue: the speed value. + * + * @field speedConfidence: the accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V1.3.1 + */ +Speed ::= SEQUENCE { + speedValue SpeedValue, + speedConfidence SpeedConfidence +} + +/** + * This DF describes the extended speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * + * It includes the following components: + * + * @field speedValue: the extended speed value. + * + * @field speedConfidence: the accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V2.1.1 + */ +SpeedExtended ::= SEQUENCE { + speedValue SpeedValueExtended, + speedConfidence SpeedConfidence +} + +/** + * This DF provides the indication of change in stability. + * + * It includes the following components: + * + * @field lossProbability: the probability of stability loss. + * + * @field actionDeltaTime: accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V2.1.1 + */ +StabilityChangeIndication ::= SEQUENCE { + lossProbability StabilityLossProbability, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents the steering wheel angle of the vehicle at certain point in time. + * + * It includes the following components: + * + * @field steeringWheelAngleValue: steering wheel angle value. + * + * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +SteeringWheelAngle ::= SEQUENCE { + steeringWheelAngleValue SteeringWheelAngleValue, + steeringWheelAngleConfidence SteeringWheelAngleConfidence +} + +/** + * This DF represents one or more paths using @ref PathHistory. + * + * @category: GeoReference information + * @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory + */ +Traces ::= SEQUENCE SIZE(1..7) OF Path + +/** + * Ths DF represents the a position on a traffic island between two lanes. + * + * It includes the following components: + * + * @field oneSide: represents one lane. + * + * @field otherSide: represents the other lane. + * + * @category: Road Topology information + * @revision: Created in V2.1.1 + */ +TrafficIslandPosition ::= SEQUENCE { + oneSide LanePositionAndType, + otherSide LanePositionAndType, + ... +} + +/** + * This DF provides detailed information about an attached trailer. + * + * It includes the following components: + * + * @field refPointId: identifier of the reference point of the trailer. + * + * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the + * vehicle Reference Point. + * + * @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer + * is not overhanging to the front with respect to the trailer reference point. + * + * @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. + * + * @field trailerWidth: optional width of the trailer. + * + * @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x + * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of + * the segment having as end points the reference point of the trailer and the reference point of + * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane + * xy, described in the local Cartesian coordinate system of the preceding reference point. The + * angle is measured with negative values considering the trailer orientation turning clockwise + * starting from the segment direction. The angle value accuracy is provided with the + * confidence level of 95 %. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +TrailerData ::= SEQUENCE { --tbd check descriptions above + refPointId Identifier1B, + hitchPointOffset StandardLength1B, -- tbd is the value unavailable needed? + frontOverhang StandardLength1B, + rearOverhang StandardLength1B, + trailerWidth VehicleWidth, + hitchAngle CartesianAngle, + ... +} + +/** + * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. + * + * It includes the following components: + * + * @field subjectStation: indicates the subject station. + * + * @field trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. + * + * @field trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionIndication ::= SEQUENCE { + subjectStation StationID OPTIONAL, + trajectoryInterceptionProbability TrajectoryInterceptionProbability, + trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, + ... + } + +/** + * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +VarLengthNumber::=CHOICE{ + content [0] INTEGER(0..127), -- one octet length + extension [1] Ext1 + } +Ext1::=CHOICE{ + content [0] INTEGER(128..16511), -- two octets length + extension [1] Ext2 +} +Ext2::=CHOICE{ + content [0] INTEGER(16512..2113663), -- three octets length + extension [1] Ext3 + } +Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length + +/** + * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. + * + * It includes the following components: + * + * @field verticalAccelerationValue: vertical acceleration value at a point in time. + * + * @field verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead + * @category Vehicle information + * @revision: V1.3.1 + */ +VerticalAcceleration ::= SEQUENCE { + verticalAccelerationValue VerticalAccelerationValue, + verticalAccelerationConfidence AccelerationConfidence +} + +/** + * This DF provides information related to the identification of a vehicle. + * + * It includes the following components: + * + * @field wMInumber: World Manufacturer Identifier (WMI) code. + * + * @field vDS: Vehicle Descriptor Section (VDS). + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VehicleIdentification ::= SEQUENCE { + wMInumber WMInumber OPTIONAL, + vDS VDS OPTIONAL, + ... +} + +/** + * This DF represents the length of vehicle and accuracy indication information. + * + * It includes the following components: + * + * @field vehicleLengthValue: length of vehicle. + * + * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VehicleLength ::= SEQUENCE { + vehicleLengthValue VehicleLengthValue, + vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication +} + +/** + * This DF provides information about a VRU cluster. + * + * It includes the following components: + * + * @field clusterId: optional identifier of a VRU cluster . + * + * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. + * + * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. + * + * @field clusterProfiles: identifies all the VRU profile types that are believed to be within the cluster . + * + * @category: VRU information + * @revision: Created in V2.1.1 +*/ +VruClusterInformation ::= SEQUENCE { + clusterId ClusterId OPTIONAL, + clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, + clusterCardinalitySize ClusterCardinalitySize, + clusterProfiles VruClusterProfiles, + ... +} + +/** + * This DF indicates the profile of a VRU including sub-profile information + * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.22]: + * + * @field pedestrian: VRU Profile 1 - Pedestrian. + * + * @field bicyclistAndLightVruVehicle: VRU Profile 2 - Bicyclist. + * + * @field motorcyclist: VRU Profile 3 - Motorcyclist. + * + * @field animal: VRU Profile 4 - Animals. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruProfileAndSubprofile ::= CHOICE { + pedestrian VruSubProfilePedestrian, + bicyclistAndLightVruVehicle VruSubProfileBicyclist, + motorcylist VruSubProfileMotorcyclist, + animal VruSubProfileAnimal, + ... +} + +/** + * This DF represents an angular component along with a confidence in the WGS84 coordinate system. + * + * It includes the following components: + * + * @field value: the angle value which can be estimated as the mean of the current distribution. + * + * @field confidence: the accuracy associated to the provided value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +Wgs84Angle ::= SEQUENCE { + value Wgs84AngleValue, + confidence Wgs84AngleConfidence +} + + +/** + * This DF represents a yaw rate of vehicle at a point in time. + * + * It includes the following components: + * + * @field yawRateValue: yaw rate value at a point in time. + * + * @field yawRateConfidence: accuracy of reported yaw rate value. + * + * @category: Vehicle Information + * @revision: V1.3.1 + */ +YawRate::= SEQUENCE { + yawRateValue YawRateValue, + yawRateConfidence YawRateConfidence +} + +END -- GitLab From a046ed8a2d7cd94f618288f2dd73cad2ebfc26ec Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Fri, 10 Jun 2022 11:15:33 +0000 Subject: [PATCH 40/91] Delete ETSI-ITS-CDD.asn --- ETSI-ITS-CDD.asn | 6048 ---------------------------------------------- 1 file changed, 6048 deletions(-) delete mode 100644 ETSI-ITS-CDD.asn diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn deleted file mode 100644 index e27e6a7..0000000 --- a/ETSI-ITS-CDD.asn +++ /dev/null @@ -1,6048 +0,0 @@ --- Draft CDD ASN.1 module Release 2. --- Date: 08.06.2022 - - -ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} - -DEFINITIONS AUTOMATIC TAGS ::= - -BEGIN - ------------------------------------------- --- Specification of CDD Data Elements: ------------------------------------------- - - -/** - * This DE indicates a change of acceleration. - * - * The value shall be set to: - * - 0 - `accelerate` - if the acceleration is positive. - * - 1 - `decelerate` - if the acceleration is negative. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AccelerationChange::= ENUMERATED { - accelerate (0), - decelerate (1) -} - -/** - * This DE represents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. - * - `102` if the data is unavailable. - * - * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported acceleration value may be valid and used by the application. - * - * @note: If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * - * @unit 0,1 m/s2 - * @category: Kinematics information - * @revision: Description revised in V2.1.1 - */ -AccelerationConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) - -/** - * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. - * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle - * acceleration control system is engaged or not. Currently, this DE includes the information of the - * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise - * control system, cruise control system and speed limiter system. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `brakePedalEngaged` - Driver is stepping on the brake pedal, - * - 1 - `gasPedalEngaged` - Driver is stepping on the gas pedal, - * - 2 - `emergencyBrakeEngaged` - emergency brake system is engaged, - * - 3 - `collisionWarningEngaged`- collision warning system is engaged, - * - 4 - `accEngaged` - ACC is engaged, - * - 5 - `cruiseControlEngaged` - cruise control is engaged, - * - 6 - `speedLimiterEngaged` - speed limiter is engaged. - * - * Otherwise (for example when the corresponding system is not available due to non equipped system - * or information is unavailable), the corresponding bit shall be set to _0_. - * - * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. - * @category: Kinematics information - * @revision: V1.3.1 - */ -AccelerationControl ::= BIT STRING { - brakePedalEngaged (0), - gasPedalEngaged (1), - emergencyBrakeEngaged (2), - collisionWarningEngaged (3), - accEngaged (4), - cruiseControlEngaged (5), - speedLimiterEngaged (6) -} (SIZE(7)) - -/** - * This DE represents the value of an acceleration component in a defined coordinate system. - * - * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * @note: zero acceleration is indicated using n=0. - * @unit 0,1 m/s2 - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AccelerationValue ::= INTEGER { - negativeOutOfRange (-160), - positiveOutOfRange (160), - unavailable (161) -- tbd delete unavailable value? -} (-160 .. 161) - - -/** - * This DE indicates an access technology. - * - * The value shall be set to: - * - `0`: in case of any access technology class. - * - `1`: in case of ITS-G5 access technology class. - * - `2`: in case of LTE-V2X access technology class. - * - `3`: in case of NR-V2X access technology class. - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -AccessTechnologyClass ::= ENUMERATED { - any (0), - itsg5Class (1), - ltev2xClass (2), - nrv2xClass (3), - ... -} - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case the information on the sub cause of the accident is unavailable, - * - 1 - `multiVehicleAccident` - in case more than two vehicles are involved in accident, - * - 2 - `heavyAccident` - in case the airbag of the vehicle involved in the accident is triggered, - * the accident requires important rescue and/or recovery work, - * - 3 - `accidentInvolvingLorry` - in case the accident involves a lorry, - * - 4 - `accidentInvolvingBus` - in case the accident involves a bus, - * - 5 - `accidentInvolvingHazardousMaterials`- in case the accident involves hazardous material, - * - 6 - `accidentOnOppositeLane` - in case the accident happens on opposite lanes, - * - 7 - `unsecuredAccident` - in case the accident is not secured, - * - 8 - `assistanceRequested` - in case rescue and assistance are requested, - * - 9-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AccidentSubCauseCode ::= INTEGER { - unavailable (0), - multiVehicleAccident (1), - heavyAccident (2), - accidentInvolvingLorry (3), - accidentInvolvingBus (4), - accidentInvolvingHazardousMaterials (5), - accidentOnOppositeLane (6), - unsecuredAccident (7), - assistanceRequested (8) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailabl. - * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road. - * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road. - * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road. - * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road. - * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road. - * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road. - * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road. - * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. - * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface. - * - 10 - `roadsSalted` - when the low road adhesion is due to salted road. - * - 11-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { - unavailable (0), - heavyFrostOnRoad (1), - fuelOnRoad (2), - mudOnRoad (3), - snowOnRoad (4), - iceOnRoad (5), - blackIceOnRoad (6), - oilOnRoad (7), - looseChippings (8), - instantBlackIce (9), - roadsSalted (10) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable. - * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind. - * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail. - * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane. - * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm. - * - 5 - `tornado` - in case the type of extreme weather condition is tornado. - * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. - * - 7-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { - unavailable (0), - strongWinds (1), - damagingHail (2), - hurricane (3), - thunderstorm (4), - tornado (5), - blizzard (6) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. - * - * The value shall be set to: - * - 0 - `unavailable` : in case information on the type of precipitation is unavailable. - * - 1 - `heavyRain` : in case the type of precipitation is heavy rain. - * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall. - * - 3 - `softHail` : in case the type of precipitation is soft hail. - * - 4-255 : are reserved for future usage - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { - unavailable (0), - heavyRain (1), - heavySnowfall (2), - softHail (3) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable. - * - 1 - `fog` - in case the cause of low visibility is fog. - * - 2 - `smoke` - in case the cause of low visibility is smoke. - * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall. - * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain. - * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail. - * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare. - * - 7 - `sandstorms` - in case the cause of low visibility is sand storm. - * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. - * - 9-255 - are reserved for future usage - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { - unavailable (0), - fog (1), - smoke (2), - heavySnowfall (3), - heavyRain (4), - heavyHail (5), - lowSunGlare (6), - sandstorms (7), - swarmsOfInsects (8) -} (0..255) - -/** - * This DE represents the air humidity in tens of percent. - * - * The value shall be set to: - * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0.1 percent and greater than (n-1) x 0.1 percent. - * - `1001` indicates that the air humidity is unavailable. - * - * @category: Basic information - * @unit: 0,1 % - * @revision: created in V2.1.1 - */ -AirHumidity ::= INTEGER { - oneHundredPercent (1000), - unavailable (1001) -} (1..1001) - -/** - * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. - * - * The value shall be set to: - * - 0 - `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. - * - 1 - `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. - * - 2 - `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. - * - 3 - `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. - * - 4 - `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. - * - 5 - `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. - * - 6 - `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. - * - 7 - `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. - * - 8 - `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. - * - 9 - `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. - * - 10 - `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. - * - 11 - `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. - * - 12 - `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. - * - 13 - `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. - * - 14 - `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. - * - 15 - `unavailable` if the altitude accuracy information is unavailable - * - * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused - * by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported altitude value may be valid and used by the application. - * - * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported - * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -AltitudeConfidence ::= ENUMERATED { - alt-000-01 (0), - alt-000-02 (1), - alt-000-05 (2), - alt-000-10 (3), - alt-000-20 (4), - alt-000-50 (5), - alt-001-00 (6), - alt-002-00 (7), - alt-005-00 (8), - alt-010-00 (9), - alt-020-00 (10), - alt-050-00 (11), - alt-100-00 (12), - alt-200-00 (13), - outOfRange (14), - unavailable (15) -} - -/** - * This DE represents the altitude value in a WGS84 co-ordinate system. - * - * The value shall be set to: - * - `-100 000` if the altitude is equal to or less than -1 000 m. - * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0.01 meters and greater than (n-1) x 0,01 meters. - * - `800 000` if the altitude greater than 7 999 m. - * - `800 001` if the information is not available. - * - * @unit: 0.01 meter - * @category: GeoReference information - * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) - */ -AltitudeValue ::= INTEGER { - negativeOutOFRange (-100000), - postiveOutOfRange (800000), - unavailable (800001) -} (-100000..800001) - -/** - * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. - * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. - * - `127` if the accuracy information is not available. - * - * @unit: 0,1 degrees - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. - * For correlation computation, maximum interval levels can be assumed. - * - * The value shall be set to: - * - 0 - `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second - * - 1 - `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second - * - 2 - `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second - * - 3 - `degSec-001-00` if the accuracy is equal to or less than 1 degree/second - * - 4 - `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second - * - 5 - `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second - * - 6 - `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second - * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second - * - 8 - `unavailable` if the accuracy information is unavailable - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngularSpeedConfidence ::= ENUMERATED { - degSec-000-01 (0), - degSec-000-05 (1), - degSec-000-10 (2), - degSec-001-00 (3), - degSec-005-00 (4), - degSec-010-00 (5), - degSec-100-00 (6), - outOfRange (7), - unavailable (8) -} - -/** - * Tis DE represents the absolute accuracy of a reported angular acceleration value for a confidence level of 95%. - * For correlation computation, maximum interval levels shall be assumed. - * - * The value shall be set to: - * - 0 - `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second2 - * - 1 - `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second2 - * - 2 - `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second2 - * - 3 - `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second2 - * - 4 - `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second2 - * - 5 - `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second2 - * - 6 - `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second2 - * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second2 - * - 8 - `unavailable` if the accuracy information is unavailable - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngularAccelerationConfidence ::= ENUMERATED { - degSecSquared-000-01 (0), - degSecSquared-000-05 (1), - degSecSquared-000-10 (2), - degSecSquared-001-00 (3), - degSecSquared-005-00 (4), - degSecSquared-010-00 (5), - degSecSquared-100-00 (6), - outOfRange (7), - unavailable (8) -} - -/** - * This DE indicates the number of axels of a passing train. - * - * The following values are specified: - * - `n(n > 2 and n < 1001)` indicates that the train has n x axels. - * - `1001`indicates that the number of axels is out of range. - * - `1002` the information is unavailable. - * - * - * @unit: Number of axels - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -AxlesCount ::= INTEGER{ - outOfRange (1001), - unavailable (1002) -} (2..1002) - -/** - * This DE represent the measured uncompesated atmospheric pressure in units of hPascal (hPa). - * - * The following values are specified: - * - `2999` indicates that the applicable value is less than 299.9 hPa. - * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 0.1 hPa and greater than (n-1) x 0.1 hPa. - * - `12001` indicates that the values is greater than 1200 hPa. - * - `12002` indicates that the information is not available. - * - * @category: Basic information - * @unit: 0.1 hPa - * @revision: Created in V2.1.1 -*/ -BarometricPressure ::= INTEGER{ - outOfRangelower (2999), - outOfRangeUpper (12001), - unavailable (12002) -} (2999..12002) - - -/** - * This DE indicates the cardinal number of bogies of a train. - * -* The value shall be set to: - * - `n (n > 1 and n < 100)` indicates that the train has n x bogie - * - `100`indicates that the number of bogie is out of range. - * - `101` the information is unavailable. - * - * @unit: Number of bogies - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -BogiesCount ::= INTEGER{ - outOfRange (100), - unavailable (101) -} (2..101) - -/** - * The DE represents a cardinal number that counts the size of a set. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CardinalNumber1B ::= INTEGER(1..255) - -/** - * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. - * - `36001` if the accuracy information is not available. - * - * The value 3600 shall not be used. - * - * @unit 0,1 degrees - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngleValue ::= INTEGER { - valueNotUsed (3600), - unavailable (3601) -} (0..3601) - -/** - * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `-32766` if the speed is equal to or less than 327,66 degrees/s. - * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s. - * - `32766` if the speed is greater than 327,65 degrees/s. - * - `32767` if the information is unavailable. - * - * @unit 0,01 degrees/s - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngularSpeedValue ::= INTEGER { - negativeOutofRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) - -/** - * This DE represents an angular acceleration value described in a local Cartesian coordinate system, counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `-32766` if the acceleration is equal to or less than 327,66 degrees/s2 - * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than n x 0,01 degrees/s2, - and greater than `(n-1)` x 0,01 degrees/s2. - * - `32766` if the acceleration is greater than 327,65 degrees/s2 - * - `32767` if the information is unavailable - * - * @unit 0,01 degrees/s2 (degrees per second squared) - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngularAccelerationValue ::= INTEGER { - negativeOutofRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) - -/** - *The DE represents the value of the cause code of an event. - * - * The value shall be set to: - * - 0 - - reserved for future use, - * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, - * - 2 - `accident` - in case the type of event is a road accident, - * - 3 - `roadworks` - in case the type of event is roadwork, - * - 4 - reserved for future usage, - * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any - * blocking of a road, partial or total, which has not been adequately - * secured and signposted, - * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, - * - 7 - `aquaplaning` - danger of aquaplaning on the road, - * - 8 - reserved for future usage, - * - 9 - `hazardousLocation-SurfaceCondition` - in case the type of event is abnormal road surface condition, - * - 10 - `hazardousLocation-ObstacleOnTheRoad` - in case the type of event is obstacle on the road, - * - 11 - `hazardousLocation-AnimalOnTheRoad` - in case the type of event is animal on the road, - * - 12 - `humanPresenceOnTheRoad` - in case the type of event is human presence on the road, - * - 13 - reserved for future usage, - * - 14 - `wrongWayDriving` - in case the type of the event is vehicle driving in wrong way, - * - 15 - `rescueAndRecoveryWorkInProgress` - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, - * - 16 - reserved for future usage, - * - 17 - `adverseWeatherCondition-ExtremeWeatherCondition`- in case the type of event is extreme weather condition, - * - 18 - `adverseWeatherCondition-Visibility` - in case the type of event is low visibility, - * - 19 - `adverseWeatherCondition-Precipitation` - in case the type of event is precipitation, - * - 20 - `violence` - in case the the type of event is human violence on or near the road, - * - 21-25 - reserved for future usage, - * - 26 - `slowVehicle` - in case the type of event is slow vehicle driving on the road, - * - 27 - `dangerousEndOfQueue` - in case the type of event is dangerous end of vehicle queue, - * - 28-90 - are reserved for future usage, - * - 91 - `vehicleBreakdown` - in case the type of event is break down vehicle on the road, - * - 92 - `postCrash` - in case the type of event is a detected crash, - * - 93 - `humanProblem` - in case the type of event is human health problem in vehicles involved in traffic, - * - 94 - `stationaryVehicle` - in case the type of event is stationary vehicle, - * - 95 - `emergencyVehicleApproaching` - in case the type of event is approaching vehicle operating emergency mission, - * - 96 - `hazardousLocation-DangerousCurve` - in case the type of event is dangerous curve, - * - 97 - `collisionRisk` - in case the type of event is a collision risk, - * - 98 - `signalViolation` - in case the type of event is signal violation, - * - 99 - `dangerousSituation` - in case the type of event is dangerous situation in which autonomous safety system in vehicle - * is activated, - * - 100 - `railwayLevelCrossing` - in case the type of event is a railway level crossing. - * - 101-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -CauseCodeType ::= INTEGER { - trafficCondition (1), - accident (2), - roadworks (3), - - impassability (5), - adverseWeatherCondition-Adhesion (6), - aquaplaning (7), - - hazardousLocation-SurfaceCondition (9), - hazardousLocation-ObstacleOnTheRoad (10), - hazardousLocation-AnimalOnTheRoad (11), - humanPresenceOnTheRoad (12), - - wrongWayDriving (14), - rescueAndRecoveryWorkInProgress (15), - - adverseWeatherCondition-ExtremeWeatherCondition (17), - adverseWeatherCondition-Visibility (18), - adverseWeatherCondition-Precipitation (19), - violence (20), - - slowVehicle (26), - dangerousEndOfQueue (27), - - vehicleBreakdown (91), - postCrash (92), - humanProblem (93), - stationaryVehicle (94), - emergencyVehicleApproaching (95), - hazardousLocation-DangerousCurve (96), - collisionRisk (97), - signalViolation (98), - dangerousSituation (99), - railwayLevelCrossing (100) -} (0..255) - -/** - * This DF represents the value of a cartesian coordinate with a range of -30,93 meters to +10,00 meters. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateSmall::= INTEGER { - negativeOutOfRange (-3094), - positiveOutOfRange (1001) -} (-3094..1001) -- this is 12 bit, tbd question: increase the range by "one bit" to make this more practical for common usage? - -/** - * This DF represents the value of a cartesian coordinate with a range of -327,67 to + 327,66 meters. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinate::= INTEGER{ - negativeOutOfRange (-32768), - positiveOutOfRange (32767) -} (-32768..32767) - -/** - * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateLarge::= INTEGER{ - negativeOutOfRange (-131072), - positiveOutOfRange (131071) -} (-131072..131071) - -/** - * This DE represents the ID of a CEN DSRC tolling zone. - * - * @category: Communication information - * @revision: V1.3.1 - */ -CenDsrcTollingZoneID::= ProtectedZoneID - -/** - * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 (for the cluster leader) . - * - * The value shall be set to `0` if the information is unavailable. - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterCardinalitySize::= INTEGER { - unavailable (0), - onlyLeader (1) -} (0..255) - -/** - * This DE represents the identifier of a cluster. - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterId ::= INTEGER(0..255) - -/** - * This DE indicates the reason why a cluster leader intends to break up the cluster. - * - * The value shall be set to: - * - 0 - `notProvided` - if the information is not provided. - * - 1 - `clusteringPurposeCompleted` - if the cluster purposes has been completed. - * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box. - * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster. - * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps. - * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. - * - 6 to 15 - reserved for future use - * - * @category: Cluster information - * @revision: Created in V2.1.1 -*/ -ClusterBreakupReason ::= ENUMERATED { - notProvided (0), - clusteringPurposeCompleted (1), - leaderMovedOutOfClusterBoundingBox (2), - joiningAnotherCluster (3), - enteringLowRiskAreaBasedOnMaps (4), - receptionOfCpmContainingCluster (5), - max(15) -} - -/** - * This DE indicates the reason why a cluster participant is leaving the cluster. - * - * The value shall be set to: - * - 0 - `notProvided ` - if the information is not provided. - * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore. - * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbounded by the leader. - * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box. - * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of adefined range. - * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster. - * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure. - * - 7 - `failedJoin` - if the participant failed to join the cluster. - * - 8 - `safetyCondition` - if a safety condition applies. - * - 9 to 15 - reserved for future use - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterLeaveReason ::= ENUMERATED { - notProvided (0), - clusterLeaderLost (1), - clusterDisbandedByLeader (2), - outOfClusterBoundingBox (3), - outOfClusterSpeedRange (4), - joiningAnotherCluster (5), - cancelledJoin (6), - failedJoin (7), - safetyCondition (8), - max(15) -} - -/** - * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of collision risk is unavailable, - * - 1 - `longitudinalCollisionRisk`- in case the type of detected collision risk is longitudinal collision risk, - * e.g. forward collision or face to face collision, - * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, - * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, - * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users - * e.g. pedestrians or bicycles, - * - 5-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -CollisionRiskSubCauseCode ::= INTEGER { - unavailable (0), - longitudinalCollisionRisk (1), - crossingCollisionRisk (2), - lateralCollisionRisk (3), - vulnerableRoadUser (4) -}(0..255) - -/** - * This DE represents a confidence level in percentage. - * - * The value shall be set to: - * - * - `0` : in case the confidence value is unknown but the reported value is valid. - * - `n (n > 0 and n < 101)` : for the confidence value in %. - * - `101` : in case the confidence value is not available. - * - * @unit Percent - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -ConfidenceLevel ::= INTEGER { - unknown (0), - unavailable (101) -} (0..101) - -/** - * This DE represents the absolute accuracy of measurement to a confidence level of 95%. - * - * The value shall be set to: - * - `n` (`n > 0` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. - * - `4094` if the accuracy information is greater than 40,93 meter. - * - `4095` if the accuracy information is not available. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CoordinateConfidence ::= INTEGER { - outOfRange (4094), - unavailable (4095) -} (0..4095) - -/** - * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. - * - * The following values are specified. - * - `-100` indicates full negative correlation - * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100. - * - `0` indicates not correlated or unavailable - * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. - * - `100` indicates full positive correlation - * - * @unit: the value is scaled by 100 - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -CorrelationRowValue ::= INTEGER { - full-negative-correlation (-100), - no-correlation (0), - full-positive-correlation (100) -} (-100..100) - -/** - * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. - * - * The value shall be set to: - * - 0 - `yawRateUsed` - if the yaw rate is used. - * - 1 - `yawRateNotUsed` - if the yaw rate is not used. - * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -CurvatureCalculationMode ::= ENUMERATED { - yawRateUsed (0), - yawRateNotUsed (1), - unavailable (2), - ... -} - -/** - * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. - * - * The value shall be set to: - * - 0 - `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. - * - 1 - `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. - * - 2 - `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. - * - 3 - `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. - * - 4 - `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. - * - 5 - `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. - * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. - * - 7 - `unavailable` if the information is not available. - * - * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by - * several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported curvature value may be valid and used by the application. - * - * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid - * and therefore cannot be trusted. Such value is not useful for the application. - * - * @category: Vehicle information - * @revision: description revised in V2.1.1 -*/ -CurvatureConfidence ::= ENUMERATED { - onePerMeter-0-00002 (0), - onePerMeter-0-0001 (1), - onePerMeter-0-0005 (2), - onePerMeter-0-002 (3), - onePerMeter-0-01 (4), - onePerMeter-0-1 (5), - outOfRange (6), - unavailable (7) -} - -/** - * This DE describes vehicle turning curve with the following information: - * ``` - * Value = 1 / Radius * 10000 - * ``` - * wherein radius is the vehicle turning curve radius in meters. - * - * Positive values indicate a turning curve to the left hand side of the driver. - * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. - * - * The value shall be set to: - * - `-1023` for values smaller than -1023. - * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1). - * - `0` when the vehicle is moving straight. - * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1). - * - `1022`, for values greater than 1021. - * - `1023`, if the information is not available. - * - * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. - * - * @unit: 1 over 10 000 metres - * @category: Vehicle information - * @revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) - */ -CurvatureValue ::= INTEGER { - outOfRangeNegative (-1023), - straight (0), - outOfRangePositive (1022), - unavailable (1023) -} (-1023..1023) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. - * - * The following value are specified: - * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, - * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, - * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, - * - 3 - `queueAroundBend` - in case the dangerous end of queue is detected around the road bend, - * - 4 - `queueInTunnel` - in case queue is detected in tunnel, - * - 5-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DangerousEndOfQueueSubCauseCode ::= INTEGER { - unavailable (0), - suddenEndOfQueue (1), - queueOverHill (2), - queueAroundBend (3), - queueInTunnel (4) -} (0..255) - -/** - * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. - * The value is assigned according to `_class_` and `_division_` definitions of dangerous goods as specified in part II, - * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. - * - * - * @category Vehicle information - * @revision: V1.3.1 - */ -DangerousGoodsBasic::= ENUMERATED { - explosives1 (0), - explosives2 (1), - explosives3 (2), - explosives4 (3), - explosives5 (4), - explosives6 (5), - flammableGases (6), - nonFlammableGases (7), - toxicGases (8), - flammableLiquids (9), - flammableSolids (10), - substancesLiableToSpontaneousCombustion (11), - substancesEmittingFlammableGasesUponContactWithWater (12), - oxidizingSubstances (13), - organicPeroxides (14), - toxicSubstances (15), - infectiousSubstances (16), - radioactiveMaterial (17), - corrosiveSubstances (18), - miscellaneousDangerousSubstances (19) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousSituation` - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, - * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, - * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, - * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, - * - 4 - `absEngaged` - in case Anti-lock braking system (ABS) is engaged, - * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, - * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, - * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, - * - 8-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DangerousSituationSubCauseCode ::= INTEGER { - unavailable (0), - emergencyElectronicBrakeEngaged (1), - preCrashSystemEngaged (2), - espEngaged (3), - absEngaged (4), - ebEngaged (5), - brakeWarningEngaged (6), - collisionRiskWarningEngaged (7) -} (0..255) - -/** - * This DE represents an offset altitude with regards to a defined altitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `-12700` for values equal to or lower than -127 metres. - * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 meter below the reference position. - * - `0` for no altitudinal offset. - * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 meter above the reference position. - * - `12799` for values equal to or greater than 127,99 metres. - * - `12800` when the information is unavailable. - * - * @unit: 0.01 metre - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaAltitude ::= INTEGER { - negativeOutOfRange (-12700), - positiveOutOfRange (12799), - unavailable (12800) -} (-12700..12800) - -/** - * This DE represents an offset latitude with regards to a defined latitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. - * - `0` for no latitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the north from the reference position. - * - `131072` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLatitude ::= INTEGER { - unavailable (131072) -} (-131071..131072) - - -/** - * This DE represents an offset latitude with regards to a defined latitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. - * - `0` for no latitudinal offset. - * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the north from the reference position. - * - `32767` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLatitudeSmall::= INTEGER { - unavailable (32767) -} (-32766..32767) - - -/** - * This DE represents an offset longitude with regards to a defined longitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. - * - `0` for no longitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the east from the reference position. - * - `131072` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLongitude ::= INTEGER { - unavailable (131072) -} (-131071..131072) - -/** - * This DE represents an offset longitude with regards to a defined longitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. - * - `0` for no longitudinal offset. - * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the east from the reference position. - * - `32767` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLongitudeSmall::= INTEGER { - unavailable (32767) -} (-32766..32767) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 0,01 s - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) - -/** - * This DE represents a difference in time with respect to a reference time. - - * Example: a time interval between two consecutive message transmissions. - * - * @unit: 1 ms - * @category: Basic information - * @revision: Created in V2.1.1 from the DE TransmissionInterval - */ -DeltaTimeMilliSecondPos ::= INTEGER (1..10000) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 1 ms - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) - -/** - * This DE represents a difference in time with respect to a reference time. - * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, - * multiply by 256 (i.e. append a `00` byte) - * - * @unit: 256 milliseconds - * @category: Basic information - * @revision: Created in V2.1.1 - */ -DeltaTimeQuarterSecond::= INTEGER (1..255) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 0,1 s - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeTenthOfSecond::= INTEGER { - unavailable (127) -} (0..127) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 1 s - * @category: Basic information - * @revision: Created in V2.1.1 from ValidityDuration -*/ -DeltaTimeSecond ::= INTEGER (0..86400) - - -/** - * This DE indicates a direction with respect to a defined reference direction. - * Example: a reference direction may be implicitly defined by the definition of a geographical zone. - * - * The value shall be set to: - * - 0 - `sameDirection` - to indicate the same direction as the reference direction. - * - 1 - `oppositeDirection` - to indicateopposite direction as the reference direction. - * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction. - * - 3 - `unavailable` - to indicate that the information is unavailable. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -Direction::= INTEGER{ - sameDirection (0), - oppositeDirection (1), - bothDirections (2), - unavailable (3) - } (0..3) - -/** - * This DE indicates in which direction something is moving. - * - * The value shall be set to: - * - 0 - `forward` - to indicate it is moving forward. - * - 1 - `backwards` - to indicate it is moving backwards. - * - 2 - `unavailable` - to indicate that the information is unavailable. - * - * @category: Kinematics information - * @revision: editorial update in V2.1.1 - */ -DriveDirection ::= ENUMERATED { - forward (0), - backward (1), - unavailable (2) -} - -/** - * This DE indicates whether a driving lane is open to traffic. - * - * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall - * correspond to the total number of the driving lanes in the carriageway. - * - * The numbering is matched to @ref LanePosition. - * The bit `0` is used to indicate the innermost lane, bit `1` is used to indicate the second lane from inside border. - * - * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. - * - * @note:Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) - -/** - * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. - * If that is the case, the value is *TRUE*, otherwise *FALSE*. - * - * @category: Vehicle information - * @revision: editorial update in V2.1.1 - */ -EmbarkationStatus ::= BOOLEAN - -/** - * This DE indicates the right of priority requested or assumed by an operating emergency vehicle. - * The right-of-priority bit shall be set to `1` if the corresponding right is requested. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way. - * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. - * - * @category: Traffic information - * @revision: description revised in V2.1.1 - */ -EmergencyPriority ::= BIT STRING { - requestForRightOfWay (0), - requestForFreeCrossingAtATrafficLight (1) -} (SIZE(2)) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event - * is unavailable, - * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, - * - 2 -`prioritizedVehicleApproaching` - in case a prioritized vehicle (e.g. bus) is approaching, - * - 3-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -EmergencyVehicleApproachingSubCauseCode ::= INTEGER { - unavailable (0), - emergencyVehicleApproaching (1), - prioritizedVehicleApproaching (2) -} (0..255) - -/** - * This DE indicated the type of energy being used and stored in vehicle. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle. - * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle. - * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle. - * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle. - * - 4 - `diesel` - when diesel is being used and stored in vehicle. - * - 5 - `gasoline` - when gasoline is being used and stored in vehicle. - * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. - * - * - Otherwise, the corresponding bit shall be set to `0`. - * - * @category: Vehicle information - * @revision: editorial revision in V2.1.1 - */ -EnergyStorageType ::= BIT STRING { - hydrogenStorage (0), - electricEnergyStorage (1), - liquidPropaneGas (2), - compressedNaturalGas (3), - diesel (4), - gasoline (5), - ammonia (6) -}(SIZE(7)) - -/** - * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } - -/** - * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} - -/** - * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} - -/** - * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} - -/** - * This DE describes the status of the exterior light switches of a vehicle. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on. - * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on. - * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on. - * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on. - * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on. - * - 5 - `reverseLightOn` - when the reverse light switch is on. - * - 6 - `fogLightOn` - when the tail fog light switch is on. - * - 7 - `parkingLightsOn` - when the parking light switch is on. - * - * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, - * either manually by the driver or automatically by a vehicle system. The bit value does not indicate - * if the corresponding lamps are alight or not. - * - * If a vehicle is not equipped with a certain light or if the light switch status information is not available, - * the corresponding bit shall be set to `0`. - * - * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not - * alternate with the blinking interval. - * - * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. - * - * @category Vehicle information - * @revision: Description revised in V2.1.1 - */ -ExteriorLights ::= BIT STRING { - lowBeamHeadlightsOn (0), - highBeamHeadlightsOn (1), - leftTurnSignalOn (2), - rightTurnSignalOn (3), - daytimeRunningLightsOn (4), - reverseLightOn (5), - fogLightOn (6), - parkingLightsOn (7) -} (SIZE(8)) - -/** - * This DE represents a timestamp based on TimestampIts modulo 65 536. - * This means that generationDeltaTime = TimestampIts mod 65 536. - * - * @category Time information - * @revision: Created in V2.1.1 based on EN 302 637-2 -*/ -GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) - -/** - * This DE indicates the current status of a hard shoulder: whether it is available for special usage - * (e.g. for stopping or for driving) or closed for all vehicles. - * - * The value shall be set to: - * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations. - * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case. - * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 - */ -HardShoulderStatus ::= ENUMERATED { - availableForStopping (0), - closed (1), - availableForDriving (2)} - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, - * - 1 - `wildAnimals` - in case wild animals are detected on the road, - * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, - * - 3 - `smallAnimals` - in case small size animal is detected on the road, - * - 4 - `largeAnimals` - in case large size animal is detected on the road, - * - 5-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - wildAnimals (1), - herdOfAnimals (2), - smallAnimals (3), - largeAnimals (4) -} (0..255) - -/** - * This DE represents the sub cause code of the @ref CauseCode `hazardousLocation-DangerousCurve`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, - * - 1 - `dangerousLeftTurnCurve` - in case the dangerous curve is a left turn curve, - * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, - * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, - * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, - * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves stating with a right turn curve, - * - 6-255 - are reserved for future usage. - * - * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass - * and vehicle speed driving on the curve. This definition is out of scope of the present document. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { - unavailable (0), - dangerousLeftTurnCurve (1), - dangerousRightTurnCurve (2), - multipleCurvesStartingWithUnknownTurningDirection (3), - multipleCurvesStartingWithLeftTurn (4), - multipleCurvesStartingWithRightTurn (5) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the detected obstacle is unavailable, - * - 1 - `shedLoad` - in case detected obstacle is large amount of obstacles (shedload), - * - 2 - `partsOfVehicles`- in case detected obstacles are parts of vehicles, - * - 3 - `partsOfTyres` - in case the detected obstacles are parts of tyres, - * - 4 - `bigObjects` - in case the detected obstacles are big objects, - * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, - * - 6 - `hubCaps` - in case the detected obstacles are hub caps, - * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles, - * - 8-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - shedLoad (1), - partsOfVehicles (2), - partsOfTyres (3), - bigObjects (4), - fallenTrees (5), - hubCaps (6), - waitingVehicles (7) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. - * -The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the road surface condition is unavailable, - * - 1 - `rockfalls` - in case rock falls are detected on the road surface, - * - 2 - `earthquakeDamage`- in case the road surface is damaged by earthquake, - * - 3 - `sewerCollapse` - in case of sewer collapse on the road surface, - * - 4 - `subsidence` - in case road surface is damaged by subsidence, - * - 5 - `snowDrifts` - in case road surface is damaged due to snow drift, - * - 6 - `stormDamage` - in case road surface is damaged by strong storm, - * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, - * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, - * - 9 - `fallingIce` - in case road surface damage is due to falling ice, - * - 10 - `fire` - in case there is fire on or near to the road surface, - * - 11-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { - unavailable (0), - rockfalls (1), - earthquakeDamage (2), - sewerCollapse (3), - subsidence (4), - snowDrifts (5), - stormDamage (6), - burstPipe (7), - volcanoEruption (8), - fallingIce (9), - fire (10) -} (0..255) - -/** - * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. - * -The value shall be set to: - * - `1` if the heading accuracy is equal to or less than 0,1 degree, - * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, - * - `125` if the heading accuracy is equal to or less than 12,5 degrees, - * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, - * - `127` if the heading accuracy information is not available. - * - * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, - * such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported heading value may be valid and used by the application. - * - * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported - * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleConfidence instead. - * - * @unit: 0,1 degree - * @category: GeoReference information - * @revision: Description revised in V2.1.1 - */ -HeadingConfidence ::= Wgs84AngleConfidence - -/** -HeadingValue - * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. - * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. - * - * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleValue instead. - * - * Unit: 0,1 degree - * Categories: GeoReference information - * @revision: Description revised in V2.1.1 (usage of value 3600 specified) -*/ -HeadingValue ::= Wgs84AngleValue - -/** - * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle - * rear to front). - * - * The value shall be set to: - * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter. - * - `99` if the height is out of range, i.e. equal to or greater than 98 cm. - * - `100` if the height information is not available. - * - * @unit 0,01 meter - * @category Vehicle information - * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) - */ -HeightLonCarr ::= INTEGER { - unavailable(100) -} (1..100) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, - * - 1 - `childrenOnRoadway` - in case children are detected on the road event, - * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, - * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road, - * - 4-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - childrenOnRoadway (1), - cyclistOnRoadway (2), - motorcyclistOnRoadway (3) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, - * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, - * - 2 - `heartProblem` - in case human problem is due to heart problem, - * - 3-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HumanProblemSubCauseCode ::= INTEGER { - unavailable (0), - glycemiaProblem (1), - heartProblem (2) -} (0..255) - -/** - * This DE is a general identifier. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -Identifier1B ::= INTEGER (0..255) - -/** - * This DE is a general identifier. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -Identifier2B ::= INTEGER (0..65535) - -/** - * This DE represents the quality level of provided information. - * - * The value shall be set to: - * - 0 - if the information is unavailable. - * - 1 - if the quality level is lowest - * - `n (n > 1 and n < 7)` if the quality level is n. - * - 7 - if the quality level is highest - * @note: Definition of quality level is out of scope of the present document. - * - * @category: Basic information - * @revision: Editorial update in V2.1.1 - */ -InformationQuality ::= INTEGER (0..7) - -/** - * This DE defines the type of an interference management zone, so that an ITS-S can - * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). - * It is an extension of the type @ref ProtectedZoneType. - - * - * The value shall be set to: - * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] - * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] - * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling - * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -InterferenceManagementZoneType ::= ENUMERATED { - permanentCenDsrcTolling (0), - temporaryCenDsrcTolling (1), - unavailable (2), - urbanRail (3), - satelliteStation (4), - fixedLinks (5), - ... -} - -/** - * This DE represents the vehicle type according to ISO 3833 [4]. - * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. - * - * The value shall be set to: - * - 0 - `passengerCar` - term No 3.1.1 - * - 1 - `saloon` - term No 3.1.1.1 (sedan) - * - 2 - `convertibleSaloon` - term No 3.1.1.2 - * - 3 - `pullmanSaloon` - term No 3.1.1.3 - * - 4 - `stationWagon` - term No 3.1.1.4 - * - 5 - `truckStationWagon` - term No 3.1.1.4.1 - * - 6 - `coupe` - term No 3.1.1.5 (coupe) - * - 7 - `convertible` - term No 3.1.1.6 (open tourer, roadstar, spider) - * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 - * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 - * - 10 - `specialPassengerCar` - term No 3.1.1.9 - * - 11 - `bus (11)` - term No 3.1.2 - * - 12 - `minibus` - term No 3.1.2.1 - * - 13 - `urbanBus` - term No 3.1.2.2 - * - 14 - `interurbanCoach` - term No 3.1.2.3 - * - 15 - `longDistanceCoach` - term No 3.1.2.4 - * - 16 - `articulatedBus` - term No 3.1.2.5 - * - 17 - `trolleyBus ` - term No 3.1.2.6 - * - 18 - `specialBus` - term No 3.1.2.7 - * - 19 - `commercialVehicle ` - term No 3.1.3 - * - 20 - `specialCommercialVehicle` - term No 3.1.3.1 - * - 21 - `specialVehicle ` - term No 3.1.4 - * - 22 - `trailingTowingVehicle ` - term No 3.1.5 (draw-bar tractor) - * - 23 - `semiTrailerTowingVehicle` - term No 3.1.6 (fifth wheel tractor) - * - 24 - `trailer` - term No 3.2.1 - * - 25 - `busTrailer` - term No 3.2.1.1 - * - 26 - `generalPurposeTrailer` - term No 3.2.1.2 - * - 27 - `caravan` - term No 3.2.1.3 - * - 28 - `specialTrailer` - term No 3.2.1.4 - * - 29 - `semiTrailer` - term No 3.2.2 - * - 30 - `busSemiTrailer ` - term No 3.2.2.1 - * - 31 - `generalPurposeSemiTrailer` - term No 3.2.2.2 - * - 32 - `specialSemiTrailer` - term No 3.2.2.3 - * - 33 - `roadTrain` - term No 3.3.1 - * - 34 - `passengerRoadTrain ` - term No 3.3.2 - * - 35 - `articulatedRoadTrain` - term No 3.3.3 - * - 36 - `doubleRoadTrain` - term No 3.3.4 - * - 37 - `compositeRoadTrain` - term No 3.3.5 - * - 38 - `specialRoadTrain` - term No 3.3.6 - * - 39 - `moped` - term No 3.4 - * - 40 - `motorCycle` - term No 3.5 - * - 41-255 - reserved for future use - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ - -Iso3833VehicleType ::= INTEGER { - passengerCar (0), - saloon (1), - convertibleSaloon (2), - pullmanSaloon (3), - stationWagon (4), - truckStationWagon (5), - coupe (6), - convertible (7), - multipurposePassengerCar (8), - forwardControlPassengerCar (9), - specialPassengerCar (10), - bus (11), - minibus (12), - urbanBus (13), - interurbanCoach (14), - longDistanceCoach (15), - articulatedBus (16), - trolleyBus (17), - specialBus (18), - commercialVehicle (19), - specialCommercialVehicle (20), - specialVehicle (21), - trailingTowingVehicle (22), - semiTrailerTowingVehicle (23), - trailer (24), - busTrailer (25), - generalPurposeTrailer (26), - caravan (27), - specialTrailer (28), - semiTrailer (29), - busSemiTrailer (30), - generalPurposeSemiTrailer (31), - specialSemiTrailer (32), - roadTrain (33), - passengerRoadTrain (34), - articulatedRoadTrain (35), - doubleRoadTrain (36), - compositeRoadTrain (37), - specialRoadTrain (38), - moped (39), - motorCycle (40) - } (0..255) - -/** - * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. - * - * For right-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road. - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane. - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction. - * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). - * - * For left-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road. - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane. - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction. - * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). - - * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. - * - * If the carriageway allows only traffic in one direction (e.g. in case of dual or multiple carriageway roads), the position is counted from the physical border of the carriageway. - * If the carriageway allows traffic in both directions and there is no physical delimitation between traffic directions (e.g. on a single carrriageway road), - * the position is counted from the legal (i.e. optical) separation between traffic directions (horizontal marking). - - * @category: Road topology information - * @revision: Description revised in V2.1.1 -*/ -LanePosition ::= INTEGER { - offTheRoad (-1), - innerHardShoulder (0), - outerHardShoulder (14) -} (-1..14) - -/** - * This DE represents the type of a lane. - * - * The value shall be set to: - * - 0 - `traffic` - Lane dedicated to the movement of vehicles. - * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning. - * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow. - * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. - * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it. - * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. - * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic. - * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. - * - 8 - `bus` - Lane dedicated to movement of buses providing public transport. - * - 9 - `taxi` - Lane dedicated to movement of taxis. - * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane. - * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. - * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths. - * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles. - * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median - separating the two directional carriageways of the highway. - * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings. - * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys. - * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes. - * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. - * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between - the road surface edge and the boundary of a road. - * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. - * - values 21 to 30 reserved for future use - * - * @category: Road topology information - * @revision: V2.1.1 -*/ -LaneType::= INTEGER{ - traffic (0), - through (1), - reversible (2), - acceleration (3), - deceleration (4), - leftHandTurning (5), - rightHandTurning (6), - dedicatedVehicle (7), - bus (8), - taxi (9), - hov (10), - hot (11), - pedestrian (12), - cycleLane (13), - median (14), - striping (15), - trackedVehicle (16), - parking (17), - emergency (18), - verge (19), - minimumRiskManoeuvre (20), - unknown (31) -}(0..31) - -/** - * This DE represents the width of a lane measured at a defined position. - * - * @unit: 0.01 meter - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -LaneWidth::= INTEGER (0..1023) - -/** - * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or - * in south hemisphere. - * - * The value shall be set to: - * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitudes south of the Equator. - * - `0` is used for the latitude of the equator. - * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitudes north of the Equator. - * - `900 000 001` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -Latitude ::= INTEGER { - unavailable(900000001) -} (-900000000..900000001) - -/** - * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - - * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation - * with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation - with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead - * - * @unit: 0.1 m/s2 - * @category Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. - */ -LateralAccelerationValue ::= AccelerationValue - -/** - * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. - * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lightBarActivated` - when the light bar is activated. - * - 1 - `sirenActivated` - when the siren is activated. - * - * Otherwise, it shall be set to 0. - * - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -LightBarSirenInUse ::= BIT STRING { - lightBarActivated (0), - sirenActivated (1) -} (SIZE(2)) - -/** - * This DE represents the absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees - * to the east or to the west of the prime meridian. - * - * The value shall be set to: - * - `n (n > -1800000000 and n < 0)`, i.e. negative values for longitudes to the west. - * - `0` to indicate the prime meridian. - * - `n (n > 0 and n < 1800000001)`, i.e. positive values for longitudes to the east. - * - `1 800 000 001` when the information is unavailable. - * - * The value -1800000000 shall not be used. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: Description revised in V2.1.1 - */ -Longitude ::= INTEGER { - valueNotUsed (-1800000000), - unavailable (1800000001) -} (-1800000000..1800000001) - - /** - * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * -* The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * This acceleration is along the tangent plane of the road surface and does not include gravity components. - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * @category: Vehicle information - * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. - */ -LongitudinalAccelerationValue::= AccelerationValue - -/** - * This DE represents the longitudinal offset of the map-matched position of a particular object along the - * matched lane, beginning from the lane's starting point. - * - * @unit 0,1 m - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -LongitudinalLanePositionValue ::= INTEGER (0..32767) - -/** - * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. - * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. - * - `102` if the data is unavailable. - * - * @unit 0,01 meter - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -LongitudinalLanePositionConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) - -/** - * This DE represents the type of facility layer message. - * - * The value shall be set to: - * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], - * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], - * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], - * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], - * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], - * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], - * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], - * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], - * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], - * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], - * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], - * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], - * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], - * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], - * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], - * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], - * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. - * - 18-255 - reserved for future usage, - * - * @category: Communication information - * @revision: Created in V2.1.1 from @ref ItsPduHeader. - */ -MessageId::= INTEGER { - denm (1), - cam (2), - poi (3), - spatem (4), - mapem (5), - ivim (6), - ev-rsr (7), - tistpgtransaction (8), - srem (9), - ssem (10), - evcsn (11), - saem (12), - rtcmem (13), - cpm (14), - imzm (15), - vam (16), - dsm (17) -} (0..255) - -/** - * This DE represents the number of occupants in a vehicle. - * - * The value shall be set to: - * - `n (n > 1 and n < 126)` for the number n of occupants. - * - `126` for values equal to or higher than 126. - * - `127` if information is not available.`. - * - * @unit: 1 person - * @category: Vehicle information - * @revision: Editorial update in V2.1.1 - */ -NumberOfOccupants ::= INTEGER { - outOfRange (126), - unavailable (127) -} (0 .. 127) - -/** - * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. - * - * The value shall be set to: - * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. - * - `n (n > 0 and n < 15)` : for the applicable confidence value. - * -`15` : if there is full confidence in the detected ObjectDescriptor. - * - * @unit n/a - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectConfidence ::= INTEGER { - noConfidence (0), - fullConfidence (15) -} (0..15) - -/** - * This DE represents a single dimension of an object. - * - * @unit 0,1 m - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimensionValue ::= INTEGER (0..1023) - -/** - * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . - * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. - * - `102` if the data is unavailable. - * - * @unit 0,01 m - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimensionConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) - -/** - * The DE indicates whether the detected object is classified as a dynamic (i.e. moving) object. - * This value indicates whether an object has the general capability to move, i.e. change its - * position. - * - * The value shall be set to: - * - `0` - dynamic - if the object is moving. - * - `1` - hasBeenDynamic - if the object has been dynamic before, e.g., a car stopping at a traffic light. - * - `2` - static - if the object has been detected to be not moving throughout any previous observation. - * - `3` - unavailable - if the information is unavailable. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDynamicStatus ::= INTEGER { - dynamic (0), - hasBeenDynamic (1), - static (2), - unavailable (3) -} (0..3) - -/** - * This DE indicates the approximate position of the reference point of measurement for the object dimensions using a 9 cell grid. - * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -ObjectRefPoint ::= INTEGER { - bottomLeft (0), - midLeft (1), - topLeft (2), - bottomMid (3), - midMid (4), - topMid (5), - bottomRight (6), - midRight (7), - topRight (8) -} (0..8) - -/** - * This DE indicates the face or part of a face of a solid object. - * - * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: - * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object. - * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object. - * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. - * - * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. - * - * @category: Basic information - * @revision: V2.1.1 -*/ -ObjectFace ::= ENUMERATED { - front (0), - sideLeftFront (1), - sideLeftBack (2), - sideRightFront (3), - sideRightBack (4), - back (5) -} - -/** - * This DE represent a lateral position with lane-level resolution on the road reservation, which is not on regular traffic lanes. - * - * The value shall be set to: - * - 0 - `unavailable` - if information on the lane position is unavailable. - * - 1 - `sidewalk` - if the position is on the side-walk. - * - 2 - `parkingLane` - if the position is on an area at the side of the road not intended for travel but for vehicular parking. - * - 3 - `bikeLane` - if the position is on an area reserved for bicycles. - * - 4-15 - reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. - * - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -OffRoadLanePosition ::= ENUMERATED { - unavailable (0), - sidewalk (1), - parkingLane (2), - bikeLane (3), - max (15) -} - -/** - * This DE represents a time period to describe the opening days and hours of a Point of Interest. - * (for example local commerce). - * - * @category: Time information - * @revision: V1.3.1 - */ -OpeningDaysHours ::= UTF8String - -/** - * The DE represents an ordinal number that indicates the position of an element in a set. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -OrdinalNumber1B ::= INTEGER(1..255) - -/** - * This DE indicates the subclass of a detected object for object class "otherSubclass". - * - * The value shall be set to: - * - `0` - unknown - if the subclass is unknown. - * - `1` - roadSideUnit - if the object is a roadside unit. - * - * @category: Sensing information - * @revision: Created in V2.1.1 - */ -OtherSubClass ::= INTEGER { - unknown (0), - roadSideUnit (1) -} (0..255) - -/** - * This DE represents the recorded or estimated travel time between a position and a predefined reference position. - * - * @unit 0.01 second - * @category GeoReference information - * @revision: same type as in V1.3.1 but now based on a basic type - */ -PathDeltaTime ::= DeltaTimeHundredthOfSecond - -/** - * This DE denotes the ability of an ITS-S to provide up-to-date information. - * A performance class value is used to describe age of data. The exact values are out of scope of the present document. - * - * The value shall be set to: - * - `0` if the performance class is unknown. - * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.6] - * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.6] - * - Values in the range `3 to 7` are reserved for future use. - * - * @category: Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PerformanceClass ::= INTEGER { - unavailable (0), - performanceClassA (1), - performanceClassB (2) -} (0..7) - -/** - * This DE represents a telephone number - * - * @category: Basic information - * @revision: V1.3.1 - */ -PhoneNumber ::= NumericString (SIZE(1..16)) - -/** - * This DE indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of - * the vehicle bounding box of the empty load vehicle. - * - * The value shall be set to: - * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 meter and 6,2 meters. - * - `62` for values equal to or higher than `6.2 metres`. - * - `63` if the information is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @unit 0,1 metre - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PosCentMass ::= INTEGER { - tenCentimeters (1), - outOfRange (62), - unavailable (63) -} (1..63) - -/** - * This DE indicates the positioning technology being used to estimate a geographical position. - * - * The value shall be set to: - * - 0 `noPositioningSolution` : no positioning solution used, - * - 1 `sGNSS` : Global Navigation Satellite System used, - * - 2 `dGNSS` : Differential GNSS used, - * - 3 `sGNSSplusDR` : GNSS and dead reckoning used, - * - 4 `dGNSSplusDR` : Differential GNSS and dead reckoning used, - * - 5 `dR` : dead reckoning used. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -PositioningSolutionType ::= ENUMERATED { - noPositioningSolution (0), - sGNSS (1), - dGNSS (2), - sGNSSplusDR (3), - dGNSSplusDR (4), - dR (5), - ... -} - -/** - * This DE indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. - * - * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear - * of the vehicle. - * The left side seat of a row refers to the left hand side seen from vehicle rear to front. - * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, - * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. - * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, - * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. - * - * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. - * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. - * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. - * Otherwise, the value of seat occupation bit shall be set according to the following conditions: - * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. - * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row - * shall be set to `1`. - * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. - * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row - * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PositionOfOccupants ::= BIT STRING { - row1LeftOccupied (0), - row1RightOccupied (1), - row1MidOccupied (2), - row1NotDetectable (3), - row1NotPresent (4), - row2LeftOccupied (5), - row2RightOccupied (6), - row2MidOccupied (7), - row2NotDetectable (8), - row2NotPresent (9), - row3LeftOccupied (10), - row3RightOccupied (11), - row3MidOccupied (12), - row3NotDetectable (13), - row3NotPresent (14), - row4LeftOccupied (15), - row4RightOccupied (16), - row4MidOccupied (17), - row4NotDetectable (18), - row4NotPresent (19) -} (SIZE(20)) - -/** - * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. - * - * The value shall be set to: - * - `n (n > 0 and n < 19) for any aplicable value between 0,1 meter and 1,9 meters. - * - `19` for values equal to or higher than 1.9 metres. - * - `20` if the information is unavailable. - * - * @category: Vehicle information - * @unit 0.1 metre - * @revision: Editorial update in V2.1.1 - */ -PosFrontAx ::= INTEGER { - outOfRange (19), - unavailable(20) -} (1..20) - -/** - * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. - * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 meter and 1,26 meters. - * - `126` for values equal to or higher than 1.26 metres. - * - `127` if the information is unavailable. - * - * @unit 0,01 metre - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PosLonCarr ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the - * middle point of the front line of the vehicle bounding box. - * - * The value shall be set to: - * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 meter and 2,9 meters. - * - `29` for values equal to or greater than 2.9 metres. - * - `30` if the information is unavailable. - * - * @unit 0,1 metre - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PosPillar ::= INTEGER { - outOfRange (29), - unavailable (30) -} (1..30) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on post crash event is unavailable, - * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, - * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, - * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, - * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle, - * - 5-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -PostCrashSubCauseCode ::= INTEGER { - unavailable (0), - accidentWithoutECallTriggered (1), - accidentWithECallManuallyTriggered (2), - accidentWithECallAutomaticallyTriggered (3), - accidentWithECallTriggeredWithoutAccessToCellularNetwork (4) -} (0..255) - -/** -* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square meter. -* -* The following values are specified: -* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0.1 mm/h and greater than (n-1) x 0.1 mm/h. -* - `2000` if the amount of rain falling is greater than 199.9 mm/h -* - `2001` if the information is not available -* -* @unit: 0.1 mm/h -* @category: Basic Information -* @revision: created in V2.1.1 -*/ -PrecipitationIntensity ::= INTEGER { - outOfRange (2000), - unavailable (2001) -} (1..2001) - -/** - * This DE represenst the indentifier of a protected communication zone. - * - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedZoneID ::= INTEGER (0.. 134217727) - -/** - * This DE represenst the radius of a protected communication zone. - * - * - * @unit: metre - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedZoneRadius ::= INTEGER (1..255,...) - -/** - * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do - * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). - * - * The protected zone type is defined in ETSI TS 102 792 [i.16]. - * - * - * @category: Communication information - * @revision: V1.3.1 - */ -ProtectedZoneType::= ENUMERATED { - permanentCenDsrcTolling (0), - ..., - temporaryCenDsrcTolling (1) -} - -/** - * This DE is used for various tasks in the public transportation environment, especially for controlling traffic - * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). - * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation - * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the - * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to - * traffic congestion. Other usage of the DE is the provision of information like the public transport line number - * or the schedule delay of a public transport vehicle. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivationData ::= OCTET STRING (SIZE(1..20)) - -/** - * This DE indicates a certain coding type of the PtActivationData data. - * - * The folowing value are specified: - * - `0` undefinedCodingType : undefined coding type, - * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.8], - * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.8]. - * - values 3 to 255 : reserved for alternative and future use. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivationType ::= INTEGER { - undefinedCodingType (0), - r09-16CodingType (1), - vdv-50149CodingType (2) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . - * - * The value shall be set to: - * - 0 `unavailable` : in case no further detailed information on the railway level crossing status is available, - * - 1 `doNotCrossAbnormalSituation` : in case when something wrong is detected by equation or sensors of the railway level crossing, - including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), - * - 2 `closed` : in case the crossing is closed (barriers down), - * - 3 `unguarded` : in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), - * - 4 `nominal` : in case the barriers are up and lights are off. - * - 5-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RailwayLevelCrossingSubCauseCode ::= INTEGER { - unavailable (0), - doNotCrossAbnormalSituation (1), - closed (2), - unguarded (3), - nominal (4) -} (0..255) - -/** - * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from - * ITS-S after receiving request from other ITS-Ss. - * - * The value shall be set to: - * - 0 `request` : for a request message. - * - 1 `response` : for a response message. - * - * @category Communication information - * @revision: Editorial update in V2.1.1 - */ -RequestResponseIndication ::= ENUMERATED { - request (0), - response (1) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` - * - * The following value are specified: - * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, - * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, - * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, - * - 3 `policeActivityOngoing` : in case police activity is ongoing, - * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, - * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, - * - 6-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { - unavailable (0), - emergencyVehicles (1), - rescueHelicopterLanding (2), - policeActivityOngoing (3), - medicalEmergencyOngoing (4), - childAbductionInProgress (5) -} (0..255) - - -/** - * This DE indicates the type of a road segment. - * - * The value shall be set to: - * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. - * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. - * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. - * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. - * - * @category: Road Topology Information - * @revision: Editorial update in V2.1.1 - */ -RoadType ::= ENUMERATED { - urban-NoStructuralSeparationToOppositeLanes (0), - urban-WithStructuralSeparationToOppositeLanes (1), - nonUrban-NoStructuralSeparationToOppositeLanes (2), - nonUrban-WithStructuralSeparationToOppositeLanes (3) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. - * -The value shall be set to: - * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, - * - 1 `majorRoadworks` : in case a major roadworks is ongoing, - * - 2 `roadMarkingWork` : in case a road marking work is ongoing, - * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, - * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, - * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, - * - 6 `winterService` : in case winter service work is ongoing, - * - 7-255 reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RoadworksSubCauseCode ::= INTEGER { - unavailable (0), - majorRoadworks (1), - roadMarkingWork (2), - slowMovingRoadMaintenance (3), - shortTermStationaryRoadworks (4), - streetCleaning (5), - winterService (6) -} (0..255) - -/** - * This DE indicates if a distance is safe - * This DE is FALSE if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} simultaneously satisfied with confidence of 90 % or more. - * Otherwise stationSafeDistanceIndication is set to TRUE. - * - * @Note: the ebbreviations 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) - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SafeDistanceIndicator::= BOOLEAN - -/** - * This DE represenst the absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a - * confidence level of 95 %. - * - * The value shall be set to: - * - `1` if the accuracy is equal to or less than 1 cm, - * - `n (n > 1 and n < 4 094)` if the accuracy is equal to or less than n cm, - * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, - * - `4 095` if the accuracy information is unavailable. - * - * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' - * can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported position coordinate value may be valid and used by the application. - * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that - * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful - * for the application. - - * @unit 0,01 meter - * @category: GeoReference Information - * @revision: Editorial update in V2.1.1 - */ -SemiAxisLength ::= INTEGER{ - outOfRange (4094), - unavailable (4095) -} (0..4095) - -/** - * This DE indicates the type of sensor. - * - * The value shall be set to: - * - `0` undefined : in case the sensor type is undefined. - * - `1` radar : in case the sensor is a radar. - * - `2` lidar : in case the sensor is a lidar. - * - `3` monovideo : in case the sensor is mono video. - * - `4` stereovision : in case the sensor is stereo vision. - * - `5` nightvision : in case the sensor is night vision. - * - `6` ultrasonic : in case the sensor is ultrasonic. - * - `7` pmd : in case the sensor is photonic mixing device. - * - `8` inductionLoop : in case the sensor is an induction loop. - * - `9` sphericalCamera : in case the sensor is a spherical camera. - * - `10` uwb : in case the sensor is ultra wide band. - * - `11` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. - * - `12` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. - * - * @category: Sensing Information - * @revision: created in V2.1.1 -*/ -SensorType ::= INTEGER { - undefined (0), - radar (1), - lidar (2), - monovideo (3), - stereovision (4), - nightvision (5), - ultrasonic (6), - pmd (7), - inductionLoop (8), - sphericalCamera (9), - uwb (10), - localAggregation (11), - itsAggregation (12) -} (0..15) - -/** - * This DE represents a sequence number. - * - * @category: Basic information - * @revision: V1.3.1 - */ -SequenceNumber ::= INTEGER (0..65535) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, - * - 1 `stopSignViolation` : in case a stop sign violation is detected, - * - 2 `trafficLightViolation` : in case a traffic light violation is detected, - * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, - * - 4-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -SignalViolationSubCauseCode ::= INTEGER { - unavailable (0), - stopSignViolation (1), - trafficLightViolation (2), - turningRegulationViolation (3) -} (0..255) - -/** - * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is - * unavailable, - * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, - * - 2 `vehiclesSlowingToLookAtAccident`: in case vehicle is temporally slowing down to look at accident, spot, etc., - * - 3 `abnormalLoad` : in case an abnormal loaded vehicle is driving slowly on the road, - * - 4 `abnormalWideLoad` : in case an abnormal wide load vehicle is driving slowly on the road, - * - 5 `convoy` : in case of slow driving convoy on the road, - * - 6 `snowplough` : in case of slow driving snow plough on the road, - * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, - * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road, - * - 9-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -SlowVehicleSubCauseCode ::= INTEGER { - unavailable (0), - maintenanceVehicle (1), - vehiclesSlowingToLookAtAccident (2), - abnormalLoad (3), - abnormalWideLoad (4), - convoy (5), - snowplough (6), - deicing (7), - saltingVehicles (8) -} (0..255) - -/** - * The DE indicates if a vehicle is carrying goods in the special transport conditions. - - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load. - * - 1 `excessWidth` : the vehicle is carrying goods in excess of width. - * - 2 `excessLength` : the vehicle is carrying goods in excess of length. - * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. - * - * Otherwise, the corresponding bit shall be set to 0. - * @category Vehicle information - * @revision: Description revised in V2.1.1 - */ -SpecialTransportType ::= BIT STRING { - heavyLoad (0), - excessWidth (1), - excessLength (2), - excessHeight (3) -} (SIZE(4)) - -/** - * This DE represents the absolute accuracy of a speed value information for a predefined confidence level of 95%. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the speed accuracy is equal to or less than n cm/s. - * - `126` if the speed accuracy is out of range, i.e. greater than 125 cm/s. - * - `127` if the speed accuracy information is not available. - * - * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported speed value may be valid and used by the application. - * - * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid - * and therefore cannot be trusted. Such is not useful for the application. - * - * @unit cm/s - * @category: Vehicle information - * @revision: Description revised in V2.1.1 - */ -SpeedConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents a speed limitation applied to a geographical position, a road section or a geographical region. - * - * @unit: km/h - * @category: Infrastructure information, Traffic information - * @revision: V1.3.1 - */ -SpeedLimit ::= INTEGER (1..255) - -/** - * This DE represents a speed value, i.e. the magnitude of the horizontal velocity-vector. - * - * The value shall be set to: - * - `0` in a standstill situation. - * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s. - * - `16382` for speed values greater than 163,81 m/s. - * - `16383` if the speed accuracy information is not available. - * - * @unit: 0,01 m/s - * @category: Kinematics information - * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) -*/ -SpeedValue ::= INTEGER { - standstill (0), - outOfRange (16382), - unavailable (16383) -} (0..16383) - -/** - * This DE represents the value of a velocity component in a defined coordinate system. - * - * The value shall be set to: - * - `-16383` if the speed is equal to or smaller than -163,83 m/s - * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s. - * - `16382` for speed values equal to or greater than 163,81 m/s. - * - `16383` if the speed accuracy information is not available. - * - * @unit: 0,01 m/s - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -SpeedValueExtended ::= INTEGER { - negativeOutOfRange (-16383), - psotiveOutOfRange (16382), - unavailable (16383) -} (-16383..16383) - - -/** - * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. - * - * The value shall be set to: - * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable". - * - `n (n > 0 and n < 50)` to indicate the actual stability level. - * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability". - * - the values between 51 and 62 are reserved for future use. - * - `63`: this value indicates that the information is unavailable. - * - * @unit: 2% - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -StabilityLossProbability ::= INTEGER { - stable (0), - totalLossOfStability (50), - unavailable (63) -} (0..63) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength12b::= INTEGER (0..4095) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m. - * - 1 `lessThan100m` : for distances below 100 m. - * - 2 `lessThan200m` : for distances below 200 m. - * - 3 `lessThan500m` : for distances below 300 m. - * - 4 `lessThan1000m` : for distances below 1000 m. - * - 5 `lessThan5km` : for distances below 5000 m. - * - 6 `lessThan10km` : for distances below 10000 m. - * - 7 `over10km` : for distances over 10000 m. - * - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -StandardLength3b ::= ENUMERATED { - lessThan50m (0), - lessThan100m (1), - lessThan200m (2), - lessThan500m (3), - lessThan1000m (4), - lessThan5km (5), - lessThan10km (6), - over10km (7) -} - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength9b::= INTEGER (0..511) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength1B::= INTEGER (0..255) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0.1 meter - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength2B::= INTEGER (0..65535) - -/** - * This DE indicates the duration in minutes since which something is stationary. - * - * The value shall be set to: - * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. - * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more 1 minute. - * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. - * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -StationarySince ::= ENUMERATED { - lessThan1Minute (0), - lessThan2Minutes (1), - lessThan15Minutes (2), - equalOrGreater15Minutes (3) -} - -/** - * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, - * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, - * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, - * - 3 `postCrash` : in case stationary vehicle is caused by collision, - * - 4 `publicTransportStop` : in case public transport vehicle is stationary at bus stop, - * - 5 `carryingDangerousGoods`: in case the stationary vehicle is carrying dangerous goods, - * - 6 `vehicleOnFire` : in case of vehicle on fire. - * - 7-255 reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -StationaryVehicleSubCauseCode ::= INTEGER { - unavailable (0), - humanProblem (1), - vehicleBreakdown (2), - postCrash (3), - publicTransportStop (4), - carryingDangerousGoods (5), - vehicleOnFire (6) -} (0..255) - -/** - * This DE represents the identifier of an ITS-S. - * The ITS-S ID may be a pseudonym. It may change over space and/or over time. - * - * @category: Basic information - * @revision: V1.3.1 - */ -StationID ::= INTEGER(0..4294967295) - -/** - * This DE represenst the type of technical context the ITS-S is integrated in. - * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. - * - * The value shall be set to: - * - 0 `unknown`: information about the ITS-S context is not provided, - * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). - * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, - * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] - class L1, L2 (VRU Profile 3) - * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] - class L3, L4, L5, L6, L7 (VRU Profile 3) - * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, - * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, - * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, - * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, - * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in - UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, - * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, - * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). - * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) - * - 14 reserved for future usage - * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, - on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), - * - 16-255> reserved for future usage. - * - * @category: Communication information. - * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) - */ -StationType ::= INTEGER { - unknown (0), - pedestrian (1), - cyclist (2), - moped (3), - motorcycle (4), - passengerCar (5), - bus (6), - lightTruck (7), - heavyTruck (8), - trailer (9), - specialVehicles (10), - tram (11), - lightVruVehicle (12), - animal (13), - roadSideUnit (15) -} (0..255) - -/** - * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, - * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, - * - `127` if the accuracy information is not available. - * - * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' - * can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. - * - * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', - * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. - * Such value is not useful for the application. - * - * @unit: 1.5 degree - * @category: Vehicle Information - * @revision: Description revised in V2.1.1 -*/ -SteeringWheelAngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the steering wheel angle of the vehicle at certain point in time. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - * The value shall be set to: - * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. - * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, - turning clockwise (i.e. to the right). - * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, - turning counter-clockwise (i.e. to the left). - * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. - * - `512` if information is not available. - * - * @unit: 1.5 degree - * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). - */ -SteeringWheelAngleValue ::= INTEGER { - negativeOutOfRange (-511), - positiveOutOfRange (511), - unavailable (512) -} (-511..512) - -/** - * This DE indicates the generic sub cause of a detected event. - * - * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 (this is the generic sub cause type) - */ -SubCauseCodeType ::= INTEGER (0..255) - -/** - * This DE indicates a temperature value. - - * The value shall be set to: - * - `-60` for temperature equal to or less than -60 degrees C. - * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C. - * - `67` for temperature equal to or greater than 67 degrees C. - * - * @unit: degrees Celsius - * @category: Basic information - * @revision: Editorial update in V2.1.1 - */ -Temperature ::= INTEGER { - equalOrSmallerThanMinus60Deg (-60), - equalOrGreaterThan67Deg(67)} (-60..67) - -/** - * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. - * The ITS epoch is `00:00:00.000 UTC, 1 January 2004`. - * "Elapsed" means that the true number of milliseconds is continuously counted without interruption, - * i.e. it is not altered by leap seconds, which occur in UTC. - * - * @note: International Atomic Time (TAI) is the time reference coordinate on the basis of the readings of atomic clocks, - * operated in accordance with the definition of the second, the unit of time of the International System of Units. - * TAI is a continuous time scale. UTC has discontinuities, as it is occasionally adjusted by leap seconds. - * As of 1 January, 2022, TimestampIts is 5 seconds ahead of UTC, because since the ITS epoch on 1 January 2004 00:00:00.000 UTC, - * further 5 leap seconds have been inserted in UTC. - * - * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, - * which includes one leap second insertion since the ITS epoch. - * @unit: millisecond - * @category: Basic information - * @revision: Description revised in in V2.1.1 - */ -TimestampIts ::= INTEGER (0..4398046511103) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, - * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, - * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, - * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, - * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, - * - 5 `trafficStationary` : in case traffic is stationary, - * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, - * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, - * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, - * - 9-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -TrafficConditionSubCauseCode ::= INTEGER { - unavailable (0), - increasedVolumeOfTraffic (1), - trafficJamSlowlyIncreasing (2), - trafficJamIncreasing (3), - trafficJamStronglyIncreasing (4), - trafficStationary (5), - trafficJamSlightlyDecreasing (6), - trafficJamDecreasing (7), - trafficJamStronglyDecreasing (8) -} (0..255) - -/** - * This DE indicates a traffic direction that is relevant to information indicated in a message. - * - * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions. - * - 1 `upstreamTraffic` : for upstream traffic. - * - 2 `downstreamTraffic` : for downstream traffic. - * - 3 `oppositeTraffic` : for traffic in the opposite direction. - * - * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. - * - * @note: Upstream traffic corresponds to the incoming traffic towards the event position, - * and downstream traffic to the departing traffic away from the event position. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 from RelevanceTrafficDirection - */ -TrafficDirection ::= ENUMERATED { - allTrafficDirections (0), - upstreamTraffic (1), - downstreamTraffic (2), - oppositeTraffic (3) -} - -/** - * This DE indicates traffic rules that apply to vehicles at a certain position. - * - * The value shall be set to: - * - `0` if overtaking is prohibited for all vehicles. - * - `1` if overtaking is prohibited for trucks. - * - `2` if vehicles should pass to the right lane. - * - `3` if vehicles should pass to the left lane. - * - * @category: Infrastructure information, Traffic information - * @revision: Editorial update in V2.1.1 - */ -TrafficRule ::= ENUMERATED { - noPassing (0), - noPassingForTrucks (1), - passToRight (2), - passToLeft (3), - ...} - -/** - * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. - * - * The value shall be set to: - * - `n (n >= 0 and n <= 50)` to indicate the actual stability level. - * - the values between 51 and 62 are reserved. - * - `63`: to indicate that the information is unavailable. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionProbability ::= INTEGER { - unavailable (63) -} (0..63) - -/** - * This DE defines the confidence level of the trajectoryInterceptionProbability. - * - * The value shall be set to: - * - `0` to indicate confidence less than 50 % - * - `1` to indicate confidence greater than or equal to 50 % and less than 70 %. - * - `2` to indicate confidence greater than or equal to 70 % and less than 90 %. - * - `3` to indicate confidence greater than or equal to 90%. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionConfidence ::= INTEGER { - lessthan50percent (0), - between50and70Percent (1), - between70and90Percent (2), - above90Percent (3) -} (0..3) - -/** - * This DE provides the turning direction. - * - * The value shall be set to: - * - `left` for turning to te left. - * - `right`for turing to the right. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TurningDirection::= ENUMERATED { - left, - right -} - -/** - * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. - * - * The value shall be set to: - * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 meter, and greater than (n-1) x 0,4 meters. - * - `254` indicates that the turning radius is greater than 253 x 0.4 metre = 101.2 metres. - * - `255` indicates that the information is unavailable. - * - * For vehicle with tracker, the turning radius applies to the vehicle only. - * - * @category: Vehicle information - * @unit 0.4 metre - * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) - */ -TurningRadius ::= INTEGER { - outOfRange (254), - unavailable (255) -} (1..255) - -/** - * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VDS ::= IA5String (SIZE(6)) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, - * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, - * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, - * - 3 `engineProblem` : in case vehicle break down is caused by an engine problem, - * - 4 `transmissionProblem` : in case vehicle break down is caused by transmission problem, - * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, - * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, - * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, - * - 8 `tyrePuncture` : in case vehicle break down is caused by tire puncture, - * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, - * - 10 `vehicleOnFire` : in case the vehicle is on fire, - * - 11-255: reserved for future usage. - * - * @category: Traffic information - - */ -VehicleBreakdownSubCauseCode ::= INTEGER { - unavailable (0), - lackOfFuel (1), - lackOfBatteryPower (2), - engineProblem (3), - transmissionProblem (4), - engineCoolingProblem (5), - brakingSystemProblem (6), - steeringProblem (7), - tyrePuncture (8), - tyrePressureProblem (9), - vehicleOnFire (10) -} (0..255) - -/** - * This DE represents the height if the vehicle, measured from the ground to the highest point, excluding any antennas. - * In case vehicles are equipped with adjustable ride heights, camper shells, and any other - * equipment which may result in varying height, the largest possible height shall be used. - * - * @unit 5 cm (DE ranges to 6.35 m) - * @revision: V1.3.1 -*/ -VehicleHeight ::= INTEGER (0..127) - -/** - * This DE provides information about the presence of a trailer. - * - * The value shall be set to: - * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in a reported vehicle length value. - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in a reported vehicle length value. - * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. - * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer - * nor the detection of trailer presence/absence is possible. - * - * @category: Vehicle information - * @revision: Description revised in V2.1.1 -*/ -VehicleLengthConfidenceIndication ::= ENUMERATED { - noTrailerPresent (0), - trailerPresentWithKnownLength (1), - trailerPresentWithUnknownLength (2), - trailerPresenceIsUnknown (3), - unavailable (4) -} - -/** - * This DE represents the length of a vehicle. - * - * The value shall be set to: - * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. - * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. - * - `1 023` to indicate that the information in unavailable. - * - * - * @unit: 0.1 metre - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). - */ -VehicleLengthValue ::= INTEGER { - outOfRange(1022), - unavailable(1023) -} (1..1023) - -/** - * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. - * - * The value shall be set to: - * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than n x 100 kg, and greater than (n-1) x 100 kg. - * - `1 023` indicates that the vehicle mass is greater than 102 200 kg. - * - `1 024` indicates the vehicle mass information is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @unit: 100kg - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). -*/ -VehicleMass ::= INTEGER { - outOfRange (1023), - unavailable(1024) -} (1..1024) - -/** - * This DE indicates the role played by a vehicle at a point in time. - * - * The value shall be set to: - * - 0 `default` : to indicate the default vehicle role as indicated by the vehicle type, - * - 1 `publicTransport` : to indicate that the vehicle is used to operate public transport service, - * - 2 `specialTransport` : to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, - * - 3 `dangerousGoods` : to indicate that the vehicle is used for dangerous goods transportation, - * - 4 `roadWork` : to indicate that the vehicle is used to realize roadwork or road maintenance mission, - * - 5 `rescue` : to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, - * - 6 `emergency` : to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, - * - 7 `safetyCar` : to indicate that the vehicle is used for public safety, e.g. patrol, - * - 8 `agriculture` : to indicate that the vehicle is used for agriculture, e.g. farm tractor, - * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, - * - 10 `military` : to indicate that the vehicle is used for military purpose, - * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, - * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service, - * - 13 `reserved` : reserved for future usage, - * - 14 `reserved` : reserved for future usage, - * - 15 `reserved` : reserved for future usage. - * - * @category: Vehicle Information - * @revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) - */ -VehicleRole ::= ENUMERATED { - default (0), - publicTransport (1), - specialTransport(2), - dangerousGoods (3), - roadWork (4), - rescue (5), - emergency (6), - safetyCar (7), - agriculture (8), - commercial (9), - military (10), - roadOperator (11), - taxi (12), - reserved1 (13), - reserved2 (14), - reserved3 (15) -} - -/** - * This DE describes the subclass of a vehicle. - * - * The value shall be set to: - * - `0` unknown : to indicate that the type of vehicle is unknown. - * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. - * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. - * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. - * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. - * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. - * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). - * - `7` tram : to indicate a vehicle running on tracks along public streets. - * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. - * - `9` agricultural : to indicate a vehicle used for agricultural purposes. - * - Values 10 to 255 are reserved for future use. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -VehicleSubClass ::= INTEGER { - unknown (0), - passengerCar (1), - bus (2), - lightTruck (3), - heavyTruck (4), - trailer (5), - specialVehicles (6), - tram (7), - emergencyVehicle (8), - agricultural (9) -} (0..255) - -/** - * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. - - * The value shall be set to: - * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. - * - `61`indicates that the vehicle width is greater than 6,0 metres. - * - `62`indicates that the information in unavailable. - * - * @unit: 0.1 metre - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). - */ -VehicleWidth ::= INTEGER { - outOfRange (61), - unavailable (62) -} (1..62) - -/** - * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. - * - `161` when the data is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @category: Vehicle information - * @unit: 0.1 m/s2 - * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. - * -*/ -VerticalAccelerationValue ::= AccelerationValue - -/** - * This DE Identifies all the VRU profile types that are believed to be within a cluster. - * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU. - * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member. - * - 2 `motorcycle` : indicates that the VRU cluster contains at least one motorcycle VRU member. - * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. - * - * Otherwise, the corresponding bit shall be set to 0. - * - * @category: VRU information - * @revision: Created in V2.1.1 -*/ -VruClusterProfiles ::= BIT STRING { - pedestrian (0), - bicyclist (1), - motorcyclist (2), - animal (3) -} (SIZE(4)) - -/** - * This DE represents the possible VRU usage conditions. - - * - The value shall be set to: - * - 0 `unavailable` : to indicate that the usage conditions are unavailable. - * - 1 `other (1)` : to indicate that the VRU is in a state not defined below. - * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device. - * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use. - * - 4 `typing (4)` : to indicate that the human is texting, entering addresses and other manual input activity. - * - 5 `calling (5)` : to indicate that the VRU device is currently received a call. - * - 6 `playingGames (6)` : to indicate that the human is playing games. - * - 7 `reading (7)` : to indicate that the human is reading on the VRU device. - * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, - * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruDeviceUsage ::= ENUMERATED { - unavailable (0), - other (1), - idle (2), - listeningToAudio (3), - typing (4), - calling (5), - playingGames (6), - reading (7), - viewing (8), - max (255) -} - -/** - * This DE represents the possible VRU environment conditions. - * - * - The value shall be set to: - * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, - * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing. - * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). - * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. - * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. - * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. - * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruEnvironment ::= ENUMERATED { - unavailable (0), - intersectionCrossing (1), - zebraCrossing (2), - sidewalk (3), - onVehicleRoad (4), - protectedGeographicArea (5), - max (255) -} - -/** - * This DE indicates the status of the possible human control over a VRU vehicle. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable. - * - 1 `braking` : to indicate that the VRU is braking. - * - 2 `hardBraking` : to indicate that the VRU is braking hard. - * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling. - * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking. - * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard. - * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. - * - value 7 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruMovementControl ::= ENUMERATED { - unavailable (0), - braking (1), - hardBraking (2), - stopPedaling (3), - brakingAndStopPedaling (4), - hardBrakingAndStopPedaling (5), - noReaction (6), - max (255) -} - -/** - * This DE indicates the profile of a pedestrian. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable. - * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies. - * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker. - * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfilePedestrian ::= ENUMERATED { - unavailable (0), - ordinary-pedestrian (1), - road-worker (2), - first-responder (3), - max (15) -} - -/** - * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable. - * - 1 `bicyclist ` : to indicate a cycle and bicyclist. - * - 2 `wheelchair-user` : to indicate a wheelchair and its user. - * - 3 `horse-and-rider` : to indicate a horse and rider. - * - 4 `rollerskater` : to indicate a rolleskater and skater. - * - 5 `e-scooter` : to indicate an e-scooter and rider. - * - 6 `personal-transporter` : to indicate a personal-transporter and rider. - * - 7 `pedelec` : to indicate a pedelec and rider. - * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. - * - value 9 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileBicyclist ::= ENUMERATED { - unavailable (0), - bicyclist (1), - wheelchair-user (2), - horse-and-rider (3), - rollerskater (4), - e-scooter (5), - personal-transporter (6), - pedelec (7), - speed-pedelec (8), - max (15) -} - -/** - * This DE indicates the profile of a motorcyclist and corresponding vehicle. - * - * The value shall be set to: - * - 0 `unavailable ` : to indicate that the information is unavailable. - * - 1 `moped (1)` : to indicate a moped and rider. - * - 2 `motorcycle` : to indicate a motorcycle and rider. - * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider. - * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. - * - value 5 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileMotorcyclist ::= ENUMERATED { - unavailable (0), - moped (1), - motorcycle (2), - motorcycle-and-sidecar-right (3), - motorcycle-and-sidecar-left (4), - max (15) -} - -/** - * This DE indicates the profile of a animal - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable. - * - 1 `wild-animal` : to indicate a animal living in the wildness. - * - 2 `farm-animal` : to indicate an animal beloning to a farm. - * - 3 `service-animal` : to indicate an animal that supports a human being. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileAnimal ::= ENUMERATED { - unavailable (0), - wild-animal (1), - farm-animal (2), - service-animal (3), - max (15) -} - -/** - * This DE indicates the approximate size of a VRU including the VRU vehicle used. - * - * The value shall be set to: - * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1. - * - 1 `low (1)` : the VRU size class is low depending on the VRU profile. - * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile. - * - 3 `high (3)` : the VRU size class is high depending on the VRU profile. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSizeClass ::= ENUMERATED { - unavailable (0), - low (1), - medium (2), - high (3), - max (15) -} - -/** - * This DE describes the status of the exterior light switches of a vehicle or a VRU. - * The DE is an extension of the existing vehicular DE ExteriorLight. - * - * The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU - * or automatically by a vehicle or VRU system: - * - 0 `unavailable` : indicates no information available. - * - 1 `backFlashLight ` : indicates the status of the back flash light. - * - 2 `helmetLight` : indicates the status of the helmet light. - * - 3 `armLight` : indicates the status of the arm light. - * - 4 `legLight` : indicates the status of the leg leight. - * - 5 `wheelLight` : indicates the status of the wheel light. - * - Bits 6 to 8 : reserved for future use. - * The bit values do not indicate if the corresponding lamps are alight or not. - * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSpecificExteriorLights ::= BIT STRING { - unavailable (0), - backFlashLight (1), - helmetLight (2), - armLight (3), - legLight (4), - wheelLight (5) -} (SIZE(8)) - -/** - * Perpendicular distance between front and rear axle of the wheel base of vehicle. - * - * The value shall be set to: - * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0.1 metres and more than (n-1) x 0.1 metres. - * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. - * - `127` indicates that the information is unavailable. - * - * @unit 0.1 metre - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -WheelBaseVehicle ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. - * The required confidence level is defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n (n >=1 and n < 126)` is equal to or less than n x 0.1 degrees and more than (n-1) x 0.1 degrees. - * - `126` if the angle accuracy is out of range, i.e. greater than 12,5 degrees. - * - `127` if the angle accuracy information is not available. - * - * - * @unit 0,1 degrees - * @category: GeoReference Information - * @revision: Created in V2.1.1 -*/ -Wgs84AngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - - -/** - * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. - * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. - * - * @unit 0,1 degrees - * @category: GeoReference Information - * @revision: Created in V2.1.1 -*/ -Wgs84AngleValue ::= INTEGER { - wgs84North (0), - wgs84East (900), - wgs84South (1800), - wgs84West (2700), - doNotUse (3600), - unavailable (3601) -} (0..3601) - -/** - * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. - * - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -WMInumber ::= IA5String (SIZE(1..3)) - -/** - * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on wrong way driving event is unavailable, - * - 1 `wrongLane` : in case vehicle is driving on a lane for which it has no authorization to use, - * - 2 `wrongDirection` : in case vehicle is driving in a direction that it is not allowed, - * - 3-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -WrongWayDrivingSubCauseCode ::= INTEGER { - unavailable (0), - wrongLane (1), - wrongDirection (2) -} (0..255) - -/** - * This DE denotes the absolute accuracy range for reported yaw rate value for a confidence level of 95%. - * - * The value shall be set to: - * - `0` indicates that the accuracy is equal to or less than 0,01 degree/second. - * - `1` indicates that the accuracy is equal to or less than 0,05 degrees/second. - * - `2` indicates that the accuracy is equal to or less than 0,1 degree/second. - * - `3` indicates that the accuracy is equal to or less than 1 degree/second. - * - `4` indicates that the accuracy is equal to or less than 5 degrees/second. - * - `5` indicates that the accuracy is equal to or less than 10 degrees/second. - * - `6` indicates that the accuracy is equal to or less than 100 degrees/second. - * - `7` indicates that the accuracy is out of range, i.e. greater than 100 degrees/second. - * - `8` indicates that the accuracy information is unavailable - * - * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by - * several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported yaw rate value may be valid and used by the application. - * - * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported - * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 - */ -YawRateConfidence ::= ENUMERATED { - degSec-000-01 (0), - degSec-000-05 (1), - degSec-000-10 (2), - degSec-001-00 (3), - degSec-005-00 (4), - degSec-010-00 (5), - degSec-100-00 (6), - outOfRange (7), - unavailable (8) -} - -/** - * This DE represents the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded - * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. The leading sign denotes the direction of rotation. - * - * The value shall be set to: - * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. - * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s. - * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s. - * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. - * - `32 767` to indicate that the information is not available. - * - * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. - * The reading instant should be the same as for the vehicle acceleration. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. - * - * @unit: 0,01 degree per second. - * @category: Vehicle Information - * @revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). -*/ -YawRateValue ::= INTEGER { - negativeOutOfRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) - ----------------------------------------- --- Specification of CDD Data Frames: ----------------------------------------- - -/** - * This DF represents an acceleration component along with a confidence with a predefined confidence level of 95% for the component. - * - * It includes the following components: - * - * @field value: the acceleration value which can be estimated as the mean of the current distribution. - * - * @field value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. - * - * @category: Kinematic Information - * @revision: Created in V2.1.1 - */ -Acceleration1d ::= SEQUENCE { - value AccelerationValue, - confidence AccelerationConfidence -} - -/** - * This DF represents information associated to changes in acceleration. - * - * It includes the following components: - * - * @field accelOrDecel: the indication of an acceleration change. - * - * @field value actionDeltaTime: the period in which the acceleration change action is performed. - * - * @category: Kinematic Information - * @revision: Created in V2.1.1 - */ -AccelerationChangeIndication ::= SEQUENCE { - accelOrDecel AccelerationChange, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents an identifier used to describe a protocol action taken by an ITS-S. - * - * It includes the following components: - * - * @field originatingStationID: ID of the ITS-S that takes the action. - * - * @field sequenceNumber: a sequence number. - * - * @category: Communication information - * @revision: V1.3.1 - */ -ActionID ::= SEQUENCE { - originatingStationID StationID, - sequenceNumber SequenceNumber -} - -/** - * This DF represents a list of @ref ActionID. - - * @category: Communication Information - * @revision: Created in V2.1.1 based on ReferenceDenms -*/ -ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID - -/** - * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. - * - * It includes the following components: - * - * @field altitudeValue: altitude of a geographical point. - * - * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -Altitude ::= SEQUENCE { - altitudeValue AltitudeValue, - altitudeConfidence AltitudeConfidence -} - -/** - * This DE represents a general container for usage in various types of messages. - * - * It includes the following components: - * - * @field stationType: the type of station that has generated the message that contains the basic container. - * - * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -BasicContainer ::= SEQUENCE { - stationType StationType, - referencePosition ReferencePosition, - ... -} - -/** - * This DF represents a general Data Frame to describe an angle component along with a confidence in a cartesian coordinate system. - * - * It includes the following components: - * - * @field value: The angle value which can be estimated as the mean of the current distribution. - * - * @field confidence: The accuracy associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngle ::= SEQUENCE { - value CartesianAngleValue, - confidence AngleConfidence -} - -/** - * This DF represents a general Data Frame to describe an angular speed component along with a confidence in a cartesian coordinate system. - * - * It includes the following components: - * - * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. - * - * @field confidence: The accuracy associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngularSpeed ::= SEQUENCE { - value CartesianAngularSpeedValue, - confidence AngularSpeedConfidence -} - -/** - * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence in a cartesian coordinate system. - * - * It includes the following components: - * - * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. - * - * @field confidence: The accuracy associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngularAcceleration ::= SEQUENCE { - value CartesianAngularAccelerationValue, - confidence AngularAccelerationConfidence -} - -/** - * This DF represents a coordinate in a cartesian reference system - * - * It includes the following components: - * - * @field value: the coordinate value which can be estimated as the mean of the current distribution. - * - * @field confidence: the coordinate accuracy associated to the provided value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateWithConfidence ::= SEQUENCE { - value CartesianCoordinateLarge, - confidence CoordinateConfidence -} - -/** - * This DF represents a position in a two- or three-dimensional cartesian coordinate system. - * - * It includes the following components: - * - * @field xCoordinate: the X coordinate value. - * - * @field yCoordinate: the Y coordinate value. - * - * @field zCoordinate: the optional Z coordinate value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -CartesianPosition3d::=SEQUENCE{ - xCoordinate CartesianCoordinate, - yCoordinate CartesianCoordinate, - zCoordinate CartesianCoordinate OPTIONAL -} - -/** - * This DF is a representation of the cause code value of a traffic event. - * - * It includes the following components: - * - * @field causeCode: the main cause of a detected event. - * - * @field subCauseCode: the subordinate cause of a detected event. - * - * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may - * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. - * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. - * - * @category: Traffic information - * @revision: Editorial update in V2.1.1 - */ -CauseCode ::= SEQUENCE { - causeCode CauseCodeType, - subCauseCode SubCauseCodeType, - ... -} - -/** - * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. - * - * - * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. - * @category: Traffic information - * @revision: Editorial update in V2.1.1 - */ - -CauseCodeChoice::= CHOICE { - reserved SubCauseCodeType, - trafficCondition TrafficConditionSubCauseCode, - accident AccidentSubCauseCode, - roadworks RoadworksSubCauseCode, - reserved4 SubCauseCodeType, - impassability SubCauseCodeType, - adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, - aquaplaning SubCauseCodeType, - reserved8 SubCauseCodeType, - hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, - hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, - hazardousLocation-AnimalOnTheRoad HazardousLocation-AnimalOnTheRoadSubCauseCode, - humanPresenceOnTheRoad HumanPresenceOnTheRoadSubCauseCode, - reserved13 SubCauseCodeType, - wrongWayDriving WrongWayDrivingSubCauseCode, - rescueAndRecoveryWorkInProgress RescueAndRecoveryWorkInProgressSubCauseCode, - reserved16 SubCauseCodeType, - adverseWeatherCondition-ExtremeWeatherCondition AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, - adverseWeatherCondition-Visibility AdverseWeatherCondition-VisibilitySubCauseCode, - adverseWeatherCondition-Precipitation AdverseWeatherCondition-PrecipitationSubCauseCode, - violence SubCauseCodeType, - reserved21 SubCauseCodeType, - reserved22 SubCauseCodeType, - reserved23 SubCauseCodeType, - reserved24 SubCauseCodeType, - reserved25 SubCauseCodeType, - slowVehicle SlowVehicleSubCauseCode, - dangerousEndOfQueue DangerousEndOfQueueSubCauseCode, - reserved28 SubCauseCodeType, - reserved29 SubCauseCodeType, - reserved30 SubCauseCodeType, - reserved31 SubCauseCodeType, - reserved32 SubCauseCodeType, - reserved33 SubCauseCodeType, - reserved34 SubCauseCodeType, - reserved35 SubCauseCodeType, - reserved36 SubCauseCodeType, - reserved37 SubCauseCodeType, - reserved38 SubCauseCodeType, - reserved39 SubCauseCodeType, - reserved40 SubCauseCodeType, - reserved41 SubCauseCodeType, - reserved42 SubCauseCodeType, - reserved43 SubCauseCodeType, - reserved44 SubCauseCodeType, - reserved45 SubCauseCodeType, - reserved46 SubCauseCodeType, - reserved47 SubCauseCodeType, - reserved48 SubCauseCodeType, - reserved49 SubCauseCodeType, - reserved50 SubCauseCodeType, - reserved51 SubCauseCodeType, - reserved52 SubCauseCodeType, - reserved53 SubCauseCodeType, - reserved54 SubCauseCodeType, - reserved55 SubCauseCodeType, - reserved56 SubCauseCodeType, - reserved57 SubCauseCodeType, - reserved58 SubCauseCodeType, - reserved59 SubCauseCodeType, - reserved60 SubCauseCodeType, - reserved61 SubCauseCodeType, - reserved62 SubCauseCodeType, - reserved63 SubCauseCodeType, - reserved64 SubCauseCodeType, - reserved65 SubCauseCodeType, - reserved66 SubCauseCodeType, - reserved67 SubCauseCodeType, - reserved68 SubCauseCodeType, - reserved69 SubCauseCodeType, - reserved70 SubCauseCodeType, - reserved71 SubCauseCodeType, - reserved72 SubCauseCodeType, - reserved73 SubCauseCodeType, - reserved74 SubCauseCodeType, - reserved75 SubCauseCodeType, - reserved76 SubCauseCodeType, - reserved77 SubCauseCodeType, - reserved78 SubCauseCodeType, - reserved79 SubCauseCodeType, - reserved80 SubCauseCodeType, - reserved81 SubCauseCodeType, - reserved82 SubCauseCodeType, - reserved83 SubCauseCodeType, - reserved84 SubCauseCodeType, - reserved85 SubCauseCodeType, - reserved86 SubCauseCodeType, - reserved87 SubCauseCodeType, - reserved88 SubCauseCodeType, - reserved89 SubCauseCodeType, - reserved90 SubCauseCodeType, - vehicleBreakdown VehicleBreakdownSubCauseCode, - postCrash PostCrashSubCauseCode, - humanProblem HumanProblemSubCauseCode, - stationaryVehicle StationaryVehicleSubCauseCode, - emergencyVehicleApproaching EmergencyVehicleApproachingSubCauseCode, - hazardousLocation-DangerousCurve HazardousLocation-DangerousCurveSubCauseCode, - collisionRisk CollisionRiskSubCauseCode, - signalViolation SignalViolationSubCauseCode, - dangerousSituation DangerousSituationSubCauseCode, - railwayLevelCrossing RailwayLevelCrossingSubCauseCode, - reserved101 SubCauseCodeType, - reserved102 SubCauseCodeType, - reserved103 SubCauseCodeType, - reserved104 SubCauseCodeType, - reserved105 SubCauseCodeType, - reserved106 SubCauseCodeType, - reserved107 SubCauseCodeType, - reserved108 SubCauseCodeType, - reserved109 SubCauseCodeType, - reserved110 SubCauseCodeType, - reserved111 SubCauseCodeType, - reserved112 SubCauseCodeType, - reserved113 SubCauseCodeType, - reserved114 SubCauseCodeType, - reserved115 SubCauseCodeType, - reserved116 SubCauseCodeType, - reserved117 SubCauseCodeType, - reserved118 SubCauseCodeType, - reserved119 SubCauseCodeType, - reserved120 SubCauseCodeType, - reserved121 SubCauseCodeType, - reserved122 SubCauseCodeType, - reserved123 SubCauseCodeType, - reserved124 SubCauseCodeType, - reserved125 SubCauseCodeType, - reserved126 SubCauseCodeType, - reserved127 SubCauseCodeType, - reserved128 SubCauseCodeType - } - -/** - * This DF is an alternative representation of the cause code value of a traffic event. - * - * It includes the following components: - * - * @field ccAndScc: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. - * - * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may - * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. - * - * @category: Traffic information - * @revision: Created in V2.1.1 - */ - -CauseCodeV2 ::= SEQUENCE { - ccAndScc CauseCodeChoice, - ... -} - -/** - * The DF describes the position of a CEN DSRC road side equipment. - * - * It includes the following components: - * - * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. - * - * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. - * - * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -CenDsrcTollingZone ::= SEQUENCE { - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, - ... -} - -/** - * - * This DF represents the shape of a circular area or a right cylinder that is centred on a reference position defined outside of the context of this DF. - * - * It includes the following components: - * - * @field nodeCenterPoint: optional offset point which the rectangle is centred on with respect to the reference position. - * - * @field radius: the radius of the circular area. - * - * @field height: the optional height, present if the shape is a right cylinder extending in the positive z-axis. - * - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -CircularShape ::= SEQUENCE { - nodeCenterPoint CartesianPosition3d OPTIONAL, - radius StandardLength12b, - height StandardLength12b OPTIONAL, - ... -} - -/** - * This DF indicates the opening/closure status of a lane or a set of lanes. - * - * It includes the following components: - * - * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of inner hard shoulder lanes. - * - * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of outer hard shoulder lanes. - * - * @field drivingLaneStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of driving lanes. - * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. - * - * @category: GeoReference information, Road topology information - * @revision: V1.3.1 - */ -ClosedLanes ::= SEQUENCE { - innerhardShoulderStatus HardShoulderStatus OPTIONAL, - outerhardShoulderStatus HardShoulderStatus OPTIONAL, - drivingLaneStatus DrivingLaneStatus OPTIONAL, - ... -} - -/** - * This DF provides information about the breakup of a cluster. - * - * It includes the following components: - * - * @field clusterBreakupReason: indicates the reason for breakup. - * - * @field breakupTime: indicates the time of breakup. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterBreakupInfo ::= SEQUENCE { - clusterBreakupReason ClusterBreakupReason, - breakupTime DeltaTimeQuarterSecond, - ... -} - -/** - * This DF provides information about the joining of a cluster. - * - * It includes the following components: - * - * @field clusterId: indicates the identifier of the cluster. - * - * @field joinTime: indicates the time of joining. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterJoinInfo ::= SEQUENCE { - clusterId ClusterId, - joinTime DeltaTimeQuarterSecond, - ... -} - -/** - * The DF provides information about the leaving of a cluster. - * - * It includes the following components: - * - * @field clusterId: indicates the cluster. - * - * @field clusterLeaveReason: indicates the reason for leaving. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterLeaveInfo ::= SEQUENCE { - clusterId ClusterId, - clusterLeaveReason ClusterLeaveReason, - ... -} - -/** - * This DF represents the column of the lower triangular positive semi-definite matrix and consists of a list of correlation row values. - * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. - * Each column "i" of the lower triangular then contains k-(i-1) values, where "i" refers to the column number count - * starting at 1 from the left. - * - * @category: Sensing Information - * @revision: Created in V2.1.1 -*/ -CorrelationColumn ::= SEQUENCE SIZE (1..21) OF CorrelationRowValue - -/** - * This DF represents the curvature of the vehicle trajectory and the accuracy. - * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. - * - * It includes the following components: - * - * @field curvatureValue: Detected curvature of the vehicle trajectory. - * - * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -Curvature ::= SEQUENCE { - curvatureValue CurvatureValue, - curvatureConfidence CurvatureConfidence -} - -/** - * This DF provides a description of dangerous goods being carried by a heavy vehicle. - * - * It includes the following components: - * - * @field dangerousGoodsType: Type of dangerous goods. - * - * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in - * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], - * - * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. - * If yes, the value shall be set to TRUE, - * - * @field tunnelsRestricted: whether the heavy vehicle carrying dangerous goods is restricted to enter tunnels. - * If yes, the value shall be set to TRUE, - * - * @field limitedQuantity: whether the carried dangerous goods are packed with limited quantity. - * If yes, the value shall be set to TRUE, - * - * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency - * service should deal with an incident. This component is optional; it shall be present if the information is available, - * - * @field phoneNumber: contact phone number of assistance service in case of incident or accident. - * This component is optional, it shall be present if the information is available. - * - * @field companyName: name of company that manages the transportation of the dangerous goods. - * This component is optional; it shall be present if the information is available. - * - * @category Vehicle information - * @revision: V1.3.1 - */ -DangerousGoodsExtended ::= SEQUENCE { - dangerousGoodsType DangerousGoodsBasic, - unNumber INTEGER (0..9999), - elevatedTemperature BOOLEAN, - tunnelsRestricted BOOLEAN, - limitedQuantity BOOLEAN, - emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, - phoneNumber PhoneNumber OPTIONAL, - companyName UTF8String (SIZE (1..24)) OPTIONAL, - ... -} - -/** - * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. - * - * It includes the following components: - * - * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. - * - * @field deltaLongitude: A delta longitude offset with regards to the longitude value of the reference position. - * - * @field deltaAltitude: A delta altitude offset with regards to the altitude value of the reference position. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -DeltaReferencePosition ::= SEQUENCE { - deltaLatitude DeltaLatitude, - deltaLongitude DeltaLongitude, - deltaAltitude DeltaAltitude -} - -/** - * This DF represents a portion of digital map, described using a list of waypoints @ref ReferencePosition. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition - -/** - * - * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on a reference position which is defined outside of the context of this DF. - * - * It includes the following components: - * - * @field centerPoint: optional offset point which the ellipse is centred on with respect to the reference position. - * - * @field semiMajorAxisLength: half length of the major axis of the ellipse. - * - * @field semiMinorAxisLength: half length of the minor axis of the ellipse. - * - * @field orientation: the optional orientation of the major axis of the ellipse in the WGS84 coordinate system. - * - * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ - -EllipticalShape ::= SEQUENCE { - centerPoint CartesianPosition3d OPTIONAL, - semiMajorAxisLength StandardLength12b, - semiMinorAxisLength StandardLength12b, - orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL, - ... -} - -/** - * - * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.18]. - * The following options are available: - * - * @field euVehicleCategoryL: indicates a vehicle in the L category. - * - * @field euVehicleCategoryM: indicates a vehicle in the M category. - * - * @field euVehicleCategoryN: indicates a vehicle in the N category. - * - * @field euVehicleCategoryO: indicates a vehicle in the O category. - * - * @field euVehicleCategoryT: indicates a vehicle in the T category. - * - * @field euVehicleCategoryG: indicates a vehicle in the G category. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -EuVehicleCategoryCode ::= CHOICE { - euVehicleCategoryL EuVehicleCategoryL, - euVehicleCategoryM EuVehicleCategoryM, - euVehicleCategoryN EuVehicleCategoryN, - euVehicleCategoryO EuVehicleCategoryO, - euVehicleCategoryT NULL, - euVehicleCategoryG NULL - } - -/** - * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime - * or do not contain the COMPONENT eventDeltaTime. - * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. - * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. - * - * @category: GeoReference information, Traffic information - * @revision: created in V2.1.1 based on EventHistory - */ -EventZone::= EventHistory - ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | - (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) - -/** - * The DF consists of a list of @ref EventPoint. - * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. - * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. - * - * @category: GeoReference information, Traffic information - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref EventZone instead. - * @revision: Generalized the semantics in V2.1.1 - */ -EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint - - -/** - * This DF provides information related to an event at a defined position. - * - * It includes the following components: - * - * @field eventPosition: offset position of a detected event point to a defined position. - * - * @field eventDeltaTime: optional time travelled by the detecting ITS-S since the previous detected event point. - * - * @field informationQuality: Information quality of the detection for this event point. - * - * @category: GeoReference information, Traffic information - * @revision: generalized the semantics in V2.1.1 - */ -EventPoint ::= SEQUENCE { - eventPosition DeltaReferencePosition, - eventDeltaTime PathDeltaTime OPTIONAL, - informationQuality InformationQuality -} - -/** - * This DF represents the status of the exterior light switches of a traffic participant. - * - * It includes the following components: - * - * @field vehicular: represents the status of the exterior light switches of a road vehicle. - * - * @field vruSpecific: represents the status of the exterior light switches of a VRU. - * - * @category: VRU information - * @revision: created in V2.1.1 - */ -ExteriorLightsExtended ::= SEQUENCE { - vehicular ExteriorLights, - vruSpecific VruSpecificExteriorLights, - ... -} - - -/** - * This DF indicates a transversal position in relation to the different lanes of the road. - * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where V-ITS-S would normally not be present. - * - * The following options are available: - * - * @field trafficLanePosition: a position on a traffic lane. - * - * @field nonTrafficLanePosition: a position on a lane which is not a traffic lane. - * - * @field trafficIslandPosition: a position on a traffic island - * - * @field mapPosition: a position on a lane identified in a MAPEM. - * - * @category: Road Topology information - * @revision: created in V2.1.1 - */ -GeneralizedLanePosition::= CHOICE { - trafficLanePosition LanePosition, - nonTrafficLanePosition LanePositionAndType, - trafficIslandPosition TrafficIslandPosition, - mapPosition MapPosition, - ... -} - -/** - * This DF represents the Heading in a WGS84 co-ordinates system. - * - * It includes the following components: - * - * @field headingValue: the heading value. - * - * @field headingConfidence: the accuracy of the reported heading value with a predefined confidence level. - * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84Angle instead. - * @category: Kinematics Information - * @revision: V1.3.1 - */ -Heading ::= SEQUENCE { - headingValue HeadingValue, - headingConfidence HeadingConfidence -} - - -/** - * This DF provides information associated to heading change indicators such as a change of direction. - * - * It includes the following components: - * - * @field direction: the direction of heading change value. - * - * @field actionDeltaTime: the period over which a direction change action is performed. - * - * @category: Kinematics Information - * @revision: created in V2.1.1 - */ -HeadingChangeIndication ::= SEQUENCE { - direction TurningDirection, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents a frequency channel - * - * It includes the following components: - * - * @field centreFrequency: the centre frequency of the channel - * @unit: 10exp+2 Hz (where exp is exponent) - * - * @field channelWidth: width of the channel - * @unit: 10exp Hz (where exp is exponent) - * - * @field exponent of the power of 10 - * @unit: N/A - * - * @category: Communication information - * @revision: created in V2.1.1 -*/ -InterferenceManagementChannel ::= SEQUENCE { - centreFrequency INTEGER (1 .. 99999), - channelWidth INTEGER (0 .. 9999), - exponent INTEGER (0 .. 15) -} - -/** - * - * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. - * - * It includes the following components: - * - * @field zoneDefinition: contains the geographical definition of the zone. - * - * @field managementInfo: contains interference management information applicable in the zone defined in the component zoneDefinition. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZone ::= SEQUENCE { - zoneDefinition InterferenceManagementZoneDefinition, - managementInfo InterferenceManagementInfo -} - -/** - * This DF represents the geographical definition of the zone where band sharing occurs. - * - * It includes the following components: - * - * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. - * - * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. - * - * @field interferenceManagementZoneRadius: optional radius of the interference management zone in metres. - * - * @field interferenceManagementZoneID: optional identification of the interference management zone. - * - * @field interferenceManagementZoneShape: shape of the interference management zone. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZoneDefinition::= SEQUENCE{ - interferenceManagementZoneLatitude Latitude, - interferenceManagementZoneLongitude Longitude, - interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, - interferenceManagementZoneID ProtectedZoneID OPTIONAL, - interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, - ... -} - -/** - * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. - * - * @category: Communication information. - * @revision: created in V2.1.1 - */ -InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel - - -/** - * This DF contains interference management information for one affected frequency channel. - * - * It includes the following components: - * - * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management - * - * @field interferenceManagementZoneType: type of the interference management zone. - * - * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. - * In the case where no mitigation should be applied by the ITS-S, this is indicated by the field interferenceManagementMitigationType being absent. - * - * @field expiryTime: 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 - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementInfoPerChannel ::= SEQUENCE { - interferenceManagementChannel InterferenceManagementChannel, - interferenceManagementZoneType InterferenceManagementZoneType, - interferenceManagementMitigationType MitigationForTechnologies OPTIONAL, - expiryTime TimestampIts OPTIONAL, - ... -} - -/** - * 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. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone - -/** - * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.17]. - * - * It includes the following components: - * - * @field region: 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 @ref Id is unique within the region. - * - * @field id: the identifier of the intersection - * - * @note: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique. - * @category: Road topology information - * @revision: created in V2.1.1 - */ -IntersectionReferenceId ::= SEQUENCE { - region Identifier2B OPTIONAL, - id Identifier2B -} - -/** - * This DF consists of a list of waypoints @ref ReferencePosition. - * - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition - -/** - * 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: - * - * @field protocolVersion: version of the ITS message. - * - * @field messageId: type of the ITS message. - * - * @field stationId: the identifier of the ITS-S that generates the ITS message in question. - * - * @category: Communication information - * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. - */ -ItsPduHeader ::= SEQUENCE { - protocolVersion INTEGER (0..255), - messageId MessageId, - stationId StationID -} - -/** - * This DF indicates a transversal position in resolution of lanes and the associated lane type. - * - * It includes the following components: - * - * @field transversalPosition: the transversal position. - * - * @field laneType: the type of the lane identified in the component transversalPosition. - * - * @category GeoReference information - * @revision: Created in V2.1.1 - */ -LanePositionAndType::= SEQUENCE { - transversalPosition LanePosition, - laneType LaneType, - ... -} - -/** - * This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. - * - * It includes the following components: - * - * @field lateralAccelerationValue: lateral acceleration value at a point in time. - * - * @field lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. - * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. - * @category Vehicle information - * @revision: V1.3.1 - */ -LateralAcceleration ::= SEQUENCE { - lateralAccelerationValue LateralAccelerationValue, - lateralAccelerationConfidence AccelerationConfidence -} - -/** - * This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. - * - * It includes the following components: - * - * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. - - * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined - * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. - * @category: Vehicle information - * @revision: V1.3.1 - */ -LongitudinalAcceleration ::= SEQUENCE { - longitudinalAccelerationValue LongitudinalAccelerationValue, - longitudinalAccelerationConfidence AccelerationConfidence -} - -/** - * This DF represents the estimated position along the longitudinal length of a particular lane. - * - * It includes the following components: - * - * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. - * - * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. - * - * @category: Road topology information - * @revision: created in V2.1.1 - */ -LongitudinalLanePosition ::= SEQUENCE { - longitudinalLanePositionValue LongitudinalLanePositionValue, - longitudinalLanePositionConfidence LongitudinalLanePositionConfidence -} - -/** - * 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 @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. - * - * @category: Vehicle information - * @revision: V1.3.1 -*/ -LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn - -/** - * 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: - * - * @field mapReference: optionally identifies the MAPEM containing the topology information. - * It is absent if the MAPEM topology is known from the context. - * - * @field laneId: identifies the lane in the road segment or intersection topology on which the position is located. - * - * @field connectionId: identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the - * conflict area of an intersection which connects e.g an ingress with an egress lane. - * - * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. - * - * @category: Road topology information - * @revision: Created in V2.1.1 - */ -MapPosition ::= SEQUENCE { - mapReference MapReference OPTIONAL, - laneId Identifier1B, - longitudinalLanePosition LongitudinalLanePosition OPTIONAL, - connectionId Identifier1B, - ... -} - -/** - * 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: - * - * @field roadsegment: option that identifies the description of a road segment contained in a MAPEM. - * - * @field intersection: option that identifies the description of an intersection contained in a MAPEM. - * - * @category: Road topology information - * @revision: Created in V2.1.1 - */ - -MapReference::= CHOICE { - roadsegment RoadSegmentReferenceId, - intersection IntersectionReferenceId - } - -/** - * This DF provides information about a message with respect to the segmentation process at the sender. - * - * It includes the following components: - * - * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. - * - * @field thisMsgNo: indicates the position of the message within of the total set of messages. - -*/ -MessageSegmentationInfo ::= SEQUENCE { - totalMsgNo CardinalNumber1B, - thisMsgNo OrdinalNumber1B - } - -/** - * - * This DF represents a list of @ref MitigationPerTechnologyClass. - * @category: Communication information - * @revision: Created in V2.1.1 -*/ -MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF 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: - * - * @field accessTechnologyClass: channel access technology to which this mitigation is applied. - * - * @field lowDutyCycle: duty cycle limit. - * @unit: 0.01% steps - * - * @field powerReduction: the delta value of power to be reduced. - * @unit: dB - * - * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.25]. - * @unit: ms - * - * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.26]. - * @unit: ms - * - * @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. - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -MitigationPerTechnologyClass ::= SEQUENCE { - accessTechnologyClass AccessTechnologyClass, - lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, - powerReduction INTEGER (0 .. 30) OPTIONAL, - dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, - dmcTonLimit INTEGER (0 .. 20) OPTIONAL, - ... -} - -/** - * This DF indicates both the class and associated subclass that best describes an object. - * - * The following options are available: - * - * @field vehicleSubClass: the object is a road vehicle. - * - * @field vruSubClass: the object is a VRU. - * - * @field groupSubClass: the object is a VRU group or cluster. - * - * @field otherSubClass: the object is of a different types as the above. - * - * @category: Sensing information - * @revision: Created in V2.1.1 - */ -ObjectClass ::= CHOICE { - vehicleSubClass VehicleSubClass, - vruSubClass VruProfileAndSubprofile, - groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), - otherSubClass OtherSubClass, - ... -} - -/** - * This DF consist of a list of object classes. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence - -/** - * This DF represents the classification of a detected object together with a confidence indication. - * - * It includes the following components: - * - * @field objectClass: the class of the object. - * - * @field ObjectClassConfidence: the associated confidence information. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectClassWithConfidence ::= SEQUENCE { - objectClass ObjectClass, - confidence ConfidenceLevel -} -/** - * This DF represents a dimension of an object together with a confidence indication. - * - * It includes the following components: - * - * @field ObjectDimensionValue: the object dimension value which can be estimated as the mean of the current distribution. - * - * @field ObjectDimensionValue: the associated confidence information. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimension ::= SEQUENCE { - value ObjectDimensionValue, - confidence ObjectDimensionValue -} - -/** - * This DF that represents a path with a set of path points. - * It may contain up to `40` @ref 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. - * - * @category: GeoReference information, Vehicle information - * @revision: created in V2.1.1 based on PathHistory - */ -Path::= SEQUENCE (SIZE(0..40)) OF PathPoint - -/** - * This DF that represents a path history with a set of path points. - * It may contain up to `40` @ref 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. - * - * @category: GeoReference information, Vehicle information - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead - * @revision: semantics updated in V2.1.1 - */ -PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint - -/** - * This DF that represents a predicted path with a set of path points. - * It may contain up to `15` @ref 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. - * - * @category: GeoReference information - * @revision: created in V2.1.1 based on PathHistory - */ -PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted - -/** - * This DF defines an offset waypoint position within a path. - * - * It includes the following components: - * - * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. - * - * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. - * - * @category GeoReference information - * @revision: semantics updated in V2.1.1 - */ -PathPoint ::= SEQUENCE { - pathPosition DeltaReferencePosition, - pathDeltaTime PathDeltaTime OPTIONAL -} - -/** - * This DF defines a predicted offset waypoint position within a path. - * - * It includes the following components: - * - * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. - * - * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. - * - * @field horizontalPositionConfidence: the accuracy of the horizontal geographical position. - * - * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. - * - * @field altitudeConfidence: the accuracy of the altitude value of the geographical position. - * - * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. - * - * @category GeoReference information - * @revision: semantics updated in V2.1.1 - */ - -PathPointPredicted::= SEQUENCE { - deltaLatitude DeltaLatitudeSmall, - deltaLongitude DeltaLongitudeSmall, - horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, - deltaAltitude DeltaAltitude DEFAULT unavailable, - altitudeConfidence AltitudeConfidence DEFAULT unavailable, - pathDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * 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: - * - * @field objectID: optional identifier assigned to a detected object. - * - * @field timeOfMeasurement: 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. - * - * @field xCoordinate: 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. - * - * @field yCoordinate: 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. - * - * @field zCoordinate: 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. - * - * @field velocityMagnitude: 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 - * - * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. - * - * @field xVelocity: velocity component of the detected object in x-direction at the time of measurement, with the associated variance. - * - * @field yVelocity: velocity component of the detected object in y-direction at the time of measurement, with the associated variance. - * - * @field zVelocity: optional velocity component of the detected object in z-direction at the time of measurement, with the associated variance. - * - * @field accelerationMagnitude: 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. - * - * @field accelerationDirection: polar angle of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. - * - * @field xAcceleration: optional Acceleration of the detected object in x-direction at the time of measurement, with the associated variance. - * - * @field yAcceleration: optional Acceleration of the detected object in y-direction at the time of measurement, with the associated variance. - * - * @field zAcceleration: optional Acceleration of the detected object in z-direction at the time of measurement, with the associated variance. - * - * @field rollAngle: 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. - * - * @field pitchAngle: 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. - * - * @field yawAngle: 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. - * - * @field rollSpeed: 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. - * - * @field pitchSpeed: 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. - * - * @field yawSpeed: 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. - * - * @field rollAcceleration: 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. - * - * @field pitchAcceleration: 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. - * - * @field yawAcceleration: 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. - * - * @field lowerTriangularCorrelationMatrixColumns: 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. - * - * @field planarObjectDimension1: 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. - * - * @field planarObjectDimension2: 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. - * - * @field verticalObjectDimension: optional vertical dimension of object as provided by the sensor or object model. - * - * @field objectRefPoint: 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. - * - * @field objectAge: 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. - * - * @field objectConfidence: 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. - * - * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. - * - * @field dynamicStatus: optional dynamic capabilities of a detected object. - * - * @field classification: optional classification of the described object - * - * @field matchedPosition: optional map-matched position of an object. - * - * @category Sensing information - * @revision: created in V2.1.1 - */ - -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, - ... -} - -/** - * This DF represents the shape of a polygonal area or of a right prism. - * - * It includes the following components: - * - * @field polygon: the polygonal area and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. - * - * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. - * - * @category GeoReference information - * @revision: created in V2.1.1 - * - */ -PolygonalShape ::= SEQUENCE { - polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), - height StandardLength12b OPTIONAL, - ... -} - -/** - * 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: - * - * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point - * and major axis point of the position accuracy ellipse. - * - * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point - * and minor axis point of the position accuracy ellipse. - * - * @field semiMajorOrientation: orientation direction of the ellipse major axis of the position accuracy - * ellipse with regards to the WGS84 north. - * - * - * @category GeoReference information - * @revision: V1.3.1 - */ -PosConfidenceEllipse ::= SEQUENCE { - semiMajorConfidence SemiAxisLength, - semiMinorConfidence SemiAxisLength, - semiMajorOrientation Wgs84AngleValue -} - -/** - * This DF contains a list of distances @ref 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. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar - -/** - * This DF describes a zone of protection inside which the ITSG5 communication should be restricted. - * - * It includes the following components: - * - * @field protectedZoneType: type of the protected zone. - * - * @field expiryTime: optional time at which the validity of the protected communication zone will expire. - * - * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. - * - * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. - * - * @field protectedZoneRadius: optional radius of the protected communication zone in metres. - * - * @field protectedZoneID: the optional ID of the protected communication zone. - * - * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedCommunicationZone ::= SEQUENCE { - protectedZoneType ProtectedZoneType, - expiryTime TimestampIts OPTIONAL, - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - protectedZoneRadius ProtectedZoneRadius OPTIONAL, - protectedZoneID ProtectedZoneID OPTIONAL, - ... -} - -/** - * This DF consist of a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). - * - * It may provide up to 16 protected communication zones information. - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone - -/** - * 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). - * - * @field ptActivationType: type of activation. - * - * @field ptActicationData: data of activation. - * - * 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) - * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, - * destination, priority, etc. - * - * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: - * - 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. - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivation ::= SEQUENCE { - ptActivationType PtActivationType, - ptActivationData PtActivationData -} - -/** - * This DF describes a radial shape. 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). - * - * It includes the following components: - * - * @field sensorPositionOffset: the optional offset opoint. - * - * @field range: the radial range of the sensor from the reference point or sensor point offset. - * - * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor's horizontal opening angle in positive angular direction with respect to the - * WGS84 coordinate system. - * - * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor's horizontal opening angle in positive angular direction with respect to the WGS84 coordinate - * system. - * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's - * 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. - * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's - * 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 using the DE CartesianAngleValue. - * - * @category Sensing information - * @revision: created in V2.1.1 -*/ -RadialShape ::= SEQUENCE { - offsetPoint CartesianPosition3d OPTIONAL, - range StandardLength12b, - stationaryHorizontalOpeningAngleStart Wgs84AngleValue, - stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, - verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, - ... -} - - -/** - * This DF describes a list of radial shapes. - * - * It includes the following components: - - * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). - * - * @field xCoordinate: the x-coordinate of the offset point. - * - * @field yCoordinate: the y-coordinate of the offset point. - * - * @field zCoordinate: the optional z-coordinate of the offset point. - * - * @field radialShapesList: the list of radial shape details. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ -RadialShapes ::= SEQUENCE { - refPointId Identifier1B, - xCoordinate CartesianCoordinateSmall, -- tbd: is this along the positive or the negative x axis? - yCoordinate CartesianCoordinateSmall, - zCoordinate CartesianCoordinateSmall OPTIONAL, - radialShapesList RadialShapesList, - ... -} - -/** - * The DF contains a list of @ref RadialShapeDetails. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ - -RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF 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). - * - * It includes the following components: - * - * @field range: the radial range of the sensor from the reference point or sensor point offset. - * - * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor's horizontal opening angle in positive angular direction. - * - * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor's horizontal opening angle in positive angular direction. - * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's - * 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. - * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's - * 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. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ -RadialShapeDetails ::= SEQUENCE { - range StandardLength12b, - horizontalOpeningAngleStart CartesianAngleValue, - horizontalOpeningAngleEnd CartesianAngleValue, - verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, - ... -} - -/** - * 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. - * - * It includes the following components: - * - * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. - * - * @field semiLength: represents half the length of the rectangle. - * - * @field semiBreadth: represents half the breadth of the rectangle. - * - * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. - * - * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. - * - * @category GeoReference information - * @revision: created in V2.1.1 - */ -RectangularShape ::= SEQUENCE { - centerPoint CartesianPosition3d OPTIONAL, - semiLength StandardLength12b, - semiBreadth StandardLength12b, - orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL -} - -/** - * A position within a geographic coordinate system together with a confidence indication. - * - * It includes the following components: - * - * @field latitude: the latitude of the geographical point. - * - * @field longitude: the longitude of the geographical point. - * - * @field positionConfidenceEllipse: the accuracy of the geographical position. - * - * @field altitude: the altitude and an altitude accuracy of the geographical point. - * - * @category: GeoReference information - * @revision: description updated in V2.1.1 - */ -ReferencePosition ::= SEQUENCE { - latitude Latitude, - longitude Longitude, - positionConfidenceEllipse PosConfidenceEllipse, - altitude Altitude -} - -/** - * This DF consist of a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. - * - * @category: Infrastructure information, Traffic information - * @revision: V1.3.1 - */ -RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType - -/** - * This DF represents a unique id for a road segment - * - * It includes the following components: - * - * @field region: 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 @ref Id is unique within the region. - * - * @field id: the identifier of the road segment - * - * @note: when the RoadRegulatorID is present, the RoadSegmentReferenceID is guaranteed to be globally unique. - * @category: GeoReference information - * @revision: created in V2.1.1 - */ -RoadSegmentReferenceId ::= SEQUENCE { - region Identifier2B OPTIONAL, - id Identifier2B -} - -/** - * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). - * - * It includes the following components: - * - * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. - * - * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. - * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant inidcated in the component subjectStation is safe. - * - * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed - * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 - */ -SafeDistanceIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, - safeDistanceIndicator SafeDistanceIndicator, - timeToCollision DeltaTimeTenthOfSecond OPTIONAL, - ... -} - -/** - * This DF represents a list of maximum `16` @ref CartesianPosition3d. - * - * @category: GeoReference information - * @revision: created in V2.1.1 - */ -SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d - -/** - * The DF contains a list of identifiers. - * - * @category: Basic information - * @revision: created in V2.1.1 -*/ -SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B - -/** - * The DF contains a list of DF SafeDistanceIndication. - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication - -/** - * The DF contains a list of DF TrajectoryInterceptionIndication. - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication - -/** - * This DF provides the definition of a geographical area or volume, based on different options. - * - * It includes the following components: - * - * @field rectangle: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. - * - * @field circle: definition of an area of circular shape or a right circular cylinder. - * - * @field polygon: definition of an area of polygonal shape or a right prism. - * - * @field ellipse: definition of an area of elliptical shape or a right elliptical cylinder. - * - * @field radial: definition of a radial shape. - * - * @field radialShapes: definition of list of radial shapes. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ - -Shape::= CHOICE { - rectangle RectangularShape, - circle CircularShape, - polygon PolygonalShape, - ellipse EllipticalShape, - radial RadialShape, - radialShapes RadialShapes, - ... -} - -/** - * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). - * - * It includes the following components: - * - * @field speedValue: the speed value. - * - * @field speedConfidence: the accuracy of the reported speed value. - * - * @category: Kinematics information - * @revision: V1.3.1 - */ -Speed ::= SEQUENCE { - speedValue SpeedValue, - speedConfidence SpeedConfidence -} - -/** - * This DF describes the extended speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). - * - * It includes the following components: - * - * @field speedValue: the extended speed value. - * - * @field speedConfidence: the accuracy of the reported speed value. - * - * @category: Kinematics information - * @revision: V2.1.1 - */ -SpeedExtended ::= SEQUENCE { - speedValue SpeedValueExtended, - speedConfidence SpeedConfidence -} - -/** - * This DF provides the indication of change in stability. - * - * It includes the following components: - * - * @field lossProbability: the probability of stability loss. - * - * @field actionDeltaTime: accuracy of the reported speed value. - * - * @category: Kinematics information - * @revision: V2.1.1 - */ -StabilityChangeIndication ::= SEQUENCE { - lossProbability StabilityLossProbability, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents the steering wheel angle of the vehicle at certain point in time. - * - * It includes the following components: - * - * @field steeringWheelAngleValue: steering wheel angle value. - * - * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -SteeringWheelAngle ::= SEQUENCE { - steeringWheelAngleValue SteeringWheelAngleValue, - steeringWheelAngleConfidence SteeringWheelAngleConfidence -} - -/** - * This DF represents one or more paths using @ref PathHistory. - * - * @category: GeoReference information - * @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory - */ -Traces ::= SEQUENCE SIZE(1..7) OF Path - -/** - * Ths DF represents the a position on a traffic island between two lanes. - * - * It includes the following components: - * - * @field oneSide: represents one lane. - * - * @field otherSide: represents the other lane. - * - * @category: Road Topology information - * @revision: Created in V2.1.1 - */ -TrafficIslandPosition ::= SEQUENCE { - oneSide LanePositionAndType, - otherSide LanePositionAndType, - ... -} - -/** - * This DF provides detailed information about an attached trailer. - * - * It includes the following components: - * - * @field refPointId: identifier of the reference point of the trailer. - * - * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the - * vehicle Reference Point. - * - * @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the - * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer - * is not overhanging to the front with respect to the trailer reference point. - * - * @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the - * trailer Reference Point indicated by the refPointID. - * - * @field trailerWidth: optional width of the trailer. - * - * @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x - * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of - * the segment having as end points the reference point of the trailer and the reference point of - * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane - * xy, described in the local Cartesian coordinate system of the preceding reference point. The - * angle is measured with negative values considering the trailer orientation turning clockwise - * starting from the segment direction. The angle value accuracy is provided with the - * confidence level of 95 %. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -TrailerData ::= SEQUENCE { --tbd check descriptions above - refPointId Identifier1B, - hitchPointOffset StandardLength1B, -- tbd is the value unavailable needed? - frontOverhang StandardLength1B, - rearOverhang StandardLength1B, - trailerWidth VehicleWidth, - hitchAngle CartesianAngle, - ... -} - -/** - * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. - * - * It includes the following components: - * - * @field subjectStation: indicates the subject station. - * - * @field trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory - * with the trajectory of the station indicated in the component subjectStation. - * - * @field trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory - * with the trajectory of the station indicated in the component subjectStation. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, - trajectoryInterceptionProbability TrajectoryInterceptionProbability, - trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, - ... - } - -/** - * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -VarLengthNumber::=CHOICE{ - content [0] INTEGER(0..127), -- one octet length - extension [1] Ext1 - } -Ext1::=CHOICE{ - content [0] INTEGER(128..16511), -- two octets length - extension [1] Ext2 -} -Ext2::=CHOICE{ - content [0] INTEGER(16512..2113663), -- three octets length - extension [1] Ext3 - } -Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length - -/** - * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. - * - * It includes the following components: - * - * @field verticalAccelerationValue: vertical acceleration value at a point in time. - * - * @field verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. - * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead - * @category Vehicle information - * @revision: V1.3.1 - */ -VerticalAcceleration ::= SEQUENCE { - verticalAccelerationValue VerticalAccelerationValue, - verticalAccelerationConfidence AccelerationConfidence -} - -/** - * This DF provides information related to the identification of a vehicle. - * - * It includes the following components: - * - * @field wMInumber: World Manufacturer Identifier (WMI) code. - * - * @field vDS: Vehicle Descriptor Section (VDS). - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VehicleIdentification ::= SEQUENCE { - wMInumber WMInumber OPTIONAL, - vDS VDS OPTIONAL, - ... -} - -/** - * This DF represents the length of vehicle and accuracy indication information. - * - * It includes the following components: - * - * @field vehicleLengthValue: length of vehicle. - * - * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VehicleLength ::= SEQUENCE { - vehicleLengthValue VehicleLengthValue, - vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication -} - -/** - * This DF provides information about a VRU cluster. - * - * It includes the following components: - * - * @field clusterId: optional identifier of a VRU cluster . - * - * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. - * - * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. - * - * @field clusterProfiles: identifies all the VRU profile types that are believed to be within the cluster . - * - * @category: VRU information - * @revision: Created in V2.1.1 -*/ -VruClusterInformation ::= SEQUENCE { - clusterId ClusterId OPTIONAL, - clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, - clusterCardinalitySize ClusterCardinalitySize, - clusterProfiles VruClusterProfiles, - ... -} - -/** - * This DF indicates the profile of a VRU including sub-profile information - * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.22]: - * - * @field pedestrian: VRU Profile 1 - Pedestrian. - * - * @field bicyclistAndLightVruVehicle: VRU Profile 2 - Bicyclist. - * - * @field motorcyclist: VRU Profile 3 - Motorcyclist. - * - * @field animal: VRU Profile 4 - Animals. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruProfileAndSubprofile ::= CHOICE { - pedestrian VruSubProfilePedestrian, - bicyclistAndLightVruVehicle VruSubProfileBicyclist, - motorcylist VruSubProfileMotorcyclist, - animal VruSubProfileAnimal, - ... -} - -/** - * This DF represents an angular component along with a confidence in the WGS84 coordinate system. - * - * It includes the following components: - * - * @field value: the angle value which can be estimated as the mean of the current distribution. - * - * @field confidence: the accuracy associated to the provided value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -Wgs84Angle ::= SEQUENCE { - value Wgs84AngleValue, - confidence Wgs84AngleConfidence -} - - -/** - * This DF represents a yaw rate of vehicle at a point in time. - * - * It includes the following components: - * - * @field yawRateValue: yaw rate value at a point in time. - * - * @field yawRateConfidence: accuracy of reported yaw rate value. - * - * @category: Vehicle Information - * @revision: V1.3.1 - */ -YawRate::= SEQUENCE { - yawRateValue YawRateValue, - yawRateConfidence YawRateConfidence -} - -END -- GitLab From 2b749eb7d0d7aa47bd8845ec91b3dc3b8273a8f0 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Fri, 10 Jun 2022 11:16:27 +0000 Subject: [PATCH 41/91] Upload New File --- ITS-Container.asn | 6011 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 6011 insertions(+) create mode 100644 ITS-Container.asn diff --git a/ITS-Container.asn b/ITS-Container.asn new file mode 100644 index 0000000..6c28f54 --- /dev/null +++ b/ITS-Container.asn @@ -0,0 +1,6011 @@ +-- Draft CDD ASN.1 module Release 2. +-- Date: 10.06.2022 + + +ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +------------------------------------------ +-- Specification of CDD Data Elements: +------------------------------------------ + + +/** + * This DE indicates a change of acceleration. + * + * The value shall be set to: + * - 0 - `accelerate` - if the acceleration is positive. + * - 1 - `decelerate` - if the acceleration is negative. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AccelerationChange::= ENUMERATED { + accelerate (0), + decelerate (1) +} + +/** + * This DE represents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. + * - `102` if the data is unavailable. + * + * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported acceleration value may be valid and used by the application. + * + * @note: If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @unit 0,1 m/s2 + * @category: Kinematics information + * @revision: Description revised in V2.1.1 + */ +AccelerationConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. + * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle + * acceleration control system is engaged or not. Currently, this DE includes the information of the + * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise + * control system, cruise control system and speed limiter system. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `brakePedalEngaged` - Driver is stepping on the brake pedal, + * - 1 - `gasPedalEngaged` - Driver is stepping on the gas pedal, + * - 2 - `emergencyBrakeEngaged` - emergency brake system is engaged, + * - 3 - `collisionWarningEngaged`- collision warning system is engaged, + * - 4 - `accEngaged` - ACC is engaged, + * - 5 - `cruiseControlEngaged` - cruise control is engaged, + * - 6 - `speedLimiterEngaged` - speed limiter is engaged. + * + * Otherwise (for example when the corresponding system is not available due to non equipped system + * or information is unavailable), the corresponding bit shall be set to _0_. + * + * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. + * @category: Kinematics information + * @revision: V1.3.1 + */ +AccelerationControl ::= BIT STRING { + brakePedalEngaged (0), + gasPedalEngaged (1), + emergencyBrakeEngaged (2), + collisionWarningEngaged (3), + accEngaged (4), + cruiseControlEngaged (5), + speedLimiterEngaged (6) +} (SIZE(7)) + +/** + * This DE represents the value of an acceleration component in a defined coordinate system. + * + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: zero acceleration is indicated using n=0. + * @unit 0,1 m/s2 + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AccelerationValue ::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) -- tbd delete unavailable value? +} (-160 .. 161) + + +/** + * This DE indicates an access technology. + * + * The value shall be set to: + * - `0`: in case of any access technology class. + * - `1`: in case of ITS-G5 access technology class. + * - `2`: in case of LTE-V2X access technology class. + * - `3`: in case of NR-V2X access technology class. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +AccessTechnologyClass ::= ENUMERATED { + any (0), + itsg5Class (1), + ltev2xClass (2), + nrv2xClass (3), + ... +} + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case the information on the sub cause of the accident is unavailable, + * - 1 - `multiVehicleAccident` - in case more than two vehicles are involved in accident, + * - 2 - `heavyAccident` - in case the airbag of the vehicle involved in the accident is triggered, + * the accident requires important rescue and/or recovery work, + * - 3 - `accidentInvolvingLorry` - in case the accident involves a lorry, + * - 4 - `accidentInvolvingBus` - in case the accident involves a bus, + * - 5 - `accidentInvolvingHazardousMaterials`- in case the accident involves hazardous material, + * - 6 - `accidentOnOppositeLane` - in case the accident happens on opposite lanes, + * - 7 - `unsecuredAccident` - in case the accident is not secured, + * - 8 - `assistanceRequested` - in case rescue and assistance are requested, + * - 9-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AccidentSubCauseCode ::= INTEGER { + unavailable (0), + multiVehicleAccident (1), + heavyAccident (2), + accidentInvolvingLorry (3), + accidentInvolvingBus (4), + accidentInvolvingHazardousMaterials (5), + accidentOnOppositeLane (6), + unsecuredAccident (7), + assistanceRequested (8) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailabl. + * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road. + * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road. + * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road. + * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road. + * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road. + * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road. + * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road. + * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. + * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface. + * - 10 - `roadsSalted` - when the low road adhesion is due to salted road. + * - 11-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { + unavailable (0), + heavyFrostOnRoad (1), + fuelOnRoad (2), + mudOnRoad (3), + snowOnRoad (4), + iceOnRoad (5), + blackIceOnRoad (6), + oilOnRoad (7), + looseChippings (8), + instantBlackIce (9), + roadsSalted (10) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable. + * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind. + * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail. + * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane. + * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm. + * - 5 - `tornado` - in case the type of extreme weather condition is tornado. + * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. + * - 7-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { + unavailable (0), + strongWinds (1), + damagingHail (2), + hurricane (3), + thunderstorm (4), + tornado (5), + blizzard (6) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. + * + * The value shall be set to: + * - 0 - `unavailable` : in case information on the type of precipitation is unavailable. + * - 1 - `heavyRain` : in case the type of precipitation is heavy rain. + * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall. + * - 3 - `softHail` : in case the type of precipitation is soft hail. + * - 4-255 : are reserved for future usage + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { + unavailable (0), + heavyRain (1), + heavySnowfall (2), + softHail (3) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable. + * - 1 - `fog` - in case the cause of low visibility is fog. + * - 2 - `smoke` - in case the cause of low visibility is smoke. + * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall. + * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain. + * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail. + * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare. + * - 7 - `sandstorms` - in case the cause of low visibility is sand storm. + * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. + * - 9-255 - are reserved for future usage + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { + unavailable (0), + fog (1), + smoke (2), + heavySnowfall (3), + heavyRain (4), + heavyHail (5), + lowSunGlare (6), + sandstorms (7), + swarmsOfInsects (8) +} (0..255) + +/** + * This DE represents the air humidity in tens of percent. + * + * The value shall be set to: + * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0.1 percent and greater than (n-1) x 0.1 percent. + * - `1001` indicates that the air humidity is unavailable. + * + * @category: Basic information + * @unit: 0,1 % + * @revision: created in V2.1.1 + */ +AirHumidity ::= INTEGER { + oneHundredPercent (1000), + unavailable (1001) +} (1..1001) + +/** + * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. + * + * The value shall be set to: + * - 0 - `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. + * - 1 - `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. + * - 2 - `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. + * - 3 - `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. + * - 4 - `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. + * - 5 - `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. + * - 6 - `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. + * - 7 - `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. + * - 8 - `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. + * - 9 - `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. + * - 10 - `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. + * - 11 - `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. + * - 12 - `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. + * - 13 - `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. + * - 14 - `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. + * - 15 - `unavailable` if the altitude accuracy information is unavailable + * + * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused + * by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported altitude value may be valid and used by the application. + * + * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported + * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +AltitudeConfidence ::= ENUMERATED { + alt-000-01 (0), + alt-000-02 (1), + alt-000-05 (2), + alt-000-10 (3), + alt-000-20 (4), + alt-000-50 (5), + alt-001-00 (6), + alt-002-00 (7), + alt-005-00 (8), + alt-010-00 (9), + alt-020-00 (10), + alt-050-00 (11), + alt-100-00 (12), + alt-200-00 (13), + outOfRange (14), + unavailable (15) +} + +/** + * This DE represents the altitude value in a WGS84 co-ordinate system. + * + * The value shall be set to: + * - `-100 000` if the altitude is equal to or less than -1 000 m. + * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0.01 meters and greater than (n-1) x 0,01 meters. + * - `800 000` if the altitude greater than 7 999 m. + * - `800 001` if the information is not available. + * + * @unit: 0.01 meter + * @category: GeoReference information + * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) + */ +AltitudeValue ::= INTEGER { + negativeOutOFRange (-100000), + postiveOutOfRange (800000), + unavailable (800001) +} (-100000..800001) + +/** + * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. + * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. + * - `127` if the accuracy information is not available. + * + * @unit: 0,1 degrees + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. + * For correlation computation, maximum interval levels can be assumed. + * + * The value shall be set to: + * - 0 - `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second + * - 1 - `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second + * - 2 - `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second + * - 3 - `degSec-001-00` if the accuracy is equal to or less than 1 degree/second + * - 4 - `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second + * - 5 - `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second + * - 6 - `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second + * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second + * - 8 - `unavailable` if the accuracy information is unavailable + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngularSpeedConfidence ::= ENUMERATED { + degSec-000-01 (0), + degSec-000-05 (1), + degSec-000-10 (2), + degSec-001-00 (3), + degSec-005-00 (4), + degSec-010-00 (5), + degSec-100-00 (6), + outOfRange (7), + unavailable (8) +} + +/** + * Tis DE represents the absolute accuracy of a reported angular acceleration value for a confidence level of 95%. + * For correlation computation, maximum interval levels shall be assumed. + * + * The value shall be set to: + * - 0 - `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second2 + * - 1 - `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second2 + * - 2 - `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second2 + * - 3 - `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second2 + * - 4 - `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second2 + * - 5 - `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second2 + * - 6 - `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second2 + * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second2 + * - 8 - `unavailable` if the accuracy information is unavailable + * + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AngularAccelerationConfidence ::= ENUMERATED { + degSecSquared-000-01 (0), + degSecSquared-000-05 (1), + degSecSquared-000-10 (2), + degSecSquared-001-00 (3), + degSecSquared-005-00 (4), + degSecSquared-010-00 (5), + degSecSquared-100-00 (6), + outOfRange (7), + unavailable (8) +} + +/** + * This DE indicates the number of axels of a passing train. + * + * The following values are specified: + * - `n(n > 2 and n < 1001)` indicates that the train has n x axels. + * - `1001`indicates that the number of axels is out of range. + * - `1002` the information is unavailable. + * + * + * @unit: Number of axels + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +AxlesCount ::= INTEGER{ + outOfRange (1001), + unavailable (1002) +} (2..1002) + +/** + * This DE represent the measured uncompesated atmospheric pressure in units of hPascal (hPa). + * + * The following values are specified: + * - `2999` indicates that the applicable value is less than 299.9 hPa. + * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 0.1 hPa and greater than (n-1) x 0.1 hPa. + * - `12001` indicates that the values is greater than 1200 hPa. + * - `12002` indicates that the information is not available. + * + * @category: Basic information + * @unit: 0.1 hPa + * @revision: Created in V2.1.1 +*/ +BarometricPressure ::= INTEGER{ + outOfRangelower (2999), + outOfRangeUpper (12001), + unavailable (12002) +} (2999..12002) + + +/** + * This DE indicates the cardinal number of bogies of a train. + * +* The value shall be set to: + * - `n (n > 1 and n < 100)` indicates that the train has n x bogie + * - `100`indicates that the number of bogie is out of range. + * - `101` the information is unavailable. + * + * @unit: Number of bogies + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +BogiesCount ::= INTEGER{ + outOfRange (100), + unavailable (101) +} (2..101) + +/** + * The DE represents a cardinal number that counts the size of a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CardinalNumber1B ::= INTEGER(0..255) + +/** + * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. + * - `36001` if the accuracy information is not available. + * + * The value 3600 shall not be used. + * + * @unit 0,1 degrees + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngleValue ::= INTEGER { + valueNotUsed (3600), + unavailable (3601) +} (0..3601) + +/** + * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `-32766` if the speed is equal to or less than 327,66 degrees/s. + * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s. + * - `32766` if the speed is greater than 327,65 degrees/s. + * - `32767` if the information is unavailable. + * + * @unit 0,01 degrees/s + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngularSpeedValue ::= INTEGER { + negativeOutofRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +/** + * This DE represents an angular acceleration value described in a local Cartesian coordinate system, counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `-32766` if the acceleration is equal to or less than 327,66 degrees/s2 + * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than n x 0,01 degrees/s2, + and greater than `(n-1)` x 0,01 degrees/s2. + * - `32766` if the acceleration is greater than 327,65 degrees/s2 + * - `32767` if the information is unavailable + * + * @unit 0,01 degrees/s2 (degrees per second squared) + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +CartesianAngularAccelerationValue ::= INTEGER { + negativeOutofRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +/** + *The DE represents the value of the cause code of an event. + * + * The value shall be set to: + * - 0 - - reserved for future use, + * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, + * - 2 - `accident` - in case the type of event is a road accident, + * - 3 - `roadworks` - in case the type of event is roadwork, + * - 4 - reserved for future usage, + * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any + * blocking of a road, partial or total, which has not been adequately + * secured and signposted, + * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, + * - 7 - `aquaplaning` - danger of aquaplaning on the road, + * - 8 - reserved for future usage, + * - 9 - `hazardousLocation-SurfaceCondition` - in case the type of event is abnormal road surface condition, + * - 10 - `hazardousLocation-ObstacleOnTheRoad` - in case the type of event is obstacle on the road, + * - 11 - `hazardousLocation-AnimalOnTheRoad` - in case the type of event is animal on the road, + * - 12 - `humanPresenceOnTheRoad` - in case the type of event is human presence on the road, + * - 13 - reserved for future usage, + * - 14 - `wrongWayDriving` - in case the type of the event is vehicle driving in wrong way, + * - 15 - `rescueAndRecoveryWorkInProgress` - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, + * - 16 - reserved for future usage, + * - 17 - `adverseWeatherCondition-ExtremeWeatherCondition`- in case the type of event is extreme weather condition, + * - 18 - `adverseWeatherCondition-Visibility` - in case the type of event is low visibility, + * - 19 - `adverseWeatherCondition-Precipitation` - in case the type of event is precipitation, + * - 20 - `violence` - in case the the type of event is human violence on or near the road, + * - 21-25 - reserved for future usage, + * - 26 - `slowVehicle` - in case the type of event is slow vehicle driving on the road, + * - 27 - `dangerousEndOfQueue` - in case the type of event is dangerous end of vehicle queue, + * - 28-90 - are reserved for future usage, + * - 91 - `vehicleBreakdown` - in case the type of event is break down vehicle on the road, + * - 92 - `postCrash` - in case the type of event is a detected crash, + * - 93 - `humanProblem` - in case the type of event is human health problem in vehicles involved in traffic, + * - 94 - `stationaryVehicle` - in case the type of event is stationary vehicle, + * - 95 - `emergencyVehicleApproaching` - in case the type of event is approaching vehicle operating emergency mission, + * - 96 - `hazardousLocation-DangerousCurve` - in case the type of event is dangerous curve, + * - 97 - `collisionRisk` - in case the type of event is a collision risk, + * - 98 - `signalViolation` - in case the type of event is signal violation, + * - 99 - `dangerousSituation` - in case the type of event is dangerous situation in which autonomous safety system in vehicle + * is activated, + * - 100 - `railwayLevelCrossing` - in case the type of event is a railway level crossing. + * - 101-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +CauseCodeType ::= INTEGER { + trafficCondition (1), + accident (2), + roadworks (3), + + impassability (5), + adverseWeatherCondition-Adhesion (6), + aquaplaning (7), + + hazardousLocation-SurfaceCondition (9), + hazardousLocation-ObstacleOnTheRoad (10), + hazardousLocation-AnimalOnTheRoad (11), + humanPresenceOnTheRoad (12), + + wrongWayDriving (14), + rescueAndRecoveryWorkInProgress (15), + + adverseWeatherCondition-ExtremeWeatherCondition (17), + adverseWeatherCondition-Visibility (18), + adverseWeatherCondition-Precipitation (19), + violence (20), + + slowVehicle (26), + dangerousEndOfQueue (27), + + vehicleBreakdown (91), + postCrash (92), + humanProblem (93), + stationaryVehicle (94), + emergencyVehicleApproaching (95), + hazardousLocation-DangerousCurve (96), + collisionRisk (97), + signalViolation (98), + dangerousSituation (99), + railwayLevelCrossing (100) +} (0..255) + +/** + * This DF represents the value of a cartesian coordinate with a range of -30,93 meters to +10,00 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateSmall::= INTEGER { + negativeOutOfRange (-3094), + positiveOutOfRange (1001) +} (-3094..1001) -- this is 12 bit, tbd question: increase the range by "one bit" to make this more practical for common usage? + +/** + * This DF represents the value of a cartesian coordinate with a range of -327,67 to + 327,66 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinate::= INTEGER{ + negativeOutOfRange (-32768), + positiveOutOfRange (32767) +} (-32768..32767) + +/** + * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateLarge::= INTEGER{ + negativeOutOfRange (-131072), + positiveOutOfRange (131071) +} (-131072..131071) + +/** + * This DE represents the ID of a CEN DSRC tolling zone. + * + * @category: Communication information + * @revision: V1.3.1 + */ +CenDsrcTollingZoneID::= ProtectedZoneID + +/** + * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 (for the cluster leader) . + * + * The value shall be set to `0` if the information is unavailable. + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterCardinalitySize::= INTEGER { + unavailable (0), + onlyLeader (1) +} (0..255) + +/** + * This DE represents the identifier of a cluster. + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterId ::= INTEGER(0..255) + +/** + * This DE indicates the reason why a cluster leader intends to break up the cluster. + * + * The value shall be set to: + * - 0 - `notProvided` - if the information is not provided. + * - 1 - `clusteringPurposeCompleted` - if the cluster purposes has been completed. + * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box. + * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster. + * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps. + * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. + * - 6 to 15 - reserved for future use + * + * @category: Cluster information + * @revision: Created in V2.1.1 +*/ +ClusterBreakupReason ::= ENUMERATED { + notProvided (0), + clusteringPurposeCompleted (1), + leaderMovedOutOfClusterBoundingBox (2), + joiningAnotherCluster (3), + enteringLowRiskAreaBasedOnMaps (4), + receptionOfCpmContainingCluster (5), + max(15) +} + +/** + * This DE indicates the reason why a cluster participant is leaving the cluster. + * + * The value shall be set to: + * - 0 - `notProvided ` - if the information is not provided. + * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore. + * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbounded by the leader. + * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box. + * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of adefined range. + * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster. + * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure. + * - 7 - `failedJoin` - if the participant failed to join the cluster. + * - 8 - `safetyCondition` - if a safety condition applies. + * - 9 to 15 - reserved for future use + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterLeaveReason ::= ENUMERATED { + notProvided (0), + clusterLeaderLost (1), + clusterDisbandedByLeader (2), + outOfClusterBoundingBox (3), + outOfClusterSpeedRange (4), + joiningAnotherCluster (5), + cancelledJoin (6), + failedJoin (7), + safetyCondition (8), + max(15) +} + +/** + * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of collision risk is unavailable, + * - 1 - `longitudinalCollisionRisk`- in case the type of detected collision risk is longitudinal collision risk, + * e.g. forward collision or face to face collision, + * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, + * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, + * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users + * e.g. pedestrians or bicycles, + * - 5-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +CollisionRiskSubCauseCode ::= INTEGER { + unavailable (0), + longitudinalCollisionRisk (1), + crossingCollisionRisk (2), + lateralCollisionRisk (3), + vulnerableRoadUser (4) +}(0..255) + +/** + * This DE represents a confidence level in percentage. + * + * The value shall be set to: + * + * - `0` : in case the confidence value is unknown but the reported value is valid. + * - `n (n > 0 and n < 101)` : for the confidence value in %. + * - `101` : in case the confidence value is not available. + * + * @unit Percent + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +ConfidenceLevel ::= INTEGER { + unknown (0), + unavailable (101) +} (0..101) + +/** + * This DE represents the absolute accuracy of measurement to a confidence level of 95%. + * + * The value shall be set to: + * - `n` (`n > 0` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. + * - `4094` if the accuracy information is greater than 40,93 meter. + * - `4095` if the accuracy information is not available. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CoordinateConfidence ::= INTEGER { + outOfRange (4094), + unavailable (4095) +} (0..4095) + +/** + * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. + * + * The following values are specified. + * - `-100` indicates full negative correlation + * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100. + * - `0` indicates not correlated or unavailable + * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. + * - `100` indicates full positive correlation + * + * @unit: the value is scaled by 100 + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +CorrelationRowValue ::= INTEGER { + full-negative-correlation (-100), + no-correlation (0), + full-positive-correlation (100) +} (-100..100) + +/** + * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. + * + * The value shall be set to: + * - 0 - `yawRateUsed` - if the yaw rate is used. + * - 1 - `yawRateNotUsed` - if the yaw rate is not used. + * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +CurvatureCalculationMode ::= ENUMERATED { + yawRateUsed (0), + yawRateNotUsed (1), + unavailable (2), + ... +} + +/** + * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. + * + * The value shall be set to: + * - 0 - `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. + * - 1 - `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. + * - 2 - `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. + * - 3 - `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. + * - 4 - `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. + * - 5 - `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. + * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. + * - 7 - `unavailable` if the information is not available. + * + * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported curvature value may be valid and used by the application. + * + * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid + * and therefore cannot be trusted. Such value is not useful for the application. + * + * @category: Vehicle information + * @revision: description revised in V2.1.1 +*/ +CurvatureConfidence ::= ENUMERATED { + onePerMeter-0-00002 (0), + onePerMeter-0-0001 (1), + onePerMeter-0-0005 (2), + onePerMeter-0-002 (3), + onePerMeter-0-01 (4), + onePerMeter-0-1 (5), + outOfRange (6), + unavailable (7) +} + +/** + * This DE describes vehicle turning curve with the following information: + * ``` + * Value = 1 / Radius * 10000 + * ``` + * wherein radius is the vehicle turning curve radius in meters. + * + * Positive values indicate a turning curve to the left hand side of the driver. + * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. + * + * The value shall be set to: + * - `-1023` for values smaller than -1023. + * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1). + * - `0` when the vehicle is moving straight. + * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1). + * - `1022`, for values greater than 1021. + * - `1023`, if the information is not available. + * + * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. + * + * @unit: 1 over 10 000 metres + * @category: Vehicle information + * @revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) + */ +CurvatureValue ::= INTEGER { + outOfRangeNegative (-1023), + straight (0), + outOfRangePositive (1022), + unavailable (1023) +} (-1023..1023) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. + * + * The following value are specified: + * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, + * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, + * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, + * - 3 - `queueAroundBend` - in case the dangerous end of queue is detected around the road bend, + * - 4 - `queueInTunnel` - in case queue is detected in tunnel, + * - 5-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DangerousEndOfQueueSubCauseCode ::= INTEGER { + unavailable (0), + suddenEndOfQueue (1), + queueOverHill (2), + queueAroundBend (3), + queueInTunnel (4) +} (0..255) + +/** + * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. + * The value is assigned according to `_class_` and `_division_` definitions of dangerous goods as specified in part II, + * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. + * + * + * @category Vehicle information + * @revision: V1.3.1 + */ +DangerousGoodsBasic::= ENUMERATED { + explosives1 (0), + explosives2 (1), + explosives3 (2), + explosives4 (3), + explosives5 (4), + explosives6 (5), + flammableGases (6), + nonFlammableGases (7), + toxicGases (8), + flammableLiquids (9), + flammableSolids (10), + substancesLiableToSpontaneousCombustion (11), + substancesEmittingFlammableGasesUponContactWithWater (12), + oxidizingSubstances (13), + organicPeroxides (14), + toxicSubstances (15), + infectiousSubstances (16), + radioactiveMaterial (17), + corrosiveSubstances (18), + miscellaneousDangerousSubstances (19) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousSituation` + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, + * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, + * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, + * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, + * - 4 - `absEngaged` - in case Anti-lock braking system (ABS) is engaged, + * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, + * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, + * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, + * - 8-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DangerousSituationSubCauseCode ::= INTEGER { + unavailable (0), + emergencyElectronicBrakeEngaged (1), + preCrashSystemEngaged (2), + espEngaged (3), + absEngaged (4), + ebEngaged (5), + brakeWarningEngaged (6), + collisionRiskWarningEngaged (7) +} (0..255) + +/** + * This DE represents an offset altitude with regards to a defined altitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `-12700` for values equal to or lower than -127 metres. + * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 meter below the reference position. + * - `0` for no altitudinal offset. + * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 meter above the reference position. + * - `12799` for values equal to or greater than 127,99 metres. + * - `12800` when the information is unavailable. + * + * @unit: 0.01 metre + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaAltitude ::= INTEGER { + negativeOutOfRange (-12700), + positiveOutOfRange (12799), + unavailable (12800) +} (-12700..12800) + +/** + * This DE represents an offset latitude with regards to a defined latitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. + * - `0` for no latitudinal offset. + * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the north from the reference position. + * - `131072` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLatitude ::= INTEGER { + unavailable (131072) +} (-131071..131072) + +/** + * This DE represents an offset longitude with regards to a defined longitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. + * - `0` for no longitudinal offset. + * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the east from the reference position. + * - `131072` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLongitude ::= INTEGER { + unavailable (131072) +} (-131071..131072) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 0,01 s + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) + +/** + * This DE represents a difference in time with respect to a reference time. + + * Example: a time interval between two consecutive message transmissions. + * + * @unit: 1 ms + * @category: Basic information + * @revision: Created in V2.1.1 from the DE TransmissionInterval + */ +DeltaTimeMilliSecondPos ::= INTEGER (1..10000) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 1 ms + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) + +/** + * This DE represents a difference in time with respect to a reference time. + * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, + * multiply by 256 (i.e. append a `00` byte) + * + * @unit: 256 milliseconds + * @category: Basic information + * @revision: Created in V2.1.1 + */ +DeltaTimeQuarterSecond::= INTEGER (1..255) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 0,1 s + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeTenthOfSecond::= INTEGER { + unavailable (127) +} (0..127) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * @unit: 1 s + * @category: Basic information + * @revision: Created in V2.1.1 from ValidityDuration +*/ +DeltaTimeSecond ::= INTEGER (0..86400) + + +/** + * This DE indicates a direction with respect to a defined reference direction. + * Example: a reference direction may be implicitly defined by the definition of a geographical zone. + * + * The value shall be set to: + * - 0 - `sameDirection` - to indicate the same direction as the reference direction. + * - 1 - `oppositeDirection` - to indicateopposite direction as the reference direction. + * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction. + * - 3 - `unavailable` - to indicate that the information is unavailable. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +Direction::= INTEGER{ + sameDirection (0), + oppositeDirection (1), + bothDirections (2), + unavailable (3) + } (0..3) + +/** + * This DE indicates in which direction something is moving. + * + * The value shall be set to: + * - 0 - `forward` - to indicate it is moving forward. + * - 1 - `backwards` - to indicate it is moving backwards. + * - 2 - `unavailable` - to indicate that the information is unavailable. + * + * @category: Kinematics information + * @revision: editorial update in V2.1.1 + */ +DriveDirection ::= ENUMERATED { + forward (0), + backward (1), + unavailable (2) +} + +/** + * This DE indicates whether a driving lane is open to traffic. + * + * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall + * correspond to the total number of the driving lanes in the carriageway. + * + * The numbering is matched to @ref LanePosition. + * The bit `0` is used to indicate the innermost lane, bit `1` is used to indicate the second lane from inside border. + * + * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. + * + * @note:Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) + +/** + * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. + * If that is the case, the value is *TRUE*, otherwise *FALSE*. + * + * @category: Vehicle information + * @revision: editorial update in V2.1.1 + */ +EmbarkationStatus ::= BOOLEAN + +/** + * This DE indicates the right of priority requested or assumed by an operating emergency vehicle. + * The right-of-priority bit shall be set to `1` if the corresponding right is requested. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way. + * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. + * + * @category: Traffic information + * @revision: description revised in V2.1.1 + */ +EmergencyPriority ::= BIT STRING { + requestForRightOfWay (0), + requestForFreeCrossingAtATrafficLight (1) +} (SIZE(2)) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event + * is unavailable, + * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, + * - 2 -`prioritizedVehicleApproaching` - in case a prioritized vehicle (e.g. bus) is approaching, + * - 3-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +EmergencyVehicleApproachingSubCauseCode ::= INTEGER { + unavailable (0), + emergencyVehicleApproaching (1), + prioritizedVehicleApproaching (2) +} (0..255) + +/** + * This DE indicated the type of energy being used and stored in vehicle. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle. + * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle. + * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle. + * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle. + * - 4 - `diesel` - when diesel is being used and stored in vehicle. + * - 5 - `gasoline` - when gasoline is being used and stored in vehicle. + * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. + * + * - Otherwise, the corresponding bit shall be set to `0`. + * + * @category: Vehicle information + * @revision: editorial revision in V2.1.1 + */ +EnergyStorageType ::= BIT STRING { + hydrogenStorage (0), + electricEnergyStorage (1), + liquidPropaneGas (2), + compressedNaturalGas (3), + diesel (4), + gasoline (5), + ammonia (6) +}(SIZE(7)) + +/** + * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } + +/** + * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} + +/** + * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} + +/** + * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} + +/** + * This DE describes the status of the exterior light switches of a vehicle. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on. + * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on. + * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on. + * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on. + * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on. + * - 5 - `reverseLightOn` - when the reverse light switch is on. + * - 6 - `fogLightOn` - when the tail fog light switch is on. + * - 7 - `parkingLightsOn` - when the parking light switch is on. + * + * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, + * either manually by the driver or automatically by a vehicle system. The bit value does not indicate + * if the corresponding lamps are alight or not. + * + * If a vehicle is not equipped with a certain light or if the light switch status information is not available, + * the corresponding bit shall be set to `0`. + * + * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not + * alternate with the blinking interval. + * + * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. + * + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +ExteriorLights ::= BIT STRING { + lowBeamHeadlightsOn (0), + highBeamHeadlightsOn (1), + leftTurnSignalOn (2), + rightTurnSignalOn (3), + daytimeRunningLightsOn (4), + reverseLightOn (5), + fogLightOn (6), + parkingLightsOn (7) +} (SIZE(8)) + +/** + * This DE represents a timestamp based on TimestampIts modulo 65 536. + * This means that generationDeltaTime = TimestampIts mod 65 536. + * + * @category Time information + * @revision: Created in V2.1.1 based on EN 302 637-2 +*/ +GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) + +/** + * This DE indicates the current status of a hard shoulder: whether it is available for special usage + * (e.g. for stopping or for driving) or closed for all vehicles. + * + * The value shall be set to: + * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations. + * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case. + * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 + */ +HardShoulderStatus ::= ENUMERATED { + availableForStopping (0), + closed (1), + availableForDriving (2)} + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, + * - 1 - `wildAnimals` - in case wild animals are detected on the road, + * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, + * - 3 - `smallAnimals` - in case small size animal is detected on the road, + * - 4 - `largeAnimals` - in case large size animal is detected on the road, + * - 5-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + wildAnimals (1), + herdOfAnimals (2), + smallAnimals (3), + largeAnimals (4) +} (0..255) + +/** + * This DE represents the sub cause code of the @ref CauseCode `hazardousLocation-DangerousCurve`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, + * - 1 - `dangerousLeftTurnCurve` - in case the dangerous curve is a left turn curve, + * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, + * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, + * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, + * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves stating with a right turn curve, + * - 6-255 - are reserved for future usage. + * + * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass + * and vehicle speed driving on the curve. This definition is out of scope of the present document. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { + unavailable (0), + dangerousLeftTurnCurve (1), + dangerousRightTurnCurve (2), + multipleCurvesStartingWithUnknownTurningDirection (3), + multipleCurvesStartingWithLeftTurn (4), + multipleCurvesStartingWithRightTurn (5) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the detected obstacle is unavailable, + * - 1 - `shedLoad` - in case detected obstacle is large amount of obstacles (shedload), + * - 2 - `partsOfVehicles`- in case detected obstacles are parts of vehicles, + * - 3 - `partsOfTyres` - in case the detected obstacles are parts of tyres, + * - 4 - `bigObjects` - in case the detected obstacles are big objects, + * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, + * - 6 - `hubCaps` - in case the detected obstacles are hub caps, + * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles, + * - 8-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + shedLoad (1), + partsOfVehicles (2), + partsOfTyres (3), + bigObjects (4), + fallenTrees (5), + hubCaps (6), + waitingVehicles (7) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. + * +The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the road surface condition is unavailable, + * - 1 - `rockfalls` - in case rock falls are detected on the road surface, + * - 2 - `earthquakeDamage`- in case the road surface is damaged by earthquake, + * - 3 - `sewerCollapse` - in case of sewer collapse on the road surface, + * - 4 - `subsidence` - in case road surface is damaged by subsidence, + * - 5 - `snowDrifts` - in case road surface is damaged due to snow drift, + * - 6 - `stormDamage` - in case road surface is damaged by strong storm, + * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, + * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, + * - 9 - `fallingIce` - in case road surface damage is due to falling ice, + * - 10 - `fire` - in case there is fire on or near to the road surface, + * - 11-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { + unavailable (0), + rockfalls (1), + earthquakeDamage (2), + sewerCollapse (3), + subsidence (4), + snowDrifts (5), + stormDamage (6), + burstPipe (7), + volcanoEruption (8), + fallingIce (9), + fire (10) +} (0..255) + +/** + * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. + * +The value shall be set to: + * - `1` if the heading accuracy is equal to or less than 0,1 degree, + * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, + * - `125` if the heading accuracy is equal to or less than 12,5 degrees, + * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, + * - `127` if the heading accuracy information is not available. + * + * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, + * such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported heading value may be valid and used by the application. + * + * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported + * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleConfidence instead. + * + * @unit: 0,1 degree + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +HeadingConfidence ::= Wgs84AngleConfidence + +/** +HeadingValue + * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. + * + * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleValue instead. + * + * Unit: 0,1 degree + * Categories: GeoReference information + * @revision: Description revised in V2.1.1 (usage of value 3600 specified) +*/ +HeadingValue ::= Wgs84AngleValue + +/** + * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle + * rear to front). + * + * The value shall be set to: + * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter. + * - `99` if the height is out of range, i.e. equal to or greater than 98 cm. + * - `100` if the height information is not available. + * + * @unit 0,01 meter + * @category Vehicle information + * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) + */ +HeightLonCarr ::= INTEGER { + unavailable(100) +} (1..100) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, + * - 1 - `childrenOnRoadway` - in case children are detected on the road event, + * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, + * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road, + * - 4-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + childrenOnRoadway (1), + cyclistOnRoadway (2), + motorcyclistOnRoadway (3) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, + * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, + * - 2 - `heartProblem` - in case human problem is due to heart problem, + * - 3-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HumanProblemSubCauseCode ::= INTEGER { + unavailable (0), + glycemiaProblem (1), + heartProblem (2) +} (0..255) + +/** + * This DE is a general identifier. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +Identifier1B ::= INTEGER (0..255) + +/** + * This DE is a general identifier. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +Identifier2B ::= INTEGER (0..65535) + +/** + * This DE represents the quality level of provided information. + * + * The value shall be set to: + * - 0 - if the information is unavailable. + * - 1 - if the quality level is lowest + * - `n (n > 1 and n < 7)` if the quality level is n. + * - 7 - if the quality level is highest + * @note: Definition of quality level is out of scope of the present document. + * + * @category: Basic information + * @revision: Editorial update in V2.1.1 + */ +InformationQuality ::= INTEGER (0..7) + +/** + * This DE defines the type of an interference management zone, so that an ITS-S can + * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * It is an extension of the type @ref ProtectedZoneType. + + * + * The value shall be set to: + * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling + * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.24], clause 7 + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +InterferenceManagementZoneType ::= ENUMERATED { + permanentCenDsrcTolling (0), + temporaryCenDsrcTolling (1), + unavailable (2), + urbanRail (3), + satelliteStation (4), + fixedLinks (5), + ... +} + +/** + * This DE represents the vehicle type according to ISO 3833 [4]. + * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. + * + * The value shall be set to: + * - 0 - `passengerCar` - term No 3.1.1 + * - 1 - `saloon` - term No 3.1.1.1 (sedan) + * - 2 - `convertibleSaloon` - term No 3.1.1.2 + * - 3 - `pullmanSaloon` - term No 3.1.1.3 + * - 4 - `stationWagon` - term No 3.1.1.4 + * - 5 - `truckStationWagon` - term No 3.1.1.4.1 + * - 6 - `coupe` - term No 3.1.1.5 (coupe) + * - 7 - `convertible` - term No 3.1.1.6 (open tourer, roadstar, spider) + * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 + * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 + * - 10 - `specialPassengerCar` - term No 3.1.1.9 + * - 11 - `bus (11)` - term No 3.1.2 + * - 12 - `minibus` - term No 3.1.2.1 + * - 13 - `urbanBus` - term No 3.1.2.2 + * - 14 - `interurbanCoach` - term No 3.1.2.3 + * - 15 - `longDistanceCoach` - term No 3.1.2.4 + * - 16 - `articulatedBus` - term No 3.1.2.5 + * - 17 - `trolleyBus ` - term No 3.1.2.6 + * - 18 - `specialBus` - term No 3.1.2.7 + * - 19 - `commercialVehicle ` - term No 3.1.3 + * - 20 - `specialCommercialVehicle` - term No 3.1.3.1 + * - 21 - `specialVehicle ` - term No 3.1.4 + * - 22 - `trailingTowingVehicle ` - term No 3.1.5 (draw-bar tractor) + * - 23 - `semiTrailerTowingVehicle` - term No 3.1.6 (fifth wheel tractor) + * - 24 - `trailer` - term No 3.2.1 + * - 25 - `busTrailer` - term No 3.2.1.1 + * - 26 - `generalPurposeTrailer` - term No 3.2.1.2 + * - 27 - `caravan` - term No 3.2.1.3 + * - 28 - `specialTrailer` - term No 3.2.1.4 + * - 29 - `semiTrailer` - term No 3.2.2 + * - 30 - `busSemiTrailer ` - term No 3.2.2.1 + * - 31 - `generalPurposeSemiTrailer` - term No 3.2.2.2 + * - 32 - `specialSemiTrailer` - term No 3.2.2.3 + * - 33 - `roadTrain` - term No 3.3.1 + * - 34 - `passengerRoadTrain ` - term No 3.3.2 + * - 35 - `articulatedRoadTrain` - term No 3.3.3 + * - 36 - `doubleRoadTrain` - term No 3.3.4 + * - 37 - `compositeRoadTrain` - term No 3.3.5 + * - 38 - `specialRoadTrain` - term No 3.3.6 + * - 39 - `moped` - term No 3.4 + * - 40 - `motorCycle` - term No 3.5 + * - 41-255 - reserved for future use + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ + +Iso3833VehicleType ::= INTEGER { + passengerCar (0), + saloon (1), + convertibleSaloon (2), + pullmanSaloon (3), + stationWagon (4), + truckStationWagon (5), + coupe (6), + convertible (7), + multipurposePassengerCar (8), + forwardControlPassengerCar (9), + specialPassengerCar (10), + bus (11), + minibus (12), + urbanBus (13), + interurbanCoach (14), + longDistanceCoach (15), + articulatedBus (16), + trolleyBus (17), + specialBus (18), + commercialVehicle (19), + specialCommercialVehicle (20), + specialVehicle (21), + trailingTowingVehicle (22), + semiTrailerTowingVehicle (23), + trailer (24), + busTrailer (25), + generalPurposeTrailer (26), + caravan (27), + specialTrailer (28), + semiTrailer (29), + busSemiTrailer (30), + generalPurposeSemiTrailer (31), + specialSemiTrailer (32), + roadTrain (33), + passengerRoadTrain (34), + articulatedRoadTrain (35), + doubleRoadTrain (36), + compositeRoadTrain (37), + specialRoadTrain (38), + moped (39), + motorCycle (40) + } (0..255) + +/** + * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. + * + * For right-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road. + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane. + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction. + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). + * + * For left-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road. + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane. + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction. + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). + + * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. + * + * If the carriageway allows only traffic in one direction (e.g. in case of dual or multiple carriageway roads), the position is counted from the physical border of the carriageway. + * If the carriageway allows traffic in both directions and there is no physical delimitation between traffic directions (e.g. on a single carrriageway road), + * the position is counted from the legal (i.e. optical) separation between traffic directions (horizontal marking). + + * @category: Road topology information + * @revision: Description revised in V2.1.1 +*/ +LanePosition ::= INTEGER { + offTheRoad (-1), + innerHardShoulder (0), + outerHardShoulder (14) +} (-1..14) + +/** + * This DE represents the type of a lane. + * + * The value shall be set to: + * - 0 - `traffic` - Lane dedicated to the movement of vehicles. + * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning. + * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow. + * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. + * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it. + * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. + * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic. + * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. + * - 8 - `bus` - Lane dedicated to movement of buses providing public transport. + * - 9 - `taxi` - Lane dedicated to movement of taxis. + * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane. + * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. + * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths. + * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles. + * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median + separating the two directional carriageways of the highway. + * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings. + * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys. + * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes. + * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. + * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between + the road surface edge and the boundary of a road. + * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. + * - values 21 to 30 reserved for future use + * + * @category: Road topology information + * @revision: V2.1.1 +*/ +LaneType::= INTEGER{ + traffic (0), + through (1), + reversible (2), + acceleration (3), + deceleration (4), + leftHandTurning (5), + rightHandTurning (6), + dedicatedVehicle (7), + bus (8), + taxi (9), + hov (10), + hot (11), + pedestrian (12), + cycleLane (13), + median (14), + striping (15), + trackedVehicle (16), + parking (17), + emergency (18), + verge (19), + minimumRiskManoeuvre (20), + unknown (31) +}(0..31) + +/** + * This DE represents the width of a lane measured at a defined position. + * + * @unit: 0.01 meter + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +LaneWidth::= INTEGER (0..1023) + +/** + * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or + * in south hemisphere. + * + * The value shall be set to: + * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitudes south of the Equator. + * - `0` is used for the latitude of the equator. + * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitudes north of the Equator. + * - `900 000 001` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +Latitude ::= INTEGER { + unavailable(900000001) +} (-900000000..900000001) + +/** + * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation + * with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation + with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * + * @unit: 0.1 m/s2 + * @category Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. + */ +LateralAccelerationValue ::= AccelerationValue + +/** + * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. + * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `lightBarActivated` - when the light bar is activated. + * - 1 - `sirenActivated` - when the siren is activated. + * + * Otherwise, it shall be set to 0. + * + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +LightBarSirenInUse ::= BIT STRING { + lightBarActivated (0), + sirenActivated (1) +} (SIZE(2)) + +/** + * This DE represents the absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees + * to the east or to the west of the prime meridian. + * + * The value shall be set to: + * - `n (n > -1800000000 and n < 0)`, i.e. negative values for longitudes to the west. + * - `0` to indicate the prime meridian. + * - `n (n > 0 and n < 1800000001)`, i.e. positive values for longitudes to the east. + * - `1 800 000 001` when the information is unavailable. + * + * The value -1800000000 shall not be used. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +Longitude ::= INTEGER { + valueNotUsed (-1800000000), + unavailable (1800000001) +} (-1800000000..1800000001) + + /** + * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * +* The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * This acceleration is along the tangent plane of the road surface and does not include gravity components. + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @category: Vehicle information + * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. + */ +LongitudinalAccelerationValue::= AccelerationValue + +/** + * This DE represents the longitudinal offset of the map-matched position of a particular object along the + * matched lane, beginning from the lane's starting point. + * + * @unit 0,1 m + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +LongitudinalLanePositionValue ::= INTEGER (0..32767) + +/** + * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. + * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. + * - `102` if the data is unavailable. + * + * @unit 0,01 meter + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +LongitudinalLanePositionConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * This DE represents the type of facility layer message. + * + * The value shall be set to: + * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], + * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], + * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], + * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], + * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], + * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], + * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], + * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], + * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], + * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], + * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], + * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], + * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], + * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], + * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], + * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], + * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. + * - 18-255 - reserved for future usage, + * + * @category: Communication information + * @revision: Created in V2.1.1 from @ref ItsPduHeader. + */ +MessageId::= INTEGER { + denm (1), + cam (2), + poi (3), + spatem (4), + mapem (5), + ivim (6), + ev-rsr (7), + tistpgtransaction (8), + srem (9), + ssem (10), + evcsn (11), + saem (12), + rtcmem (13), + cpm (14), + imzm (15), + vam (16), + dsm (17) +} (0..255) + +/** + * This DE represents the number of occupants in a vehicle. + * + * The value shall be set to: + * - `n (n > 1 and n < 126)` for the number n of occupants. + * - `126` for values equal to or higher than 126. + * - `127` if information is not available.`. + * + * @unit: 1 person + * @category: Vehicle information + * @revision: Editorial update in V2.1.1 + */ +NumberOfOccupants ::= INTEGER { + outOfRange (126), + unavailable (127) +} (0 .. 127) + +/** + * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. + * + * The value shall be set to: + * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. + * - `n (n > 0 and n < 15)` : for the applicable confidence value. + * -`15` : if there is full confidence in the detected ObjectDescriptor. + * + * @unit n/a + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectConfidence ::= INTEGER { + noConfidence (0), + fullConfidence (15) +} (0..15) + +/** + * This DE represents a single dimension of an object. + * + * @unit 0,1 m + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimensionValue ::= INTEGER (0..1023) + +/** + * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . + * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. + * - `102` if the data is unavailable. + * + * @unit 0,01 m + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimensionConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * The DE indicates whether the detected object is classified as a dynamic (i.e. moving) object. + * This value indicates whether an object has the general capability to move, i.e. change its + * position. + * + * The value shall be set to: + * - `0` - dynamic - if the object is moving. + * - `1` - hasBeenDynamic - if the object has been dynamic before, e.g., a car stopping at a traffic light. + * - `2` - static - if the object has been detected to be not moving throughout any previous observation. + * - `3` - unavailable - if the information is unavailable. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDynamicStatus ::= INTEGER { + dynamic (0), + hasBeenDynamic (1), + static (2), + unavailable (3) +} (0..3) + +/** + * This DE indicates the approximate position of the reference point of measurement for the object dimensions using a 9 cell grid. + * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +ObjectRefPoint ::= INTEGER { + bottomLeft (0), + midLeft (1), + topLeft (2), + bottomMid (3), + midMid (4), + topMid (5), + bottomRight (6), + midRight (7), + topRight (8) +} (0..8) + +/** + * This DE indicates the face or part of a face of a solid object. + * + * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: + * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object. + * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object. + * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. + * + * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. + * + * @category: Basic information + * @revision: V2.1.1 +*/ +ObjectFace ::= ENUMERATED { + front (0), + sideLeftFront (1), + sideLeftBack (2), + sideRightFront (3), + sideRightBack (4), + back (5) +} + +/** + * This DE represent a lateral position with lane-level resolution on the road reservation, which is not on regular traffic lanes. + * + * The value shall be set to: + * - 0 - `unavailable` - if information on the lane position is unavailable. + * - 1 - `sidewalk` - if the position is on the side-walk. + * - 2 - `parkingLane` - if the position is on an area at the side of the road not intended for travel but for vehicular parking. + * - 3 - `bikeLane` - if the position is on an area reserved for bicycles. + * - 4-15 - reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. + * + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +OffRoadLanePosition ::= ENUMERATED { + unavailable (0), + sidewalk (1), + parkingLane (2), + bikeLane (3), + max (15) +} + +/** + * This DE represents a time period to describe the opening days and hours of a Point of Interest. + * (for example local commerce). + * + * @category: Time information + * @revision: V1.3.1 + */ +OpeningDaysHours ::= UTF8String + +/** + * The DE represents an ordinal number that indicates the position of an element in a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +OrdinalNumber1B ::= INTEGER(1..255) + +/** + * This DE indicates the subclass of a detected object for object class "otherSubclass". + * + * The value shall be set to: + * - `0` - unknown - if the subclass is unknown. + * - `1` - roadSideUnit - if the object is a roadside unit. + * + * @category: Sensing information + * @revision: Created in V2.1.1 + */ +OtherSubClass ::= INTEGER { + unknown (0), + roadSideUnit (1) +} (0..255) + +/** + * This DE represents the recorded or estimated travel time between a position and a predefined reference position. + * + * @unit 0.01 second + * @category GeoReference information + * @revision: same type as in V1.3.1 but now based on a basic type + */ +PathDeltaTime ::= DeltaTimeHundredthOfSecond + +/** + * This DE denotes the ability of an ITS-S to provide up-to-date information. + * A performance class value is used to describe age of data. The exact values are out of scope of the present document. + * + * The value shall be set to: + * - `0` if the performance class is unknown. + * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.6] + * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.6] + * - Values in the range `3 to 7` are reserved for future use. + * + * @category: Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PerformanceClass ::= INTEGER { + unavailable (0), + performanceClassA (1), + performanceClassB (2) +} (0..7) + +/** + * This DE represents a telephone number + * + * @category: Basic information + * @revision: V1.3.1 + */ +PhoneNumber ::= NumericString (SIZE(1..16)) + +/** + * This DE indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of + * the vehicle bounding box of the empty load vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 meter and 6,2 meters. + * - `62` for values equal to or higher than `6.2 metres`. + * - `63` if the information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit 0,1 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosCentMass ::= INTEGER { + tenCentimeters (1), + outOfRange (62), + unavailable (63) +} (1..63) + +/** + * This DE indicates the positioning technology being used to estimate a geographical position. + * + * The value shall be set to: + * - 0 `noPositioningSolution` : no positioning solution used, + * - 1 `sGNSS` : Global Navigation Satellite System used, + * - 2 `dGNSS` : Differential GNSS used, + * - 3 `sGNSSplusDR` : GNSS and dead reckoning used, + * - 4 `dGNSSplusDR` : Differential GNSS and dead reckoning used, + * - 5 `dR` : dead reckoning used. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +PositioningSolutionType ::= ENUMERATED { + noPositioningSolution (0), + sGNSS (1), + dGNSS (2), + sGNSSplusDR (3), + dGNSSplusDR (4), + dR (5), + ... +} + +/** + * This DE indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. + * + * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear + * of the vehicle. + * The left side seat of a row refers to the left hand side seen from vehicle rear to front. + * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, + * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. + * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, + * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. + * + * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. + * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. + * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. + * Otherwise, the value of seat occupation bit shall be set according to the following conditions: + * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. + * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row + * shall be set to `1`. + * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. + * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row + * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PositionOfOccupants ::= BIT STRING { + row1LeftOccupied (0), + row1RightOccupied (1), + row1MidOccupied (2), + row1NotDetectable (3), + row1NotPresent (4), + row2LeftOccupied (5), + row2RightOccupied (6), + row2MidOccupied (7), + row2NotDetectable (8), + row2NotPresent (9), + row3LeftOccupied (10), + row3RightOccupied (11), + row3MidOccupied (12), + row3NotDetectable (13), + row3NotPresent (14), + row4LeftOccupied (15), + row4RightOccupied (16), + row4MidOccupied (17), + row4NotDetectable (18), + row4NotPresent (19) +} (SIZE(20)) + +/** + * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. + * + * The value shall be set to: + * - `n (n > 0 and n < 19) for any aplicable value between 0,1 meter and 1,9 meters. + * - `19` for values equal to or higher than 1.9 metres. + * - `20` if the information is unavailable. + * + * @category: Vehicle information + * @unit 0.1 metre + * @revision: Editorial update in V2.1.1 + */ +PosFrontAx ::= INTEGER { + outOfRange (19), + unavailable(20) +} (1..20) + +/** + * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. + * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 meter and 1,26 meters. + * - `126` for values equal to or higher than 1.26 metres. + * - `127` if the information is unavailable. + * + * @unit 0,01 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosLonCarr ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the + * middle point of the front line of the vehicle bounding box. + * + * The value shall be set to: + * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 meter and 2,9 meters. + * - `29` for values equal to or greater than 2.9 metres. + * - `30` if the information is unavailable. + * + * @unit 0,1 metre + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PosPillar ::= INTEGER { + outOfRange (29), + unavailable (30) +} (1..30) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on post crash event is unavailable, + * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, + * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, + * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, + * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle, + * - 5-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +PostCrashSubCauseCode ::= INTEGER { + unavailable (0), + accidentWithoutECallTriggered (1), + accidentWithECallManuallyTriggered (2), + accidentWithECallAutomaticallyTriggered (3), + accidentWithECallTriggeredWithoutAccessToCellularNetwork (4) +} (0..255) + +/** +* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square meter. +* +* The following values are specified: +* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0.1 mm/h and greater than (n-1) x 0.1 mm/h. +* - `2000` if the amount of rain falling is greater than 199.9 mm/h +* - `2001` if the information is not available +* +* @unit: 0.1 mm/h +* @category: Basic Information +* @revision: created in V2.1.1 +*/ +PrecipitationIntensity ::= INTEGER { + outOfRange (2000), + unavailable (2001) +} (1..2001) + +/** + * This DE represenst the indentifier of a protected communication zone. + * + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedZoneID ::= INTEGER (0.. 134217727) + +/** + * This DE represenst the radius of a protected communication zone. + * + * + * @unit: metre + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedZoneRadius ::= INTEGER (1..255,...) + +/** + * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do + * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * + * The protected zone type is defined in ETSI TS 102 792 [i.16]. + * + * + * @category: Communication information + * @revision: V1.3.1 + */ +ProtectedZoneType::= ENUMERATED { + permanentCenDsrcTolling (0), + ..., + temporaryCenDsrcTolling (1) +} + +/** + * This DE is used for various tasks in the public transportation environment, especially for controlling traffic + * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). + * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation + * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the + * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to + * traffic congestion. Other usage of the DE is the provision of information like the public transport line number + * or the schedule delay of a public transport vehicle. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivationData ::= OCTET STRING (SIZE(1..20)) + +/** + * This DE indicates a certain coding type of the PtActivationData data. + * + * The folowing value are specified: + * - `0` undefinedCodingType : undefined coding type, + * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.8], + * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.8]. + * - values 3 to 255 : reserved for alternative and future use. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivationType ::= INTEGER { + undefinedCodingType (0), + r09-16CodingType (1), + vdv-50149CodingType (2) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . + * + * The value shall be set to: + * - 0 `unavailable` : in case no further detailed information on the railway level crossing status is available, + * - 1 `doNotCrossAbnormalSituation` : in case when something wrong is detected by equation or sensors of the railway level crossing, + including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), + * - 2 `closed` : in case the crossing is closed (barriers down), + * - 3 `unguarded` : in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), + * - 4 `nominal` : in case the barriers are up and lights are off. + * - 5-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RailwayLevelCrossingSubCauseCode ::= INTEGER { + unavailable (0), + doNotCrossAbnormalSituation (1), + closed (2), + unguarded (3), + nominal (4) +} (0..255) + +/** + * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from + * ITS-S after receiving request from other ITS-Ss. + * + * The value shall be set to: + * - 0 `request` : for a request message. + * - 1 `response` : for a response message. + * + * @category Communication information + * @revision: Editorial update in V2.1.1 + */ +RequestResponseIndication ::= ENUMERATED { + request (0), + response (1) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` + * + * The following value are specified: + * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, + * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, + * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, + * - 3 `policeActivityOngoing` : in case police activity is ongoing, + * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, + * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, + * - 6-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { + unavailable (0), + emergencyVehicles (1), + rescueHelicopterLanding (2), + policeActivityOngoing (3), + medicalEmergencyOngoing (4), + childAbductionInProgress (5) +} (0..255) + + +/** + * This DE indicates the type of a road segment. + * + * The value shall be set to: + * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. + * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. + * + * @category: Road Topology Information + * @revision: Editorial update in V2.1.1 + */ +RoadType ::= ENUMERATED { + urban-NoStructuralSeparationToOppositeLanes (0), + urban-WithStructuralSeparationToOppositeLanes (1), + nonUrban-NoStructuralSeparationToOppositeLanes (2), + nonUrban-WithStructuralSeparationToOppositeLanes (3) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. + * +The value shall be set to: + * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, + * - 1 `majorRoadworks` : in case a major roadworks is ongoing, + * - 2 `roadMarkingWork` : in case a road marking work is ongoing, + * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, + * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, + * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, + * - 6 `winterService` : in case winter service work is ongoing, + * - 7-255 reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RoadworksSubCauseCode ::= INTEGER { + unavailable (0), + majorRoadworks (1), + roadMarkingWork (2), + slowMovingRoadMaintenance (3), + shortTermStationaryRoadworks (4), + streetCleaning (5), + winterService (6) +} (0..255) + +/** + * This DE indicates if a distance is safe + * This DE is FALSE if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} simultaneously satisfied with confidence of 90 % or more. + * Otherwise stationSafeDistanceIndication is set to TRUE. + * + * @Note: the ebbreviations 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) + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SafeDistanceIndicator::= BOOLEAN + +/** + * This DE represenst the absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a + * confidence level of 95 %. + * + * The value shall be set to: + * - `1` if the accuracy is equal to or less than 1 cm, + * - `n (n > 1 and n < 4 094)` if the accuracy is equal to or less than n cm, + * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, + * - `4 095` if the accuracy information is unavailable. + * + * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported position coordinate value may be valid and used by the application. + * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that + * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful + * for the application. + + * @unit 0,01 meter + * @category: GeoReference Information + * @revision: Editorial update in V2.1.1 + */ +SemiAxisLength ::= INTEGER{ + outOfRange (4094), + unavailable (4095) +} (0..4095) + +/** + * This DE indicates the type of sensor. + * + * The value shall be set to: + * - `0` undefined : in case the sensor type is undefined. + * - `1` radar : in case the sensor is a radar. + * - `2` lidar : in case the sensor is a lidar. + * - `3` monovideo : in case the sensor is mono video. + * - `4` stereovision : in case the sensor is stereo vision. + * - `5` nightvision : in case the sensor is night vision. + * - `6` ultrasonic : in case the sensor is ultrasonic. + * - `7` pmd : in case the sensor is photonic mixing device. + * - `8` inductionLoop : in case the sensor is an induction loop. + * - `9` sphericalCamera : in case the sensor is a spherical camera. + * - `10` uwb : in case the sensor is ultra wide band. + * - `11` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. + * - `12` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. + * + * @category: Sensing Information + * @revision: created in V2.1.1 +*/ +SensorType ::= INTEGER { + undefined (0), + radar (1), + lidar (2), + monovideo (3), + stereovision (4), + nightvision (5), + ultrasonic (6), + pmd (7), + inductionLoop (8), + sphericalCamera (9), + uwb (10), + localAggregation (11), + itsAggregation (12) +} (0..15) + +/** + * This DE represents a sequence number. + * + * @category: Basic information + * @revision: V1.3.1 + */ +SequenceNumber ::= INTEGER (0..65535) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, + * - 1 `stopSignViolation` : in case a stop sign violation is detected, + * - 2 `trafficLightViolation` : in case a traffic light violation is detected, + * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, + * - 4-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +SignalViolationSubCauseCode ::= INTEGER { + unavailable (0), + stopSignViolation (1), + trafficLightViolation (2), + turningRegulationViolation (3) +} (0..255) + +/** + * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is + * unavailable, + * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, + * - 2 `vehiclesSlowingToLookAtAccident`: in case vehicle is temporally slowing down to look at accident, spot, etc., + * - 3 `abnormalLoad` : in case an abnormal loaded vehicle is driving slowly on the road, + * - 4 `abnormalWideLoad` : in case an abnormal wide load vehicle is driving slowly on the road, + * - 5 `convoy` : in case of slow driving convoy on the road, + * - 6 `snowplough` : in case of slow driving snow plough on the road, + * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, + * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road, + * - 9-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +SlowVehicleSubCauseCode ::= INTEGER { + unavailable (0), + maintenanceVehicle (1), + vehiclesSlowingToLookAtAccident (2), + abnormalLoad (3), + abnormalWideLoad (4), + convoy (5), + snowplough (6), + deicing (7), + saltingVehicles (8) +} (0..255) + +/** + * The DE indicates if a vehicle is carrying goods in the special transport conditions. + + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load. + * - 1 `excessWidth` : the vehicle is carrying goods in excess of width. + * - 2 `excessLength` : the vehicle is carrying goods in excess of length. + * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. + * + * Otherwise, the corresponding bit shall be set to 0. + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +SpecialTransportType ::= BIT STRING { + heavyLoad (0), + excessWidth (1), + excessLength (2), + excessHeight (3) +} (SIZE(4)) + +/** + * This DE represents the absolute accuracy of a speed value information for a predefined confidence level of 95%. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the speed accuracy is equal to or less than n cm/s. + * - `126` if the speed accuracy is out of range, i.e. greater than 125 cm/s. + * - `127` if the speed accuracy information is not available. + * + * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported speed value may be valid and used by the application. + * + * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid + * and therefore cannot be trusted. Such is not useful for the application. + * + * @unit cm/s + * @category: Vehicle information + * @revision: Description revised in V2.1.1 + */ +SpeedConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents a speed limitation applied to a geographical position, a road section or a geographical region. + * + * @unit: km/h + * @category: Infrastructure information, Traffic information + * @revision: V1.3.1 + */ +SpeedLimit ::= INTEGER (1..255) + +/** + * This DE represents a speed value, i.e. the magnitude of the horizontal velocity-vector. + * + * The value shall be set to: + * - `0` in a standstill situation. + * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s. + * - `16382` for speed values greater than 163,81 m/s. + * - `16383` if the speed accuracy information is not available. + * + * @unit: 0,01 m/s + * @category: Kinematics information + * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) +*/ +SpeedValue ::= INTEGER { + standstill (0), + outOfRange (16382), + unavailable (16383) +} (0..16383) + +/** + * This DE represents the value of a velocity component in a defined coordinate system. + * + * The value shall be set to: + * - `-16383` if the speed is equal to or smaller than -163,83 m/s + * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s. + * - `16382` for speed values equal to or greater than 163,81 m/s. + * - `16383` if the speed accuracy information is not available. + * + * @unit: 0,01 m/s + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +SpeedValueExtended ::= INTEGER { + negativeOutOfRange (-16383), + psotiveOutOfRange (16382), + unavailable (16383) +} (-16383..16383) + + +/** + * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. + * + * The value shall be set to: + * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable". + * - `n (n > 0 and n < 50)` to indicate the actual stability level. + * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability". + * - the values between 51 and 62 are reserved for future use. + * - `63`: this value indicates that the information is unavailable. + * + * @unit: 2% + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +StabilityLossProbability ::= INTEGER { + stable (0), + totalLossOfStability (50), + unavailable (63) +} (0..63) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength12b::= INTEGER (0..4095) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * The value shall be set to: + * - 0 `lessThan50m` : for distances below 50 m. + * - 1 `lessThan100m` : for distances below 100 m. + * - 2 `lessThan200m` : for distances below 200 m. + * - 3 `lessThan500m` : for distances below 300 m. + * - 4 `lessThan1000m` : for distances below 1000 m. + * - 5 `lessThan5km` : for distances below 5000 m. + * - 6 `lessThan10km` : for distances below 10000 m. + * - 7 `over10km` : for distances over 10000 m. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +StandardLength3b ::= ENUMERATED { + lessThan50m (0), + lessThan100m (1), + lessThan200m (2), + lessThan500m (3), + lessThan1000m (4), + lessThan5km (5), + lessThan10km (6), + over10km (7) +} + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength9b::= INTEGER (0..511) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength1B::= INTEGER (0..255) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0.1 meter + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength2B::= INTEGER (0..65535) + +/** + * This DE indicates the duration in minutes since which something is stationary. + * + * The value shall be set to: + * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. + * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more 1 minute. + * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. + * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +StationarySince ::= ENUMERATED { + lessThan1Minute (0), + lessThan2Minutes (1), + lessThan15Minutes (2), + equalOrGreater15Minutes (3) +} + +/** + * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, + * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, + * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, + * - 3 `postCrash` : in case stationary vehicle is caused by collision, + * - 4 `publicTransportStop` : in case public transport vehicle is stationary at bus stop, + * - 5 `carryingDangerousGoods`: in case the stationary vehicle is carrying dangerous goods, + * - 6 `vehicleOnFire` : in case of vehicle on fire. + * - 7-255 reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +StationaryVehicleSubCauseCode ::= INTEGER { + unavailable (0), + humanProblem (1), + vehicleBreakdown (2), + postCrash (3), + publicTransportStop (4), + carryingDangerousGoods (5), + vehicleOnFire (6) +} (0..255) + +/** + * This DE represents the identifier of an ITS-S. + * The ITS-S ID may be a pseudonym. It may change over space and/or over time. + * + * @category: Basic information + * @revision: V1.3.1 + */ +StationID ::= INTEGER(0..4294967295) + +/** + * This DE represenst the type of technical context the ITS-S is integrated in. + * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. + * + * The value shall be set to: + * - 0 `unknown`: information about the ITS-S context is not provided, + * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). + * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, + * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + class L1, L2 (VRU Profile 3) + * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + class L3, L4, L5, L6, L7 (VRU Profile 3) + * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, + * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, + * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, + * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, + * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in + UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, + * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). + * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) + * - 14 reserved for future usage + * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 16-255> reserved for future usage. + * + * @category: Communication information. + * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) + */ +StationType ::= INTEGER { + unknown (0), + pedestrian (1), + cyclist (2), + moped (3), + motorcycle (4), + passengerCar (5), + bus (6), + lightTruck (7), + heavyTruck (8), + trailer (9), + specialVehicles (10), + tram (11), + lightVruVehicle (12), + animal (13), + roadSideUnit (15) +} (0..255) + +/** + * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, + * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, + * - `127` if the accuracy information is not available. + * + * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. + * + * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', + * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. + * Such value is not useful for the application. + * + * @unit: 1.5 degree + * @category: Vehicle Information + * @revision: Description revised in V2.1.1 +*/ +SteeringWheelAngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the steering wheel angle of the vehicle at certain point in time. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The value shall be set to: + * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. + * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, + turning clockwise (i.e. to the right). + * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + turning counter-clockwise (i.e. to the left). + * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. + * - `512` if information is not available. + * + * @unit: 1.5 degree + * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). + */ +SteeringWheelAngleValue ::= INTEGER { + negativeOutOfRange (-511), + positiveOutOfRange (511), + unavailable (512) +} (-511..512) + +/** + * This DE indicates the generic sub cause of a detected event. + * + * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 (this is the generic sub cause type) + */ +SubCauseCodeType ::= INTEGER (0..255) + +/** + * This DE indicates a temperature value. + + * The value shall be set to: + * - `-60` for temperature equal to or less than -60 degrees C. + * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C. + * - `67` for temperature equal to or greater than 67 degrees C. + * + * @unit: degrees Celsius + * @category: Basic information + * @revision: Editorial update in V2.1.1 + */ +Temperature ::= INTEGER { + equalOrSmallerThanMinus60Deg (-60), + equalOrGreaterThan67Deg(67)} (-60..67) + +/** + * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. + * The ITS epoch is `00:00:00.000 UTC, 1 January 2004`. + * "Elapsed" means that the true number of milliseconds is continuously counted without interruption, + * i.e. it is not altered by leap seconds, which occur in UTC. + * + * @note: International Atomic Time (TAI) is the time reference coordinate on the basis of the readings of atomic clocks, + * operated in accordance with the definition of the second, the unit of time of the International System of Units. + * TAI is a continuous time scale. UTC has discontinuities, as it is occasionally adjusted by leap seconds. + * As of 1 January, 2022, TimestampIts is 5 seconds ahead of UTC, because since the ITS epoch on 1 January 2004 00:00:00.000 UTC, + * further 5 leap seconds have been inserted in UTC. + * + * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, + * which includes one leap second insertion since the ITS epoch. + * @unit: millisecond + * @category: Basic information + * @revision: Description revised in in V2.1.1 + */ +TimestampIts ::= INTEGER (0..4398046511103) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, + * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, + * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, + * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, + * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, + * - 5 `trafficStationary` : in case traffic is stationary, + * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, + * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, + * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, + * - 9-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +TrafficConditionSubCauseCode ::= INTEGER { + unavailable (0), + increasedVolumeOfTraffic (1), + trafficJamSlowlyIncreasing (2), + trafficJamIncreasing (3), + trafficJamStronglyIncreasing (4), + trafficStationary (5), + trafficJamSlightlyDecreasing (6), + trafficJamDecreasing (7), + trafficJamStronglyDecreasing (8) +} (0..255) + +/** + * This DE indicates a traffic direction that is relevant to information indicated in a message. + * + * The value shall be set to: + * - 0 `allTrafficDirections` : for all traffic directions. + * - 1 `upstreamTraffic` : for upstream traffic. + * - 2 `downstreamTraffic` : for downstream traffic. + * - 3 `oppositeTraffic` : for traffic in the opposite direction. + * + * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * + * @note: Upstream traffic corresponds to the incoming traffic towards the event position, + * and downstream traffic to the departing traffic away from the event position. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 from RelevanceTrafficDirection + */ +TrafficDirection ::= ENUMERATED { + allTrafficDirections (0), + upstreamTraffic (1), + downstreamTraffic (2), + oppositeTraffic (3) +} + +/** + * This DE indicates traffic rules that apply to vehicles at a certain position. + * + * The value shall be set to: + * - `0` if overtaking is prohibited for all vehicles. + * - `1` if overtaking is prohibited for trucks. + * - `2` if vehicles should pass to the right lane. + * - `3` if vehicles should pass to the left lane. + * + * @category: Infrastructure information, Traffic information + * @revision: Editorial update in V2.1.1 + */ +TrafficRule ::= ENUMERATED { + noPassing (0), + noPassingForTrucks (1), + passToRight (2), + passToLeft (3), + ...} + +/** + * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. + * + * The value shall be set to: + * - `n (n >= 0 and n <= 50)` to indicate the actual stability level. + * - the values between 51 and 62 are reserved. + * - `63`: to indicate that the information is unavailable. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionProbability ::= INTEGER { + unavailable (63) +} (0..63) + +/** + * This DE defines the confidence level of the trajectoryInterceptionProbability. + * + * The value shall be set to: + * - `0` to indicate confidence less than 50 % + * - `1` to indicate confidence greater than or equal to 50 % and less than 70 %. + * - `2` to indicate confidence greater than or equal to 70 % and less than 90 %. + * - `3` to indicate confidence greater than or equal to 90%. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionConfidence ::= INTEGER { + lessthan50percent (0), + between50and70Percent (1), + between70and90Percent (2), + above90Percent (3) +} (0..3) + +/** + * This DE provides the turning direction. + * + * The value shall be set to: + * - `left` for turning to te left. + * - `right`for turing to the right. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +TurningDirection::= ENUMERATED { + left, + right +} + +/** + * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. + * + * The value shall be set to: + * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 meter, and greater than (n-1) x 0,4 meters. + * - `254` indicates that the turning radius is greater than 253 x 0.4 metre = 101.2 metres. + * - `255` indicates that the information is unavailable. + * + * For vehicle with tracker, the turning radius applies to the vehicle only. + * + * @category: Vehicle information + * @unit 0.4 metre + * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) + */ +TurningRadius ::= INTEGER { + outOfRange (254), + unavailable (255) +} (1..255) + +/** + * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VDS ::= IA5String (SIZE(6)) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, + * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, + * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, + * - 3 `engineProblem` : in case vehicle break down is caused by an engine problem, + * - 4 `transmissionProblem` : in case vehicle break down is caused by transmission problem, + * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, + * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, + * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, + * - 8 `tyrePuncture` : in case vehicle break down is caused by tire puncture, + * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, + * - 10 `vehicleOnFire` : in case the vehicle is on fire, + * - 11-255: reserved for future usage. + * + * @category: Traffic information + + */ +VehicleBreakdownSubCauseCode ::= INTEGER { + unavailable (0), + lackOfFuel (1), + lackOfBatteryPower (2), + engineProblem (3), + transmissionProblem (4), + engineCoolingProblem (5), + brakingSystemProblem (6), + steeringProblem (7), + tyrePuncture (8), + tyrePressureProblem (9), + vehicleOnFire (10) +} (0..255) + +/** + * This DE represents the height if the vehicle, measured from the ground to the highest point, excluding any antennas. + * In case vehicles are equipped with adjustable ride heights, camper shells, and any other + * equipment which may result in varying height, the largest possible height shall be used. + * + * @unit 5 cm (DE ranges to 6.35 m) + * @revision: V1.3.1 +*/ +VehicleHeight ::= INTEGER (0..127) + +/** + * This DE provides information about the presence of a trailer. + * + * The value shall be set to: + * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in a reported vehicle length value. + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in a reported vehicle length value. + * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. + * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * nor the detection of trailer presence/absence is possible. + * + * @category: Vehicle information + * @revision: Description revised in V2.1.1 +*/ +VehicleLengthConfidenceIndication ::= ENUMERATED { + noTrailerPresent (0), + trailerPresentWithKnownLength (1), + trailerPresentWithUnknownLength (2), + trailerPresenceIsUnknown (3), + unavailable (4) +} + +/** + * This DE represents the length of a vehicle. + * + * The value shall be set to: + * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. + * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. + * - `1 023` to indicate that the information in unavailable. + * + * + * @unit: 0.1 metre + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). + */ +VehicleLengthValue ::= INTEGER { + outOfRange(1022), + unavailable(1023) +} (1..1023) + +/** + * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. + * + * The value shall be set to: + * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than n x 100 kg, and greater than (n-1) x 100 kg. + * - `1 023` indicates that the vehicle mass is greater than 102 200 kg. + * - `1 024` indicates the vehicle mass information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit: 100kg + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). +*/ +VehicleMass ::= INTEGER { + outOfRange (1023), + unavailable(1024) +} (1..1024) + +/** + * This DE indicates the role played by a vehicle at a point in time. + * + * The value shall be set to: + * - 0 `default` : to indicate the default vehicle role as indicated by the vehicle type, + * - 1 `publicTransport` : to indicate that the vehicle is used to operate public transport service, + * - 2 `specialTransport` : to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, + * - 3 `dangerousGoods` : to indicate that the vehicle is used for dangerous goods transportation, + * - 4 `roadWork` : to indicate that the vehicle is used to realize roadwork or road maintenance mission, + * - 5 `rescue` : to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, + * - 6 `emergency` : to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, + * - 7 `safetyCar` : to indicate that the vehicle is used for public safety, e.g. patrol, + * - 8 `agriculture` : to indicate that the vehicle is used for agriculture, e.g. farm tractor, + * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, + * - 10 `military` : to indicate that the vehicle is used for military purpose, + * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, + * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service, + * - 13 `reserved` : reserved for future usage, + * - 14 `reserved` : reserved for future usage, + * - 15 `reserved` : reserved for future usage. + * + * @category: Vehicle Information + * @revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) + */ +VehicleRole ::= ENUMERATED { + default (0), + publicTransport (1), + specialTransport(2), + dangerousGoods (3), + roadWork (4), + rescue (5), + emergency (6), + safetyCar (7), + agriculture (8), + commercial (9), + military (10), + roadOperator (11), + taxi (12), + reserved1 (13), + reserved2 (14), + reserved3 (15) +} + +/** + * This DE describes the subclass of a vehicle. + * + * The value shall be set to: + * - `0` unknown : to indicate that the type of vehicle is unknown. + * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. + * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. + * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. + * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. + * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. + * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). + * - `7` tram : to indicate a vehicle running on tracks along public streets. + * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. + * - `9` agricultural : to indicate a vehicle used for agricultural purposes. + * - Values 10 to 255 are reserved for future use. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +VehicleSubClass ::= INTEGER { + unknown (0), + passengerCar (1), + bus (2), + lightTruck (3), + heavyTruck (4), + trailer (5), + specialVehicles (6), + tram (7), + emergencyVehicle (8), + agricultural (9) +} (0..255) + +/** + * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. + + * The value shall be set to: + * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. + * - `61`indicates that the vehicle width is greater than 6,0 metres. + * - `62`indicates that the information in unavailable. + * + * @unit: 0.1 metre + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). + */ +VehicleWidth ::= INTEGER { + outOfRange (61), + unavailable (62) +} (1..62) + +/** + * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The value shall be set to: + * - `-160` for values equal to or less than -16 m/s2. + * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `160` for acceleration or greater than 15,9 m/s2. + * - `161` when the data is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @category: Vehicle information + * @unit: 0.1 m/s2 + * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. + * +*/ +VerticalAccelerationValue ::= AccelerationValue + +/** + * This DE Identifies all the VRU profile types that are believed to be within a cluster. + * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU. + * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member. + * - 2 `motorcycle` : indicates that the VRU cluster contains at least one motorcycle VRU member. + * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. + * + * Otherwise, the corresponding bit shall be set to 0. + * + * @category: VRU information + * @revision: Created in V2.1.1 +*/ +VruClusterProfiles ::= BIT STRING { + pedestrian (0), + bicyclist (1), + motorcyclist (2), + animal (3) +} (SIZE(4)) + +/** + * This DE represents the possible VRU usage conditions. + + * - The value shall be set to: + * - 0 `unavailable` : to indicate that the usage conditions are unavailable. + * - 1 `other (1)` : to indicate that the VRU is in a state not defined below. + * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device. + * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use. + * - 4 `typing (4)` : to indicate that the human is texting, entering addresses and other manual input activity. + * - 5 `calling (5)` : to indicate that the VRU device is currently received a call. + * - 6 `playingGames (6)` : to indicate that the human is playing games. + * - 7 `reading (7)` : to indicate that the human is reading on the VRU device. + * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, + * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruDeviceUsage ::= ENUMERATED { + unavailable (0), + other (1), + idle (2), + listeningToAudio (3), + typing (4), + calling (5), + playingGames (6), + reading (7), + viewing (8), + max (255) +} + +/** + * This DE represents the possible VRU environment conditions. + * + * - The value shall be set to: + * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, + * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing. + * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). + * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. + * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. + * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruEnvironment ::= ENUMERATED { + unavailable (0), + intersectionCrossing (1), + zebraCrossing (2), + sidewalk (3), + onVehicleRoad (4), + protectedGeographicArea (5), + max (255) +} + +/** + * This DE indicates the status of the possible human control over a VRU vehicle. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information on is unavailable. + * - 1 `braking` : to indicate that the VRU is braking. + * - 2 `hardBraking` : to indicate that the VRU is braking hard. + * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling. + * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking. + * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard. + * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. + * - value 7 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruMovementControl ::= ENUMERATED { + unavailable (0), + braking (1), + hardBraking (2), + stopPedaling (3), + brakingAndStopPedaling (4), + hardBrakingAndStopPedaling (5), + noReaction (6), + max (255) +} + +/** + * This DE indicates the profile of a pedestrian. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information on is unavailable. + * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies. + * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker. + * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfilePedestrian ::= ENUMERATED { + unavailable (0), + ordinary-pedestrian (1), + road-worker (2), + first-responder (3), + max (15) +} + +/** + * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information is unavailable. + * - 1 `bicyclist ` : to indicate a cycle and bicyclist. + * - 2 `wheelchair-user` : to indicate a wheelchair and its user. + * - 3 `horse-and-rider` : to indicate a horse and rider. + * - 4 `rollerskater` : to indicate a rolleskater and skater. + * - 5 `e-scooter` : to indicate an e-scooter and rider. + * - 6 `personal-transporter` : to indicate a personal-transporter and rider. + * - 7 `pedelec` : to indicate a pedelec and rider. + * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. + * - value 9 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileBicyclist ::= ENUMERATED { + unavailable (0), + bicyclist (1), + wheelchair-user (2), + horse-and-rider (3), + rollerskater (4), + e-scooter (5), + personal-transporter (6), + pedelec (7), + speed-pedelec (8), + max (15) +} + +/** + * This DE indicates the profile of a motorcyclist and corresponding vehicle. + * + * The value shall be set to: + * - 0 `unavailable ` : to indicate that the information is unavailable. + * - 1 `moped (1)` : to indicate a moped and rider. + * - 2 `motorcycle` : to indicate a motorcycle and rider. + * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider. + * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. + * - value 5 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileMotorcyclist ::= ENUMERATED { + unavailable (0), + moped (1), + motorcycle (2), + motorcycle-and-sidecar-right (3), + motorcycle-and-sidecar-left (4), + max (15) +} + +/** + * This DE indicates the profile of a animal + * + * The value shall be set to: + * - 0 `unavailable` : to indicate that the information is unavailable. + * - 1 `wild-animal` : to indicate a animal living in the wildness. + * - 2 `farm-animal` : to indicate an animal beloning to a farm. + * - 3 `service-animal` : to indicate an animal that supports a human being. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileAnimal ::= ENUMERATED { + unavailable (0), + wild-animal (1), + farm-animal (2), + service-animal (3), + max (15) +} + +/** + * This DE indicates the approximate size of a VRU including the VRU vehicle used. + * + * The value shall be set to: + * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1. + * - 1 `low (1)` : the VRU size class is low depending on the VRU profile. + * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile. + * - 3 `high (3)` : the VRU size class is high depending on the VRU profile. + * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSizeClass ::= ENUMERATED { + unavailable (0), + low (1), + medium (2), + high (3), + max (15) +} + +/** + * This DE describes the status of the exterior light switches of a vehicle or a VRU. + * The DE is an extension of the existing vehicular DE ExteriorLight. + * + * The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU + * or automatically by a vehicle or VRU system: + * - 0 `unavailable` : indicates no information available. + * - 1 `backFlashLight ` : indicates the status of the back flash light. + * - 2 `helmetLight` : indicates the status of the helmet light. + * - 3 `armLight` : indicates the status of the arm light. + * - 4 `legLight` : indicates the status of the leg leight. + * - 5 `wheelLight` : indicates the status of the wheel light. + * - Bits 6 to 8 : reserved for future use. + * The bit values do not indicate if the corresponding lamps are alight or not. + * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSpecificExteriorLights ::= BIT STRING { + unavailable (0), + backFlashLight (1), + helmetLight (2), + armLight (3), + legLight (4), + wheelLight (5) +} (SIZE(8)) + +/** + * Perpendicular distance between front and rear axle of the wheel base of vehicle. + * + * The value shall be set to: + * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0.1 metres and more than (n-1) x 0.1 metres. + * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. + * - `127` indicates that the information is unavailable. + * + * @unit 0.1 metre + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +WheelBaseVehicle ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. + * The required confidence level is defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n >=1 and n < 126)` is equal to or less than n x 0.1 degrees and more than (n-1) x 0.1 degrees. + * - `126` if the angle accuracy is out of range, i.e. greater than 12,5 degrees. + * - `127` if the angle accuracy information is not available. + * + * + * @unit 0,1 degrees + * @category: GeoReference Information + * @revision: Created in V2.1.1 +*/ +Wgs84AngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + + +/** + * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. + * + * @unit 0,1 degrees + * @category: GeoReference Information + * @revision: Created in V2.1.1 +*/ +Wgs84AngleValue ::= INTEGER { + wgs84North (0), + wgs84East (900), + wgs84South (1800), + wgs84West (2700), + doNotUse (3600), + unavailable (3601) +} (0..3601) + +/** + * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. + * + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +WMInumber ::= IA5String (SIZE(1..3)) + +/** + * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . + * + * The value shall be set to: + * - 0 `unavailable` : in case further detailed information on wrong way driving event is unavailable, + * - 1 `wrongLane` : in case vehicle is driving on a lane for which it has no authorization to use, + * - 2 `wrongDirection` : in case vehicle is driving in a direction that it is not allowed, + * - 3-255 : reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +WrongWayDrivingSubCauseCode ::= INTEGER { + unavailable (0), + wrongLane (1), + wrongDirection (2) +} (0..255) + +/** + * This DE denotes the absolute accuracy range for reported yaw rate value for a confidence level of 95%. + * + * The value shall be set to: + * - `0` indicates that the accuracy is equal to or less than 0,01 degree/second. + * - `1` indicates that the accuracy is equal to or less than 0,05 degrees/second. + * - `2` indicates that the accuracy is equal to or less than 0,1 degree/second. + * - `3` indicates that the accuracy is equal to or less than 1 degree/second. + * - `4` indicates that the accuracy is equal to or less than 5 degrees/second. + * - `5` indicates that the accuracy is equal to or less than 10 degrees/second. + * - `6` indicates that the accuracy is equal to or less than 100 degrees/second. + * - `7` indicates that the accuracy is out of range, i.e. greater than 100 degrees/second. + * - `8` indicates that the accuracy information is unavailable + * + * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the reported yaw rate value may be valid and used by the application. + * + * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported + * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 + */ +YawRateConfidence ::= ENUMERATED { + degSec-000-01 (0), + degSec-000-05 (1), + degSec-000-10 (2), + degSec-001-00 (3), + degSec-005-00 (4), + degSec-010-00 (5), + degSec-100-00 (6), + outOfRange (7), + unavailable (8) +} + +/** + * This DE represents the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded + * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. The leading sign denotes the direction of rotation. + * + * The value shall be set to: + * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. + * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s. + * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s. + * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. + * - `32 767` to indicate that the information is not available. + * + * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. + * The reading instant should be the same as for the vehicle acceleration. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * + * @unit: 0,01 degree per second. + * @category: Vehicle Information + * @revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). +*/ +YawRateValue ::= INTEGER { + negativeOutOfRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +---------------------------------------- +-- Specification of CDD Data Frames: +---------------------------------------- + +/** + * This DF represents an acceleration component along with a confidence with a predefined confidence level of 95% for the component. + * + * It includes the following components: + * + * @field value: the acceleration value which can be estimated as the mean of the current distribution. + * + * @field value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * + * @category: Kinematic Information + * @revision: Created in V2.1.1 + */ +Acceleration1d ::= SEQUENCE { + value AccelerationValue, + confidence AccelerationConfidence +} + +/** + * This DF represents information associated to changes in acceleration. + * + * It includes the following components: + * + * @field accelOrDecel: the indication of an acceleration change. + * + * @field value actionDeltaTime: the period in which the acceleration change action is performed. + * + * @category: Kinematic Information + * @revision: Created in V2.1.1 + */ +AccelerationChangeIndication ::= SEQUENCE { + accelOrDecel AccelerationChange, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents an identifier used to describe a protocol action taken by an ITS-S. + * + * It includes the following components: + * + * @field originatingStationID: ID of the ITS-S that takes the action. + * + * @field sequenceNumber: a sequence number. + * + * @category: Communication information + * @revision: V1.3.1 + */ +ActionID ::= SEQUENCE { + originatingStationID StationID, + sequenceNumber SequenceNumber +} + +/** + * This DF represents a list of @ref ActionID. + + * @category: Communication Information + * @revision: Created in V2.1.1 based on ReferenceDenms +*/ +ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID + +/** + * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. + * + * It includes the following components: + * + * @field altitudeValue: altitude of a geographical point. + * + * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +Altitude ::= SEQUENCE { + altitudeValue AltitudeValue, + altitudeConfidence AltitudeConfidence +} + +/** + * This DE represents a general container for usage in various types of messages. + * + * It includes the following components: + * + * @field stationType: the type of station that has generated the message that contains the basic container. + * + * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +BasicContainer ::= SEQUENCE { + stationType StationType, + referencePosition ReferencePosition, + ... +} + +/** + * This DF represents a general Data Frame to describe an angle component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angle value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngle ::= SEQUENCE { + value CartesianAngleValue, + confidence AngleConfidence +} + +/** + * This DF represents a general Data Frame to describe an angular speed component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngularSpeed ::= SEQUENCE { + value CartesianAngularSpeedValue, + confidence AngularSpeedConfidence +} + +/** + * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence in a cartesian coordinate system. + * + * It includes the following components: + * + * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. + * + * @field confidence: The accuracy associated to the provided value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +CartesianAngularAcceleration ::= SEQUENCE { + value CartesianAngularAccelerationValue, + confidence AngularAccelerationConfidence +} + +/** + * This DF represents a coordinate in a cartesian reference system + * + * It includes the following components: + * + * @field value: the coordinate value which can be estimated as the mean of the current distribution. + * + * @field confidence: the coordinate accuracy associated to the provided value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateWithConfidence ::= SEQUENCE { + value CartesianCoordinateLarge, + confidence CoordinateConfidence +} + +/** + * This DF represents a position in a two- or three-dimensional cartesian coordinate system. + * + * It includes the following components: + * + * @field xCoordinate: the X coordinate value. + * + * @field yCoordinate: the Y coordinate value. + * + * @field zCoordinate: the optional Z coordinate value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianPosition3d::=SEQUENCE{ + xCoordinate CartesianCoordinate, + yCoordinate CartesianCoordinate, + zCoordinate CartesianCoordinate OPTIONAL +} + +/** + * This DF is a representation of the cause code value of a traffic event. + * + * It includes the following components: + * + * @field causeCode: the main cause of a detected event. + * + * @field subCauseCode: the subordinate cause of a detected event. + * + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. + * + * @category: Traffic information + * @revision: Editorial update in V2.1.1 + */ +CauseCode ::= SEQUENCE { + causeCode CauseCodeType, + subCauseCode SubCauseCodeType, + ... +} + +/** + * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. + * + * + * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. + * @category: Traffic information + * @revision: Editorial update in V2.1.1 + */ + +CauseCodeChoice::= CHOICE { + reserved SubCauseCodeType, + trafficCondition TrafficConditionSubCauseCode, + accident AccidentSubCauseCode, + roadworks RoadworksSubCauseCode, + reserved4 SubCauseCodeType, + impassability SubCauseCodeType, + adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, + aquaplaning SubCauseCodeType, + reserved8 SubCauseCodeType, + hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, + hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, + hazardousLocation-AnimalOnTheRoad HazardousLocation-AnimalOnTheRoadSubCauseCode, + humanPresenceOnTheRoad HumanPresenceOnTheRoadSubCauseCode, + reserved13 SubCauseCodeType, + wrongWayDriving WrongWayDrivingSubCauseCode, + rescueAndRecoveryWorkInProgress RescueAndRecoveryWorkInProgressSubCauseCode, + reserved16 SubCauseCodeType, + adverseWeatherCondition-ExtremeWeatherCondition AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, + adverseWeatherCondition-Visibility AdverseWeatherCondition-VisibilitySubCauseCode, + adverseWeatherCondition-Precipitation AdverseWeatherCondition-PrecipitationSubCauseCode, + violence SubCauseCodeType, + reserved21 SubCauseCodeType, + reserved22 SubCauseCodeType, + reserved23 SubCauseCodeType, + reserved24 SubCauseCodeType, + reserved25 SubCauseCodeType, + slowVehicle SlowVehicleSubCauseCode, + dangerousEndOfQueue DangerousEndOfQueueSubCauseCode, + reserved28 SubCauseCodeType, + reserved29 SubCauseCodeType, + reserved30 SubCauseCodeType, + reserved31 SubCauseCodeType, + reserved32 SubCauseCodeType, + reserved33 SubCauseCodeType, + reserved34 SubCauseCodeType, + reserved35 SubCauseCodeType, + reserved36 SubCauseCodeType, + reserved37 SubCauseCodeType, + reserved38 SubCauseCodeType, + reserved39 SubCauseCodeType, + reserved40 SubCauseCodeType, + reserved41 SubCauseCodeType, + reserved42 SubCauseCodeType, + reserved43 SubCauseCodeType, + reserved44 SubCauseCodeType, + reserved45 SubCauseCodeType, + reserved46 SubCauseCodeType, + reserved47 SubCauseCodeType, + reserved48 SubCauseCodeType, + reserved49 SubCauseCodeType, + reserved50 SubCauseCodeType, + reserved51 SubCauseCodeType, + reserved52 SubCauseCodeType, + reserved53 SubCauseCodeType, + reserved54 SubCauseCodeType, + reserved55 SubCauseCodeType, + reserved56 SubCauseCodeType, + reserved57 SubCauseCodeType, + reserved58 SubCauseCodeType, + reserved59 SubCauseCodeType, + reserved60 SubCauseCodeType, + reserved61 SubCauseCodeType, + reserved62 SubCauseCodeType, + reserved63 SubCauseCodeType, + reserved64 SubCauseCodeType, + reserved65 SubCauseCodeType, + reserved66 SubCauseCodeType, + reserved67 SubCauseCodeType, + reserved68 SubCauseCodeType, + reserved69 SubCauseCodeType, + reserved70 SubCauseCodeType, + reserved71 SubCauseCodeType, + reserved72 SubCauseCodeType, + reserved73 SubCauseCodeType, + reserved74 SubCauseCodeType, + reserved75 SubCauseCodeType, + reserved76 SubCauseCodeType, + reserved77 SubCauseCodeType, + reserved78 SubCauseCodeType, + reserved79 SubCauseCodeType, + reserved80 SubCauseCodeType, + reserved81 SubCauseCodeType, + reserved82 SubCauseCodeType, + reserved83 SubCauseCodeType, + reserved84 SubCauseCodeType, + reserved85 SubCauseCodeType, + reserved86 SubCauseCodeType, + reserved87 SubCauseCodeType, + reserved88 SubCauseCodeType, + reserved89 SubCauseCodeType, + reserved90 SubCauseCodeType, + vehicleBreakdown VehicleBreakdownSubCauseCode, + postCrash PostCrashSubCauseCode, + humanProblem HumanProblemSubCauseCode, + stationaryVehicle StationaryVehicleSubCauseCode, + emergencyVehicleApproaching EmergencyVehicleApproachingSubCauseCode, + hazardousLocation-DangerousCurve HazardousLocation-DangerousCurveSubCauseCode, + collisionRisk CollisionRiskSubCauseCode, + signalViolation SignalViolationSubCauseCode, + dangerousSituation DangerousSituationSubCauseCode, + railwayLevelCrossing RailwayLevelCrossingSubCauseCode, + reserved101 SubCauseCodeType, + reserved102 SubCauseCodeType, + reserved103 SubCauseCodeType, + reserved104 SubCauseCodeType, + reserved105 SubCauseCodeType, + reserved106 SubCauseCodeType, + reserved107 SubCauseCodeType, + reserved108 SubCauseCodeType, + reserved109 SubCauseCodeType, + reserved110 SubCauseCodeType, + reserved111 SubCauseCodeType, + reserved112 SubCauseCodeType, + reserved113 SubCauseCodeType, + reserved114 SubCauseCodeType, + reserved115 SubCauseCodeType, + reserved116 SubCauseCodeType, + reserved117 SubCauseCodeType, + reserved118 SubCauseCodeType, + reserved119 SubCauseCodeType, + reserved120 SubCauseCodeType, + reserved121 SubCauseCodeType, + reserved122 SubCauseCodeType, + reserved123 SubCauseCodeType, + reserved124 SubCauseCodeType, + reserved125 SubCauseCodeType, + reserved126 SubCauseCodeType, + reserved127 SubCauseCodeType, + reserved128 SubCauseCodeType + } + +/** + * This DF is an alternative representation of the cause code value of a traffic event. + * + * It includes the following components: + * + * @field ccAndScc: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. + * + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @category: Traffic information + * @revision: Created in V2.1.1 + */ + +CauseCodeV2 ::= SEQUENCE { + ccAndScc CauseCodeChoice, + ... +} + +/** + * The DF describes the position of a CEN DSRC road side equipment. + * + * It includes the following components: + * + * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. + * + * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. + * + * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +CenDsrcTollingZone ::= SEQUENCE { + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, + ... +} + +/** + * + * This DF represents the shape of a circular area or a right cylinder that is centred on a reference position defined outside of the context of this DF. + * + * It includes the following components: + * + * @field nodeCenterPoint: optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field radius: the radius of the circular area. + * + * @field height: the optional height, present if the shape is a right cylinder extending in the positive z-axis. + * + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +CircularShape ::= SEQUENCE { + nodeCenterPoint CartesianPosition3d OPTIONAL, + radius StandardLength12b, + height StandardLength12b OPTIONAL, + ... +} + +/** + * This DF indicates the opening/closure status of a lane or a set of lanes. + * + * It includes the following components: + * + * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of inner hard shoulder lanes. + * + * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of outer hard shoulder lanes. + * + * @field drivingLaneStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of driving lanes. + * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. + * + * @category: GeoReference information, Road topology information + * @revision: V1.3.1 + */ +ClosedLanes ::= SEQUENCE { + innerhardShoulderStatus HardShoulderStatus OPTIONAL, + outerhardShoulderStatus HardShoulderStatus OPTIONAL, + drivingLaneStatus DrivingLaneStatus OPTIONAL, + ... +} + +/** + * This DF provides information about the breakup of a cluster. + * + * It includes the following components: + * + * @field clusterBreakupReason: indicates the reason for breakup. + * + * @field breakupTime: indicates the time of breakup. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterBreakupInfo ::= SEQUENCE { + clusterBreakupReason ClusterBreakupReason, + breakupTime DeltaTimeQuarterSecond, + ... +} + +/** + * This DF provides information about the joining of a cluster. + * + * It includes the following components: + * + * @field clusterId: indicates the identifier of the cluster. + * + * @field joinTime: indicates the time of joining. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterJoinInfo ::= SEQUENCE { + clusterId ClusterId, + joinTime DeltaTimeQuarterSecond, + ... +} + +/** + * The DF provides information about the leaving of a cluster. + * + * It includes the following components: + * + * @field clusterId: indicates the cluster. + * + * @field clusterLeaveReason: indicates the reason for leaving. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterLeaveInfo ::= SEQUENCE { + clusterId ClusterId, + clusterLeaveReason ClusterLeaveReason, + ... +} + +/** + * This DF represents the column of the lower triangular positive semi-definite matrix and consists of a list of correlation row values. + * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. + * Each column "i" of the lower triangular then contains k-(i-1) values, where "i" refers to the column number count + * starting at 1 from the left. + * + * @category: Sensing Information + * @revision: Created in V2.1.1 +*/ +CorrelationColumn ::= SEQUENCE SIZE (1..21) OF CorrelationRowValue + +/** + * This DF represents the curvature of the vehicle trajectory and the accuracy. + * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. + * + * It includes the following components: + * + * @field curvatureValue: Detected curvature of the vehicle trajectory. + * + * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +Curvature ::= SEQUENCE { + curvatureValue CurvatureValue, + curvatureConfidence CurvatureConfidence +} + +/** + * This DF provides a description of dangerous goods being carried by a heavy vehicle. + * + * It includes the following components: + * + * @field dangerousGoodsType: Type of dangerous goods. + * + * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in + * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], + * + * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. + * If yes, the value shall be set to TRUE, + * + * @field tunnelsRestricted: whether the heavy vehicle carrying dangerous goods is restricted to enter tunnels. + * If yes, the value shall be set to TRUE, + * + * @field limitedQuantity: whether the carried dangerous goods are packed with limited quantity. + * If yes, the value shall be set to TRUE, + * + * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency + * service should deal with an incident. This component is optional; it shall be present if the information is available, + * + * @field phoneNumber: contact phone number of assistance service in case of incident or accident. + * This component is optional, it shall be present if the information is available. + * + * @field companyName: name of company that manages the transportation of the dangerous goods. + * This component is optional; it shall be present if the information is available. + * + * @category Vehicle information + * @revision: V1.3.1 + */ +DangerousGoodsExtended ::= SEQUENCE { + dangerousGoodsType DangerousGoodsBasic, + unNumber INTEGER (0..9999), + elevatedTemperature BOOLEAN, + tunnelsRestricted BOOLEAN, + limitedQuantity BOOLEAN, + emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, + phoneNumber PhoneNumber OPTIONAL, + companyName UTF8String (SIZE (1..24)) OPTIONAL, + ... +} + +/** + * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. + * + * It includes the following components: + * + * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. + * + * @field deltaLongitude: A delta longitude offset with regards to the longitude value of the reference position. + * + * @field deltaAltitude: A delta altitude offset with regards to the altitude value of the reference position. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +DeltaReferencePosition ::= SEQUENCE { + deltaLatitude DeltaLatitude, + deltaLongitude DeltaLongitude, + deltaAltitude DeltaAltitude +} + +/** + * This DF represents a portion of digital map, described using a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition + +/** + * + * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on a reference position which is defined outside of the context of this DF. + * + * It includes the following components: + * + * @field centerPoint: optional offset point which the ellipse is centred on with respect to the reference position. + * + * @field semiMajorAxisLength: half length of the major axis of the ellipse. + * + * @field semiMinorAxisLength: half length of the minor axis of the ellipse. + * + * @field orientation: the optional orientation of the major axis of the ellipse in the WGS84 coordinate system. + * + * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ + +EllipticalShape ::= SEQUENCE { + centerPoint CartesianPosition3d OPTIONAL, + semiMajorAxisLength StandardLength12b, + semiMinorAxisLength StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL, + ... +} + +/** + * + * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * The following options are available: + * + * @field euVehicleCategoryL: indicates a vehicle in the L category. + * + * @field euVehicleCategoryM: indicates a vehicle in the M category. + * + * @field euVehicleCategoryN: indicates a vehicle in the N category. + * + * @field euVehicleCategoryO: indicates a vehicle in the O category. + * + * @field euVehicleCategoryT: indicates a vehicle in the T category. + * + * @field euVehicleCategoryG: indicates a vehicle in the G category. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +EuVehicleCategoryCode ::= CHOICE { + euVehicleCategoryL EuVehicleCategoryL, + euVehicleCategoryM EuVehicleCategoryM, + euVehicleCategoryN EuVehicleCategoryN, + euVehicleCategoryO EuVehicleCategoryO, + euVehicleCategoryT NULL, + euVehicleCategoryG NULL + } + +/** + * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime + * or do not contain the COMPONENT eventDeltaTime. + * + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @revision: created in V2.1.1 based on EventHistory + */ +EventZone::= EventHistory + ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | + (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) + +/** + * The DF consists of a list of @ref EventPoint. + * + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref EventZone instead. + * @revision: Generalized the semantics in V2.1.1 + */ +EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint + + +/** + * This DF provides information related to an event at a defined position. + * + * It includes the following components: + * + * @field eventPosition: offset position of a detected event point to a defined position. + * + * @field eventDeltaTime: optional time travelled by the detecting ITS-S since the previous detected event point. + * + * @field informationQuality: Information quality of the detection for this event point. + * + * @category: GeoReference information, Traffic information + * @revision: generalized the semantics in V2.1.1 + */ +EventPoint ::= SEQUENCE { + eventPosition DeltaReferencePosition, + eventDeltaTime PathDeltaTime OPTIONAL, + informationQuality InformationQuality +} + +/** + * This DF represents the status of the exterior light switches of a traffic participant. + * + * It includes the following components: + * + * @field vehicular: represents the status of the exterior light switches of a road vehicle. + * + * @field vruSpecific: represents the status of the exterior light switches of a VRU. + * + * @category: VRU information + * @revision: created in V2.1.1 + */ +ExteriorLightsExtended ::= SEQUENCE { + vehicular ExteriorLights, + vruSpecific VruSpecificExteriorLights, + ... +} + + +/** + * This DF indicates a transversal position in relation to the different lanes of the road. + * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where V-ITS-S would normally not be present. + * + * The following options are available: + * + * @field trafficLanePosition: a position on a traffic lane. + * + * @field nonTrafficLanePosition: a position on a lane which is not a traffic lane. + * + * @field trafficIslandPosition: a position on a traffic island + * + * @field mapPosition: a position on a lane identified in a MAPEM. + * + * @category: Road Topology information + * @revision: created in V2.1.1 + */ +GeneralizedLanePosition::= CHOICE { + trafficLanePosition LanePosition, + nonTrafficLanePosition LanePositionAndType, + trafficIslandPosition TrafficIslandPosition, + mapPosition MapPosition, + ... +} + +/** + * This DF represents the Heading in a WGS84 co-ordinates system. + * + * It includes the following components: + * + * @field headingValue: the heading value. + * + * @field headingConfidence: the accuracy of the reported heading value with a predefined confidence level. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84Angle instead. + * @category: Kinematics Information + * @revision: V1.3.1 + */ +Heading ::= SEQUENCE { + headingValue HeadingValue, + headingConfidence HeadingConfidence +} + + +/** + * This DF provides information associated to heading change indicators such as a change of direction. + * + * It includes the following components: + * + * @field direction: the direction of heading change value. + * + * @field actionDeltaTime: the period over which a direction change action is performed. + * + * @category: Kinematics Information + * @revision: created in V2.1.1 + */ +HeadingChangeIndication ::= SEQUENCE { + direction TurningDirection, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents a frequency channel + * + * It includes the following components: + * + * @field centreFrequency: the centre frequency of the channel + * @unit: 10exp+2 Hz (where exp is exponent) + * + * @field channelWidth: width of the channel + * @unit: 10exp Hz (where exp is exponent) + * + * @field exponent of the power of 10 + * @unit: N/A + * + * @category: Communication information + * @revision: created in V2.1.1 +*/ +InterferenceManagementChannel ::= SEQUENCE { + centreFrequency INTEGER (1 .. 99999), + channelWidth INTEGER (0 .. 9999), + exponent INTEGER (0 .. 15) +} + +/** + * + * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. + * + * It includes the following components: + * + * @field zoneDefinition: contains the geographical definition of the zone. + * + * @field managementInfo: contains interference management information applicable in the zone defined in the component zoneDefinition. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZone ::= SEQUENCE { + zoneDefinition InterferenceManagementZoneDefinition, + managementInfo InterferenceManagementInfo +} + +/** + * This DF represents the geographical definition of the zone where band sharing occurs. + * + * It includes the following components: + * + * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneRadius: optional radius of the interference management zone in metres. + * + * @field interferenceManagementZoneID: optional identification of the interference management zone. + * + * @field interferenceManagementZoneShape: shape of the interference management zone. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZoneDefinition::= SEQUENCE{ + interferenceManagementZoneLatitude Latitude, + interferenceManagementZoneLongitude Longitude, + interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, + interferenceManagementZoneID ProtectedZoneID OPTIONAL, + interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, + ... +} + +/** + * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. + * + * @category: Communication information. + * @revision: created in V2.1.1 + */ +InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel + + +/** + * This DF contains interference management information for one affected frequency channel. + * + * It includes the following components: + * + * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management + * + * @field interferenceManagementZoneType: type of the interference management zone. + * + * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. + * In the case where no mitigation should be applied by the ITS-S, this is indicated by the field interferenceManagementMitigationType being absent. + * + * @field expiryTime: 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 + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementInfoPerChannel ::= SEQUENCE { + interferenceManagementChannel InterferenceManagementChannel, + interferenceManagementZoneType InterferenceManagementZoneType, + interferenceManagementMitigationType MitigationForTechnologies OPTIONAL, + expiryTime TimestampIts OPTIONAL, + ... +} + +/** + * 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. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone + +/** + * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.17]. + * + * It includes the following components: + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the intersection + * + * @note: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique. + * @category: Road topology information + * @revision: created in V2.1.1 + */ +IntersectionReferenceId ::= SEQUENCE { + region Identifier2B OPTIONAL, + id Identifier2B +} + +/** + * This DF consists of a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition + +/** + * 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: + * + * @field protocolVersion: version of the ITS message. + * + * @field messageId: type of the ITS message. + * + * @field stationId: the identifier of the ITS-S that generates the ITS message in question. + * + * @category: Communication information + * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. + */ +ItsPduHeader ::= SEQUENCE { + protocolVersion INTEGER (0..255), + messageId MessageId, + stationId StationID +} + +/** + * This DF indicates a transversal position in resolution of lanes and the associated lane type. + * + * It includes the following components: + * + * @field transversalPosition: the transversal position. + * + * @field laneType: the type of the lane identified in the component transversalPosition. + * + * @category GeoReference information + * @revision: Created in V2.1.1 + */ +LanePositionAndType::= SEQUENCE { + transversalPosition LanePosition, + laneType LaneType, + ... +} + +/** + * This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. + * + * It includes the following components: + * + * @field lateralAccelerationValue: lateral acceleration value at a point in time. + * + * @field lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @category Vehicle information + * @revision: V1.3.1 + */ +LateralAcceleration ::= SEQUENCE { + lateralAccelerationValue LateralAccelerationValue, + lateralAccelerationConfidence AccelerationConfidence +} + +/** + * This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. + * + * It includes the following components: + * + * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. + + * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @category: Vehicle information + * @revision: V1.3.1 + */ +LongitudinalAcceleration ::= SEQUENCE { + longitudinalAccelerationValue LongitudinalAccelerationValue, + longitudinalAccelerationConfidence AccelerationConfidence +} + +/** + * This DF represents the estimated position along the longitudinal length of a particular lane. + * + * It includes the following components: + * + * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. + * + * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. + * + * @category: Road topology information + * @revision: created in V2.1.1 + */ +LongitudinalLanePosition ::= SEQUENCE { + longitudinalLanePositionValue LongitudinalLanePositionValue, + longitudinalLanePositionConfidence LongitudinalLanePositionConfidence +} + +/** + * 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 @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. + * + * @category: Vehicle information + * @revision: V1.3.1 +*/ +LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn + +/** + * 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: + * + * @field mapReference: optionally identifies the MAPEM containing the topology information. + * It is absent if the MAPEM topology is known from the context. + * + * @field laneId: identifies the lane in the road segment or intersection topology on which the position is located. + * + * @field connectionId: identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the + * conflict area of an intersection which connects e.g an ingress with an egress lane. + * + * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. + * + * @category: Road topology information + * @revision: Created in V2.1.1 + */ +MapPosition ::= SEQUENCE { + mapReference MapReference OPTIONAL, + laneId Identifier1B, + longitudinalLanePosition LongitudinalLanePosition OPTIONAL, + connectionId Identifier1B, + ... +} + +/** + * 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: + * + * @field roadsegment: option that identifies the description of a road segment contained in a MAPEM. + * + * @field intersection: option that identifies the description of an intersection contained in a MAPEM. + * + * @category: Road topology information + * @revision: Created in V2.1.1 + */ + +MapReference::= CHOICE { + roadsegment RoadSegmentReferenceId, + intersection IntersectionReferenceId + } + +/** + * This DF provides information about a message with respect to the segmentation process at the sender. + * + * It includes the following components: + * + * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. + * + * @field thisMsgNo: indicates the position of the message within of the total set of messages. + +*/ +MessageSegmentationInfo ::= SEQUENCE { + totalMsgNo CardinalNumber1B, + thisMsgNo OrdinalNumber1B + } + +/** + * + * This DF represents a list of @ref MitigationPerTechnologyClass. + * @category: Communication information + * @revision: Created in V2.1.1 +*/ +MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF 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: + * + * @field accessTechnologyClass: channel access technology to which this mitigation is applied. + * + * @field lowDutyCycle: duty cycle limit. + * @unit: 0.01% steps + * + * @field powerReduction: the delta value of power to be reduced. + * @unit: dB + * + * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.25]. + * @unit: ms + * + * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.26]. + * @unit: ms + * + * @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. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +MitigationPerTechnologyClass ::= SEQUENCE { + accessTechnologyClass AccessTechnologyClass, + lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, + powerReduction INTEGER (0 .. 30) OPTIONAL, + dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, + dmcTonLimit INTEGER (0 .. 20) OPTIONAL, + ... +} + +/** + * This DF indicates both the class and associated subclass that best describes an object. + * + * The following options are available: + * + * @field vehicleSubClass: the object is a road vehicle. + * + * @field vruSubClass: the object is a VRU. + * + * @field groupSubClass: the object is a VRU group or cluster. + * + * @field otherSubClass: the object is of a different types as the above. + * + * @category: Sensing information + * @revision: Created in V2.1.1 + */ +ObjectClass ::= CHOICE { + vehicleSubClass VehicleSubClass, + vruSubClass VruProfileAndSubprofile, + groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), + otherSubClass OtherSubClass, + ... +} + +/** + * This DF consist of a list of object classes. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence + +/** + * This DF represents the classification of a detected object together with a confidence indication. + * + * It includes the following components: + * + * @field objectClass: the class of the object. + * + * @field ObjectClassConfidence: the associated confidence information. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectClassWithConfidence ::= SEQUENCE { + objectClass ObjectClass, + confidence ConfidenceLevel +} +/** + * This DF represents a dimension of an object together with a confidence indication. + * + * It includes the following components: + * + * @field ObjectDimensionValue: the object dimension value which can be estimated as the mean of the current distribution. + * + * @field ObjectDimensionValue: the associated confidence information. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimension ::= SEQUENCE { + value ObjectDimensionValue, + confidence ObjectDimensionValue +} + +/** + * This DF that represents a path with a set of path points. + * It may contain up to `40` @ref 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. + * + * @category: GeoReference information, Vehicle information + * @revision: created in V2.1.1 based on PathHistory + */ +Path::= SEQUENCE (SIZE(0..40)) OF PathPoint + +/** + * This DF that represents a path history with a set of path points. + * It may contain up to `40` @ref 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. + * + * @category: GeoReference information, Vehicle information + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead + * @revision: semantics updated in V2.1.1 + */ +PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint + +/** + * This DF that represents a predicted path with a set of path points. + * It may contain up to `15` @ref 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. + * + * @category: GeoReference information + * @revision: created in V2.1.1 based on PathHistory + */ +PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted + +/** + * This DF defines an offset waypoint position within a path. + * + * It includes the following components: + * + * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. + * + * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. + * + * @category GeoReference information + * @revision: semantics updated in V2.1.1 + */ +PathPoint ::= SEQUENCE { + pathPosition DeltaReferencePosition, + pathDeltaTime PathDeltaTime OPTIONAL +} + +/** + * This DF defines a predicted offset waypoint position within a path. + * + * It includes the following components: + * + * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. + * + * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. + * + * @field horizontalPositionConfidence: the accuracy of the horizontal geographical position. + * + * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. + * + * @field altitudeConfidence: the accuracy of the altitude value of the geographical position. + * + * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. + * + * @category GeoReference information + * @revision: semantics updated in V2.1.1 + */ + +PathPointPredicted::= SEQUENCE { + deltaLatitude DeltaLatitude, + deltaLongitude DeltaLongitude, + horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, + deltaAltitude DeltaAltitude DEFAULT unavailable, + altitudeConfidence AltitudeConfidence DEFAULT unavailable, + pathDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * 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: + * + * @field objectID: optional identifier assigned to a detected object. + * + * @field timeOfMeasurement: 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. + * + * @field xCoordinate: 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. + * + * @field yCoordinate: 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. + * + * @field zCoordinate: 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. + * + * @field velocityMagnitude: 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 + * + * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * + * @field xVelocity: velocity component of the detected object in x-direction at the time of measurement, with the associated variance. + * + * @field yVelocity: velocity component of the detected object in y-direction at the time of measurement, with the associated variance. + * + * @field zVelocity: optional velocity component of the detected object in z-direction at the time of measurement, with the associated variance. + * + * @field accelerationMagnitude: 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. + * + * @field accelerationDirection: polar angle of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * + * @field xAcceleration: optional Acceleration of the detected object in x-direction at the time of measurement, with the associated variance. + * + * @field yAcceleration: optional Acceleration of the detected object in y-direction at the time of measurement, with the associated variance. + * + * @field zAcceleration: optional Acceleration of the detected object in z-direction at the time of measurement, with the associated variance. + * + * @field rollAngle: 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. + * + * @field pitchAngle: 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. + * + * @field yawAngle: 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. + * + * @field rollSpeed: 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. + * + * @field pitchSpeed: 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. + * + * @field yawSpeed: 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. + * + * @field rollAcceleration: 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. + * + * @field pitchAcceleration: 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. + * + * @field yawAcceleration: 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. + * + * @field lowerTriangularCorrelationMatrixColumns: 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. + * + * @field planarObjectDimension1: 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. + * + * @field planarObjectDimension2: 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. + * + * @field verticalObjectDimension: optional vertical dimension of object as provided by the sensor or object model. + * + * @field objectRefPoint: 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. + * + * @field objectAge: 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. + * + * @field objectConfidence: 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. + * + * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. + * + * @field dynamicStatus: optional dynamic capabilities of a detected object. + * + * @field classification: optional classification of the described object + * + * @field matchedPosition: optional map-matched position of an object. + * + * @category Sensing information + * @revision: created in V2.1.1 + */ + +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, + ... +} + +/** + * This DF represents the shape of a polygonal area or of a right prism. + * + * It includes the following components: + * + * @field polygon: the polygonal area and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * + * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. + * + * @category GeoReference information + * @revision: created in V2.1.1 + * + */ +PolygonalShape ::= SEQUENCE { + polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), + height StandardLength12b OPTIONAL, + ... +} + +/** + * 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: + * + * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point + * and major axis point of the position accuracy ellipse. + * + * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point + * and minor axis point of the position accuracy ellipse. + * + * @field semiMajorOrientation: orientation direction of the ellipse major axis of the position accuracy + * ellipse with regards to the WGS84 north. + * + * + * @category GeoReference information + * @revision: V1.3.1 + */ +PosConfidenceEllipse ::= SEQUENCE { + semiMajorConfidence SemiAxisLength, + semiMinorConfidence SemiAxisLength, + semiMajorOrientation Wgs84AngleValue +} + +/** + * This DF contains a list of distances @ref 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. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar + +/** + * This DF describes a zone of protection inside which the ITSG5 communication should be restricted. + * + * It includes the following components: + * + * @field protectedZoneType: type of the protected zone. + * + * @field expiryTime: optional time at which the validity of the protected communication zone will expire. + * + * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. + * + * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. + * + * @field protectedZoneRadius: optional radius of the protected communication zone in metres. + * + * @field protectedZoneID: the optional ID of the protected communication zone. + * + * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedCommunicationZone ::= SEQUENCE { + protectedZoneType ProtectedZoneType, + expiryTime TimestampIts OPTIONAL, + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + protectedZoneRadius ProtectedZoneRadius OPTIONAL, + protectedZoneID ProtectedZoneID OPTIONAL, + ... +} + +/** + * This DF consist of a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). + * + * It may provide up to 16 protected communication zones information. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone + +/** + * 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). + * + * @field ptActivationType: type of activation. + * + * @field ptActicationData: data of activation. + * + * 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) + * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, + * destination, priority, etc. + * + * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: + * - 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. + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivation ::= SEQUENCE { + ptActivationType PtActivationType, + ptActivationData PtActivationData +} + +/** + * This DF describes a radial shape. 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). + * + * It includes the following components: + * + * @field sensorPositionOffset: the optional offset opoint. + * + * @field range: the radial range of the sensor from the reference point or sensor point offset. + * + * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the + * stationary sensor's horizontal opening angle in positive angular direction with respect to the + * WGS84 coordinate system. + * + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary + * sensor's horizontal opening angle in positive angular direction with respect to the WGS84 coordinate + * system. + * + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's + * 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * 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 using the DE CartesianAngleValue. + * + * @category Sensing information + * @revision: created in V2.1.1 +*/ +RadialShape ::= SEQUENCE { + offsetPoint CartesianPosition3d OPTIONAL, + range StandardLength12b, + stationaryHorizontalOpeningAngleStart Wgs84AngleValue, + stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, + ... +} + + +/** + * This DF describes a list of radial shapes. + * + * It includes the following components: + + * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). + * + * @field xCoordinate: the x-coordinate of the offset point. + * + * @field yCoordinate: the y-coordinate of the offset point. + * + * @field zCoordinate: the optional z-coordinate of the offset point. + * + * @field radialShapesList: the list of radial shape details. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ +RadialShapes ::= SEQUENCE { + refPointId Identifier1B, + xCoordinate CartesianCoordinateSmall, -- tbd: is this along the positive or the negative x axis? + yCoordinate CartesianCoordinateSmall, + zCoordinate CartesianCoordinateSmall OPTIONAL, + radialShapesList RadialShapesList, + ... +} + +/** + * The DF contains a list of @ref RadialShapeDetails. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ + +RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF 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). + * + * It includes the following components: + * + * @field range: the radial range of the sensor from the reference point or sensor point offset. + * + * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the + * stationary sensor's horizontal opening angle in positive angular direction. + * + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary + * sensor's horizontal opening angle in positive angular direction. + * + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's + * 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * 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. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ +RadialShapeDetails ::= SEQUENCE { + range StandardLength12b, + horizontalOpeningAngleStart CartesianAngleValue, + horizontalOpeningAngleEnd CartesianAngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, + ... +} + +/** + * 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. + * + * It includes the following components: + * + * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field semiLength: represents half the length of the rectangle. + * + * @field semiBreadth: represents half the breadth of the rectangle. + * + * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. + * + * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. + * + * @category GeoReference information + * @revision: created in V2.1.1 + */ +RectangularShape ::= SEQUENCE { + centerPoint CartesianPosition3d OPTIONAL, + semiLength StandardLength12b, + semiBreadth StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL +} + +/** + * A position within a geographic coordinate system together with a confidence indication. + * + * It includes the following components: + * + * @field latitude: the latitude of the geographical point. + * + * @field longitude: the longitude of the geographical point. + * + * @field positionConfidenceEllipse: the accuracy of the geographical position. + * + * @field altitude: the altitude and an altitude accuracy of the geographical point. + * + * @category: GeoReference information + * @revision: description updated in V2.1.1 + */ +ReferencePosition ::= SEQUENCE { + latitude Latitude, + longitude Longitude, + positionConfidenceEllipse PosConfidenceEllipse, + altitude Altitude +} + +/** + * This DF consist of a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. + * + * @category: Infrastructure information, Traffic information + * @revision: V1.3.1 + */ +RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType + +/** + * This DF represents a unique id for a road segment + * + * It includes the following components: + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the road segment + * + * @note: when the RoadRegulatorID is present, the RoadSegmentReferenceID is guaranteed to be globally unique. + * @category: GeoReference information + * @revision: created in V2.1.1 + */ +RoadSegmentReferenceId ::= SEQUENCE { + region Identifier2B OPTIONAL, + id Identifier2B +} + +/** + * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). + * + * It includes the following components: + * + * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. + * + * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. + * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant inidcated in the component subjectStation is safe. + * + * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed + * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 + */ +SafeDistanceIndication ::= SEQUENCE { + subjectStation StationID OPTIONAL, + safeDistanceIndicator SafeDistanceIndicator, + timeToCollision DeltaTimeTenthOfSecond OPTIONAL, + ... +} + +/** + * This DF represents a list of maximum `16` @ref CartesianPosition3d. + * + * @category: GeoReference information + * @revision: created in V2.1.1 + */ +SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d + +/** + * The DF contains a list of identifiers. + * + * @category: Basic information + * @revision: created in V2.1.1 +*/ +SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B + +/** + * The DF contains a list of DF SafeDistanceIndication. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication + +/** + * The DF contains a list of DF TrajectoryInterceptionIndication. + * + * @category: Traffic information, Kinematics information + * @revision: created in V2.1.1 +*/ +SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication + +/** + * This DF provides the definition of a geographical area or volume, based on different options. + * + * It includes the following components: + * + * @field rectangle: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. + * + * @field circle: definition of an area of circular shape or a right circular cylinder. + * + * @field polygon: definition of an area of polygonal shape or a right prism. + * + * @field ellipse: definition of an area of elliptical shape or a right elliptical cylinder. + * + * @field radial: definition of a radial shape. + * + * @field radialShapes: definition of list of radial shapes. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ + +Shape::= CHOICE { + rectangle RectangularShape, + circle CircularShape, + polygon PolygonalShape, + ellipse EllipticalShape, + radial RadialShape, + radialShapes RadialShapes, + ... +} + +/** + * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * + * It includes the following components: + * + * @field speedValue: the speed value. + * + * @field speedConfidence: the accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V1.3.1 + */ +Speed ::= SEQUENCE { + speedValue SpeedValue, + speedConfidence SpeedConfidence +} + +/** + * This DF describes the extended speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * + * It includes the following components: + * + * @field speedValue: the extended speed value. + * + * @field speedConfidence: the accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V2.1.1 + */ +SpeedExtended ::= SEQUENCE { + speedValue SpeedValueExtended, + speedConfidence SpeedConfidence +} + +/** + * This DF provides the indication of change in stability. + * + * It includes the following components: + * + * @field lossProbability: the probability of stability loss. + * + * @field actionDeltaTime: accuracy of the reported speed value. + * + * @category: Kinematics information + * @revision: V2.1.1 + */ +StabilityChangeIndication ::= SEQUENCE { + lossProbability StabilityLossProbability, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents the steering wheel angle of the vehicle at certain point in time. + * + * It includes the following components: + * + * @field steeringWheelAngleValue: steering wheel angle value. + * + * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +SteeringWheelAngle ::= SEQUENCE { + steeringWheelAngleValue SteeringWheelAngleValue, + steeringWheelAngleConfidence SteeringWheelAngleConfidence +} + +/** + * This DF represents one or more paths using @ref PathHistory. + * + * @category: GeoReference information + * @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory + */ +Traces ::= SEQUENCE SIZE(1..7) OF Path + +/** + * Ths DF represents the a position on a traffic island between two lanes. + * + * It includes the following components: + * + * @field oneSide: represents one lane. + * + * @field otherSide: represents the other lane. + * + * @category: Road Topology information + * @revision: Created in V2.1.1 + */ +TrafficIslandPosition ::= SEQUENCE { + oneSide LanePositionAndType, + otherSide LanePositionAndType, + ... +} + +/** + * This DF provides detailed information about an attached trailer. + * + * It includes the following components: + * + * @field refPointId: identifier of the reference point of the trailer. + * + * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the + * vehicle Reference Point. + * + * @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer + * is not overhanging to the front with respect to the trailer reference point. + * + * @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. + * + * @field trailerWidth: optional width of the trailer. + * + * @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x + * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of + * the segment having as end points the reference point of the trailer and the reference point of + * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane + * xy, described in the local Cartesian coordinate system of the preceding reference point. The + * angle is measured with negative values considering the trailer orientation turning clockwise + * starting from the segment direction. The angle value accuracy is provided with the + * confidence level of 95 %. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +TrailerData ::= SEQUENCE { --tbd check descriptions above + refPointId Identifier1B, + hitchPointOffset StandardLength1B, -- tbd is the value unavailable needed? + frontOverhang StandardLength1B, + rearOverhang StandardLength1B, + trailerWidth VehicleWidth, + hitchAngle CartesianAngle, + ... +} + +/** + * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. + * + * It includes the following components: + * + * @field subjectStation: indicates the subject station. + * + * @field trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. + * + * @field trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionIndication ::= SEQUENCE { + subjectStation StationID OPTIONAL, + trajectoryInterceptionProbability TrajectoryInterceptionProbability, + trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, + ... + } + +/** + * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +VarLengthNumber::=CHOICE{ + content [0] INTEGER(0..127), -- one octet length + extension [1] Ext1 + } +Ext1::=CHOICE{ + content [0] INTEGER(128..16511), -- two octets length + extension [1] Ext2 +} +Ext2::=CHOICE{ + content [0] INTEGER(16512..2113663), -- three octets length + extension [1] Ext3 + } +Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length + +/** + * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. + * + * It includes the following components: + * + * @field verticalAccelerationValue: vertical acceleration value at a point in time. + * + * @field verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. + * + * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead + * @category Vehicle information + * @revision: V1.3.1 + */ +VerticalAcceleration ::= SEQUENCE { + verticalAccelerationValue VerticalAccelerationValue, + verticalAccelerationConfidence AccelerationConfidence +} + +/** + * This DF provides information related to the identification of a vehicle. + * + * It includes the following components: + * + * @field wMInumber: World Manufacturer Identifier (WMI) code. + * + * @field vDS: Vehicle Descriptor Section (VDS). + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VehicleIdentification ::= SEQUENCE { + wMInumber WMInumber OPTIONAL, + vDS VDS OPTIONAL, + ... +} + +/** + * This DF represents the length of vehicle and accuracy indication information. + * + * It includes the following components: + * + * @field vehicleLengthValue: length of vehicle. + * + * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VehicleLength ::= SEQUENCE { + vehicleLengthValue VehicleLengthValue, + vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication +} + +/** + * This DF provides information about a VRU cluster. + * + * It includes the following components: + * + * @field clusterId: optional identifier of a VRU cluster . + * + * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. + * + * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. + * + * @field clusterProfiles: optionally identifies all the VRU profile types that are believed to be within the cluster. + * if this component is absent it means that the information is unavailable. + * + * @category: VRU information + * @revision: Created in V2.1.1 +*/ +VruClusterInformation ::= SEQUENCE { + clusterId ClusterId OPTIONAL, + clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, + clusterCardinalitySize ClusterCardinalitySize, + clusterProfiles VruClusterProfiles OPTIONAL, + ... +} + +/** + * This DF indicates the profile of a VRU including sub-profile information + * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.22]: + * + * @field pedestrian: VRU Profile 1 - Pedestrian. + * + * @field bicyclistAndLightVruVehicle: VRU Profile 2 - Bicyclist. + * + * @field motorcyclist: VRU Profile 3 - Motorcyclist. + * + * @field animal: VRU Profile 4 - Animals. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruProfileAndSubprofile ::= CHOICE { + pedestrian VruSubProfilePedestrian, + bicyclistAndLightVruVehicle VruSubProfileBicyclist, + motorcylist VruSubProfileMotorcyclist, + animal VruSubProfileAnimal, + ... +} + +/** + * This DF represents an angular component along with a confidence in the WGS84 coordinate system. + * + * It includes the following components: + * + * @field value: the angle value which can be estimated as the mean of the current distribution. + * + * @field confidence: the accuracy associated to the provided value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +Wgs84Angle ::= SEQUENCE { + value Wgs84AngleValue, + confidence Wgs84AngleConfidence +} + + +/** + * This DF represents a yaw rate of vehicle at a point in time. + * + * It includes the following components: + * + * @field yawRateValue: yaw rate value at a point in time. + * + * @field yawRateConfidence: accuracy of reported yaw rate value. + * + * @category: Vehicle Information + * @revision: V1.3.1 + */ +YawRate::= SEQUENCE { + yawRateValue YawRateValue, + yawRateConfidence YawRateConfidence +} + +END -- GitLab From 22ffeb344880e003add7cd734bf2a00afba0a50a Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Mon, 13 Jun 2022 05:45:40 +0000 Subject: [PATCH 42/91] Replace ITS-Container.asn --- ITS-Container.asn | 79 ++++++++++++++++++++++++++++++++++------------- 1 file changed, 58 insertions(+), 21 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 6c28f54..ff66828 100644 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,5 +1,5 @@ -- Draft CDD ASN.1 module Release 2. --- Date: 10.06.2022 +-- Date: 02.06.2022 ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} @@ -495,7 +495,7 @@ BogiesCount ::= INTEGER{ * @category: Basic information * @revision: Created in V2.1.1 */ -CardinalNumber1B ::= INTEGER(0..255) +CardinalNumber1B ::= INTEGER(1..255) /** * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in @@ -611,7 +611,7 @@ CauseCodeType ::= INTEGER { impassability (5), adverseWeatherCondition-Adhesion (6), - aquaplaning (7), + aquaplannning (7), hazardousLocation-SurfaceCondition (9), hazardousLocation-ObstacleOnTheRoad (10), @@ -666,16 +666,16 @@ CartesianCoordinate::= INTEGER{ } (-32768..32767) /** - * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. + * This DF represents the value of a cartesian coordinate with a range of -1 327,67 to + 1 327,66 meters. * * @unit 0,01 m * @category: Basic information * @revision: Created in V2.1.1 */ -CartesianCoordinateLarge::= INTEGER{ - negativeOutOfRange (-131072), - positiveOutOfRange (131071) -} (-131072..131071) +CartesianCoordinateExtended::= INTEGER{ + negativeOutOfRange (-132768), + positiveOutOfRange (132767) +} (-132768..132767) /** * This DE represents the ID of a CEN DSRC tolling zone. @@ -1049,6 +1049,26 @@ DeltaLatitude ::= INTEGER { unavailable (131072) } (-131071..131072) + +/** + * This DE represents an offset latitude with regards to a defined latitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. + * - `0` for no latitudinal offset. + * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the north from the reference position. + * - `32767` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLatitudeSmall::= INTEGER { + unavailable (32767) +} (-32766..32767) + + /** * This DE represents an offset longitude with regards to a defined longitude value. * It may be used to describe a geographical point with regards to a specific reference geographical position. @@ -1067,6 +1087,24 @@ DeltaLongitude ::= INTEGER { unavailable (131072) } (-131071..131072) +/** + * This DE represents an offset longitude with regards to a defined longitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. + * - `0` for no longitudinal offset. + * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the east from the reference position. + * - `32767` when the information is unavailable. + * + * @unit: 0.1 microdegree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLongitudeSmall::= INTEGER { + unavailable (32767) +} (-32766..32767) + /** * This DE represents a difference in time with respect to a reference time. * @@ -1790,7 +1828,7 @@ LaneType::= INTEGER{ bus (8), taxi (9), hov (10), - hot (11), + hot (11), pedestrian (12), cycleLane (13), median (14), @@ -2630,7 +2668,7 @@ SensorType ::= INTEGER { pmd (7), inductionLoop (8), sphericalCamera (9), - uwb (10), + uwb (10), localAggregation (11), itsAggregation (12) } (0..15) @@ -3495,7 +3533,7 @@ VruDeviceUsage ::= ENUMERATED { * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. - * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + + - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3995,7 +4033,7 @@ CartesianAngularAcceleration ::= SEQUENCE { * @revision: Created in V2.1.1 */ CartesianCoordinateWithConfidence ::= SEQUENCE { - value CartesianCoordinateLarge, + value CartesianCoordinateExtended, confidence CoordinateConfidence } @@ -4059,7 +4097,7 @@ CauseCodeChoice::= CHOICE { reserved4 SubCauseCodeType, impassability SubCauseCodeType, adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, - aquaplaning SubCauseCodeType, + aquaplannning SubCauseCodeType, reserved8 SubCauseCodeType, hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, @@ -4242,7 +4280,7 @@ CenDsrcTollingZone ::= SEQUENCE { CircularShape ::= SEQUENCE { nodeCenterPoint CartesianPosition3d OPTIONAL, radius StandardLength12b, - height StandardLength12b OPTIONAL, + height StandardLength12b OPTIONAL, ... } @@ -4567,7 +4605,7 @@ ExteriorLightsExtended ::= SEQUENCE { * @revision: created in V2.1.1 */ GeneralizedLanePosition::= CHOICE { - trafficLanePosition LanePosition, + trafficLanePosition LanePosition, nonTrafficLanePosition LanePositionAndType, trafficIslandPosition TrafficIslandPosition, mapPosition MapPosition, @@ -5094,8 +5132,8 @@ PathPoint ::= SEQUENCE { */ PathPointPredicted::= SEQUENCE { - deltaLatitude DeltaLatitude, - deltaLongitude DeltaLongitude, + deltaLatitude DeltaLatitudeSmall, + deltaLongitude DeltaLongitudeSmall, horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, deltaAltitude DeltaAltitude DEFAULT unavailable, altitudeConfidence AltitudeConfidence DEFAULT unavailable, @@ -5626,7 +5664,7 @@ RoadSegmentReferenceId ::= SEQUENCE { SafeDistanceIndication ::= SEQUENCE { subjectStation StationID OPTIONAL, safeDistanceIndicator SafeDistanceIndicator, - timeToCollision DeltaTimeTenthOfSecond OPTIONAL, + timeToCollision DeltaTimeHundredthOfSecond OPTIONAL, ... } @@ -5936,8 +5974,7 @@ VehicleLength ::= SEQUENCE { * * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. * - * @field clusterProfiles: optionally identifies all the VRU profile types that are believed to be within the cluster. - * if this component is absent it means that the information is unavailable. + * @field clusterProfiles: identifies all the VRU profile types that are believed to be within the cluster . * * @category: VRU information * @revision: Created in V2.1.1 @@ -5946,7 +5983,7 @@ VruClusterInformation ::= SEQUENCE { clusterId ClusterId OPTIONAL, clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, clusterCardinalitySize ClusterCardinalitySize, - clusterProfiles VruClusterProfiles OPTIONAL, + clusterProfiles VruClusterProfiles, ... } -- GitLab From 697dd0ebd242e1a6a78340738b71255130728248 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Tue, 14 Jun 2022 07:19:30 +0000 Subject: [PATCH 43/91] Replace ITS-Container.asn --- ITS-Container.asn | 102 ++++++++++++++++------------------------------ 1 file changed, 34 insertions(+), 68 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index ff66828..836b28b 100644 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,5 +1,5 @@ -- Draft CDD ASN.1 module Release 2. --- Date: 02.06.2022 +-- Date: 13.06.2022 ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} @@ -495,7 +495,7 @@ BogiesCount ::= INTEGER{ * @category: Basic information * @revision: Created in V2.1.1 */ -CardinalNumber1B ::= INTEGER(1..255) +CardinalNumber1B ::= INTEGER(0..255) /** * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in @@ -611,7 +611,7 @@ CauseCodeType ::= INTEGER { impassability (5), adverseWeatherCondition-Adhesion (6), - aquaplannning (7), + aquaplaning (7), hazardousLocation-SurfaceCondition (9), hazardousLocation-ObstacleOnTheRoad (10), @@ -666,16 +666,16 @@ CartesianCoordinate::= INTEGER{ } (-32768..32767) /** - * This DF represents the value of a cartesian coordinate with a range of -1 327,67 to + 1 327,66 meters. + * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. * * @unit 0,01 m * @category: Basic information * @revision: Created in V2.1.1 */ -CartesianCoordinateExtended::= INTEGER{ - negativeOutOfRange (-132768), - positiveOutOfRange (132767) -} (-132768..132767) +CartesianCoordinateLarge::= INTEGER{ + negativeOutOfRange (-131072), + positiveOutOfRange (131071) +} (-131072..131071) /** * This DE represents the ID of a CEN DSRC tolling zone. @@ -1049,26 +1049,6 @@ DeltaLatitude ::= INTEGER { unavailable (131072) } (-131071..131072) - -/** - * This DE represents an offset latitude with regards to a defined latitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. - * - `0` for no latitudinal offset. - * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the north from the reference position. - * - `32767` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLatitudeSmall::= INTEGER { - unavailable (32767) -} (-32766..32767) - - /** * This DE represents an offset longitude with regards to a defined longitude value. * It may be used to describe a geographical point with regards to a specific reference geographical position. @@ -1087,24 +1067,6 @@ DeltaLongitude ::= INTEGER { unavailable (131072) } (-131071..131072) -/** - * This DE represents an offset longitude with regards to a defined longitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -32766` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. - * - `0` for no longitudinal offset. - * - `n` (`n > 0` and `n < 32767`) for offset n x 0,1 microdegrees towards the east from the reference position. - * - `32767` when the information is unavailable. - * - * @unit: 0.1 microdegree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLongitudeSmall::= INTEGER { - unavailable (32767) -} (-32766..32767) - /** * This DE represents a difference in time with respect to a reference time. * @@ -1828,7 +1790,7 @@ LaneType::= INTEGER{ bus (8), taxi (9), hov (10), - hot (11), + hot (11), pedestrian (12), cycleLane (13), median (14), @@ -1909,7 +1871,7 @@ LightBarSirenInUse ::= BIT STRING { } (SIZE(2)) /** - * This DE represents the absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees + * This DE represents the absolute geographical longitude in a WGS84 coordinate system, providing a range of 180 degrees * to the east or to the west of the prime meridian. * * The value shall be set to: @@ -2180,7 +2142,7 @@ OpeningDaysHours ::= UTF8String * @category: Basic information * @revision: Created in V2.1.1 */ -OrdinalNumber1B ::= INTEGER(1..255) +OrdinalNumber1B ::= INTEGER(1..255) -- tbd shall it start from 0 or from 1 ? /** * This DE indicates the subclass of a detected object for object class "otherSubclass". @@ -2651,8 +2613,10 @@ SemiAxisLength ::= INTEGER{ * - `8` inductionLoop : in case the sensor is an induction loop. * - `9` sphericalCamera : in case the sensor is a spherical camera. * - `10` uwb : in case the sensor is ultra wide band. - * - `11` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. - * - `12` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. + * - `11` acoustic : in case the sensor is acoustic. + * - `12` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. + * - `13` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. + * - 14-15 reserved for future usage. * * @category: Sensing Information * @revision: created in V2.1.1 @@ -2668,9 +2632,10 @@ SensorType ::= INTEGER { pmd (7), inductionLoop (8), sphericalCamera (9), - uwb (10), - localAggregation (11), - itsAggregation (12) + uwb (10), + acoustic (11), + localAggregation (12), + itsAggregation (13) } (0..15) /** @@ -3004,7 +2969,7 @@ StationType ::= INTEGER { lightTruck (7), heavyTruck (8), trailer (9), - specialVehicles (10), + specialVehicle (10), tram (11), lightVruVehicle (12), animal (13), @@ -3533,7 +3498,7 @@ VruDeviceUsage ::= ENUMERATED { * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. - + - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3935,7 +3900,7 @@ ActionID ::= SEQUENCE { ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID /** - * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. + * This DF provides the altitude and accuracy of an altitude information in a WGS84 coordinate system. * * It includes the following components: * @@ -4033,7 +3998,7 @@ CartesianAngularAcceleration ::= SEQUENCE { * @revision: Created in V2.1.1 */ CartesianCoordinateWithConfidence ::= SEQUENCE { - value CartesianCoordinateExtended, + value CartesianCoordinateLarge, confidence CoordinateConfidence } @@ -4097,7 +4062,7 @@ CauseCodeChoice::= CHOICE { reserved4 SubCauseCodeType, impassability SubCauseCodeType, adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, - aquaplannning SubCauseCodeType, + aquaplaning SubCauseCodeType, reserved8 SubCauseCodeType, hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, @@ -4280,7 +4245,7 @@ CenDsrcTollingZone ::= SEQUENCE { CircularShape ::= SEQUENCE { nodeCenterPoint CartesianPosition3d OPTIONAL, radius StandardLength12b, - height StandardLength12b OPTIONAL, + height StandardLength12b OPTIONAL, ... } @@ -4605,7 +4570,7 @@ ExteriorLightsExtended ::= SEQUENCE { * @revision: created in V2.1.1 */ GeneralizedLanePosition::= CHOICE { - trafficLanePosition LanePosition, + trafficLanePosition LanePosition, nonTrafficLanePosition LanePositionAndType, trafficIslandPosition TrafficIslandPosition, mapPosition MapPosition, @@ -4945,7 +4910,7 @@ MapReference::= CHOICE { */ MessageSegmentationInfo ::= SEQUENCE { - totalMsgNo CardinalNumber1B, + totalMsgNo CardinalNumber1B (1..255), thisMsgNo OrdinalNumber1B } @@ -5053,7 +5018,7 @@ ObjectClassWithConfidence ::= SEQUENCE { */ ObjectDimension ::= SEQUENCE { value ObjectDimensionValue, - confidence ObjectDimensionValue + confidence ObjectDimensionConfidence } /** @@ -5132,8 +5097,8 @@ PathPoint ::= SEQUENCE { */ PathPointPredicted::= SEQUENCE { - deltaLatitude DeltaLatitudeSmall, - deltaLongitude DeltaLongitudeSmall, + deltaLatitude DeltaLatitude, + deltaLongitude DeltaLongitude, horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, deltaAltitude DeltaAltitude DEFAULT unavailable, altitudeConfidence AltitudeConfidence DEFAULT unavailable, @@ -5664,7 +5629,7 @@ RoadSegmentReferenceId ::= SEQUENCE { SafeDistanceIndication ::= SEQUENCE { subjectStation StationID OPTIONAL, safeDistanceIndicator SafeDistanceIndicator, - timeToCollision DeltaTimeHundredthOfSecond OPTIONAL, + timeToCollision DeltaTimeTenthOfSecond OPTIONAL, ... } @@ -5974,7 +5939,8 @@ VehicleLength ::= SEQUENCE { * * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. * - * @field clusterProfiles: identifies all the VRU profile types that are believed to be within the cluster . + * @field clusterProfiles: optionally identifies all the VRU profile types that are believed to be within the cluster. + * if this component is absent it means that the information is unavailable. * * @category: VRU information * @revision: Created in V2.1.1 @@ -5983,7 +5949,7 @@ VruClusterInformation ::= SEQUENCE { clusterId ClusterId OPTIONAL, clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, clusterCardinalitySize ClusterCardinalitySize, - clusterProfiles VruClusterProfiles, + clusterProfiles VruClusterProfiles OPTIONAL, ... } -- GitLab From bc54d5473189384578620f8373889160ff404d0b Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Tue, 14 Jun 2022 08:01:00 +0000 Subject: [PATCH 44/91] Replace ITS-Container.asn --- ITS-Container.asn | 205 ++++++++++++++++++++++++---------------------- 1 file changed, 106 insertions(+), 99 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 75df885..836b28b 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,14 +1,13 @@ -- Draft CDD ASN.1 module Release 2. --- Date: 11.05.2022 +-- Date: 13.06.2022 -ITS-Container { -itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) version3 (3) -- Note: the final OID is still to be agreed. -} +ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} DEFINITIONS AUTOMATIC TAGS ::= BEGIN + ------------------------------------------ -- Specification of CDD Data Elements: ------------------------------------------ @@ -496,7 +495,7 @@ BogiesCount ::= INTEGER{ * @category: Basic information * @revision: Created in V2.1.1 */ -CardinalNumber1B ::= INTEGER(1..255) +CardinalNumber1B ::= INTEGER(0..255) /** * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in @@ -612,7 +611,7 @@ CauseCodeType ::= INTEGER { impassability (5), adverseWeatherCondition-Adhesion (6), - aquaplannning (7), + aquaplaning (7), hazardousLocation-SurfaceCondition (9), hazardousLocation-ObstacleOnTheRoad (10), @@ -667,16 +666,16 @@ CartesianCoordinate::= INTEGER{ } (-32768..32767) /** - * This DF represents the value of a cartesian coordinate with a range of -1 327,67 to + 1 327,66 meters. + * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. * * @unit 0,01 m * @category: Basic information * @revision: Created in V2.1.1 */ -CartesianCoordinateExtended::= INTEGER{ - negativeOutOfRange (-132768), - positiveOutOfRange (132767) -} (-132768..132767) +CartesianCoordinateLarge::= INTEGER{ + negativeOutOfRange (-131072), + positiveOutOfRange (131071) +} (-131072..131071) /** * This DE represents the ID of a CEN DSRC tolling zone. @@ -1045,7 +1044,7 @@ DeltaAltitude ::= INTEGER { * @unit: 0.1 microdegree * @category: GeoReference information * @revision: editorial update in V2.1.1 - */ + */ DeltaLatitude ::= INTEGER { unavailable (131072) } (-131071..131072) @@ -1791,7 +1790,7 @@ LaneType::= INTEGER{ bus (8), taxi (9), hov (10), - hot (11), + hot (11), pedestrian (12), cycleLane (13), median (14), @@ -1872,7 +1871,7 @@ LightBarSirenInUse ::= BIT STRING { } (SIZE(2)) /** - * This DE represents the absolute geographical longitude in a WGS84 co-ordinate system, providing a range of 180 degrees + * This DE represents the absolute geographical longitude in a WGS84 coordinate system, providing a range of 180 degrees * to the east or to the west of the prime meridian. * * The value shall be set to: @@ -2143,7 +2142,7 @@ OpeningDaysHours ::= UTF8String * @category: Basic information * @revision: Created in V2.1.1 */ -OrdinalNumber1B ::= INTEGER(1..255) +OrdinalNumber1B ::= INTEGER(1..255) -- tbd shall it start from 0 or from 1 ? /** * This DE indicates the subclass of a detected object for object class "otherSubclass". @@ -2603,37 +2602,40 @@ SemiAxisLength ::= INTEGER{ * This DE indicates the type of sensor. * * The value shall be set to: - * - `0` undefined : in case the sensor type is undefined. - * - `1` radar : in case the sensor is a radar. - * - `2` lidar : in case the sensor is a lidar. - * - `3` monovideo : in case the sensor is mono video. - * - `4` stereovision : in case the sensor is stereo vision. - * - `5` nightvision : in case the sensor is night vision. - * - `6` ultrasonic : in case the sensor is ultrasonic. - * - `7` pmd : in case the sensor is pmd. - * - `8` fusion : in case the information provided by a sensor data fusion system - * - `9` inductionloop : in case the sensor is an induction loop. - * - `10` sphericalCamera : in case the sensor is a spherical camera. - * - `11` itssaggregation : in case the information is gathered from other received ITS messages - * - `12` uwb : in case the sensor is ultra wide band. + * - `0` undefined : in case the sensor type is undefined. + * - `1` radar : in case the sensor is a radar. + * - `2` lidar : in case the sensor is a lidar. + * - `3` monovideo : in case the sensor is mono video. + * - `4` stereovision : in case the sensor is stereo vision. + * - `5` nightvision : in case the sensor is night vision. + * - `6` ultrasonic : in case the sensor is ultrasonic. + * - `7` pmd : in case the sensor is photonic mixing device. + * - `8` inductionLoop : in case the sensor is an induction loop. + * - `9` sphericalCamera : in case the sensor is a spherical camera. + * - `10` uwb : in case the sensor is ultra wide band. + * - `11` acoustic : in case the sensor is acoustic. + * - `12` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. + * - `13` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. + * - 14-15 reserved for future usage. * * @category: Sensing Information * @revision: created in V2.1.1 */ SensorType ::= INTEGER { - undefined (0), - radar (1), - lidar (2), - monovideo (3), - stereovision (4), - nightvision (5), - ultrasonic (6), - pmd (7), - fusion (8), - inductionloop (9), - sphericalCamera (10), - itssaggregation (11), - uwb (12) + undefined (0), + radar (1), + lidar (2), + monovideo (3), + stereovision (4), + nightvision (5), + ultrasonic (6), + pmd (7), + inductionLoop (8), + sphericalCamera (9), + uwb (10), + acoustic (11), + localAggregation (12), + itsAggregation (13) } (0..15) /** @@ -2967,7 +2969,7 @@ StationType ::= INTEGER { lightTruck (7), heavyTruck (8), trailer (9), - specialVehicles (10), + specialVehicle (10), tram (11), lightVruVehicle (12), animal (13), @@ -3496,7 +3498,7 @@ VruDeviceUsage ::= ENUMERATED { * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. - + - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3898,7 +3900,7 @@ ActionID ::= SEQUENCE { ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID /** - * This DF provides the altitude and accuracy of an altitude information in a WGS84 co-ordinate system. + * This DF provides the altitude and accuracy of an altitude information in a WGS84 coordinate system. * * It includes the following components: * @@ -3996,7 +3998,7 @@ CartesianAngularAcceleration ::= SEQUENCE { * @revision: Created in V2.1.1 */ CartesianCoordinateWithConfidence ::= SEQUENCE { - value CartesianCoordinateExtended, + value CartesianCoordinateLarge, confidence CoordinateConfidence } @@ -4060,7 +4062,7 @@ CauseCodeChoice::= CHOICE { reserved4 SubCauseCodeType, impassability SubCauseCodeType, adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, - aquaplannning SubCauseCodeType, + aquaplaning SubCauseCodeType, reserved8 SubCauseCodeType, hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, @@ -4243,7 +4245,7 @@ CenDsrcTollingZone ::= SEQUENCE { CircularShape ::= SEQUENCE { nodeCenterPoint CartesianPosition3d OPTIONAL, radius StandardLength12b, - height StandardLength12b OPTIONAL, + height StandardLength12b OPTIONAL, ... } @@ -4568,7 +4570,7 @@ ExteriorLightsExtended ::= SEQUENCE { * @revision: created in V2.1.1 */ GeneralizedLanePosition::= CHOICE { - trafficLanePosition LanePosition, + trafficLanePosition LanePosition, nonTrafficLanePosition LanePositionAndType, trafficIslandPosition TrafficIslandPosition, mapPosition MapPosition, @@ -4698,7 +4700,8 @@ InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManageme * * @field interferenceManagementZoneType: type of the interference management zone. * - * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. + * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. + * In the case where no mitigation should be applied by the ITS-S, this is indicated by the field interferenceManagementMitigationType being absent. * * @field expiryTime: 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 @@ -4709,29 +4712,11 @@ InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManageme InterferenceManagementInfoPerChannel ::= SEQUENCE { interferenceManagementChannel InterferenceManagementChannel, interferenceManagementZoneType InterferenceManagementZoneType, - interferenceManagementMitigationType InterferenceManagementMitigationType OPTIONAL, + interferenceManagementMitigationType MitigationForTechnologies OPTIONAL, expiryTime TimestampIts OPTIONAL, ... } -/** - * This DF provides information and commands defining the required mitigation type in the defined interference management zone. - * - * It includes the following options: - * - * @field unavailable: this is the default choice to be used when information is not available - * - * @field mitigationForTechnologies: 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. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementMitigationType ::= CHOICE { - unavailable NULL, - mitigationForTechnologies MitigationForTechnologies -} - /** * This DF consist of a list of up to 16 interference management zones. * @@ -4875,12 +4860,15 @@ LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF Correlati * * It includes the following components: * - * @field mapReference: optionally identifies the MAPEM carrying the topology. + * @field mapReference: optionally identifies the MAPEM containing the topology information. * It is absent if the MAPEM topology is known from the context. * - * @field laneId: identifies the lane in the topology. + * @field laneId: identifies the lane in the road segment or intersection topology on which the position is located. * - * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane. + * @field connectionId: identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the + * conflict area of an intersection which connects e.g an ingress with an egress lane. + * + * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. * * @category: Road topology information * @revision: Created in V2.1.1 @@ -4889,6 +4877,7 @@ MapPosition ::= SEQUENCE { mapReference MapReference OPTIONAL, laneId Identifier1B, longitudinalLanePosition LongitudinalLanePosition OPTIONAL, + connectionId Identifier1B, ... } @@ -4915,14 +4904,14 @@ MapReference::= CHOICE { * * It includes the following components: * - * @field totalMsgSegments: indicates the total number of messages that has been used on the transmitter side to encode the information. + * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. * - * @field thisSegmentNum: indicates the position of the message within of the total set of messages . + * @field thisMsgNo: indicates the position of the message within of the total set of messages. */ -MessageSegmentInfo ::= SEQUENCE { - totalMsgSegments CardinalNumber1B, - thisSegmentNum OrdinalNumber1B +MessageSegmentationInfo ::= SEQUENCE { + totalMsgNo CardinalNumber1B (1..255), + thisMsgNo OrdinalNumber1B } /** @@ -5029,7 +5018,7 @@ ObjectClassWithConfidence ::= SEQUENCE { */ ObjectDimension ::= SEQUENCE { value ObjectDimensionValue, - confidence ObjectDimensionValue + confidence ObjectDimensionConfidence } /** @@ -5045,7 +5034,7 @@ ObjectDimension ::= SEQUENCE { Path::= SEQUENCE (SIZE(0..40)) OF PathPoint /** - * This DF that represents a path with a set of path points. + * This DF that represents a path history with a set of path points. * It may contain up to `40` @ref PathPoint. * * The first PathPoint presents an offset delta position with regards to an external reference position. @@ -5057,6 +5046,18 @@ Path::= SEQUENCE (SIZE(0..40)) OF PathPoint */ PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint +/** + * This DF that represents a predicted path with a set of path points. + * It may contain up to `15` @ref 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. + * + * @category: GeoReference information + * @revision: created in V2.1.1 based on PathHistory + */ +PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted + /** * This DF defines an offset waypoint position within a path. * @@ -5075,20 +5076,34 @@ PathPoint ::= SEQUENCE { } /** - * The DF that defines a waypoint position within a path. + * This DF defines a predicted offset waypoint position within a path. * * It includes the following components: * - * @field pathPosition: The waypoint position defined as an absolute position. + * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. * - * @field pathDeltaTime: The optional delta time in which the waypoint will be occupied, from a reference time. + * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. + * + * @field horizontalPositionConfidence: the accuracy of the horizontal geographical position. + * + * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. + * + * @field altitudeConfidence: the accuracy of the altitude value of the geographical position. + * + * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. * * @category GeoReference information - * @revision: created in V2.1.1 + * @revision: semantics updated in V2.1.1 */ -PathPointAbsolute ::= SEQUENCE { - pathPosition ReferencePosition, - pathDeltaTime PathDeltaTime OPTIONAL + +PathPointPredicted::= SEQUENCE { + deltaLatitude DeltaLatitude, + deltaLongitude DeltaLongitude, + horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, + deltaAltitude DeltaAltitude DEFAULT unavailable, + altitudeConfidence AltitudeConfidence DEFAULT unavailable, + pathDeltaTime DeltaTimeTenthOfSecond, + ... } /** @@ -5614,7 +5629,7 @@ RoadSegmentReferenceId ::= SEQUENCE { SafeDistanceIndication ::= SEQUENCE { subjectStation StationID OPTIONAL, safeDistanceIndicator SafeDistanceIndicator, - timeToCollision DeltaTimeHundredthOfSecond OPTIONAL, + timeToCollision DeltaTimeTenthOfSecond OPTIONAL, ... } @@ -5634,15 +5649,6 @@ SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPositi */ SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B -/** - * This DF contains a list of DFs PathPointAbsolute. - * The component pathDeltaTime shall be either present in all elements of the list or be absent in all elements. - * - * @category: GeoReference information - * @revision: created in V2.1.1 - */ -SequenceOfPathPointAbsolute::= SEQUENCE (SIZE(1..16,...)) OF PathPointAbsolute - /** * The DF contains a list of DF SafeDistanceIndication. * @@ -5821,8 +5827,8 @@ TrailerData ::= SEQUENCE { --tbd check descriptions above hitchPointOffset StandardLength1B, -- tbd is the value unavailable needed? frontOverhang StandardLength1B, rearOverhang StandardLength1B, - trailerWidth VehicleWidth OPTIONAL, --tbd is OPTIONAL needed since the value unvailable can be used? - hitchAngle CartesianAngle OPTIONAL, --tbd is OPTIONAL needed since the value unvailable can be used? + trailerWidth VehicleWidth, + hitchAngle CartesianAngle, ... } @@ -5933,7 +5939,8 @@ VehicleLength ::= SEQUENCE { * * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. * - * @field clusterProfiles: identifies all the VRU profile types that are believed to be within the cluster . + * @field clusterProfiles: optionally identifies all the VRU profile types that are believed to be within the cluster. + * if this component is absent it means that the information is unavailable. * * @category: VRU information * @revision: Created in V2.1.1 @@ -5942,7 +5949,7 @@ VruClusterInformation ::= SEQUENCE { clusterId ClusterId OPTIONAL, clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, clusterCardinalitySize ClusterCardinalitySize, - clusterProfiles VruClusterProfiles, + clusterProfiles VruClusterProfiles OPTIONAL, ... } -- GitLab From c04c8074349920aa2be2bb3840d20846dac70092 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Tue, 14 Jun 2022 10:00:32 +0000 Subject: [PATCH 45/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 0 -> 303112 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/ETSI-ITS-CDD.md diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md new file mode 100644 index 0000000000000000000000000000000000000000..63b1b9c098a2286ae79296c0bae3e14896ef8405 GIT binary patch literal 303112 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�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

o)keM^K7k8GbOi!|^Fl1-Hu_R)%n@ZmG9^G+y zTxPwntk*RQqwC-7s+-NSJatSs%f7p8mai;HWjz=`7|LsMxvtSFOkR|bh7&O&==qct zq~i(1Cr)}|Gm#dmdEXNLPL89Y?&Q%R^3kSf(!o9%)&^9bi#}e(Y#bUunmL?yFN7~q zvEmYn9yyxxknA$_?xvw-|LLnfvOtwQv*2yOyyG3+3$@lTHzI)P;&`GGyC_EJ0t%Ti zil>=deSAql-%f_2PvwFlL!2JUTTr}&b_=ZeoXgXGO{(|laU6*Bm<&#F_`deK5;KOL z7@EVv-&to%0_GXDxtsg+fz_Z4J6KiM+v`vFNsY*EX2YEB@~RP&5|!B51k9|%Q;svx z88UEyv!6&@oi;`e0ZF(4fDw?9W7dwLsuFaLe9H=xMpw{rkxR~9x(u$)^`w{2a1Oxq z0@eq%k?{}R>ld=qpznYk6sDprGP`G^yuMf7H^BzI^lV$gCVHj8Cj=!G{X;lnnE^Hw zfi>C!Ypsf+sxBs!@h~T-S2i4_zro@8GgZcu=ZZnQL`+Nxh>IClN@|&JRaVRvy#bVZ zj9ILR6W#F$ITr;-4R@&BNE5Lc!^t}(d8MG4VfAuqF;m1me;AoVEJD#xucSG&fx$z1 zO;8+Rla_#j48VYp2A41b-M04&gdP9{@ZwT$>I*8FoRc)sAkbW}Bbk~SvBjyF^ z5Xbcri1d&ngG<1K^Y&@3g&KhM&FoL|+8X!cNL|eX#iF$dzxowhU7Dw&D4T;*+xU?^t)^>zq%E6mdUYrsaI8A z>j@<|=LKaB9q(*- zHNl+>h0y8Y3T#2Liq0Dk&Alp*=g38<6s$3LJ)GFff-aj@AB$zY+sp(_J3p0>R3x|4 z42M~s)Zo1geZAVy-R5R@d3^dOQ7lofF`Ph;EE06c`4G-1!<~CN?swu$@*kLWmU4jt zN1$m1lk$A1KK2g@4i-o7&#SEilTmb)i`v}7*m7iNnardvEVitL{LtUXv(&y_D>G}n zAd_(R19I$n#j-^j$Y?KkNltLeOmm#~YK!)9NpRA_CNh;APi`8d;*q^wMf-XKbtM@K zEUgc9_1-mJ&_&g7Q0q|#SNWp=x3f<66dP(>vSRR(HMAuk4MT(?3Ma_H!C&?_w!^`- zd;V1pSX)g)W8a5F51`(-dA!WBVyC5D6hSq5>$9R2F1Lq4Wu8?PL_r!kMMJKNgEp!vauK`YIYEVC+Gx;w=U zIq%zMKp-HLuAYzE#(Mg7GtY&A;XTBeWqVW1cGZxxKEVlI+06Jz{ohY0+F@cWqMoRZ z0adW(gq(BmM6eY{Wk`q74o{CB@hIPAEl2mowQ?LntqK>bfo%^sD1UkbNA>obe}_r? zrj|+P*rAlu;=6Ry_nG|#WY&b`Q zeBC8e=+^%T0bIBc42tqxm62fe#wX0Z%KxZri+8QUgH!wUPi4nm>crjd8QTKx>d<=< zVA!`HKr8}y)hm~QTOW!!M1Wy?ak_hn;rio~KakAX&;{=8r-w8F9r!Itdr zdt21xt0a=#7@_VLe@+h`L1Vbs(W#LX2`fANY9?dkEqx$)h~eqEmZlE=a*O=n;mjr@ z-%7({(Ycn_v#AXK#;?kP7)tDge*%C_uv%X zsB;IO9b{=1dJq7rHv=L|LC{||T!3T#Cdhq6M%b_{XCWPLf3*CQbfrHW@v??jcM(58 zIAenVNzH}G?>%IdY5`(T-1%xUJ%%w3KA3`+Wr#?2i59 zm7Mz(*U`c7Y_tbU6JJX`(A={?H6^$9w?uB{Xr`z(M@R52)t-Q=lE#);i&J+P&g&O2 zLyk|z7r;IhdNkhCd13Z>6H97;f`&3M;P<2tR42$!5xC1U1k9cXqk)bhtPE zGs2<&edo`A1O#&XBE?&}*E$-S)$WUH2O9 z4&oV+;1&+5nki*^&Xp|L-1T*lEh*wZ;pdL`Ea+i+E8(KSmOaF$K{4F!!bGSnvO-{I zg>v(wh}Me(BS!V96zv*gPG>4_)@T=_w2?3HOIv5k!BQ4on%Tv;GQ%At)oo}$T}*#; znwWE74PCt5OW;@L^!ccFm1VfF3)?(uMrSgiL>P0f{+pbLZh&KC+g zn%s-UE(KYGctCtL@Y=POff2xM5hnUx1F9dJc?G!J>n#8uDEp;m@*>#V&Gh=T2xqaz z|A8iNI=eog&i!O0_x^*B%<8SUss2rya#Q=ihwZs(4YE<)VE@0q+kf_C-%@SCDJ9#g zo4RP+d9!F8`89FzLc|u+jOt@Vs4jGA2zMMZnnojZ7zAoL-&4Go%C{25nFrxfG`ulf zBa8%;UTX!h2(EQu$gI`0&(}0uZJ2V@W!8ehXuqETkw|yb1;QS;wwqQgb!UA)v|9(8ZUNYXkt| z@hFZBK|xfVl2VWpcu^#NlNppnH%}oY`0LFQeY=1+8Au{~ zL;=9Lr#PQM{26GO7J&>qSCTFV)?n64c97^P6$u$jcd4xCvo=iNqJY>#V4C!;Z*r}T z@4xoqS8J7J0fkhgSgw;)C^~LQT`3a8>A?u~DtNRtVFazG_0JH@ixwf8+I9nee+L-n zD@v#$(DUK~TdLLlBcNhs3=`aO*sP6`-tgC<=A}OPa{UAvxL18W?V`^KWj!cZb+tHD za`h~ugXz?TqXz0*d0OTg9H7Y5u#%8Cna<}gX3%qMAHtoy!>8pp#k~a|3k-w^936sZ z#|#lYIF~RVNHt6$Fg*{|3kQxrR#yU=?(g@>AZx62(A6l>!q9qO$T^`0*IlYMMiI3J zC|k54s`VG1)-W>7aO{5n<7hMy=RV`Cz4C;sndVB)K&wh+GqU~yQz60F;cW*pW7o^< zFhFH$=x&9@cnYhUvz|9VszLjcA#<}?;IemHtRv^Ay}r`{u9Q^wpS~}cK&lY4Sd82) zFvs+;{j002UXJiw7B(pts+P50S?=vYsD)eMDjYEZ9S1(7hoN4BL&RRxCb^jAVFS(E^9)sLd?&*R#CUfOjI*!~Umv5&?oqG;X3{b=R$0PPw z(z0PspQ0C^@9z0&c#Sm5gLJbw6I(bD%IWtzu};3Hp2>05ChPqJ?Uxa6sja3V8(Fw; ziJZQo6*c8-TGq#^44}E)CEBP7$RSOVMMlCNtd-ak+?Lf^bhKeI4A*5Mp1?RSNF*K# zyiEc1+dNN{2|%21fO$8)-gdO{2H9u z<}A5n^oaybt1Ze``Xs@U;Mu2rUKOSoSS>`GJ##D(A>i~fd;@YB(yQql_w3OrKC*=7E&{s8~xFskZe?KqbB5hbRr9^r! zi~9YmNTj-ocx={&QwckFCGic<-L5xEwHosmV7K29rxKA`k4~LT0l4!+!x37Y$-(|` z`eq0U6~DQzVD5MJ zRPzubjd^s2a=PVvn2D_>BGf70|`9N`^OD!R^6#3(L`30x*A9;yK=gDL#b z;P1yFs`(2GVE?+0Aj8-CR4ra&r<-{Ygixj=7-gUjZ)rK~i)2Dbr7UTpPB6Wn-a_nS z|G0_6nG3BVO_uLS?3S`4orp4mxPM??b~f6)uzL1-63*Y%GcW6^;EljOgb?D#d?k8l zU<9^9P8sA7iJ#nRuChn(^h8};$&16s@)rmr4mPQME~r{CR2zLkRikNTP*yePN!c`o ztymTOSMnCEw?s%GEeBA#lk<3N zuRPUR0-jXqrtQnv7MAt<0MN24S9xvwfV^@k`F9luC8o$vx#3<~{SVHjw3WQ;lm)Y1 z8#6MhV5K%{WR;Y=E$%NN2KPoxu3DQkZUnBME)@TcgoXc)^@N8?FOi50r zdm0{`d{7va0Bkff&YiwYC54?j2A%b6(%!=Kb~I58c7Dqy4Y<4>uknHOfzKilyEPRmmQDrOmbPogisk69I~VxBvCc*1Bb=>nmX?(Uy@##aGtc*D<9<` zS@<>1SMMBFt8A$z9y8IsTwy?1Zoa9YQpW>6;Sk`1 zwkB#$S-6FG!T`|48MR4J9Lf8Pc1nMwL&zNnvM3(QQ$R(;Pw;(YG}ZAC*B7S77uf=s zYKBV4&2z-{;kGup)(rJ?dZ}p!durvTk~+Nt^R_$h%Ho+;~y=+8B5B+Y3T8z|)+x#l};9O0*5Bkx!JA zVE_`}pwJX4(gK*YTZ-v%eZCdZzWw&V(&l5IzV|r*qqHbtQfBoa(onE~5(CKc#t#fA zeS(E$_rA>da4U4O{&hY|gWP!?H7hl)FXWIF2Yc)~3J`lGjM z#bh%00EEHmZH{^dodhHQZCH4Ps0z~-f))@gxn!WEKW3Tjj5Ercz>hwP-EIN4%{FIO zPbLtgN3(-u05c?SeM-pQWSeFr>ZrfKyD9AVRtRlvp_c+;`2_U{i@*BZEQ~Zf+tc$U z!+bg&5#_#5?lB$|pkngz^qu&3aya=#a8-W8FdN?=9DUP0dH(H-=g;<^9S!~lR)P3; zOZc$+cz{AY>7vOO%RkL)R11HBefY)E!SiRkPZ!7TnTo}8Cy8=FA=%-DRGBS)5#Mm^ zdRhupU04YoIJ~?bjDJ>tacx(9k);_Ft4}rU;ZVeV2(f!(M#|w(FzMCKF8qa!=D{hq zqE~pE=fdeQK#UtIA3_x;=a+#}UaCBySG;&{85`)k%apnk8JhS8gp?OoFPRxZZ*%Z_ z$8Byh#v9xs7~y6|VbJDlNG8Fg@;p1FucXJpAH!pYPcw`ZYH5gE5rLlZYl>`{#po6X zCZ?YEw@e6K)%cv?oKbbfmgFXHAjtK<&W?i40%wI8S&JUwpqWz82OySw;0j}9wl>x3 zQ{Kwa%@@c26OiJoQ>QdtC=bl8tikU2>EPtkY@7O(F&>Lc+fHS_DY|%2n-u!7ZvvWxeB?={2rxd7MU@GM+Ph!&9KN=i#Na4Nx@KN{Z z;ls@xF@f#;P&|c#XV)Z&2G|0R{Mi)%U<-Z`pPZ;$--5+(wbruR<||s!Tsidd_~iP8 z5e|UzQ@$gI!R(Cd4gJ{b_D7CS&4Ifej2u-G?|MCj3ljrD5Vl;e^IQEUbL)?ne~lr@ zribTXqLW^4yHecmN6Vv!99rEcm~^KV)(`hkEK7bJ?}^{oRu&{7948O_$gn4;ME`vO zIteu{LkA`1gl(~*(lXymA1V947&PBKX>7Ze)h~W68taZMPakzEB{tFk~hx}E4$=)nd-_`2|D6n2!$8wr78(b&D+6$58oaFMvANUM;lSQ z>)~5Sz(}->GsZ4E@=RAxL%2Q`qHE4VZ%x>Kn@GaMydbtaCM5gWo(tHrb)Eo01hWoP zp8LGT*o1+o*|G`OAujI MtCk8KiSFM0Ke_eas{jB1 literal 0 HcmV?d00001 -- GitLab From adbf7bde79d31b01d8bad5aea97ca995e7345065 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Tue, 14 Jun 2022 10:54:41 +0000 Subject: [PATCH 46/91] Replace ITS-Container.asn --- ITS-Container.asn | 57 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 836b28b..67a729e 100644 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -2470,6 +2470,61 @@ RailwayLevelCrossingSubCauseCode ::= INTEGER { nominal (4) } (0..255) +/** + * This DE describes a distance of relevance for information indicated in a message. + * + * The value shall be set to: + * - 0 `lessThan50m` : for distances below 50 m. + * - 1 `lessThan100m` : for distances below 100 m. + * - 2 `lessThan200m` : for distances below 200 m. + * - 3 `lessThan500m` : for distances below 300 m. + * - 4 `lessThan1000m` : for distances below 1000 m. + * - 5 `lessThan5km` : for distances below 5000 m. + * - 6 `lessThan10km` : for distances below 10000 m. + * - 7 `over10km` : for distances over 10000 m. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref StandardLength3b instead. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +RelevanceDistance ::= ENUMERATED { + lessThan50m(0), + lessThan100m(1), + lessThan200m(2), + lessThan500m(3), + lessThan1000m(4), + lessThan5km(5), + lessThan10km(6), + over10km(7) +} + +/** + * This DE indicates a traffic direction that is relevant to information indicated in a message. + * + * The value shall be set to: + * - 0 `allTrafficDirections` : for all traffic directions. + * - 1 `upstreamTraffic` : for upstream traffic. + * - 2 `downstreamTraffic` : for downstream traffic. + * - 3 `oppositeTraffic` : for traffic in the opposite direction. + * + * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * + * @note: Upstream traffic corresponds to the incoming traffic towards the event position, + * and downstream traffic to the departing traffic away from the event position. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref TrafficDirection instead. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +RelevanceTrafficDirection ::= ENUMERATED { + allTrafficDirections(0), + upstreamTraffic(1), + downstreamTraffic(2), + oppositeTraffic(3) +} + /** * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from * ITS-S after receiving request from other ITS-Ss. @@ -2834,7 +2889,7 @@ StandardLength12b::= INTEGER (0..4095) * - 7 `over10km` : for distances over 10000 m. * * @category: GeoReference information - * @revision: Editorial update in V2.1.1 + * @revision: Created in V2.1.1 from RelevanceDistance */ StandardLength3b ::= ENUMERATED { lessThan50m (0), -- GitLab From b1f3828a5a3c94ac4bb54aed61e81241ed4ba61a Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Tue, 14 Jun 2022 14:04:12 +0200 Subject: [PATCH 47/91] update asn2ms script --- asn2md.py | 76 +++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 49 insertions(+), 27 deletions(-) diff --git a/asn2md.py b/asn2md.py index dd9ab84..1f5a139 100644 --- a/asn2md.py +++ b/asn2md.py @@ -16,15 +16,12 @@ RE_MODULE = re.compile( r'^\s*([A-Z][\w-]*)\s*({.*?})?\s*DEFINITIONS.*?::=\s*? RE_SPACES = re.compile(r'\s+') -RE_COMMENTS = re.compile(r'^\s*--.*?\n|--.*?(?:--|$)|/\*.*?\*/[\t ]*\n?', re.MULTILINE|re.DOTALL) +RE_COMMENTS = re.compile(r'^\s*--.*?\n|(?:^\s*)?--.*?(?:--[\t ]*|$)|(?:^\s*)?/\*.*?\*/[\t ]*\n?', re.MULTILINE|re.DOTALL) RE_BASIC_TYPES = re.compile(r'^OCTET\s+STRING|BIT\s+STRING|BOOLEAN|INTEGER|FLOAT|SEQUENCE|SET|NULL') -#RE_TYPE_BODY_1 = re.compile(r'.*?{(.*)}\s*WITH', re.MULTILINE|re.DOTALL) -#RE_TYPE_BODY_2 = re.compile(r'.*?{(.*)}\s*(?:WITH.*|\(.*?\)|\s*$)', re.MULTILINE|re.DOTALL) RE_TYPE_BODY = re.compile(r'.*?{(.*)}\s*(?:WITH.*|\(.*?\)|\s*$)', re.MULTILINE|re.DOTALL) -#RE_FIELDS = re.compile(r'^\s*(?:/\*\*.*?\*/)|^\s*([\w-]+?)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][.\w-]+)?(.*?)(?:,((?:\s*--!?<.*?\n)*)|((?:--!?<.*?\n)*)$)', re.MULTILINE | re.DOTALL| re.VERBOSE) RE_FIELDS = re.compile(r'^\s*/\*.*?\*/|^\s*--\!.*?\n|^[\s&]*([\w-]+)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][\w-]+)?((?:{[^}]*}|\([^)]*\)|.)*?)(?:,|(--)|$)', re.MULTILINE | re.DOTALL) RE_EXPORTS = re.compile(r'^\s*EXPORTS.*?;', re.DOTALL | re.MULTILINE) @@ -40,8 +37,8 @@ RE_DOXY_ASN_COMMENTS = re.compile(r'^\s*--[-!#](:?$|\s(.*))', re.MULTILINE) RE_DOXY_C_COMMENTS = re.compile(r'^\s*/\*\*\s(.*?)\*/', re.MULTILINE | re.DOTALL) RE_DOXY_C_COMMENTS_I = re.compile(r'\s*\*+') -RE_STRIPSTAR = re.compile(r'^\s*\*', re.MULTILINE) +RE_STRIPSTAR = re.compile(r'^\s*\*?', re.MULTILINE) RE_DOXY_REF = re.compile(r'@ref\s+([\w-]+)') RE_DOXY_CLASS = re.compile(r'@(?:class|struct|details):?\s+([\w-]+)') @@ -59,6 +56,7 @@ RE_DOXY_SECTION = re.compile(r"^\s*@(brief|note|(class|struct|param|field|detail # RE_TYPE = re.compile(r'(([A-Z][\w-]*)\s*::=[\w \t]+(?:{+(.*?)}+)?.*?)\n\s*\n', re.MULTILINE | re.DOTALL) RE_TYPE = re.compile(r'^\s*([A-Z][\w-]*)?\s*([{} \t:\w-]*?)?::=([\w \t]+.*?)\n\s*\n', re.MULTILINE | re.DOTALL) RE_OPTIONS = re.compile(r'^\s*@options[\s:]+(.+)', re.MULTILINE) +RE_DOXY_OTHER = re.compile(r'\^(\w+)', re.MULTILINE) extTypes = {} cpos = 0 @@ -87,6 +85,8 @@ def parseText(content, indent=None): content = RE_DOXY_STRIP_SINGLE_TAG.sub('', content) + content = re.sub('\^(\w+)', '\\1', content) + return indentLines(content, indent) def parseInlineComments(content:str, indent=None): @@ -139,14 +139,16 @@ def parseModule(mname, content): # parse types def repl_type (m, doc): - title = t = m.group(1) # type name + title = typeName = m.group(1) # type name f_params = {} s_unit = '' s_category = '' s_note = '' s_revision = '' options = copy.copy(o_args) - if doc : # doc is the prepending comment. Check if not None and not Empty + + # doc is the prepending comment. Check if not None and not Empty + if doc : doc = parseDoxyComments(doc) # parse options @@ -154,42 +156,52 @@ def parseModule(mname, content): nonlocal options if m.group(1) is not None: for o in m.group(1).split(','): - setattr(options, o.strip(), True) + setattr(options, o.strip().replace('-', '_'), True) return '' doc=RE_OPTIONS.sub(repl_options, doc) + # parse @param, @details, @brief, etc... def repl_section (m): nonlocal title - nonlocal t + nonlocal typeName nonlocal f_params nonlocal s_note + nonlocal options + ret = '' l = m.group(4).lstrip(":, \t").lstrip('\n') if m.group(2) is not None: # this can be class|struct|details|param|field - if m.group(3) == t: + if m.group(3) == typeName: ret = parseText(l) else: if len(l): f_params[m.group(3)] = parseText(l, 2) + elif m.group(1) == 'brief': - if o_args.brief_as_title: + if options.brief_as_title: title = parseText(l) else: ret = parseText(l) + elif m.group(1) == 'note': s_note = '\n>>>\n' + 'NOTE: ' + parseText(l).rstrip() + '\n>>>\n' + else: ret = m.string[m.start():m.end()] return ret doc = RE_DOXY_SECTION.sub(repl_section, doc) + # parse @category XXX [, YYY, ZZZ] def repl_category(m): nonlocal s_category s_category = '\n    **Categories**: ' - for l in m.group(1).split(','): -# s_category += '[{0}](#{1}) '.format(l.strip(), urlquote(l.strip())) - s_category += l.strip() + ' ' + if options.category_links: + for l in m.group(1).split(','): + s_category += '[{0}](#{1}) '.format(l.strip(), urlquote(l.strip())) + else: + for l in m.group(1).split(','): + s_category += l.strip() + ' ' s_category += '\n' return '' doc = RE_DOXY_CATEGORY.sub(repl_category, doc) @@ -209,9 +221,9 @@ def parseModule(mname, content): doc = '' ret = '' - if t is not None: + if typeName is not None: fields = '' - ret = '\n### {1}\n'.format(t, title) + parseText(doc) + ret = '\n### {1}\n'.format(typeName, title) + parseText(doc) # parse fields and get out fields descriptions if m.group(3) is not None: @@ -228,35 +240,36 @@ def parseModule(mname, content): # add description to the previous type if len(field): fields += parseInlineComments(fm.string[pos:fm.start()], 3) - field = '' + field = '' f = fm.group(1).strip() ext = fm.group(3) or '' if f in f_params: field = f_params.pop(f) + '\n\n' if fm.group(2) is not None: - fTitle = 'Fields:\n' - if len(field) or not o_args.no_auto_fields: - t = fm.group(2).strip() - if RE_BASIC_TYPES.match(t) is not None: - field = '* {0} **{1}** {2}
\n'.format(f, t, ext) + field + if len(field) or not options.no_auto_fields: + fTitle = 'Fields:\n' + fTypeName = fm.group(2).strip() + if RE_BASIC_TYPES.match(fTypeName) is not None: + field = '* {0} **{1}** {2}
\n'.format(f, fTypeName, ext) + field else: - field = '* {0} [**{1}**]({2}#{1}) {3}
\n'.format(f, t, extTypes.get(t,''), ext) + field + field = '* {0} [**{1}**]({2}#{1}) {3}
\n'.format(f, fTypeName, extTypes.get(fTypeName,''), ext) + field else: fTitle = 'Values:\n' - if len(field) or not o_args.no_auto_values: + if len(field) or not options.no_auto_values: field = '* **{0}** {1}
\n'.format(f, ext) + field if len(field): - field += parseText(fm.string[pos:fm.start()], 3) + field += parseText(parseDoxyComments(fm.string[pos:fm.start()]).strip(), 3) pos = fm.end() if fm.group(4) is not None: # keep '--' for the next round pos -= 2 if len(field): fields += field + field = '' if len(field): fields += parseInlineComments(typeBody[pos:], 3) # add all other fields defined as @params - if 'force-all-fields' in options or 'force-all-fields' in o_args: + if 'force_all_fields' in options or 'force_all_fields' in o_args: for f in f_params: fields += '* {}
\n{}\n\n'.format(f, f_params[f]) if len(fields): @@ -290,7 +303,15 @@ def parseAsn(outDir, content) : if m.group(3) is not None: ret += parseModule(m.group(1), m.group(3)) ret += '\n\n' - open(outDir + '/' + m.group(1) + '.md', "w",encoding='utf-8').write(ret) + try: + f = open(outDir + '/' + m.group(1) + '.md', mode='w',encoding='utf-8') + f.write(ret) + except OSError as err: + print("OS error: {0}".format(err)) + except BaseException as err: + print(f"Unexpected {err=}, {type(err)=}") + finally: + f.close() pos = m.end() cnt += 1 return cnt @@ -303,6 +324,7 @@ def main(): ap.add_argument('--force-all-fields', '-f', default=False,action='store_true', help='Add all fields in the list even if empty') ap.add_argument('--no-auto-fields', '-F', default=False,action='store_true', help='Add fields only if @param or @field is defined') ap.add_argument('--no-auto-values', '-V', default=False,action='store_true', help='Do not add named values or enums') + ap.add_argument('--category-links', '-c', default=False,action='store_true', help='Create links for categories') ap.add_argument('modules', action='store', nargs='+', help='ASN.1 files') o_args = ap.parse_args() -- GitLab From 082a82eab681ca0324466dd1aede1d140d6aff17 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Tue, 14 Jun 2022 12:25:30 +0000 Subject: [PATCH 48/91] Documentation update --- docs/{ITS-Container.md => ETSI-ITS-CDD.md} | Bin 302134 -> 303112 bytes 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/{ITS-Container.md => ETSI-ITS-CDD.md} (97%) diff --git a/docs/ITS-Container.md b/docs/ETSI-ITS-CDD.md similarity index 97% rename from docs/ITS-Container.md rename to docs/ETSI-ITS-CDD.md index 4ba3760937437ebb02d37f7a88efde850a5d396d..63b1b9c098a2286ae79296c0bae3e14896ef8405 100644 GIT binary patch delta 2945 zcmb7GYitzP71o_QA@-Pu-`FhBYmC9`tQU_TGNvxnu`zM5jgbv4g20Y{v6MzzFU}``c|^CSY&l#jjyqmnHqb9r6n;{HuzEc?!{p* zFV-~HrtV6fQW1?CMXxZzDyyCEwSK?z9|8hbe5!fZA0CBcNvl+t=K}oswE7r{D>4;zURs2K4>~YX2Y6Ek^?Y7d~p1@E6#;4CP>)~ zv2YT_jBza#e@JrSzyx_1_D_9W$ z7Lo^)pzIe|H4Cf^Fhva|gC-WZQ_~W#Vv;O|E7!^V{H6di5>Z)Kf>Nwiip#nL;v`uJ zg*Qm)teOBz4)(*{Pf4kr!(6a#ki1;mqbLTL6x5Q2sRThhK?)sxdFIFsE7k^BOhd;l zk%%rwBs)BVH8;rOy$M|#P(pHu^$#kWcv1CYQ;iNrNX*6|M1=Da$v(sRh3#aD)g#+>pQYJWl z#rkToA$9kKg{i`$USPXO7X0%D83FSq@j&x6Z2YS?v6nmdker;jraEbB829W=!b%vc ztoQl^h96alM9l%k#*5m&-oyq8w}>b8@$sC!_cYHoW|b?`*Z!+{wyG(u!qz#q(|;<( znzSy{sF^x3t-G&fWk|o;v@%n{sRE*|&I>085bwkmKFj*#7J03iFe|!*yCYj$p5;!r z+vJ!BW1n*kR_{1hJ;Rn)o+ET#LBDKsQ0m7CHT{BM$A+T|`5%Dw94)b)O3{B1_~8*m`syom zJDe-y=fa&I(*@RVkI>(H=4h%ZDXQ%OW5bXXgb0$acjyB zuW`jCw3rqdW;j5DQ6(64QcY+EriVv}+HNdj&fv)%r5;G0p`%M|UqMY(T~BGfP&MNW zB$IF0Yq-^$vP1v|vN&@ZjwwMTur5nX3o{90&cNqmieL640~y{>O$94vAoWdM+KFK` zeV8HHZE--3#oW|&Eg5mLu*-+|9{-;K(n+WDFqrJe2G|&I_ZS8nRLrO?%Z_L7t z^&TDJx;5DOK7Aw`S>pHCHZ*u4_c2-wZ@*8&4|N$4RC_+4!^<-z4+H{|p^C!&E>$}o zNVmDddQ&r{m~)x2R!I*jsub%^#`|RiIu*xVD)ziOmKJx8E}aLyAtJou;d7vTh!nu~ zkGOh!V{M0PpU}&W685}BvtUBw=UNvo(PP}h=)i7{wc`ps%E8}%M&=#5x8hwndAA#GHp@>*`(S#Df-XPj#*e2_i7w4V3Okz%G|+OOS!6idS5^?V7u2qb&9^Q<7^ z1a=3$+)LM$_u(c>Q;eBPT*h6JkaTB{Iq$2zZBBhg$IGTFx@y&TSnt}6o7Q%>u4TK? zV@QsfQl|v_y7>7;ZLZ*k_qk{V7=3~k;>zb|i>_W%BMv^Fy@IF9abNim8%*T$g~e<` zPhZD|?v_s5WhQ0|Jl(~YR5&hMG8sRhhISMEiocCN^7s*cIh4tCF$}iiFVdGrc)>D8c(uTJl3?r%oec+0 z!Jp{e$cN5OqV?7bP6CDni{FQdyB-^K@ZNe``s Yz0Yu)t+9iAJ%O|N{4y&q#aCqi2Q~HS{{R30 delta 2444 zcmZuzeQX@X71!)+hYNXBXQTC*b%)xTLnJodSg@w|6`CZF{$S z+1;~qgbLier5R6j9+YQX>PUN-RY|gqhWK4-?NX^2HkOMDCGXb#BrevUT&q{6Pus>a2tH_ zq)=}?HFNaD?DWG2Nxoh74f6W}>$CPEsQ4x+w+kL4e{FQrvTr>|9vOl!&X5B5d;xRK zERX=aIGdfWgVPJ-_SI?qs+|Y!StOf4zDO#-SR{AD&lYg>-Xgi{I+K4mCd+8zO(o@! zhXq-rHNu9|4xq632eJXGFOj15l&*~`hzW~kn8XaO8k){z$&_-Y%*YrfPrCm1Mwp_? z>6nQj5}KBR$VJjr5^jhvBNgYm5|a|0Qj+TuEG`fqoViHKy3B;aBA!JKuDmATczEAid`+Hj-GqJ|Jmj$-G6Q8CZH z^cV8uc4FB3?+}(bskf5{gsC1RO)0$bni#f6=7eD3Dls9oMXXqz*;DhvZ^-Ht4!xtW7JYP^9rn`6AR>44L2)DOst^mHVVH{czwW1( z?nBnj@1;gL6d$2w@PI`N;OMi6ygSmD1TV}yD57>m03(nCM8uin9T7oW0vl@*7@$Vg0x^s#ZP#tf!mM8xoSnMs#`oBjF*Jn7Oj9ji*Cu!g;7jczd*|S zugepwaigXr9Zvxg5I1o($&H9ZJZmP8nXZw;u@p{KQ$ZmcRq#+Hu}Jte7PgM1xQ%~qk@vPW9>*MNo~A)yFVjj`R!JQ!ze>XnriGriwk@pl!T#RPZdiO?xE&&4vZlZ( zJAiI3n{yR>IZ3Om!+m8=XKu6K1o|gmsifHH7>1eSv=dUlqSf%_6rF|5-L%5ad!H6ls6L5kCA+B~`UUgW5;%8_nY@eoin^(LU>y&ia(S3A? zay`5)d(@qVeiez?E-?;s`6@-clJ*8Y)}*|q2BKZWLwsG%j&CjZ*j_RZ4P0TinNO;OF2#~wC>^y%us zR!U};!Q5aH44$JLj(sdNz~9f&O(jw;iqmQX39YFic=S9SYLR&Y6&73W5_>GJ#NsY1 z#-vQj*@uleHyU1NS}c}MDO?V)VO>jFzx$vR$WEc$`edRGX7Yq>Sv@>-f#$DY$&EQ| zfY&b28t=FGFv_4B;{&0ICDuT*2vO40e-22&w77h)R&sR3r#X zA_`YIBWk+fH2Znn4`#QEW72ixyTMPvOb5kCb5^0WVwJKIINp Date: Thu, 7 Jul 2022 07:37:03 +0000 Subject: [PATCH 49/91] Replace ITS-Container.asn --- ITS-Container.asn | 487 ++++++++++++++++++++++++++-------------------- 1 file changed, 273 insertions(+), 214 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 836b28b..c32f288 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,8 +1,8 @@ -- Draft CDD ASN.1 module Release 2. --- Date: 13.06.2022 +-- Date: 04.07.2022 -ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} +ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) 102894 cdd (2) major-version-3 (3) minor-version-1 (1)} DEFINITIONS AUTOMATIC TAGS ::= @@ -104,7 +104,7 @@ AccelerationControl ::= BIT STRING { AccelerationValue ::= INTEGER { negativeOutOfRange (-160), positiveOutOfRange (160), - unavailable (161) -- tbd delete unavailable value? + unavailable (161) } (-160 .. 161) @@ -497,6 +497,14 @@ BogiesCount ::= INTEGER{ */ CardinalNumber1B ::= INTEGER(0..255) +/** + * The DE represents a cardinal number that counts the size of a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CardinalNumber4b ::= INTEGER(0..15) + /** * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in * a right-hand local coordinate system from the abscissa. @@ -651,10 +659,10 @@ CauseCodeType ::= INTEGER { CartesianCoordinateSmall::= INTEGER { negativeOutOfRange (-3094), positiveOutOfRange (1001) -} (-3094..1001) -- this is 12 bit, tbd question: increase the range by "one bit" to make this more practical for common usage? +} (-3094..1001) /** - * This DF represents the value of a cartesian coordinate with a range of -327,67 to + 327,66 meters. + * This DF represents the value of a cartesian coordinate with a range of -327,68 to + 327,67 meters. * * @unit 0,01 m * @category: Basic information @@ -682,29 +690,9 @@ CartesianCoordinateLarge::= INTEGER{ * * @category: Communication information * @revision: V1.3.1 + * @note: this DE is not in use anymore and is deprecated. */ -CenDsrcTollingZoneID::= ProtectedZoneID - -/** - * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 (for the cluster leader) . - * - * The value shall be set to `0` if the information is unavailable. - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterCardinalitySize::= INTEGER { - unavailable (0), - onlyLeader (1) -} (0..255) - -/** - * This DE represents the identifier of a cluster. - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterId ::= INTEGER(0..255) +CenDsrcTollingZoneID::= ProtectedZoneId /** * This DE indicates the reason why a cluster leader intends to break up the cluster. @@ -830,6 +818,7 @@ CoordinateConfidence ::= INTEGER { * - `0` indicates not correlated or unavailable * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. * - `100` indicates full positive correlation + * - `101` indicates correlation is unavailable. * * @unit: the value is scaled by 100 * @category: Sensing information @@ -838,8 +827,9 @@ CoordinateConfidence ::= INTEGER { CorrelationRowValue ::= INTEGER { full-negative-correlation (-100), no-correlation (0), - full-positive-correlation (100) -} (-100..100) + full-positive-correlation (100), + unavailable (101) +} (-100..101) /** * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. @@ -952,7 +942,7 @@ DangerousEndOfQueueSubCauseCode ::= INTEGER { /** * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. * The value is assigned according to `_class_` and `_division_` definitions of dangerous goods as specified in part II, - * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. + * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.3]. * * * @category Vehicle information @@ -1081,7 +1071,7 @@ DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) * Example: a time interval between two consecutive message transmissions. * - * @unit: 1 ms + * @unit: 0,001 s * @category: Basic information * @revision: Created in V2.1.1 from the DE TransmissionInterval */ @@ -1090,7 +1080,7 @@ DeltaTimeMilliSecondPos ::= INTEGER (1..10000) /** * This DE represents a difference in time with respect to a reference time. * - * @unit: 1 ms + * @unit: 0,001 s * @category: Basic information * @revision: Created in V2.1.1 */ @@ -1101,7 +1091,7 @@ DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, * multiply by 256 (i.e. append a `00` byte) * - * @unit: 256 milliseconds + * @unit: 256 * 0,001 s * @category: Basic information * @revision: Created in V2.1.1 */ @@ -1255,7 +1245,7 @@ EnergyStorageType ::= BIT STRING { }(SIZE(7)) /** - * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. * * * @category: Vehicle information @@ -1264,7 +1254,7 @@ EnergyStorageType ::= BIT STRING { EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } /** - * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. * * * @category: Vehicle information @@ -1273,7 +1263,7 @@ EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} /** - * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. * * * @category: Vehicle information @@ -1282,7 +1272,7 @@ EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} /** - * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. * * * @category: Vehicle information @@ -1600,12 +1590,12 @@ InformationQuality ::= INTEGER (0..7) * * The value shall be set to: - * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] - * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14] + * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14] * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling - * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.13], clause 7 + * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.13], clause 7 + * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.13], clause 7 * * @category: Communication information * @revision: Created in V2.1.1 @@ -1621,7 +1611,7 @@ InterferenceManagementZoneType ::= ENUMERATED { } /** - * This DE represents the vehicle type according to ISO 3833 [4]. + * This DE represents the vehicle type according to ISO 3833 [3]. * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. * * The value shall be set to: @@ -1673,47 +1663,47 @@ InterferenceManagementZoneType ::= ENUMERATED { */ Iso3833VehicleType ::= INTEGER { - passengerCar (0), - saloon (1), - convertibleSaloon (2), - pullmanSaloon (3), - stationWagon (4), - truckStationWagon (5), - coupe (6), - convertible (7), - multipurposePassengerCar (8), - forwardControlPassengerCar (9), - specialPassengerCar (10), - bus (11), - minibus (12), - urbanBus (13), - interurbanCoach (14), - longDistanceCoach (15), - articulatedBus (16), - trolleyBus (17), - specialBus (18), - commercialVehicle (19), - specialCommercialVehicle (20), - specialVehicle (21), - trailingTowingVehicle (22), - semiTrailerTowingVehicle (23), - trailer (24), - busTrailer (25), - generalPurposeTrailer (26), - caravan (27), - specialTrailer (28), - semiTrailer (29), - busSemiTrailer (30), - generalPurposeSemiTrailer (31), - specialSemiTrailer (32), - roadTrain (33), - passengerRoadTrain (34), - articulatedRoadTrain (35), - doubleRoadTrain (36), - compositeRoadTrain (37), - specialRoadTrain (38), - moped (39), - motorCycle (40) + passengerCar (0), + saloon (1), + convertibleSaloon (2), + pullmanSaloon (3), + stationWagon (4), + truckStationWagon (5), + coupe (6), + convertible (7), + multipurposePassengerCar (8), + forwardControlPassengerCar (9), + specialPassengerCar (10), + bus (11), + minibus (12), + urbanBus (13), + interurbanCoach (14), + longDistanceCoach (15), + articulatedBus (16), + trolleyBus (17), + specialBus (18), + commercialVehicle (19), + specialCommercialVehicle (20), + specialVehicle (21), + trailingTowingVehicle (22), + semiTrailerTowingVehicle (23), + trailer (24), + busTrailer (25), + generalPurposeTrailer (26), + caravan (27), + specialTrailer (28), + semiTrailer (29), + busSemiTrailer (30), + generalPurposeSemiTrailer (31), + specialSemiTrailer (32), + roadTrain (33), + passengerRoadTrain (34), + articulatedRoadTrain (35), + doubleRoadTrain (36), + compositeRoadTrain (37), + specialRoadTrain (38), + moped (39), + motorCycle (40) } (0..255) /** @@ -1843,7 +1833,7 @@ Latitude ::= INTEGER { * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * - * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: the empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * * @unit: 0.1 m/s2 @@ -1905,7 +1895,7 @@ Longitude ::= INTEGER { * This acceleration is along the tangent plane of the road surface and does not include gravity components. * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * @category: Vehicle information * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. */ @@ -1925,40 +1915,40 @@ LongitudinalLanePositionValue ::= INTEGER (0..32767) * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. * * The value shall be set to: - * - `n (n > 0 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. - * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. - * - `102` if the data is unavailable. + * - `n (n > 0 and n < 1022)` if the accuracy is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m. + * - `1022` if the accuracy is out of range i.e. greater than 102,1 m. + * - `1023` if the data is unavailable. * - * @unit 0,01 meter + * @unit 0,1 meter * @category: Road topology information * @revision: Created in V2.1.1 */ LongitudinalLanePositionConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) + outOfRange (1022), + unavailable (1023) +} (0..1023) /** * This DE represents the type of facility layer message. * * The value shall be set to: - * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], - * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], - * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], - * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], - * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], - * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], - * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], - * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], - * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], - * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], - * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], - * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], - * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], - * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], + * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.2], + * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.1], + * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.9], + * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.15], + * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.15], + * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.15], + * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.11], + * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.10], + * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.15], + * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.15], + * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.9], + * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.17], + * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.15], + * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.18], * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], - * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. + * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.19]. * - 18-255 - reserved for future usage, * * @category: Communication information @@ -2031,18 +2021,18 @@ ObjectDimensionValue ::= INTEGER (0..1023) * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. * * The value shall be set to: - * - `n (n > 0 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . - * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. - * - `102` if the data is unavailable. + * - `n (n > 0 and n < 14)` if the dimension accuracy is equal to or less than n x 0,1 meter, and more than (n-1) x 0,1 meter . + * - `11` if the dimension accuracy is out of range i.e. greater than 1 m. + * - `12` if the data is unavailable. * - * @unit 0,01 m + * @unit 0,1 m * @category: Sensing information * @revision: Created in V2.1.1 */ ObjectDimensionConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) + outOfRange (14), + unavailable (15) +} (0..15) /** * The DE indicates whether the detected object is classified as a dynamic (i.e. moving) object. @@ -2067,7 +2057,6 @@ ObjectDynamicStatus ::= INTEGER { /** * This DE indicates the approximate position of the reference point of measurement for the object dimensions using a 9 cell grid. - * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue * * @category: Basic information * @revision: Created in V2.1.1 @@ -2142,7 +2131,16 @@ OpeningDaysHours ::= UTF8String * @category: Basic information * @revision: Created in V2.1.1 */ -OrdinalNumber1B ::= INTEGER(1..255) -- tbd shall it start from 0 or from 1 ? +OrdinalNumber1B ::= INTEGER(0..255) + + +/** + * The DE represents an ordinal number that indicates the position of an element in a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +OrdinalNumber4b ::= INTEGER(0..15) /** * This DE indicates the subclass of a detected object for object class "otherSubclass". @@ -2174,8 +2172,8 @@ PathDeltaTime ::= DeltaTimeHundredthOfSecond * * The value shall be set to: * - `0` if the performance class is unknown. - * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.6] - * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.6] + * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.5] + * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.5] * - Values in the range `3 to 7` are reserved for future use. * * @category: Vehicle information @@ -2204,7 +2202,7 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * - `62` for values equal to or higher than `6.2 metres`. * - `63` if the information is unavailable. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * * @unit 0,1 metre * @category Vehicle information @@ -2385,9 +2383,9 @@ PrecipitationIntensity ::= INTEGER { * * * @category: Infrastructure information, Communication information - * @revision: V1.3.1 + * @revision: Revision in V2.1.1 (changed name from ProtectedZoneID to ProtectedZoneId) */ -ProtectedZoneID ::= INTEGER (0.. 134217727) +ProtectedZoneId ::= INTEGER (0.. 134217727) /** * This DE represenst the radius of a protected communication zone. @@ -2403,7 +2401,7 @@ ProtectedZoneRadius ::= INTEGER (1..255,...) * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). * - * The protected zone type is defined in ETSI TS 102 792 [i.16]. + * The protected zone type is defined in ETSI TS 102 792 [i.14]. * * * @category: Communication information @@ -2434,8 +2432,8 @@ PtActivationData ::= OCTET STRING (SIZE(1..20)) * * The folowing value are specified: * - `0` undefinedCodingType : undefined coding type, - * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.8], - * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.8]. + * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.7], + * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.7]. * - values 3 to 255 : reserved for alternative and future use. * * @category: Vehicle information @@ -2470,6 +2468,61 @@ RailwayLevelCrossingSubCauseCode ::= INTEGER { nominal (4) } (0..255) +/** + * This DE describes a distance of relevance for information indicated in a message. + * + * The value shall be set to: + * - 0 `lessThan50m` : for distances below 50 m. + * - 1 `lessThan100m` : for distances below 100 m. + * - 2 `lessThan200m` : for distances below 200 m. + * - 3 `lessThan500m` : for distances below 300 m. + * - 4 `lessThan1000m` : for distances below 1000 m. + * - 5 `lessThan5km` : for distances below 5000 m. + * - 6 `lessThan10km` : for distances below 10000 m. + * - 7 `over10km` : for distances over 10000 m. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref StandardLength3b instead. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +RelevanceDistance ::= ENUMERATED { + lessThan50m(0), + lessThan100m(1), + lessThan200m(2), + lessThan500m(3), + lessThan1000m(4), + lessThan5km(5), + lessThan10km(6), + over10km(7) +} + +/** + * This DE indicates a traffic direction that is relevant to information indicated in a message. + * + * The value shall be set to: + * - 0 `allTrafficDirections` : for all traffic directions. + * - 1 `upstreamTraffic` : for upstream traffic. + * - 2 `downstreamTraffic` : for downstream traffic. + * - 3 `oppositeTraffic` : for traffic in the opposite direction. + * + * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * + * @note: Upstream traffic corresponds to the incoming traffic towards the event position, + * and downstream traffic to the departing traffic away from the event position. + * + * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref TrafficDirection instead. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +RelevanceTrafficDirection ::= ENUMERATED { + allTrafficDirections(0), + upstreamTraffic(1), + downstreamTraffic(2), + oppositeTraffic(3) +} + /** * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from * ITS-S after receiving request from other ITS-Ss. @@ -2834,7 +2887,7 @@ StandardLength12b::= INTEGER (0..4095) * - 7 `over10km` : for distances over 10000 m. * * @category: GeoReference information - * @revision: Editorial update in V2.1.1 + * @revision: Created in V2.1.1 from RelevanceDistance */ StandardLength3b ::= ENUMERATED { lessThan50m (0), @@ -2924,9 +2977,9 @@ StationaryVehicleSubCauseCode ::= INTEGER { * The ITS-S ID may be a pseudonym. It may change over space and/or over time. * * @category: Basic information - * @revision: V1.3.1 + * @revision: Update in V2.1.1 : changed name from StationID to StationId */ -StationID ::= INTEGER(0..4294967295) +StationId ::= INTEGER(0..4294967295) /** * This DE represenst the type of technical context the ITS-S is integrated in. @@ -2936,16 +2989,16 @@ StationID ::= INTEGER(0..4294967295) * - 0 `unknown`: information about the ITS-S context is not provided, * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, - * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L1, L2 (VRU Profile 3) - * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] + * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L3, L4, L5, L6, L7 (VRU Profile 3) - * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, - * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, - * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, - * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, + * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, + * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, + * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, + * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in - UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, + UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). @@ -3066,7 +3119,7 @@ Temperature ::= INTEGER { * * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, * which includes one leap second insertion since the ITS epoch. - * @unit: millisecond + * @unit: 0,001 s * @category: Basic information * @revision: Description revised in in V2.1.1 */ @@ -3214,7 +3267,7 @@ TurningRadius ::= INTEGER { } (1..255) /** - * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. + * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.6]. * * @category: Vehicle information * @revision: V1.3.1 @@ -3313,7 +3366,7 @@ VehicleLengthValue ::= INTEGER { * - `1 023` indicates that the vehicle mass is greater than 102 200 kg. * - `1 024` indicates the vehicle mass information is unavailable. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * * @unit: 100kg * @category: Vehicle information @@ -3372,11 +3425,11 @@ VehicleRole ::= ENUMERATED { * * The value shall be set to: * - `0` unknown : to indicate that the type of vehicle is unknown. - * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. - * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. - * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. - * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. - * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. + * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1. + * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3. + * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1. + * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2, N3. + * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O. * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). * - `7` tram : to indicate a vehicle running on tracks along public streets. * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. @@ -3427,7 +3480,7 @@ VehicleWidth ::= INTEGER { * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * * @category: Vehicle information * @unit: 0.1 m/s2 @@ -3688,7 +3741,7 @@ VruSpecificExteriorLights ::= BIT STRING { } (SIZE(8)) /** - * Perpendicular distance between front and rear axle of the wheel base of vehicle. + * This DE indicates the perpendicular distance between front and rear axle of the wheel base of vehicle. * * The value shall be set to: * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0.1 metres and more than (n-1) x 0.1 metres. @@ -3742,7 +3795,7 @@ Wgs84AngleValue ::= INTEGER { } (0..3601) /** - * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. + * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.6]. * * * @category: Vehicle information @@ -3823,7 +3876,7 @@ YawRateConfidence ::= ENUMERATED { * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. * The reading instant should be the same as for the vehicle acceleration. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * * @unit: 0,01 degree per second. * @category: Vehicle Information @@ -3879,15 +3932,15 @@ AccelerationChangeIndication ::= SEQUENCE { * * It includes the following components: * - * @field originatingStationID: ID of the ITS-S that takes the action. + * @field originatingStationId: Id of the ITS-S that takes the action. * * @field sequenceNumber: a sequence number. * * @category: Communication information - * @revision: V1.3.1 + * @revision: Update in V2.1.1 changed name from ActionID to ActionId */ -ActionID ::= SEQUENCE { - originatingStationID StationID, +ActionId ::= SEQUENCE { + originatingStationId StationId, sequenceNumber SequenceNumber } @@ -3895,9 +3948,9 @@ ActionID ::= SEQUENCE { * This DF represents a list of @ref ActionID. * @category: Communication Information - * @revision: Created in V2.1.1 based on ReferenceDenms + * @revision: Created in V2.1.1 based on ReferenceDenms from DENM Release 1 */ -ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID +ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionId /** * This DF provides the altitude and accuracy of an altitude information in a WGS84 coordinate system. @@ -4217,13 +4270,13 @@ CauseCodeV2 ::= SEQUENCE { * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. * * @category: Infrastructure information, Communication information - * @revision: V1.3.1 + * @revision: revised in V2.1.1 (cenDsrcTollingZoneId is directly of type ProtectedZoneId) */ CenDsrcTollingZone ::= SEQUENCE { protectedZoneLatitude Latitude, protectedZoneLongitude Longitude, - cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, - ... + cenDsrcTollingZoneId ProtectedZoneId OPTIONAL, + ... } /** @@ -4305,7 +4358,7 @@ ClusterBreakupInfo ::= SEQUENCE { * @revision: Created in V2.1.1 */ ClusterJoinInfo ::= SEQUENCE { - clusterId ClusterId, + clusterId Identifier1B, joinTime DeltaTimeQuarterSecond, ... } @@ -4323,7 +4376,7 @@ ClusterJoinInfo ::= SEQUENCE { * @revision: Created in V2.1.1 */ ClusterLeaveInfo ::= SEQUENCE { - clusterId ClusterId, + clusterId Identifier1B, clusterLeaveReason ClusterLeaveReason, ... } @@ -4365,7 +4418,7 @@ Curvature ::= SEQUENCE { * @field dangerousGoodsType: Type of dangerous goods. * * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in - * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], + * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.4], * * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. * If yes, the value shall be set to TRUE, @@ -4397,7 +4450,7 @@ DangerousGoodsExtended ::= SEQUENCE { emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, phoneNumber PhoneNumber OPTIONAL, companyName UTF8String (SIZE (1..24)) OPTIONAL, - ... + ... } /** @@ -4459,7 +4512,7 @@ EllipticalShape ::= SEQUENCE { /** * - * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.16]. * The following options are available: * * @field euVehicleCategoryL: indicates a vehicle in the L category. @@ -4551,7 +4604,6 @@ ExteriorLightsExtended ::= SEQUENCE { ... } - /** * This DF indicates a transversal position in relation to the different lanes of the road. * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where V-ITS-S would normally not be present. @@ -4666,7 +4718,7 @@ InterferenceManagementZone ::= SEQUENCE { * * @field interferenceManagementZoneRadius: optional radius of the interference management zone in metres. * - * @field interferenceManagementZoneID: optional identification of the interference management zone. + * @field interferenceManagementZoneId: optional identification of the interference management zone. * * @field interferenceManagementZoneShape: shape of the interference management zone. * @@ -4677,7 +4729,7 @@ InterferenceManagementZoneDefinition::= SEQUENCE{ interferenceManagementZoneLatitude Latitude, interferenceManagementZoneLongitude Longitude, interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, - interferenceManagementZoneID ProtectedZoneID OPTIONAL, + interferenceManagementZoneId ProtectedZoneId OPTIONAL, interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, ... } @@ -4728,16 +4780,16 @@ InterferenceManagementInfoPerChannel ::= SEQUENCE { InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone /** - * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.17]. + * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.15]. * * It includes the following components: * * @field region: 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 @ref Id is unique within the region. + * It is the duty of that entity to guarantee that the @ref Id is unique within the region. * * @field id: the identifier of the intersection * - * @note: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique. + * @note: when the component region is present, the IntersectionReferenceId is guaranteed to be globally unique. * @category: Road topology information * @revision: created in V2.1.1 */ @@ -4770,9 +4822,9 @@ ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. */ ItsPduHeader ::= SEQUENCE { - protocolVersion INTEGER (0..255), + protocolVersion OrdinalNumber1B, messageId MessageId, - stationId StationID + stationId StationId } /** @@ -4856,16 +4908,16 @@ LongitudinalLanePosition ::= SEQUENCE { LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn /** - * This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301 [i.17]. + * This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301 [i.15]. * * It includes the following components: * * @field mapReference: optionally identifies the MAPEM containing the topology information. * It is absent if the MAPEM topology is known from the context. * - * @field laneId: identifies the lane in the road segment or intersection topology on which the position is located. + * @field laneId: optionally identifies the lane in the road segment or intersection topology on which the position is located. * - * @field connectionId: identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the + * @field connectionId: optionally identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the * conflict area of an intersection which connects e.g an ingress with an egress lane. * * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. @@ -4875,14 +4927,16 @@ LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF Correlati */ MapPosition ::= SEQUENCE { mapReference MapReference OPTIONAL, - laneId Identifier1B, + laneId Identifier1B OPTIONAL, + connectionId Identifier1B OPTIONAL, longitudinalLanePosition LongitudinalLanePosition OPTIONAL, - connectionId Identifier1B, ... } + ((WITH COMPONENTS {..., laneId PRESENT, connectionId ABSENT }) | + (WITH COMPONENTS {..., laneId ABSENT, connectionId PRESENT })) /** - * This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301 [i.17]. + * This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301 [i.15]. * * The following options are provided: * @@ -4911,7 +4965,7 @@ MapReference::= CHOICE { */ MessageSegmentationInfo ::= SEQUENCE { totalMsgNo CardinalNumber1B (1..255), - thisMsgNo OrdinalNumber1B + thisMsgNo OrdinalNumber1B (1..255) } /** @@ -4935,10 +4989,10 @@ MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyCl * @field powerReduction: the delta value of power to be reduced. * @unit: dB * - * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.25]. + * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.21]. * @unit: ms * - * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.26]. + * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.22]. * @unit: ms * * @note: All parameters are optional, as they may not apply to some of the technologies or @@ -5004,6 +5058,7 @@ ObjectClassWithConfidence ::= SEQUENCE { objectClass ObjectClass, confidence ConfidenceLevel } + /** * This DF represents a dimension of an object together with a confidence indication. * @@ -5107,11 +5162,11 @@ PathPointPredicted::= SEQUENCE { } /** - * This DF contains information about a perceived object including its kinematic and attitude vector in a pre-defined coordinate system. + * This DF contains information about a perceived object including its kinematic state and attitude vector in a pre-defined coordinate system. * * It includes the following components: * - * @field objectID: optional identifier assigned to a detected object. + * @field objectId: optional identifier assigned to a detected object. * * @field timeOfMeasurement: 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. @@ -5175,7 +5230,7 @@ PathPointPredicted::= SEQUENCE { * The angular acceleration is measured with positive values considering the object orientation turning counter-clockwise around the z-axis. * * @field lowerTriangularCorrelationMatrixColumns: 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 kinematic and attitude vector is composed of the xCoordinate, yCoordinate and zero or more of the other components listed immediately before this component (i.e. 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 @@ -5207,16 +5262,19 @@ PathPointPredicted::= SEQUENCE { * * @field planarObjectDimension1: 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. + * indicated by the yawAngle and which contains the object's reference point. + * This component can only be present if the component yawAngle is present. * * @field planarObjectDimension2: 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. + * This component can only be present if the component yawAngle is present. * * @field verticalObjectDimension: optional vertical dimension of object as provided by the sensor or object model. * - * @field objectRefPoint: 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. + * @field objectRefPoint: the reference point on the perceived object. + * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue. + * 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. * * @field objectAge: 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. @@ -5238,13 +5296,13 @@ PathPointPredicted::= SEQUENCE { */ PerceivedObject ::= SEQUENCE { - objectID Identifier2B OPTIONAL, + objectId Identifier2B OPTIONAL, timeOfMeasurement DeltaTimeMilliSecondPosNeg, xCoordinate CartesianCoordinateWithConfidence, yCoordinate CartesianCoordinateWithConfidence, zCoordinate CartesianCoordinateWithConfidence OPTIONAL, velocityMagnitude SpeedExtended OPTIONAL, - velocityDirection CartesianAngle OPTIONAL, + velocityDirection CartesianAngle OPTIONAL, xVelocity SpeedExtended OPTIONAL, yVelocity SpeedExtended OPTIONAL, zVelocity SpeedExtended OPTIONAL, @@ -5266,7 +5324,7 @@ PerceivedObject ::= SEQUENCE { planarObjectDimension1 ObjectDimension OPTIONAL, planarObjectDimension2 ObjectDimension OPTIONAL, verticalObjectDimension ObjectDimension OPTIONAL, - objectRefPoint ObjectRefPoint DEFAULT 0, + objectRefPoint ObjectRefPoint DEFAULT 4, objectAge DeltaTimeMilliSecondPosNeg (0..1500) OPTIONAL, objectConfidence ObjectConfidence OPTIONAL, sensorIdList SequenceOfIdentifier1B OPTIONAL, @@ -5291,7 +5349,7 @@ PerceivedObject ::= SEQUENCE { */ PolygonalShape ::= SEQUENCE { polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), - height StandardLength12b OPTIONAL, + height StandardLength12b OPTIONAL, ... } @@ -5352,12 +5410,12 @@ PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar * * @field protectedZoneRadius: optional radius of the protected communication zone in metres. * - * @field protectedZoneID: the optional ID of the protected communication zone. + * @field protectedZoneId: the optional ID of the protected communication zone. * * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. * * @category: Infrastructure information, Communication information - * @revision: V1.3.1 + * @revision: revised in V2.1.1 (changed protectedZoneID to protectedZoneId) */ ProtectedCommunicationZone ::= SEQUENCE { protectedZoneType ProtectedZoneType, @@ -5365,7 +5423,7 @@ ProtectedCommunicationZone ::= SEQUENCE { protectedZoneLatitude Latitude, protectedZoneLongitude Longitude, protectedZoneRadius ProtectedZoneRadius OPTIONAL, - protectedZoneID ProtectedZoneID OPTIONAL, + protectedZoneId ProtectedZoneId OPTIONAL, ... } @@ -5395,7 +5453,7 @@ ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicat * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, * destination, priority, etc. * - * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: + * The R09.x content is defined in VDV recommendation 420 [i.7]. It includes following information: * - Priority Request Information (pre-request, request, ready to start) * - End of Prioritization procedure * - Priority request direction @@ -5479,7 +5537,7 @@ RadialShape ::= SEQUENCE { */ RadialShapes ::= SEQUENCE { refPointId Identifier1B, - xCoordinate CartesianCoordinateSmall, -- tbd: is this along the positive or the negative x axis? + xCoordinate CartesianCoordinateSmall, yCoordinate CartesianCoordinateSmall, zCoordinate CartesianCoordinateSmall OPTIONAL, radialShapesList RadialShapesList, @@ -5557,7 +5615,8 @@ RectangularShape ::= SEQUENCE { semiLength StandardLength12b, semiBreadth StandardLength12b, orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL + height StandardLength12b OPTIONAL, + ... } /** @@ -5601,7 +5660,7 @@ RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType * * @field id: the identifier of the road segment * - * @note: when the RoadRegulatorID is present, the RoadSegmentReferenceID is guaranteed to be globally unique. + * @note: when the component region is present, the RoadSegmentReferenceId is guaranteed to be globally unique. * @category: GeoReference information * @revision: created in V2.1.1 */ @@ -5627,7 +5686,7 @@ RoadSegmentReferenceId ::= SEQUENCE { * @revision: created in V2.1.1 */ SafeDistanceIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, + subjectStation StationId OPTIONAL, safeDistanceIndicator SafeDistanceIndicator, timeToCollision DeltaTimeTenthOfSecond OPTIONAL, ... @@ -5655,7 +5714,7 @@ SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B * @category: Traffic information, Kinematics information * @revision: created in V2.1.1 */ -SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication +SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..8,...)) OF SafeDistanceIndication /** * The DF contains a list of DF TrajectoryInterceptionIndication. @@ -5663,7 +5722,7 @@ SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceInd * @category: Traffic information, Kinematics information * @revision: created in V2.1.1 */ -SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication +SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..8,...)) OF TrajectoryInterceptionIndication /** * This DF provides the definition of a geographical area or volume, based on different options. @@ -5801,17 +5860,17 @@ TrafficIslandPosition ::= SEQUENCE { * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the * vehicle Reference Point. * - * @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the + * @field frontOverhang: optional length of the trailer overhang in the positive x direction (according to ISO 8855) from the * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer * is not overhanging to the front with respect to the trailer reference point. * - * @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the + * @field rearOverhang: optional length of the trailer overhang in the negative x direction (according to ISO 8855) from the * trailer Reference Point indicated by the refPointID. * * @field trailerWidth: optional width of the trailer. * * @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x - * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of + * direction of the ISO 8855 [2] coordinate system centered on the trailer) and the direction of * the segment having as end points the reference point of the trailer and the reference point of * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane * xy, described in the local Cartesian coordinate system of the preceding reference point. The @@ -5822,12 +5881,12 @@ TrafficIslandPosition ::= SEQUENCE { * @category: Vehicle information * @revision: Created in V2.1.1 */ -TrailerData ::= SEQUENCE { --tbd check descriptions above +TrailerData ::= SEQUENCE { refPointId Identifier1B, - hitchPointOffset StandardLength1B, -- tbd is the value unavailable needed? - frontOverhang StandardLength1B, - rearOverhang StandardLength1B, - trailerWidth VehicleWidth, + hitchPointOffset StandardLength1B, + frontOverhang StandardLength1B OPTIONAL, + rearOverhang StandardLength1B OPTIONAL, + trailerWidth VehicleWidth OPTIONAL, hitchAngle CartesianAngle, ... } @@ -5849,9 +5908,9 @@ TrailerData ::= SEQUENCE { --tbd check descriptions above * @revision: Created in V2.1.1 */ TrajectoryInterceptionIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, - trajectoryInterceptionProbability TrajectoryInterceptionProbability, - trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, + subjectStation StationId OPTIONAL, + trajectoryInterceptionProbability TrajectoryInterceptionProbability, + trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, ... } @@ -5937,7 +5996,7 @@ VehicleLength ::= SEQUENCE { * * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. * - * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. + * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group, i.e. the known members in the cluster + 1 (for the cluster leader) . * * @field clusterProfiles: optionally identifies all the VRU profile types that are believed to be within the cluster. * if this component is absent it means that the information is unavailable. @@ -5946,16 +6005,16 @@ VehicleLength ::= SEQUENCE { * @revision: Created in V2.1.1 */ VruClusterInformation ::= SEQUENCE { - clusterId ClusterId OPTIONAL, + clusterId Identifier1B OPTIONAL, clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, - clusterCardinalitySize ClusterCardinalitySize, + clusterCardinalitySize CardinalNumber1B, clusterProfiles VruClusterProfiles OPTIONAL, ... } /** * This DF indicates the profile of a VRU including sub-profile information - * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.22]: + * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.20]: * * @field pedestrian: VRU Profile 1 - Pedestrian. * -- GitLab From 14e8d7a0910c6b90440c1be2fdfc6e7d04f06f9c Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Thu, 7 Jul 2022 07:37:31 +0000 Subject: [PATCH 50/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 303112 -> 306276 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 63b1b9c098a2286ae79296c0bae3e14896ef8405..3f01ec7c9948a474ea83674e9225fa5ae221a00c 100644 GIT binary patch delta 4842 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 delta 3697 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 b;|LDRx6$qCSA Date: Mon, 12 Sep 2022 06:04:24 +0000 Subject: [PATCH 51/91] Replace ITS-Container.asn --- ITS-Container.asn | 2653 +++++++++++++++++++++++++-------------------- 1 file changed, 1456 insertions(+), 1197 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 67a729e..732220c 100644 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,8 +1,4 @@ --- Draft CDD ASN.1 module Release 2. --- Date: 13.06.2022 - - -ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-3 (3) minor-version-1 (1)} +ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) 102894 cdd (2) major-version-3 (3) minor-version-1 (1)} DEFINITIONS AUTOMATIC TAGS ::= @@ -17,8 +13,8 @@ BEGIN * This DE indicates a change of acceleration. * * The value shall be set to: - * - 0 - `accelerate` - if the acceleration is positive. - * - 1 - `decelerate` - if the acceleration is negative. + * - 0 - `accelerate` - if the magnitude of the horizontal velocity-vector increases. + * - 1 - `decelerate` - if the magnitude of the horizontal velocity-vector decreases. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -29,20 +25,23 @@ AccelerationChange::= ENUMERATED { } /** - * This DE represents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. + * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy of an acceleration value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. - * - `102` if the data is unavailable. + * - `n (n > 0 and n < 101)` if the confidence value is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `101` if the confidence value is out of range i.e. greater than 10 m/s2. + * - `102` if the confidence value is unavailable. * - * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: + * The value 0 shall not be used. + * + * @note: The fact that an acceleration value is received with confidence value set to 'unavailable(102)' can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported acceleration value may be valid and used by the application. + * In all 3 cases above, the acceleration value may be valid and used by the application. * - * @note: If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @note: If an acceleration value is received and its confidence value is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @unit 0,1 m/s2 * @category: Kinematics information @@ -70,7 +69,7 @@ AccelerationConfidence ::= INTEGER { * - 6 - `speedLimiterEngaged` - speed limiter is engaged. * * Otherwise (for example when the corresponding system is not available due to non equipped system - * or information is unavailable), the corresponding bit shall be set to _0_. + * or information is unavailable), the corresponding bit shall be set to 0. * * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. * @category: Kinematics information @@ -92,11 +91,11 @@ AccelerationControl ::= BIT STRING { * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * - * @note: zero acceleration is indicated using n=0. + * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. * @unit 0,1 m/s2 * @category: Kinematics information * @revision: Created in V2.1.1 @@ -104,7 +103,7 @@ AccelerationControl ::= BIT STRING { AccelerationValue ::= INTEGER { negativeOutOfRange (-160), positiveOutOfRange (160), - unavailable (161) -- tbd delete unavailable value? + unavailable (161) } (-160 .. 161) @@ -163,7 +162,7 @@ AccidentSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailabl. + * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailable. * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road. * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road. * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road. @@ -270,10 +269,10 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the air humidity in tens of percent. + * This DE represents the air humidity in tenths of percent. * * The value shall be set to: - * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0.1 percent and greater than (n-1) x 0.1 percent. + * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0,1 percent and greater than (n-1) x 0,1 percent. * - `1001` indicates that the air humidity is unavailable. * * @category: Basic information @@ -286,38 +285,39 @@ AirHumidity ::= INTEGER { } (1..1001) /** - * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. + * This DE indicates the altitude confidence value which represents the estimated absolute accuracy of an altitude value of a geographical point with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - 0 - `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. - * - 1 - `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. - * - 2 - `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. - * - 3 - `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. - * - 4 - `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. - * - 5 - `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. - * - 6 - `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. - * - 7 - `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. - * - 8 - `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. - * - 9 - `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. - * - 10 - `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. - * - 11 - `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. - * - 12 - `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. - * - 13 - `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. - * - 14 - `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. - * - 15 - `unavailable` if the altitude accuracy information is unavailable - * - * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused + * - 0 - `alt-000-01` if the confidence value is equal to or less than 0,01 metre. + * - 1 - `alt-000-02` if the confidence value is equal to or less than 0,02 metre and greater than 0,01 metre. + * - 2 - `alt-000-05` if the confidence value is equal to or less than 0,05 metre and greater than 0,02 metre. + * - 3 - `alt-000-10` if the confidence value is equal to or less than 0,1 metre and greater than 0,05 metre. + * - 4 - `alt-000-20` if the confidence value is equal to or less than 0,2 metre and greater than 0,1 metre. + * - 5 - `alt-000-50` if the confidence value is equal to or less than 0,5 metre and greater than 0,2 metre. + * - 6 - `alt-001-00` if the confidence value is equal to or less than 1 metre and greater than 0,5 metre. + * - 7 - `alt-002-00` if the confidence value is equal to or less than 2 metres and greater than 1 metre. + * - 8 - `alt-005-00` if the confidence value is equal to or less than 5 metres and greater than 2 metres. + * - 9 - `alt-010-00` if the confidence value is equal to or less than 10 metres and greater than 5 metres. + * - 10 - `alt-020-00` if the confidence value is equal to or less than 20 metres and greater than 10 metres. + * - 11 - `alt-050-00` if the confidence value is equal to or less than 50 metres and greater than 20 metres. + * - 12 - `alt-100-00` if the confidence value is equal to or less than 100 metres and greater than 50 metres. + * - 13 - `alt-200-00` if the confidence value is equal to or less than 200 metres and greater than 100 metres. + * - 14 - `outOfRange` if the confidence value is out of range, i.e. greater than 200 metres. + * - 15 - `unavailable` if the confidence value is unavailable + * + * @note: The fact that an altitude value is received with confidence value set to `unavailable(15)` can be caused * by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported altitude value may be valid and used by the application. + * In all 3 cases above, the altitude value may be valid and used by the application. * - * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported + * @note: If an altitude value is received and its confidence value is set to `outOfRange(14)`, it means that the * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @category: GeoReference information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ AltitudeConfidence ::= ENUMERATED { alt-000-01 (0), @@ -339,26 +339,29 @@ AltitudeConfidence ::= ENUMERATED { } /** - * This DE represents the altitude value in a WGS84 co-ordinate system. + * This DE represents the altitude value in a WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: * - `-100 000` if the altitude is equal to or less than -1 000 m. - * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0.01 meters and greater than (n-1) x 0,01 meters. - * - `800 000` if the altitude greater than 7 999 m. + * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0,01 metre and greater than (n-1) x 0,01 metre. + * - `800 000` if the altitude greater than 7 999,99 m. * - `800 001` if the information is not available. * - * @unit: 0.01 meter + * @note: the range of this DE does not use the full binary encoding range, but all reasonable values are covered. In order to cover all possible altitude ranges a larger encoding would be necessary. + * @unit: 0,01 metre * @category: GeoReference information * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) */ AltitudeValue ::= INTEGER { - negativeOutOFRange (-100000), + negativeOutOfRange (-100000), postiveOutOfRange (800000), unavailable (800001) } (-100000..800001) /** - * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. + * This DE indicates the angle confidence value which represents the estimated absolute accuracy of an angle value with a default confidence level of 95 %. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. @@ -375,75 +378,73 @@ AngleConfidence ::= INTEGER { } (1..127) /** - * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. + * This DE indicates the angular speed confidence value which represents the estimated absolute accuracy of an angular speed value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * For correlation computation, maximum interval levels can be assumed. * * The value shall be set to: - * - 0 - `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second - * - 1 - `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second - * - 2 - `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second - * - 3 - `degSec-001-00` if the accuracy is equal to or less than 1 degree/second - * - 4 - `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second - * - 5 - `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second - * - 6 - `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second - * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second - * - 8 - `unavailable` if the accuracy information is unavailable + * - 0 - `degSec-01` if the accuracy is equal to or less than 1 degree/second. + * - 1 - `degSec-02` if the accuracy is equal to or less than 2 degrees/second and greater than 1 degree/second. + * - 2 - `degSec-05` if the accuracy is equal to or less than 5 degrees/second and greater than 2 degrees/second. + * - 3 - `degSec-10` if the accuracy is equal to or less than 10 degrees/second and greater than 5 degrees/second. + * - 4 - `degSec-20` if the accuracy is equal to or less than 20 degrees/second and greater than 10 degrees/second. + * - 5 - `degSec-50` if the accuracy is equal to or less than 50 degrees/second and greater than 20 degrees/second. + * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second. + * - 7 - `unavailable` if the accuracy information is unavailable * * @category: Kinematics information * @revision: Created in V2.1.1 */ AngularSpeedConfidence ::= ENUMERATED { - degSec-000-01 (0), - degSec-000-05 (1), - degSec-000-10 (2), - degSec-001-00 (3), - degSec-005-00 (4), - degSec-010-00 (5), - degSec-100-00 (6), - outOfRange (7), - unavailable (8) + degSec-01 (0), + degSec-02 (1), + degSec-05 (2), + degSec-10 (3), + degSec-20 (4), + degSec-50 (5), + outOfRange (7), + unavailable (8) } /** - * Tis DE represents the absolute accuracy of a reported angular acceleration value for a confidence level of 95%. + * This DE indicates the angular acceleration confidence value which represents the estimated accuracy of an angular acceleration value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * For correlation computation, maximum interval levels shall be assumed. * * The value shall be set to: - * - 0 - `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second2 - * - 1 - `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second2 - * - 2 - `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second2 - * - 3 - `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second2 - * - 4 - `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second2 - * - 5 - `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second2 - * - 6 - `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second2 - * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second2 - * - 8 - `unavailable` if the accuracy information is unavailable + * - 0 - `degSecSquared-01` if the accuracy is equal to or less than 1 degree/second2. + * - 1 - `degSecSquared-02` if the accuracy is equal to or less than 2 degrees/second2 and greater than 1 degree/second2. + * - 2 - `degSecSquared-05` if the accuracy is equal to or less than 5 degree/second2 and greater than 1 degree/second2. + * - 3 - `degSecSquared-10` if the accuracy is equal to or less than 10 degree/second2 and greater than 5 degree/second2. + * - 4 - `degSecSquared-20` if the accuracy is equal to or less than 20 degrees/second2 and greater than 10 degree/second2. + * - 5 - `degSecSquared-50` if the accuracy is equal to or less than 50 degrees/second2 and greater than 20 degrees/second2. + * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second2. + * - 7 - `unavailable` if the accuracy information is unavailable * * @category: Kinematics information * @revision: Created in V2.1.1 */ AngularAccelerationConfidence ::= ENUMERATED { - degSecSquared-000-01 (0), - degSecSquared-000-05 (1), - degSecSquared-000-10 (2), - degSecSquared-001-00 (3), - degSecSquared-005-00 (4), - degSecSquared-010-00 (5), - degSecSquared-100-00 (6), - outOfRange (7), - unavailable (8) + degSecSquared-01 (0), + degSecSquared-02 (1), + degSecSquared-05 (2), + degSecSquared-10 (3), + degSecSquared-20 (4), + degSecSquared-50 (5), + outOfRange (6), + unavailable (7) } /** - * This DE indicates the number of axels of a passing train. + * This DE indicates the number of axles of a passing train. * * The following values are specified: - * - `n(n > 2 and n < 1001)` indicates that the train has n x axels. - * - `1001`indicates that the number of axels is out of range. + * - `n(n > 2 and n < 1001)` indicates that the train has n x axles. + * - `1001`indicates that the number of axles is out of range. * - `1002` the information is unavailable. * * - * @unit: Number of axels + * @unit: Number of axles * @category: Vehicle information * @revision: Created in V2.1.1 */ @@ -453,16 +454,16 @@ AxlesCount ::= INTEGER{ } (2..1002) /** - * This DE represent the measured uncompesated atmospheric pressure in units of hPascal (hPa). + * This DE represents the measured uncompensated atmospheric pressure. * * The following values are specified: - * - `2999` indicates that the applicable value is less than 299.9 hPa. - * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 0.1 hPa and greater than (n-1) x 0.1 hPa. - * - `12001` indicates that the values is greater than 1200 hPa. + * - `2999` indicates that the applicable value is less than 29990 Pa. + * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa. + * - `12001` indicates that the values is greater than 120000 Pa. * - `12002` indicates that the information is not available. * * @category: Basic information - * @unit: 0.1 hPa + * @unit: 10 Pascal * @revision: Created in V2.1.1 */ BarometricPressure ::= INTEGER{ @@ -476,8 +477,8 @@ BarometricPressure ::= INTEGER{ * This DE indicates the cardinal number of bogies of a train. * * The value shall be set to: - * - `n (n > 1 and n < 100)` indicates that the train has n x bogie - * - `100`indicates that the number of bogie is out of range. + * - `n (n > 1 and n < 100)` indicates that the train has n x bogies + * - `100`indicates that the number of bogies is out of range. * - `101` the information is unavailable. * * @unit: Number of bogies @@ -497,8 +498,16 @@ BogiesCount ::= INTEGER{ */ CardinalNumber1B ::= INTEGER(0..255) +/** + * The DE represents a cardinal number that counts the size of a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CardinalNumber3b ::= INTEGER(1..8) + /** - * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in + * This DE represents an angle value described in a local Cartesian coordinate system, per default counted positive in * a right-hand local coordinate system from the abscissa. * * The value shall be set to: @@ -517,45 +526,45 @@ CartesianAngleValue ::= INTEGER { } (0..3601) /** - * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in + * This DE represents an angular speed value described in a local Cartesian coordinate system, per default counted positive in * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `-32766` if the speed is equal to or less than 327,66 degrees/s. - * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s. - * - `32766` if the speed is greater than 327,65 degrees/s. - * - `32767` if the information is unavailable. + * - `-255` if the speed is equal to or less than -255 degrees/s. + * - `n` (`n > -255` and `n < 255`) if the speed is equal to or less than n x 1 degree/s, and greater than (n-1) x 1 degree/s. + * - `255` if the speed is greater than 254 degrees/s. + * - `256` if the information is unavailable. * - * @unit 0,01 degrees/s + * @unit: degree/s * @category: Kinematics information * @revision: Created in V2.1.1 */ CartesianAngularSpeedValue ::= INTEGER { - negativeOutofRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) + negativeOutofRange (-255), + positiveOutOfRange (255), + unavailable (256) +} (-255..256) /** - * This DE represents an angular acceleration value described in a local Cartesian coordinate system, counted positive in + * This DE represents an angular acceleration value described in a local Cartesian coordinate system, per default counted positive in * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `-32766` if the acceleration is equal to or less than 327,66 degrees/s2 - * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than n x 0,01 degrees/s2, + * - `-255` if the acceleration is equal to or less than -255 degrees/s2 + * - `n` (`n > -255` and `n < 255`) if the acceleration is equal to or less than n x 1 degree/s2, and greater than `(n-1)` x 0,01 degrees/s2. - * - `32766` if the acceleration is greater than 327,65 degrees/s2 - * - `32767` if the information is unavailable + * - `255` if the acceleration is greater than 254 degrees/s2 + * - `256` if the information is unavailable * - * @unit 0,01 degrees/s2 (degrees per second squared) + * @unit: degree/s2 (degrees per second squared) * @category: Kinematics information * @revision: Created in V2.1.1 */ CartesianAngularAccelerationValue ::= INTEGER { - negativeOutofRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) + negativeOutofRange (-255), + positiveOutOfRange (255), + unavailable (256) +} (-255..256) /** *The DE represents the value of the cause code of an event. @@ -642,7 +651,12 @@ CauseCodeType ::= INTEGER { } (0..255) /** - * This DF represents the value of a cartesian coordinate with a range of -30,93 meters to +10,00 meters. + * This DF represents the value of a cartesian coordinate with a range of -30,94 metres to +10,00 metres. + * + * The value shall be set to: + ` - `1001` if the longitudinal offset is out of range, i.e. less than or equal to -30,94 metres. + * - `n (n > -3094 and n < 1001)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre. + * - `1001` if the longitudinal offset is out of range, i.e. greater than 10 metres. * * @unit 0,01 m * @category: Basic information @@ -651,10 +665,15 @@ CauseCodeType ::= INTEGER { CartesianCoordinateSmall::= INTEGER { negativeOutOfRange (-3094), positiveOutOfRange (1001) -} (-3094..1001) -- this is 12 bit, tbd question: increase the range by "one bit" to make this more practical for common usage? +} (-3094..1001) /** - * This DF represents the value of a cartesian coordinate with a range of -327,67 to + 327,66 meters. + * This DF represents the value of a cartesian coordinate with a range of -327,68 metres to + 327,66 metres. + * + * The value shall be set to: + ` - `-32768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres. + * - `n (n > -32768 and n < 32767)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre. + * - `32767` if the longitudinal offset is out of range, i.e. greater than + 327,66 metres. * * @unit 0,01 m * @category: Basic information @@ -666,8 +685,13 @@ CartesianCoordinate::= INTEGER{ } (-32768..32767) /** - * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. + * This DF represents the value of a cartesian coordinate with a range of -1 310,72 metres to + 1 310,70 metres. * + * The value shall be set to: + ` - `-131072` if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres. + * - `n (n > -1 310,72 and n < 131071)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre. + * - `131071` if the longitudinal offset is out of range, i.e. greater than + 1 310,70 metres. + * * @unit 0,01 m * @category: Basic information * @revision: Created in V2.1.1 @@ -682,36 +706,16 @@ CartesianCoordinateLarge::= INTEGER{ * * @category: Communication information * @revision: V1.3.1 + * @note: this DE is deprecated and shall not be used anymore. */ -CenDsrcTollingZoneID::= ProtectedZoneID - -/** - * This DE represents the size of a cluster in terms of number of contained entities: known members in the cluster + 1 (for the cluster leader) . - * - * The value shall be set to `0` if the information is unavailable. - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterCardinalitySize::= INTEGER { - unavailable (0), - onlyLeader (1) -} (0..255) - -/** - * This DE represents the identifier of a cluster. - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterId ::= INTEGER(0..255) +CenDsrcTollingZoneID::= ProtectedZoneId /** * This DE indicates the reason why a cluster leader intends to break up the cluster. * * The value shall be set to: * - 0 - `notProvided` - if the information is not provided. - * - 1 - `clusteringPurposeCompleted` - if the cluster purposes has been completed. + * - 1 - `clusteringPurposeCompleted` - if the cluster purpose has been completed. * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box. * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster. * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps. @@ -737,9 +741,9 @@ ClusterBreakupReason ::= ENUMERATED { * The value shall be set to: * - 0 - `notProvided ` - if the information is not provided. * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore. - * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbounded by the leader. + * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbanded by the leader. * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box. - * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of adefined range. + * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of a defined range. * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster. * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure. * - 7 - `failedJoin` - if the participant failed to join the cluster. @@ -791,9 +795,9 @@ CollisionRiskSubCauseCode ::= INTEGER { * * The value shall be set to: * - * - `0` : in case the confidence value is unknown but the reported value is valid. + * - `0` : in case the confidence value is unknown but the value is valid. * - `n (n > 0 and n < 101)` : for the confidence value in %. - * - `101` : in case the confidence value is not available. + * - `101` : in case the confidence value is not available. * * @unit Percent * @category: Basic information @@ -805,44 +809,47 @@ ConfidenceLevel ::= INTEGER { } (0..101) /** - * This DE represents the absolute accuracy of measurement to a confidence level of 95%. + * This DE indicates the coordinate confidence value which represents the estimated absolute accuracy of a position coordinate with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n` (`n > 0` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. - * - `4094` if the accuracy information is greater than 40,93 meter. - * - `4095` if the accuracy information is not available. + * - `n` (`n > 0` and `n < 4095`) if the confidence value is is equal to or less than n x 0,01 metre, and greater than (n-1) x 0,01 metre. + * - `4095` if the confidence value is greater than 40,94 metres. + * - `4096` if the confidence value is not available. * * @unit 0,01 m * @category: Basic information * @revision: Created in V2.1.1 */ CoordinateConfidence ::= INTEGER { - outOfRange (4094), - unavailable (4095) -} (0..4095) + outOfRange (4095), + unavailable (4096) +} (1..4096) /** * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. * - * The following values are specified. - * - `-100` indicates full negative correlation + * The value shall be set to: + * - `-100` in case of full negative correlation * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100. - * - `0` indicates not correlated or unavailable + * - `0` in case of no correlation. * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. - * - `100` indicates full positive correlation + * - `100` in case of full positive correlation + * - `101` in case the correlation information is unavailable. * * @unit: the value is scaled by 100 * @category: Sensing information * @revision: Created in V2.1.1 */ -CorrelationRowValue ::= INTEGER { +CorrelationCellValue ::= INTEGER { full-negative-correlation (-100), no-correlation (0), - full-positive-correlation (100) -} (-100..100) + full-positive-correlation (100), + unavailable (101) +} (-100..101) /** - * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. + * The DE describes whether the yaw rate is used to calculate the curvature for a curvature value. * * The value shall be set to: * - 0 - `yawRateUsed` - if the yaw rate is used. @@ -860,30 +867,31 @@ CurvatureCalculationMode ::= ENUMERATED { } /** - * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. + * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy range of a curvature value with a confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - 0 - `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. - * - 1 - `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. - * - 2 - `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. - * - 3 - `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. - * - 4 - `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. - * - 5 - `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. - * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. - * - 7 - `unavailable` if the information is not available. - * - * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by + * - 0 - `onePerMeter-0-00002` if the confidence value is less than or equal to 0,00002 m-1. + * - 1 - `onePerMeter-0-0001` if the confidence value is less than or equal to 0,0001 m-1 and greater than 0,00002 m-1. + * - 2 - `onePerMeter-0-0005` if the confidence value is less than or equal to 0,0005 m-1 and greater than 0,0001 m-1. + * - 3 - `onePerMeter-0-002` if the confidence value is less than or equal to 0,002 m-1 and greater than 0,0005 m-1. + * - 4 - `nePerMeter-0-01` if the confidence value is less than or equal to 0,01 m-1 and greater than 0,002 m-1. + * - 5 - `nePerMeter-0-1` if the confidence value is less than or equal to 0,1 m-1 and greater than 0,01 m-1. + * - 6 - `outOfRange` if the confidence value is out of range, i.e. greater than 0,1 m-1. + * - 7 - `unavailable` if the confidence value is not available. + * + * @note: The fact that a curvature value is received with confidence value set to `unavailable(7)` can be caused by * several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported curvature value may be valid and used by the application. + * In all 3 cases above, the curvature value may be valid and used by the application. * - * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid + * @note: If a curvature value is received and its confidence value is set to 'outOfRange(6)', it means that the curvature value is not valid * and therefore cannot be trusted. Such value is not useful for the application. * * @category: Vehicle information - * @revision: description revised in V2.1.1 + * @revision: Description revised in V2.1.1 */ CurvatureConfidence ::= ENUMERATED { onePerMeter-0-00002 (0), @@ -901,7 +909,7 @@ CurvatureConfidence ::= ENUMERATED { * ``` * Value = 1 / Radius * 10000 * ``` - * wherein radius is the vehicle turning curve radius in meters. + * wherein radius is the vehicle turning curve radius in metres. * * Positive values indicate a turning curve to the left hand side of the driver. * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. @@ -951,8 +959,8 @@ DangerousEndOfQueueSubCauseCode ::= INTEGER { /** * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. - * The value is assigned according to `_class_` and `_division_` definitions of dangerous goods as specified in part II, - * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.4]. + * The value is assigned according to `class` and `division` definitions of dangerous goods as specified in part II, + * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.3]. * * * @category Vehicle information @@ -989,7 +997,7 @@ DangerousGoodsBasic::= ENUMERATED { * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, - * - 4 - `absEngaged` - in case Anti-lock braking system (ABS) is engaged, + * - 4 - `absEngaged` - in case Anti-lock Braking System (ABS) is engaged, * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, @@ -1015,13 +1023,13 @@ DangerousSituationSubCauseCode ::= INTEGER { * * The value shall be set to: * - `-12700` for values equal to or lower than -127 metres. - * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 meter below the reference position. + * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 metre below the reference position. * - `0` for no altitudinal offset. - * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 meter above the reference position. + * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 metre above the reference position. * - `12799` for values equal to or greater than 127,99 metres. * - `12800` when the information is unavailable. * - * @unit: 0.01 metre + * @unit: 0,01 metre * @category: GeoReference information * @revision: editorial update in V2.1.1 */ @@ -1036,12 +1044,12 @@ DeltaAltitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. + * - `n` (`n >= -131071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position. * - `0` for no latitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the north from the reference position. + * - `n` (`n > 0` and `n < 131072`) for offset n x 10^-7 degree towards the north from the reference position. * - `131072` when the information is unavailable. * - * @unit: 0.1 microdegree + * @unit: 10^-7 degree * @category: GeoReference information * @revision: editorial update in V2.1.1 */ @@ -1054,12 +1062,12 @@ DeltaLatitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. + * - `n` (`n >= -131071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position. * - `0` for no longitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the east from the reference position. + * - `n` (`n > 0` and `n < 131072`) for offset n x 10^-7 degree towards the east from the reference position. * - `131072` when the information is unavailable. * - * @unit: 0.1 microdegree + * @unit: 10^-7 degree * @category: GeoReference information * @revision: editorial update in V2.1.1 */ @@ -1067,30 +1075,21 @@ DeltaLongitude ::= INTEGER { unavailable (131072) } (-131071..131072) -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 0,01 s - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) - /** * This DE represents a difference in time with respect to a reference time. * Example: a time interval between two consecutive message transmissions. * - * @unit: 1 ms + * @unit: 0,001 s * @category: Basic information - * @revision: Created in V2.1.1 from the DE TransmissionInterval + * @revision: Created in V2.1.1 from the DE TransmissionInterval in [i.2] */ DeltaTimeMilliSecondPos ::= INTEGER (1..10000) /** * This DE represents a difference in time with respect to a reference time. * - * @unit: 1 ms + * @unit: 0,001 s * @category: Basic information * @revision: Created in V2.1.1 */ @@ -1098,14 +1097,16 @@ DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) /** * This DE represents a difference in time with respect to a reference time. - * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, + * It can be interpreted as the first 8 bits of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, * multiply by 256 (i.e. append a `00` byte) * - * @unit: 256 milliseconds + * @unit: 256 * 0,001 s * @category: Basic information * @revision: Created in V2.1.1 */ -DeltaTimeQuarterSecond::= INTEGER (1..255) +DeltaTimeQuarterSecond::= INTEGER { + unavailable (255) +} (1..255) /** * This DE represents a difference in time with respect to a reference time. @@ -1127,14 +1128,13 @@ DeltaTimeTenthOfSecond::= INTEGER { */ DeltaTimeSecond ::= INTEGER (0..86400) - /** * This DE indicates a direction with respect to a defined reference direction. * Example: a reference direction may be implicitly defined by the definition of a geographical zone. * * The value shall be set to: * - 0 - `sameDirection` - to indicate the same direction as the reference direction. - * - 1 - `oppositeDirection` - to indicateopposite direction as the reference direction. + * - 1 - `oppositeDirection` - to indicate opposite direction as the reference direction. * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction. * - 3 - `unavailable` - to indicate that the information is unavailable. * @@ -1168,7 +1168,7 @@ DriveDirection ::= ENUMERATED { /** * This DE indicates whether a driving lane is open to traffic. * - * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall + * A lane is counted from inside border of the road excluding the hard shoulder. The size of the bit string shall * correspond to the total number of the driving lanes in the carriageway. * * The numbering is matched to @ref LanePosition. @@ -1176,7 +1176,7 @@ DriveDirection ::= ENUMERATED { * * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. * - * @note:Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. + * @note: hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. * * @category: Traffic information * @revision: V1.3.1 @@ -1212,11 +1212,11 @@ EmergencyPriority ::= BIT STRING { * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". * * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event - * is unavailable, - * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, - * - 2 -`prioritizedVehicleApproaching` - in case a prioritized vehicle (e.g. bus) is approaching, - * - 3-255 - reserved for future usage. + * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event + * is unavailable, + * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, + * - 2 - `prioritizedVehicleApproaching` - in case a prioritized vehicle is approaching, + * - 3-255 - reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -1255,7 +1255,7 @@ EnergyStorageType ::= BIT STRING { }(SIZE(7)) /** - * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. * * * @category: Vehicle information @@ -1264,7 +1264,7 @@ EnergyStorageType ::= BIT STRING { EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } /** - * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. * * * @category: Vehicle information @@ -1273,7 +1273,7 @@ EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} /** - * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. * * * @category: Vehicle information @@ -1282,7 +1282,7 @@ EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} /** - * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. * * * @category: Vehicle information @@ -1335,7 +1335,7 @@ ExteriorLights ::= BIT STRING { * This means that generationDeltaTime = TimestampIts mod 65 536. * * @category Time information - * @revision: Created in V2.1.1 based on EN 302 637-2 + * @revision: Created in V2.1.1 based on ETSI TS 103 900 [i.1] */ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) @@ -1354,7 +1354,8 @@ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) HardShoulderStatus ::= ENUMERATED { availableForStopping (0), closed (1), - availableForDriving (2)} + availableForDriving (2) +} /** * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. @@ -1363,8 +1364,8 @@ HardShoulderStatus ::= ENUMERATED { * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, * - 1 - `wildAnimals` - in case wild animals are detected on the road, * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, - * - 3 - `smallAnimals` - in case small size animal is detected on the road, - * - 4 - `largeAnimals` - in case large size animal is detected on the road, + * - 3 - `smallAnimals` - in case small size animals are detected on the road, + * - 4 - `largeAnimals` - in case large size animals are detected on the road, * - 5-255 - reserved for future usage. * * @category: Traffic information @@ -1387,7 +1388,7 @@ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, - * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves stating with a right turn curve, + * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves starting with a right turn curve, * - 6-255 - are reserved for future usage. * * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass @@ -1468,59 +1469,67 @@ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. + * This DE indicates the heading confidence value which represents the estimated absolute accuracy of a heading value with a confidence level of 95 %. * -The value shall be set to: - * - `1` if the heading accuracy is equal to or less than 0,1 degree, - * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, - * - `125` if the heading accuracy is equal to or less than 12,5 degrees, - * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, - * - `127` if the heading accuracy information is not available. + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, + * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, + * - `127` if the confidence value information is not available. * - * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, + * @note: The fact that a value is received with confidence value set to `unavailable(127)` can be caused by several reasons, * such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported heading value may be valid and used by the application. + * In all 3 cases above, the heading value may be valid and used by the application. * - * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported + * @note: If a heading value is received and its confidence value is set to `outOfRange(126)`, it means that the * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleConfidence instead. + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84AngleConfidence instead. * * @unit: 0,1 degree * @category: GeoReference information * @revision: Description revised in V2.1.1 */ -HeadingConfidence ::= Wgs84AngleConfidence +HeadingConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) /** -HeadingValue * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. * - * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleValue instead. + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84AngleValue instead. * * Unit: 0,1 degree * Categories: GeoReference information * @revision: Description revised in V2.1.1 (usage of value 3600 specified) */ -HeadingValue ::= Wgs84AngleValue +HeadingValue ::= INTEGER { + wgs84North (0), + wgs84East (900), + wgs84South (1800), + wgs84West (2700), + doNotUse (3600), + unavailable (3601) +} (0..3601) /** * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle * rear to front). * * The value shall be set to: - * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter. - * - `99` if the height is out of range, i.e. equal to or greater than 98 cm. + * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre. + * - `99` if the height is out of range, i.e. equal to or greater than 0,98 m. * - `100` if the height information is not available. * - * @unit 0,01 meter + * @unit 0,01 metre * @category Vehicle information * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) */ HeightLonCarr ::= INTEGER { + outOfRange(99), unavailable(100) } (1..100) @@ -1529,13 +1538,13 @@ HeightLonCarr ::= INTEGER { * * The value shall be set to: * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, - * - 1 - `childrenOnRoadway` - in case children are detected on the road event, + * - 1 - `childrenOnRoadway` - in case children are detected on the road, * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road, * - 4-255 - are reserved for future usage. * * @category: Traffic information - * @revision: V1.3.1 + * @revision: editorial revision in V2.1.1 */ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { unavailable (0), @@ -1597,15 +1606,14 @@ InformationQuality ::= INTEGER (0..7) * This DE defines the type of an interference management zone, so that an ITS-S can * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). * It is an extension of the type @ref ProtectedZoneType. - * * The value shall be set to: - * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] - * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.23] + * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14] + * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14] * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling - * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.24], clause 7 - * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.24], clause 7 + * - 3 - `urbanRail` - as specified in ETSI TS 103 724 [i.13], clause 7 + * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.13], clause 7 + * - 5 - `fixedLinks` - as specified in ETSI TS 103 724 [i.13], clause 7 * * @category: Communication information * @revision: Created in V2.1.1 @@ -1621,7 +1629,7 @@ InterferenceManagementZoneType ::= ENUMERATED { } /** - * This DE represents the vehicle type according to ISO 3833 [4]. + * This DE represents the vehicle type according to ISO 3833 [3]. * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. * * The value shall be set to: @@ -1636,7 +1644,7 @@ InterferenceManagementZoneType ::= ENUMERATED { * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 * - 10 - `specialPassengerCar` - term No 3.1.1.9 - * - 11 - `bus (11)` - term No 3.1.2 + * - 11 - `bus` - term No 3.1.2 * - 12 - `minibus` - term No 3.1.2.1 * - 13 - `urbanBus` - term No 3.1.2.2 * - 14 - `interurbanCoach` - term No 3.1.2.3 @@ -1673,47 +1681,47 @@ InterferenceManagementZoneType ::= ENUMERATED { */ Iso3833VehicleType ::= INTEGER { - passengerCar (0), - saloon (1), - convertibleSaloon (2), - pullmanSaloon (3), - stationWagon (4), - truckStationWagon (5), - coupe (6), - convertible (7), - multipurposePassengerCar (8), - forwardControlPassengerCar (9), - specialPassengerCar (10), - bus (11), - minibus (12), - urbanBus (13), - interurbanCoach (14), - longDistanceCoach (15), - articulatedBus (16), - trolleyBus (17), - specialBus (18), - commercialVehicle (19), - specialCommercialVehicle (20), - specialVehicle (21), - trailingTowingVehicle (22), - semiTrailerTowingVehicle (23), - trailer (24), - busTrailer (25), - generalPurposeTrailer (26), - caravan (27), - specialTrailer (28), - semiTrailer (29), - busSemiTrailer (30), - generalPurposeSemiTrailer (31), - specialSemiTrailer (32), - roadTrain (33), - passengerRoadTrain (34), - articulatedRoadTrain (35), - doubleRoadTrain (36), - compositeRoadTrain (37), - specialRoadTrain (38), - moped (39), - motorCycle (40) + passengerCar (0), + saloon (1), + convertibleSaloon (2), + pullmanSaloon (3), + stationWagon (4), + truckStationWagon (5), + coupe (6), + convertible (7), + multipurposePassengerCar (8), + forwardControlPassengerCar (9), + specialPassengerCar (10), + bus (11), + minibus (12), + urbanBus (13), + interurbanCoach (14), + longDistanceCoach (15), + articulatedBus (16), + trolleyBus (17), + specialBus (18), + commercialVehicle (19), + specialCommercialVehicle (20), + specialVehicle (21), + trailingTowingVehicle (22), + semiTrailerTowingVehicle (23), + trailer (24), + busTrailer (25), + generalPurposeTrailer (26), + caravan (27), + specialTrailer (28), + semiTrailer (29), + busSemiTrailer (30), + generalPurposeSemiTrailer (31), + specialSemiTrailer (32), + roadTrain (33), + passengerRoadTrain (34), + articulatedRoadTrain (35), + doubleRoadTrain (36), + compositeRoadTrain (37), + specialRoadTrain (38), + moped (39), + motorCycle (40) } (0..255) /** @@ -1776,7 +1784,7 @@ LanePosition ::= INTEGER { * - values 21 to 30 reserved for future use * * @category: Road topology information - * @revision: V2.1.1 + * @revision: Created in V2.1.1 */ LaneType::= INTEGER{ traffic (0), @@ -1806,7 +1814,14 @@ LaneType::= INTEGER{ /** * This DE represents the width of a lane measured at a defined position. * - * @unit: 0.01 meter + * The value shall be set to: + * - `n (n >= 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre. + * - `1022` if the lane width is out of range, i.e. greater than 10,21 m. + * - `1023` if the lane width information is not available. + * + * The value 0 shall not be used. + * + * @unit: 0,01 metre * @category: GeoReference information * @revision: Created in V2.1.1 */ @@ -1815,14 +1830,15 @@ LaneWidth::= INTEGER (0..1023) /** * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or * in south hemisphere. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitudes south of the Equator. + * - `n (n >= -900000000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator. * - `0` is used for the latitude of the equator. - * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitudes north of the Equator. + * - `n (n > 0 and n < 900000001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator. * - `900 000 001` when the information is unavailable. * - * @unit: 0.1 microdegree + * @unit: 10^-7 degree * @category: GeoReference information * @revision: Editorial update in V2.1.1 */ @@ -1833,21 +1849,21 @@ Latitude ::= INTEGER { /** * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - + * * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation - * with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2. * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation - with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2. * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * - * @note: the empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: the empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * - * @unit: 0.1 m/s2 - * @category Vehicle information + * @unit: 0,1 m/s2 + * @category: Vehicle information * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. */ LateralAccelerationValue ::= AccelerationValue @@ -1873,16 +1889,17 @@ LightBarSirenInUse ::= BIT STRING { /** * This DE represents the absolute geographical longitude in a WGS84 coordinate system, providing a range of 180 degrees * to the east or to the west of the prime meridian. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > -1800000000 and n < 0)`, i.e. negative values for longitudes to the west. + * - `n (n > -1800000000 and n < 0)` x 10^-7 degree, i.e. negative values for longitudes to the west. * - `0` to indicate the prime meridian. - * - `n (n > 0 and n < 1800000001)`, i.e. positive values for longitudes to the east. + * - `n (n > 0 and n < 1800000001)` x 10^-7 degree, i.e. positive values for longitudes to the east. * - `1 800 000 001` when the information is unavailable. * * The value -1800000000 shall not be used. * - * @unit: 0.1 microdegree + * @unit: 10^-7 degree * @category: GeoReference information * @revision: Description revised in V2.1.1 */ @@ -1893,9 +1910,9 @@ Longitude ::= INTEGER { /** * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * -* The value shall be set to: + * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. @@ -1905,61 +1922,114 @@ Longitude ::= INTEGER { * This acceleration is along the tangent plane of the road surface and does not include gravity components. * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * @unit: 0,1 m/s2 * @category: Vehicle information * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. */ LongitudinalAccelerationValue::= AccelerationValue /** - * This DE represents the longitudinal offset of the map-matched position of a particular object along the - * matched lane, beginning from the lane's starting point. + * This DE represents the longitudinal offset of a map-matched position along a matched lane, beginning from the lane's starting point. * - * @unit 0,1 m + * The value shall be set to: + * - `n (n >= 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre. + * - `32766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m. + * - `32767` if the longitudinal offset information is not available. * + * + * @unit 0,1 metre * @category: Road topology information * @revision: Created in V2.1.1 */ -LongitudinalLanePositionValue ::= INTEGER (0..32767) +LongitudinalLanePositionValue ::= INTEGER { + outOfRange(32766), + unavailable(32767) +}(0..32767) /** - * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. + * This DE indicates the longitudinal lane position confidence value which represents the estimated accuracy of longitudinal lane position measurement with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 101)` if the accuracy is equal to or less than n x 0,01 m, and more than (n-1) x 0,01 m. - * - `101` if the acceleration accuracy is out of range i.e. greater than 1 m. - * - `102` if the data is unavailable. + * - `n (n > 0 and n < 1022)` if the confidence value is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m. + * - `1022` if the confidence value is out of range i.e. greater than 102,1 m. + * - `1023` if the confidence value is unavailable. * - * @unit 0,01 meter + * @unit 0,1 metre * @category: Road topology information * @revision: Created in V2.1.1 */ LongitudinalLanePositionConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) + outOfRange (1022), + unavailable (1023) +} (0..1023) + + +/** + * This DE indicates the components of an @ref PerceivedObject that are included in the @ref LowerTriangularPositiveSemidefiniteMatrix. + * + * The corresponding bit shall be set to 1 if the component is included: + * - 0 - `xCoordinate` - when the component xCoordinate of the component @ref CartesianPosition3dWithConfidence is included. + * - 1 - `yCoordinate` - when the component yCoordinate of the component @ref CartesianPosition3dWithConfidence is included. + * - 1 - `zCoordinate` - when the component zCoordinate of the component @ref CartesianPosition3dWithConfidence is included. + * - 1 - `xVelocityOrVelocityMagnitude` - when the component xVelocity or VelocityMagnitude of the component @ref VelocityPolarWithZ is included. + * - 1 - `yVelocityOrVelocityDirection` - when the component yVelocity or VelocityDirection of the component @ref VelocityPolarWithZ is included. + * - 1 - `zVelocity` - when the component zVelocity of the component @ref VelocityPolarWithZ is included. + * - 1 - `xAccelOrAccelMagnitude` - when the component xAcceleration of the component @ref AccelerationCartesian or the component AccelerationMagnitude of the component @ref AccelerationPolarWithZ is included. + * - 1 - `yAccelOrAccelDirection` - when the component yAcceleration of the component @ref AccelerationCartesian or the component AccelerationDirection of the component @ref AccelerationPolarWithZ is included. + * - 1 - `zAcceleration` - when the component zAcceleration of the component @ref AccelerationCartesianor of the component @ref AccelerationPolarWithZ is included. + * - 1 - `zAngle` - when the component zAngle is included. + * - 1 - `yAngle` - when the component yAngle is included. + * - 1 - `xAngle` - when the component xAngle is included. + * - 1 - `zAngleRate` - when the component zAngleRate is included. + * + * Otherwise, it shall be set to 0. + * + * @category Sensing information + * @revision: Created in V2.1.1 + */ +MatrixIncludedComponents::= BIT STRING{ + xPosition (0), + yPosition (1), + zPosition (2), + xVelocityOrVelocityMagnitude (3), + yVelocityOrVelocityDirection (4), + zSpeed (5), + xAccelOrAccelMagnitude (6), + yAccelOrAccelDirection (7), + zAcceleration (8), + zAngle (9), + yAngle (10), + xAngle (11), + zAngleRate (12) +} (SIZE(13,...)) /** * This DE represents the type of facility layer message. * * The value shall be set to: - * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.3], - * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.2], - * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.11], - * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.17], - * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.17], - * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.17], - * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.14], - * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.15], - * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.17], - * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.17], - * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.11], - * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.19], - * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.17], - * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.20], + * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.2], + * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.1], + * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.9], + * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.15], + * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.15], + * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.15], + * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.11], + * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.10], + * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.15], + * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.15], + * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.9], + * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.17], + * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.15], + * - 14 - `cpm` - reserved for Collective Perception Message (CPM), * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], - * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.21]. - * - 18-255 - reserved for future usage, + * - 17 - `dsm` - reserved for Diagnosis, logging and Status Message (DSM). + * - 18 - `pcim` - reserved for Parking Control Infrastructure Message. + * - 19 - `pcvm` - reserved for Parking Control Vehicle Message. + * - 20 - `mcm` - reserved for Manoeuvre Coordination Message. + * - 21 - `pam` - reserved for Parking Availability Message. + * - 22-255 - reserved for future usage. * * @category: Communication information * @revision: Created in V2.1.1 from @ref ItsPduHeader. @@ -1981,16 +2051,20 @@ MessageId::= INTEGER { cpm (14), imzm (15), vam (16), - dsm (17) + dsm (17), + pcim (18), + pcvm (19), + mcm (20), + pam (21) } (0..255) /** * This DE represents the number of occupants in a vehicle. * * The value shall be set to: - * - `n (n > 1 and n < 126)` for the number n of occupants. - * - `126` for values equal to or higher than 126. - * - `127` if information is not available.`. + * - `n (n >= 0 and n < 126)` for the number n of occupants, + * - `126` for values equal to or higher than 126, + * - `127` if information is not available. * * @unit: 1 person * @category: Vehicle information @@ -2002,18 +2076,18 @@ NumberOfOccupants ::= INTEGER { } (0 .. 127) /** - * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. + * This DE represents a single-value indication about the overall information quality of a perceived object. * * The value shall be set to: * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. * - `n (n > 0 and n < 15)` : for the applicable confidence value. - * -`15` : if there is full confidence in the detected ObjectDescriptor. + * -`15` : if there is full confidence in the detected Object. * * @unit n/a * @category: Sensing information * @revision: Created in V2.1.1 */ -ObjectConfidence ::= INTEGER { +ObjectPerceptionQuality ::= INTEGER { noConfidence (0), fullConfidence (15) } (0..15) @@ -2021,68 +2095,37 @@ ObjectConfidence ::= INTEGER { /** * This DE represents a single dimension of an object. * + * The value shall be set to: + * - `n (n > 0 and n < 255)` if the accuracy is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m. + * - `255` if the accuracy is out of range i.e. greater than 25,4 m. + * - `256` if the data is unavailable. + * * @unit 0,1 m * @category: Sensing information * @revision: Created in V2.1.1 */ -ObjectDimensionValue ::= INTEGER (0..1023) +ObjectDimensionValue ::= INTEGER { + outOfRange (255), + unavailable (256) +}(1..256) /** - * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. + * This DE indicates the object dimension confidence value which represents the estimated absolute accuracy of an object dimension value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 101)` if the dimension accuracy is equal to or less than n x 0,01 meter, and more than (n-1) x 0,01 meter . - * - `101` if the dimension accuracy is out of range i.e. greater than 1 m. - * - `102` if the data is unavailable. + * - `n (n > 0 and n < 31)` if the confidence value is equal to or less than n x 0,1 metre, and more than (n-1) x 0,1 metre. + * - `31` if the confidence value is out of range i.e. greater than 3,0 m. + * - `32` if the confidence value is unavailable. * - * @unit 0,01 m + * @unit 0,1 m * @category: Sensing information * @revision: Created in V2.1.1 */ ObjectDimensionConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) - -/** - * The DE indicates whether the detected object is classified as a dynamic (i.e. moving) object. - * This value indicates whether an object has the general capability to move, i.e. change its - * position. - * - * The value shall be set to: - * - `0` - dynamic - if the object is moving. - * - `1` - hasBeenDynamic - if the object has been dynamic before, e.g., a car stopping at a traffic light. - * - `2` - static - if the object has been detected to be not moving throughout any previous observation. - * - `3` - unavailable - if the information is unavailable. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDynamicStatus ::= INTEGER { - dynamic (0), - hasBeenDynamic (1), - static (2), - unavailable (3) -} (0..3) - -/** - * This DE indicates the approximate position of the reference point of measurement for the object dimensions using a 9 cell grid. - * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -ObjectRefPoint ::= INTEGER { - bottomLeft (0), - midLeft (1), - topLeft (2), - bottomMid (3), - midMid (4), - topMid (5), - bottomRight (6), - midRight (7), - topRight (8) -} (0..8) + outOfRange (31), + unavailable (32) +} (1..32) /** * This DE indicates the face or part of a face of a solid object. @@ -2106,27 +2149,6 @@ ObjectFace ::= ENUMERATED { back (5) } -/** - * This DE represent a lateral position with lane-level resolution on the road reservation, which is not on regular traffic lanes. - * - * The value shall be set to: - * - 0 - `unavailable` - if information on the lane position is unavailable. - * - 1 - `sidewalk` - if the position is on the side-walk. - * - 2 - `parkingLane` - if the position is on an area at the side of the road not intended for travel but for vehicular parking. - * - 3 - `bikeLane` - if the position is on an area reserved for bicycles. - * - 4-15 - reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. - * - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -OffRoadLanePosition ::= ENUMERATED { - unavailable (0), - sidewalk (1), - parkingLane (2), - bikeLane (3), - max (15) -} - /** * This DE represents a time period to describe the opening days and hours of a Point of Interest. * (for example local commerce). @@ -2142,10 +2164,19 @@ OpeningDaysHours ::= UTF8String * @category: Basic information * @revision: Created in V2.1.1 */ -OrdinalNumber1B ::= INTEGER(1..255) -- tbd shall it start from 0 or from 1 ? +OrdinalNumber1B ::= INTEGER(0..255) + + +/** + * The DE represents an ordinal number that indicates the position of an element in a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +OrdinalNumber3b ::= INTEGER(1..8) /** - * This DE indicates the subclass of a detected object for object class "otherSubclass". + * This DE indicates the subclass of a detected object for @ref ObjectClass "otherSubclass". * * The value shall be set to: * - `0` - unknown - if the subclass is unknown. @@ -2162,11 +2193,11 @@ OtherSubClass ::= INTEGER { /** * This DE represents the recorded or estimated travel time between a position and a predefined reference position. * - * @unit 0.01 second + * @unit 0,01 second * @category GeoReference information - * @revision: same type as in V1.3.1 but now based on a basic type + * @revision: Created in V1.3.1 */ -PathDeltaTime ::= DeltaTimeHundredthOfSecond +PathDeltaTime ::= INTEGER (1..65535, ...) /** * This DE denotes the ability of an ITS-S to provide up-to-date information. @@ -2174,8 +2205,8 @@ PathDeltaTime ::= DeltaTimeHundredthOfSecond * * The value shall be set to: * - `0` if the performance class is unknown. - * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.6] - * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.6] + * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.5] + * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.5] * - Values in the range `3 to 7` are reserved for future use. * * @category: Vehicle information @@ -2200,18 +2231,18 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * the vehicle bounding box of the empty load vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 meter and 6,2 meters. - * - `62` for values equal to or higher than `6.2 metres`. + * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 metre and 6,2 metres. + * - `62` for values equal to or higher than `6.1 metres`. * - `63` if the information is unavailable. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * * @unit 0,1 metre * @category Vehicle information - * @revision: Editorial update in V2.1.1 + * @revision: description revised in V2.1.1 (the meaning of 62 has changed slightly) */ PosCentMass ::= INTEGER { - tenCentimeters (1), + tenCentimetres (1), outOfRange (62), unavailable (63) } (1..63) @@ -2289,16 +2320,16 @@ PositionOfOccupants ::= BIT STRING { } (SIZE(20)) /** - * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. + * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 0,1 metre. * * The value shall be set to: - * - `n (n > 0 and n < 19) for any aplicable value between 0,1 meter and 1,9 meters. - * - `19` for values equal to or higher than 1.9 metres. + * - `n (n > 0 and n < 19) for any aplicable value between 0,1 metre and 1,9 metres. + * - `19` for values equal to or higher than 1.8 metres. * - `20` if the information is unavailable. * * @category: Vehicle information - * @unit 0.1 metre - * @revision: Editorial update in V2.1.1 + * @unit 0,1 metre + * @revision: description revised in V2.1.1 (the meaning of 19 has changed slightly) */ PosFrontAx ::= INTEGER { outOfRange (19), @@ -2310,13 +2341,13 @@ PosFrontAx ::= INTEGER { * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 meter and 1,26 meters. - * - `126` for values equal to or higher than 1.26 metres. + * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 metre and 1,26 metres. + * - `126` for values equal to or higher than 1.25 metres. * - `127` if the information is unavailable. * * @unit 0,01 metre * @category Vehicle information - * @revision: Editorial update in V2.1.1 + * @revision: description revised in V2.1.1 (the meaning of 126 has changed slightly) */ PosLonCarr ::= INTEGER { outOfRange (126), @@ -2328,13 +2359,13 @@ PosLonCarr ::= INTEGER { * middle point of the front line of the vehicle bounding box. * * The value shall be set to: - * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 meter and 2,9 meters. - * - `29` for values equal to or greater than 2.9 metres. + * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 metre and 2,9 metres. + * - `29` for values equal to or greater than 2.8 metres. * - `30` if the information is unavailable. * * @unit 0,1 metre * @category Vehicle information - * @revision: Editorial update in V2.1.1 + * @revision: description revised in V2.1.1 (the meaning of 29 has changed slightly) */ PosPillar ::= INTEGER { outOfRange (29), @@ -2364,14 +2395,14 @@ PostCrashSubCauseCode ::= INTEGER { } (0..255) /** -* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square meter. +* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square metre. * * The following values are specified: -* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0.1 mm/h and greater than (n-1) x 0.1 mm/h. +* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0,1 mm/h and greater than (n-1) x 0,1 mm/h. * - `2000` if the amount of rain falling is greater than 199.9 mm/h * - `2001` if the information is not available * -* @unit: 0.1 mm/h +* @unit: 0,1 mm/h * @category: Basic Information * @revision: created in V2.1.1 */ @@ -2381,16 +2412,16 @@ PrecipitationIntensity ::= INTEGER { } (1..2001) /** - * This DE represenst the indentifier of a protected communication zone. + * This DE represents the indentifier of a protected communication zone. * * * @category: Infrastructure information, Communication information - * @revision: V1.3.1 + * @revision: Revision in V2.1.1 (changed name from ProtectedZoneID to ProtectedZoneId) */ -ProtectedZoneID ::= INTEGER (0.. 134217727) +ProtectedZoneId ::= INTEGER (0.. 134217727) /** - * This DE represenst the radius of a protected communication zone. + * This DE represents the radius of a protected communication zone. * * * @unit: metre @@ -2403,7 +2434,7 @@ ProtectedZoneRadius ::= INTEGER (1..255,...) * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). * - * The protected zone type is defined in ETSI TS 102 792 [i.16]. + * The protected zone type is defined in ETSI TS 102 792 [i.14]. * * * @category: Communication information @@ -2434,8 +2465,8 @@ PtActivationData ::= OCTET STRING (SIZE(1..20)) * * The folowing value are specified: * - `0` undefinedCodingType : undefined coding type, - * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.8], - * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.8]. + * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.7], + * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.7]. * - values 3 to 255 : reserved for alternative and future use. * * @category: Vehicle information @@ -2478,12 +2509,12 @@ RailwayLevelCrossingSubCauseCode ::= INTEGER { * - 1 `lessThan100m` : for distances below 100 m. * - 2 `lessThan200m` : for distances below 200 m. * - 3 `lessThan500m` : for distances below 300 m. - * - 4 `lessThan1000m` : for distances below 1000 m. - * - 5 `lessThan5km` : for distances below 5000 m. - * - 6 `lessThan10km` : for distances below 10000 m. - * - 7 `over10km` : for distances over 10000 m. + * - 4 `lessThan1000m` : for distances below 1 000 m. + * - 5 `lessThan5km` : for distances below 5 000 m. + * - 6 `lessThan10km` : for distances below 10 000 m. + * - 7 `over10km` : for distances over 10 000 m. * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref StandardLength3b instead. + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref StandardLength3b instead. * * @category: GeoReference information * @revision: Editorial update in V2.1.1 @@ -2513,7 +2544,7 @@ RelevanceDistance ::= ENUMERATED { * @note: Upstream traffic corresponds to the incoming traffic towards the event position, * and downstream traffic to the departing traffic away from the event position. * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref TrafficDirection instead. + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrafficDirection instead. * * @category: GeoReference information * @revision: Editorial update in V2.1.1 @@ -2612,11 +2643,13 @@ RoadworksSubCauseCode ::= INTEGER { } (0..255) /** - * This DE indicates if a distance is safe - * This DE is FALSE if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} simultaneously satisfied with confidence of 90 % or more. - * Otherwise stationSafeDistanceIndication is set to TRUE. + * This DE indicates if a distance is safe. * - * @Note: the ebbreviations used are Lateral Distance (LaD), Longitudinal Distance (LoD) and Vertical Distance (VD) + * The value shall be set to: + * - `FALSE` if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} is simultaneously satisfied with confidence level of 90 % or more. + * - `TRUE` otherwise. + * + * @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) * * @category: Traffic information, Kinematics information @@ -2625,30 +2658,32 @@ RoadworksSubCauseCode ::= INTEGER { SafeDistanceIndicator::= BOOLEAN /** - * This DE represenst the absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a + * This DE indicates the horizontal position confidence value which represents the estimated absolute position accuracy, in one of the axis direction as defined in a shape of ellipse with a * confidence level of 95 %. * * The value shall be set to: - * - `1` if the accuracy is equal to or less than 1 cm, - * - `n (n > 1 and n < 4 094)` if the accuracy is equal to or less than n cm, - * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, + * - `n (n > 0 and n < 4 094)` if the accuracy is equal to or less than n * 0,01 metre, + * - `4 094` if the accuracy is out of range, i.e. greater than 4,093 m, * - `4 095` if the accuracy information is unavailable. + * + * The value 0 shall not be used. * - * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' + * @note: The fact that a position coordinate value is received with confidence value set to 'unavailable(4095)' * can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported position coordinate value may be valid and used by the application. - * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that - * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful + * In all 3 cases above, the position coordinate value may be valid and used by the application. + * If a position coordinate value is received and its confidence value is set to 'outOfRange(4094)', it means that + * the position coordinate value is not valid and therefore cannot be trusted. Such value is not useful * for the application. - * @unit 0,01 meter + * @unit 0,01 metre * @category: GeoReference Information - * @revision: Editorial update in V2.1.1 + * @revision: Description revised in V2.1.1 */ SemiAxisLength ::= INTEGER{ + doNotUse (0), outOfRange (4094), unavailable (4095) } (0..4095) @@ -2671,7 +2706,7 @@ SemiAxisLength ::= INTEGER{ * - `11` acoustic : in case the sensor is acoustic. * - `12` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. * - `13` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. - * - 14-15 reserved for future usage. + * - 14-31 reserved for future usage. * * @category: Sensing Information * @revision: created in V2.1.1 @@ -2691,7 +2726,7 @@ SensorType ::= INTEGER { acoustic (11), localAggregation (12), itsAggregation (13) -} (0..15) +} (0..31) /** * This DE represents a sequence number. @@ -2754,7 +2789,7 @@ SlowVehicleSubCauseCode ::= INTEGER { /** * The DE indicates if a vehicle is carrying goods in the special transport conditions. - + * * The corresponding bit shall be set to 1 under the following conditions: * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load. * - 1 `excessWidth` : the vehicle is carrying goods in excess of width. @@ -2773,23 +2808,24 @@ SpecialTransportType ::= BIT STRING { } (SIZE(4)) /** - * This DE represents the absolute accuracy of a speed value information for a predefined confidence level of 95%. + * This DE indicates the speed confidence value which represents the estimated absolute accuracy of a speed value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 126)` if the speed accuracy is equal to or less than n cm/s. - * - `126` if the speed accuracy is out of range, i.e. greater than 125 cm/s. - * - `127` if the speed accuracy information is not available. + * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n * 0,01 m/s. + * - `126` if the confidence value is out of range, i.e. greater than 1,25 m/s. + * - `127` if the confidence value information is not available. * - * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: + * @note: The fact that a speed value is received with confidence value set to `unavailable(127)` can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported speed value may be valid and used by the application. + * In all 3 cases above, the speed value may be valid and used by the application. * - * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid + * @note: If a speed value is received and its confidence value is set to `outOfRange(126)`, it means that the speed value is not valid * and therefore cannot be trusted. Such is not useful for the application. * - * @unit cm/s + * @unit: 0,01 m/s * @category: Vehicle information * @revision: Description revised in V2.1.1 */ @@ -2816,6 +2852,8 @@ SpeedLimit ::= INTEGER (1..255) * - `16382` for speed values greater than 163,81 m/s. * - `16383` if the speed accuracy information is not available. * + * @note: the the definition of “standstill” is out of scope of this document. + * * @unit: 0,01 m/s * @category: Kinematics information * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) @@ -2867,26 +2905,26 @@ StabilityLossProbability ::= INTEGER { } (0..63) /** - * The DE represents length as a measure of distance between points or as a dimension of an object. + * The DE represents length as a measure of distance between points or as a dimension of an object or shape. * - * @unit: 0.1 meter + * @unit: 0,1 metre * @category: Basic information * @revision: Created in V2.1.1 */ StandardLength12b::= INTEGER (0..4095) /** - * The DE represents length as a measure of distance between points or as a dimension of an object. + * The DE represents length as a measure of distance between points. * * The value shall be set to: * - 0 `lessThan50m` : for distances below 50 m. * - 1 `lessThan100m` : for distances below 100 m. * - 2 `lessThan200m` : for distances below 200 m. * - 3 `lessThan500m` : for distances below 300 m. - * - 4 `lessThan1000m` : for distances below 1000 m. - * - 5 `lessThan5km` : for distances below 5000 m. - * - 6 `lessThan10km` : for distances below 10000 m. - * - 7 `over10km` : for distances over 10000 m. + * - 4 `lessThan1000m` : for distances below 1 000 m. + * - 5 `lessThan5km` : for distances below 5 000 m. + * - 6 `lessThan10km` : for distances below 10 000 m. + * - 7 `over10km` : for distances over 10 000 m. * * @category: GeoReference information * @revision: Created in V2.1.1 from RelevanceDistance @@ -2905,7 +2943,7 @@ StandardLength3b ::= ENUMERATED { /** * The DE represents length as a measure of distance between points or as a dimension of an object. * - * @unit: 0.1 meter + * @unit: 0,1 metre * @category: Basic information * @revision: Created in V2.1.1 */ @@ -2914,7 +2952,7 @@ StandardLength9b::= INTEGER (0..511) /** * The DE represents length as a measure of distance between points or as a dimension of an object. * - * @unit: 0.1 meter + * @unit: 0,1 metre * @category: Basic information * @revision: Created in V2.1.1 */ @@ -2923,7 +2961,7 @@ StandardLength1B::= INTEGER (0..255) /** * The DE represents length as a measure of distance between points or as a dimension of an object. * - * @unit: 0.1 meter + * @unit: 0,1 metre * @category: Basic information * @revision: Created in V2.1.1 */ @@ -2934,7 +2972,7 @@ StandardLength2B::= INTEGER (0..65535) * * The value shall be set to: * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. - * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more 1 minute. + * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more than 1 minute. * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. * @@ -2979,36 +3017,37 @@ StationaryVehicleSubCauseCode ::= INTEGER { * The ITS-S ID may be a pseudonym. It may change over space and/or over time. * * @category: Basic information - * @revision: V1.3.1 + * @revision: Update in V2.1.1 : changed name from StationID to StationId */ -StationID ::= INTEGER(0..4294967295) +StationId ::= INTEGER(0..4294967295) /** - * This DE represenst the type of technical context the ITS-S is integrated in. + * This DE represents the type of technical context the ITS-S is integrated in. * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. * * The value shall be set to: * - 0 `unknown`: information about the ITS-S context is not provided, - * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). - * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, - * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] - class L1, L2 (VRU Profile 3) - * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] - class L3, L4, L5, L6, L7 (VRU Profile 3) - * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M1, - * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class M2, M3, - * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N1, - * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.18] class N2 and N3, + * - 1 `pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). + * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2). + * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + class L1, L2 (VRU Profile 3). + * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + class L3, L4, L5, L6, L7 (VRU Profile 3). + * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1. + * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3. + * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1. + * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3. * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in - UNECE/TRANS/WP.29/78/Rev.4 [i.18] class O, - * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, + UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O. + * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle). + * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets. * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). - * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) - * - 14 reserved for future usage + * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4). + * - 14 reserved for future usage. * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, - on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), - * - 16-255> reserved for future usage. + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity). + * - 16 `central`: ITS-S placed inside an ITS centre. + * - 17-255: reserved for future usage. * * @category: Communication information. * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) @@ -3028,29 +3067,30 @@ StationType ::= INTEGER { tram (11), lightVruVehicle (12), animal (13), - roadSideUnit (15) + roadSideUnit (15), + central (16) } (0..255) /** - * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. + * This DE indicates the steering wheel angle confidence value which represents the estimated absolute accuracy for a steering wheel angle value with a confidence level of 95 %. * * The value shall be set to: - * - `n (n > 0 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, - * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, - * - `127` if the accuracy information is not available. + * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n x 1,5 degrees, + * - `126` if the confidence value is out of range, i.e. greater than 187,5 degrees, + * - `127` if the confidence value is not available. * - * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' + * @note: The fact that a steering wheel angle value is received with confidence value set to 'unavailable(127)' * can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. + * In all 3 cases above, the steering wheel angle value may be valid and used by the application. * - * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', - * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. + * If a steering wheel angle value is received and its confidence value is set to 'outOfRange(126)', + * it means that the steering wheel angle value is not valid and therefore cannot be trusted. * Such value is not useful for the application. * - * @unit: 1.5 degree + * @unit: 1,5 degree * @category: Vehicle Information * @revision: Description revised in V2.1.1 */ @@ -3061,7 +3101,7 @@ SteeringWheelAngleConfidence ::= INTEGER { /** * This DE represents the steering wheel angle of the vehicle at certain point in time. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. @@ -3072,7 +3112,7 @@ SteeringWheelAngleConfidence ::= INTEGER { * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. * - `512` if information is not available. * - * @unit: 1.5 degree + * @unit: 1,5 degree * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). */ SteeringWheelAngleValue ::= INTEGER { @@ -3084,7 +3124,7 @@ SteeringWheelAngleValue ::= INTEGER { /** * This DE indicates the generic sub cause of a detected event. * - * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode + * @note: The sub cause code value assignment varies based on value of @ref CauseCode * * @category: Traffic information * @revision: Description revised in V2.1.1 (this is the generic sub cause type) @@ -3121,7 +3161,7 @@ Temperature ::= INTEGER { * * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, * which includes one leap second insertion since the ITS epoch. - * @unit: millisecond + * @unit: 0,001 s * @category: Basic information * @revision: Description revised in in V2.1.1 */ @@ -3161,9 +3201,9 @@ TrafficConditionSubCauseCode ::= INTEGER { * This DE indicates a traffic direction that is relevant to information indicated in a message. * * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions. - * - 1 `upstreamTraffic` : for upstream traffic. - * - 2 `downstreamTraffic` : for downstream traffic. + * - 0 `allTrafficDirections` : for all traffic directions, + * - 1 `upstreamTraffic` : for upstream traffic, + * - 2 `downstreamTraffic` : for downstream traffic, * - 3 `oppositeTraffic` : for traffic in the opposite direction. * * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. @@ -3204,10 +3244,11 @@ TrafficRule ::= ENUMERATED { * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. * * The value shall be set to: - * - `n (n >= 0 and n <= 50)` to indicate the actual stability level. + * - `n (n >= 0 and n <= 50)` to indicate the actual probability. * - the values between 51 and 62 are reserved. * - `63`: to indicate that the information is unavailable. * + * @unit: 2% * @category: Kinematics information * @revision: Created in V2.1.1 */ @@ -3219,10 +3260,10 @@ TrajectoryInterceptionProbability ::= INTEGER { * This DE defines the confidence level of the trajectoryInterceptionProbability. * * The value shall be set to: - * - `0` to indicate confidence less than 50 % - * - `1` to indicate confidence greater than or equal to 50 % and less than 70 %. - * - `2` to indicate confidence greater than or equal to 70 % and less than 90 %. - * - `3` to indicate confidence greater than or equal to 90%. + * - `0` to indicate confidence level less than 50 % + * - `1` to indicate confidence level greater than or equal to 50 % and less than 70 %. + * - `2` to indicate confidence level greater than or equal to 70 % and less than 90 %. + * - `3` to indicate confidence level greater than or equal to 90%. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -3234,6 +3275,18 @@ TrajectoryInterceptionConfidence ::= INTEGER { above90Percent (3) } (0..3) +/** + * This DE represents the time interval between two consecutive message transmissions. + + * Example: a time interval between two consecutive message transmissions. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref DeltaTimeMilliSecondPos instead. + * @unit: 0,001 s + * @category: Basic information + * @revision: Created in V1.3.1 + */ +TransmissionInterval::= INTEGER (1..10000) + /** * This DE provides the turning direction. * @@ -3253,14 +3306,14 @@ TurningDirection::= ENUMERATED { * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. * * The value shall be set to: - * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 meter, and greater than (n-1) x 0,4 meters. - * - `254` indicates that the turning radius is greater than 253 x 0.4 metre = 101.2 metres. + * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 metre, and greater than (n-1) x 0,4 metre. + * - `254` indicates that the turning radius is greater than 253 x 0,4 metre = 101.2 metres. * - `255` indicates that the information is unavailable. * * For vehicle with tracker, the turning radius applies to the vehicle only. * * @category: Vehicle information - * @unit 0.4 metre + * @unit 0,4 metre * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) */ TurningRadius ::= INTEGER { @@ -3268,8 +3321,18 @@ TurningRadius ::= INTEGER { unavailable (255) } (1..255) +/** + * This DE represents the duration of a traffic event validity. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref DeltaTimeSecond instead. + * @unit: 1 s + * @category: Basic information + * @revision: Created in V1.3.1 +*/ +ValidityDuration::= INTEGER (0..86400) + /** - * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.7]. + * This DE represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.6]. * * @category: Vehicle information * @revision: V1.3.1 @@ -3288,7 +3351,7 @@ VDS ::= IA5String (SIZE(6)) * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, - * - 8 `tyrePuncture` : in case vehicle break down is caused by tire puncture, + * - 8 `tyrePuncture` : in case vehicle break down is caused by tyre puncture, * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, * - 10 `vehicleOnFire` : in case the vehicle is on fire, * - 11-255: reserved for future usage. @@ -3311,26 +3374,35 @@ VehicleBreakdownSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the height if the vehicle, measured from the ground to the highest point, excluding any antennas. + * This DE represents the height of the vehicle, measured from the ground to the highest point, excluding any antennas. * In case vehicles are equipped with adjustable ride heights, camper shells, and any other * equipment which may result in varying height, the largest possible height shall be used. * - * @unit 5 cm (DE ranges to 6.35 m) - * @revision: V1.3.1 + * The value shall be set to: + * - `n (n >0 and n < 127)` indicates the applicable value is equal to or less than n x 0,05 metre, and greater than (n-1) x 0,05 metre. + * - `127` indicates that the vehicle width is greater than 6,3 metres. + * - `128` indicates that the information in unavailable. + * + * @unit: 0,05 metre + * @revision: created in V2.1.1 */ -VehicleHeight ::= INTEGER (0..127) +VehicleHeight ::= INTEGER { + outOfRange (126), + unavailable (127) +}(1..128) /** * This DE provides information about the presence of a trailer. * * The value shall be set to: * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in a reported vehicle length value. - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in a reported vehicle length value. + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value. + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer * nor the detection of trailer presence/absence is possible. * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrailerPresenceInformation instead. * @category: Vehicle information * @revision: Description revised in V2.1.1 */ @@ -3346,12 +3418,12 @@ VehicleLengthConfidenceIndication ::= ENUMERATED { * This DE represents the length of a vehicle. * * The value shall be set to: - * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. + * - `n (n > 0 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre. * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. * - `1 023` to indicate that the information in unavailable. * * - * @unit: 0.1 metre + * @unit: 0,1 metre * @category: Vehicle information * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). */ @@ -3361,16 +3433,16 @@ VehicleLengthValue ::= INTEGER { } (1..1023) /** - * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. + * This DE represents the mass of an empty loaded vehicle. * * The value shall be set to: - * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than n x 100 kg, and greater than (n-1) x 100 kg. - * - `1 023` indicates that the vehicle mass is greater than 102 200 kg. + * - `n (n > 0 and n < 1023)` to indicate that the applicable value is equal to or less than n x 10^5 gramm, and greater than (n-1) x 10^5 gramm. + * - `1 023` indicates that the vehicle mass is greater than 102 200 000 g. * - `1 024` indicates the vehicle mass information is unavailable. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * - * @unit: 100kg + * @unit: 10^5 gramm * @category: Vehicle information * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). */ @@ -3401,7 +3473,7 @@ VehicleMass ::= INTEGER { * - 15 `reserved` : reserved for future usage. * * @category: Vehicle Information - * @revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) + * @revision: Description updated in V2.1.1 (removed reference to CEN/TS 16157-3) */ VehicleRole ::= ENUMERATED { default (0), @@ -3427,16 +3499,16 @@ VehicleRole ::= ENUMERATED { * * The value shall be set to: * - `0` unknown : to indicate that the type of vehicle is unknown. - * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 class M1. - * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class M2, M3. - * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N1. - * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class N2, N3. - * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 class O. + * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1. + * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3. + * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1. + * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2, N3. + * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O. * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). * - `7` tram : to indicate a vehicle running on tracks along public streets. * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. * - `9` agricultural : to indicate a vehicle used for agricultural purposes. - * - Values 10 to 255 are reserved for future use. + * - Values 10 to 31 are reserved for future use. * * @category: Vehicle information * @revision: Created in V2.1.1 @@ -3452,17 +3524,17 @@ VehicleSubClass ::= INTEGER { tram (7), emergencyVehicle (8), agricultural (9) -} (0..255) +} (0..31) /** * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. * The value shall be set to: - * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. + * - `n (n >0 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre. * - `61`indicates that the vehicle width is greater than 6,0 metres. * - `62`indicates that the information in unavailable. * - * @unit: 0.1 metre + * @unit: 0,1 metre * @category: Vehicle information * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). */ @@ -3473,7 +3545,7 @@ VehicleWidth ::= INTEGER { /** * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: * - `-160` for values equal to or less than -16 m/s2. @@ -3482,23 +3554,23 @@ VehicleWidth ::= INTEGER { * - `160` for acceleration or greater than 15,9 m/s2. * - `161` when the data is unavailable. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * * @category: Vehicle information - * @unit: 0.1 m/s2 + * @unit: 0,1 m/s2 * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. * */ VerticalAccelerationValue ::= AccelerationValue /** - * This DE Identifies all the VRU profile types that are believed to be within a cluster. + * This DE Identifies all the VRU profile types within a cluster. * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). * * The corresponding bit shall be set to 1 under the following conditions: * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU. * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member. - * - 2 `motorcycle` : indicates that the VRU cluster contains at least one motorcycle VRU member. + * - 2 `motorcyclist` : indicates that the VRU cluster contains at least one motorcycle VRU member. * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. * * Otherwise, the corresponding bit shall be set to 0. @@ -3514,15 +3586,15 @@ VruClusterProfiles ::= BIT STRING { } (SIZE(4)) /** - * This DE represents the possible VRU usage conditions. + * This DE represents the possible usage conditions of the VRU device. * - The value shall be set to: * - 0 `unavailable` : to indicate that the usage conditions are unavailable. - * - 1 `other (1)` : to indicate that the VRU is in a state not defined below. + * - 1 `other (1)` : to indicate that the VRU device is in a state not defined below. * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device. * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use. - * - 4 `typing (4)` : to indicate that the human is texting, entering addresses and other manual input activity. - * - 5 `calling (5)` : to indicate that the VRU device is currently received a call. + * - 4 `typing (4)` : to indicate that the human is texting or performaing any other manual input activity. + * - 5 `calling (5)` : to indicate that the VRU device is currently receiving a call. * - 6 `playingGames (6)` : to indicate that the human is playing games. * - 7 `reading (7)` : to indicate that the human is reading on the VRU device. * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, @@ -3573,7 +3645,7 @@ VruEnvironment ::= ENUMERATED { * This DE indicates the status of the possible human control over a VRU vehicle. * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable. + * - 0 `unavailable` : to indicate that the information is unavailable. * - 1 `braking` : to indicate that the VRU is braking. * - 2 `hardBraking` : to indicate that the VRU is braking hard. * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling. @@ -3672,7 +3744,7 @@ VruSubProfileMotorcyclist ::= ENUMERATED { } /** - * This DE indicates the profile of a animal + * This DE indicates the profile of an animal * * The value shall be set to: * - 0 `unavailable` : to indicate that the information is unavailable. @@ -3714,8 +3786,7 @@ VruSizeClass ::= ENUMERATED { } /** - * This DE describes the status of the exterior light switches of a vehicle or a VRU. - * The DE is an extension of the existing vehicular DE ExteriorLight. + * This DE describes the status of the exterior light switches of a VRU. * * The value of each bit indicates the state of the switch, which commands the corresponding light. * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU @@ -3724,7 +3795,7 @@ VruSizeClass ::= ENUMERATED { * - 1 `backFlashLight ` : indicates the status of the back flash light. * - 2 `helmetLight` : indicates the status of the helmet light. * - 3 `armLight` : indicates the status of the arm light. - * - 4 `legLight` : indicates the status of the leg leight. + * - 4 `legLight` : indicates the status of the leg light. * - 5 `wheelLight` : indicates the status of the wheel light. * - Bits 6 to 8 : reserved for future use. * The bit values do not indicate if the corresponding lamps are alight or not. @@ -3743,14 +3814,14 @@ VruSpecificExteriorLights ::= BIT STRING { } (SIZE(8)) /** - * Perpendicular distance between front and rear axle of the wheel base of vehicle. + * This DE indicates the perpendicular distance between front and rear axle of the wheel base of vehicle. * * The value shall be set to: - * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0.1 metres and more than (n-1) x 0.1 metres. + * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre. * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. * - `127` indicates that the information is unavailable. * - * @unit 0.1 metre + * @unit 0,1 metre * @category: Vehicle information * @revision: Created in V2.1.1 */ @@ -3760,13 +3831,13 @@ WheelBaseVehicle ::= INTEGER { } (1..127) /** - * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. - * The required confidence level is defined by the corresponding standards applying this DE. + * This DE indicates the angle confidence value which represents the estimated accuracy of an angle value with a default confidence level of 95 %. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >=1 and n < 126)` is equal to or less than n x 0.1 degrees and more than (n-1) x 0.1 degrees. - * - `126` if the angle accuracy is out of range, i.e. greater than 12,5 degrees. - * - `127` if the angle accuracy information is not available. + * - `n (n >=1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees. + * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees. + * - `127` if the confidence value is not available. * * * @unit 0,1 degrees @@ -3781,6 +3852,7 @@ Wgs84AngleConfidence ::= INTEGER { /** * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. * * @unit 0,1 degrees @@ -3797,7 +3869,7 @@ Wgs84AngleValue ::= INTEGER { } (0..3601) /** - * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.7]. + * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.6]. * * * @category: Vehicle information @@ -3824,27 +3896,28 @@ WrongWayDrivingSubCauseCode ::= INTEGER { } (0..255) /** - * This DE denotes the absolute accuracy range for reported yaw rate value for a confidence level of 95%. + * This DE indicates the yaw rate confidence value which represents the estimated accuracy for a yaw rate value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `0` indicates that the accuracy is equal to or less than 0,01 degree/second. - * - `1` indicates that the accuracy is equal to or less than 0,05 degrees/second. - * - `2` indicates that the accuracy is equal to or less than 0,1 degree/second. - * - `3` indicates that the accuracy is equal to or less than 1 degree/second. - * - `4` indicates that the accuracy is equal to or less than 5 degrees/second. - * - `5` indicates that the accuracy is equal to or less than 10 degrees/second. - * - `6` indicates that the accuracy is equal to or less than 100 degrees/second. - * - `7` indicates that the accuracy is out of range, i.e. greater than 100 degrees/second. - * - `8` indicates that the accuracy information is unavailable - * - * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by + * - `0` if the confidence value is equal to or less than 0,01 degree/second. + * - `1` if the confidence value is equal to or less than 0,05 degrees/second or greater than 0,01 degree/second. + * - `2` if the confidence value is equal to or less than 0,1 degree/second or greater than 0,05 degree/second. + * - `3` if the confidence value is equal to or less than 1 degree/second or greater than 0,1 degree/second. + * - `4` if the confidence value is equal to or less than 5 degrees/second or greater than 1 degrees/second. + * - `5` if the confidence value is equal to or less than 10 degrees/second or greater than 5 degrees/second. + * - `6` if the confidence value is equal to or less than 100 degrees/second or greater than 10 degrees/second. + * - `7` if the confidence value is out of range, i.e. greater than 100 degrees/second. + * - `8` if the confidence value is unavailable + * + * NOTE: The fact that a yaw rate value is received with confidence value set to `unavailable(8)` can be caused by * several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported yaw rate value may be valid and used by the application. + * In all 3 cases above, the yaw rate value may be valid and used by the application. * - * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported + * If a yaw rate value is received and its confidence value is set to `outOfRange(7)`, it means that the * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. * * @category: Traffic information @@ -3854,7 +3927,7 @@ YawRateConfidence ::= ENUMERATED { degSec-000-01 (0), degSec-000-05 (1), degSec-000-10 (2), - degSec-001-00 (3), + degSec-001-00 (3), degSec-005-00 (4), degSec-010-00 (5), degSec-100-00 (6), @@ -3863,9 +3936,11 @@ YawRateConfidence ::= ENUMERATED { } /** - * This DE represents the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded - * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. The leading sign denotes the direction of rotation. + * This DE represents the vehicle rotation around z-axis of the coordinate system centred on the centre of mass of the empty-loaded + * vehicle. The leading sign denotes the direction of rotation. * + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. + * * The value shall be set to: * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, @@ -3878,7 +3953,7 @@ YawRateConfidence ::= ENUMERATED { * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. * The reading instant should be the same as for the vehicle acceleration. * - * @note: The empty load vehicle is defined in ISO 1176 [i.9], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * * @unit: 0,01 degree per second. * @category: Vehicle Information @@ -3894,19 +3969,76 @@ YawRateValue ::= INTEGER { -- Specification of CDD Data Frames: ---------------------------------------- +/** + * This DF represents an acceleration vector with associated confidence value. + * + * It shall include the following components: + * + * @field polarAcceleration: the representation of the acceleration vector in a polar coordinate system. + * + * @field cartesianAcceleration: the representation of the acceleration vector in a cartesian coordinate system. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +Acceleration3dWithConfidence::= CHOICE { + polarAcceleration AccelerationPolarWithZ, + cartesianAcceleration AccelerationCartesian +} + +/** + * This DF represents an acceleration vector in a polar coordinate system. + + * It shall include the following components: + * + * @field velocityMagnitude: magnitude of the acceleration vector in the X-Y plane with the associated confidence value. + * + * @field velocityDirection: polar angle of the acceleration vector in the X-Y plane with the associated confidence value. + * + * @field zVelocity: the optional z component of the acceleration vector with the associated confidence value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +AccelerationPolarWithZ::= SEQUENCE{ + accelerationMagnitude AccelerationComponent, + accelerationDirection CartesianAngle, + zAcceleration AccelerationComponent OPTIONAL +} + +/** + * This DF represents an velocity acceleration in a cartesian coordinate system. + + * It shall include the following components: + * + * @field xVelocity: the x component of the acceleration vector with the associated confidence value. + * + * @field yVelocity: the y component of the acceleration vector with the associated confidence value. + * + * @field zVelocity: the optional z component of the acceleration vector with the associated confidence value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +AccelerationCartesian::= SEQUENCE{ + xAcceleration AccelerationComponent, + yAcceleration AccelerationComponent, + zAcceleration AccelerationComponent OPTIONAL +} + /** - * This DF represents an acceleration component along with a confidence with a predefined confidence level of 95% for the component. + * This DF represents an acceleration component along with a confidence value. * - * It includes the following components: + * It shall include the following components: * - * @field value: the acceleration value which can be estimated as the mean of the current distribution. + * @field value: the value of the acceleration component which can be estimated as the mean of the current distribution. * - * @field value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. + * @field confidence: the confidence value associated to the provided value. * * @category: Kinematic Information * @revision: Created in V2.1.1 */ -Acceleration1d ::= SEQUENCE { +AccelerationComponent ::= SEQUENCE { value AccelerationValue, confidence AccelerationConfidence } @@ -3914,11 +4046,11 @@ Acceleration1d ::= SEQUENCE { /** * This DF represents information associated to changes in acceleration. * - * It includes the following components: + * It shall include the following components: * * @field accelOrDecel: the indication of an acceleration change. * - * @field value actionDeltaTime: the period in which the acceleration change action is performed. + * @field actionDeltaTime: the period over which the acceleration change action is performed. * * @category: Kinematic Information * @revision: Created in V2.1.1 @@ -3932,39 +4064,41 @@ AccelerationChangeIndication ::= SEQUENCE { /** * This DF represents an identifier used to describe a protocol action taken by an ITS-S. * - * It includes the following components: + * It shall include the following components: * - * @field originatingStationID: ID of the ITS-S that takes the action. + * @field originatingStationId: Id of the ITS-S that takes the action. * * @field sequenceNumber: a sequence number. * * @category: Communication information - * @revision: V1.3.1 + * @revision: Update in V2.1.1 changed name from ActionID to ActionId */ -ActionID ::= SEQUENCE { - originatingStationID StationID, +ActionId ::= SEQUENCE { + originatingStationId StationId, sequenceNumber SequenceNumber } /** - * This DF represents a list of @ref ActionID. + * This DF shall contain a list of @ref ActionId. * @category: Communication Information - * @revision: Created in V2.1.1 based on ReferenceDenms + * @revision: Created in V2.1.1 based on ReferenceDenms from DENM Release 1 */ -ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionID +ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionId /** - * This DF provides the altitude and accuracy of an altitude information in a WGS84 coordinate system. + * This DF provides the altitude and confidence level of an altitude information in a WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * - * It includes the following components: + * It shall include the following components: * * @field altitudeValue: altitude of a geographical point. * - * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. + * @field altitudeConfidence: confidence level of the altitudeValue. * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref AltitudeWithConfidence instead. * @category: GeoReference information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ Altitude ::= SEQUENCE { altitudeValue AltitudeValue, @@ -3974,7 +4108,7 @@ Altitude ::= SEQUENCE { /** * This DE represents a general container for usage in various types of messages. * - * It includes the following components: + * It shall include the following components: * * @field stationType: the type of station that has generated the message that contains the basic container. * @@ -3985,18 +4119,18 @@ Altitude ::= SEQUENCE { */ BasicContainer ::= SEQUENCE { stationType StationType, - referencePosition ReferencePosition, + referencePosition ReferencePositionWithConfidence, ... } /** - * This DF represents a general Data Frame to describe an angle component along with a confidence in a cartesian coordinate system. + * This DF represents a general Data Frame to describe an angle component along with a confidence value in a cartesian coordinate system. * - * It includes the following components: + * It shall include the following components: * * @field value: The angle value which can be estimated as the mean of the current distribution. * - * @field confidence: The accuracy associated to the provided value. + * @field confidence: The confidence value associated to the provided value. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -4007,13 +4141,13 @@ CartesianAngle ::= SEQUENCE { } /** - * This DF represents a general Data Frame to describe an angular speed component along with a confidence in a cartesian coordinate system. + * This DF represents an angular speed component along with a confidence value in a cartesian coordinate system. * - * It includes the following components: + * It shall include the following components: * * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. * - * @field confidence: The accuracy associated to the provided value. + * @field confidence: The confidence value associated to the provided value. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -4024,13 +4158,13 @@ CartesianAngularSpeed ::= SEQUENCE { } /** - * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence in a cartesian coordinate system. + * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence value in a cartesian coordinate system. * - * It includes the following components: + * It shall include the following components: * * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. * - * @field confidence: The accuracy associated to the provided value. + * @field confidence: The confidence value associated to the provided value. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -4041,13 +4175,13 @@ CartesianAngularAcceleration ::= SEQUENCE { } /** - * This DF represents a coordinate in a cartesian reference system + * This DF represents a coordinate along with a confidence value in a cartesian reference system. * - * It includes the following components: + * It shall include the following components: * - * @field value: the coordinate value which can be estimated as the mean of the current distribution. + * @field value: the coordinate value, which can be estimated as the mean of the current distribution. * - * @field confidence: the coordinate accuracy associated to the provided value. + * @field confidence: the coordinate confidence value associated to the provided value. * * @category: GeoReference information * @revision: Created in V2.1.1 @@ -4060,7 +4194,7 @@ CartesianCoordinateWithConfidence ::= SEQUENCE { /** * This DF represents a position in a two- or three-dimensional cartesian coordinate system. * - * It includes the following components: + * It shall include the following components: * * @field xCoordinate: the X coordinate value. * @@ -4077,10 +4211,30 @@ CartesianPosition3d::=SEQUENCE{ zCoordinate CartesianCoordinate OPTIONAL } +/** + * This DF represents a position in a two- or three-dimensional cartesian coordinate system with an addocaited confidence level for each coordinate. + * + * It shall include the following components: + * + * @field xCoordinate: the X coordinate value with the associated confidence level. + * + * @field yCoordinate: the Y coordinate value with the associated confidence level. + * + * @field zCoordinate: the optional Z coordinate value with the associated confidence level. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianPosition3dWithConfidence::= SEQUENCE{ + xCoordinate CartesianCoordinateWithConfidence, + yCoordinate CartesianCoordinateWithConfidence, + zCoordinate CartesianCoordinateWithConfidence OPTIONAL +} + /** * This DF is a representation of the cause code value of a traffic event. * - * It includes the following components: + * It shall include the following components: * * @field causeCode: the main cause of a detected event. * @@ -4089,7 +4243,7 @@ CartesianPosition3d::=SEQUENCE{ * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref CauseCodeV2 instead. * * @category: Traffic information * @revision: Editorial update in V2.1.1 @@ -4103,150 +4257,148 @@ CauseCode ::= SEQUENCE { /** * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. * - * * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. * @category: Traffic information - * @revision: Editorial update in V2.1.1 + * @revision: Created in V2.1.1 */ - CauseCodeChoice::= CHOICE { - reserved SubCauseCodeType, - trafficCondition TrafficConditionSubCauseCode, - accident AccidentSubCauseCode, - roadworks RoadworksSubCauseCode, - reserved4 SubCauseCodeType, - impassability SubCauseCodeType, - adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, - aquaplaning SubCauseCodeType, - reserved8 SubCauseCodeType, - hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, - hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, - hazardousLocation-AnimalOnTheRoad HazardousLocation-AnimalOnTheRoadSubCauseCode, - humanPresenceOnTheRoad HumanPresenceOnTheRoadSubCauseCode, - reserved13 SubCauseCodeType, - wrongWayDriving WrongWayDrivingSubCauseCode, - rescueAndRecoveryWorkInProgress RescueAndRecoveryWorkInProgressSubCauseCode, - reserved16 SubCauseCodeType, - adverseWeatherCondition-ExtremeWeatherCondition AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, - adverseWeatherCondition-Visibility AdverseWeatherCondition-VisibilitySubCauseCode, - adverseWeatherCondition-Precipitation AdverseWeatherCondition-PrecipitationSubCauseCode, - violence SubCauseCodeType, - reserved21 SubCauseCodeType, - reserved22 SubCauseCodeType, - reserved23 SubCauseCodeType, - reserved24 SubCauseCodeType, - reserved25 SubCauseCodeType, - slowVehicle SlowVehicleSubCauseCode, - dangerousEndOfQueue DangerousEndOfQueueSubCauseCode, - reserved28 SubCauseCodeType, - reserved29 SubCauseCodeType, - reserved30 SubCauseCodeType, - reserved31 SubCauseCodeType, - reserved32 SubCauseCodeType, - reserved33 SubCauseCodeType, - reserved34 SubCauseCodeType, - reserved35 SubCauseCodeType, - reserved36 SubCauseCodeType, - reserved37 SubCauseCodeType, - reserved38 SubCauseCodeType, - reserved39 SubCauseCodeType, - reserved40 SubCauseCodeType, - reserved41 SubCauseCodeType, - reserved42 SubCauseCodeType, - reserved43 SubCauseCodeType, - reserved44 SubCauseCodeType, - reserved45 SubCauseCodeType, - reserved46 SubCauseCodeType, - reserved47 SubCauseCodeType, - reserved48 SubCauseCodeType, - reserved49 SubCauseCodeType, - reserved50 SubCauseCodeType, - reserved51 SubCauseCodeType, - reserved52 SubCauseCodeType, - reserved53 SubCauseCodeType, - reserved54 SubCauseCodeType, - reserved55 SubCauseCodeType, - reserved56 SubCauseCodeType, - reserved57 SubCauseCodeType, - reserved58 SubCauseCodeType, - reserved59 SubCauseCodeType, - reserved60 SubCauseCodeType, - reserved61 SubCauseCodeType, - reserved62 SubCauseCodeType, - reserved63 SubCauseCodeType, - reserved64 SubCauseCodeType, - reserved65 SubCauseCodeType, - reserved66 SubCauseCodeType, - reserved67 SubCauseCodeType, - reserved68 SubCauseCodeType, - reserved69 SubCauseCodeType, - reserved70 SubCauseCodeType, - reserved71 SubCauseCodeType, - reserved72 SubCauseCodeType, - reserved73 SubCauseCodeType, - reserved74 SubCauseCodeType, - reserved75 SubCauseCodeType, - reserved76 SubCauseCodeType, - reserved77 SubCauseCodeType, - reserved78 SubCauseCodeType, - reserved79 SubCauseCodeType, - reserved80 SubCauseCodeType, - reserved81 SubCauseCodeType, - reserved82 SubCauseCodeType, - reserved83 SubCauseCodeType, - reserved84 SubCauseCodeType, - reserved85 SubCauseCodeType, - reserved86 SubCauseCodeType, - reserved87 SubCauseCodeType, - reserved88 SubCauseCodeType, - reserved89 SubCauseCodeType, - reserved90 SubCauseCodeType, - vehicleBreakdown VehicleBreakdownSubCauseCode, - postCrash PostCrashSubCauseCode, - humanProblem HumanProblemSubCauseCode, - stationaryVehicle StationaryVehicleSubCauseCode, - emergencyVehicleApproaching EmergencyVehicleApproachingSubCauseCode, - hazardousLocation-DangerousCurve HazardousLocation-DangerousCurveSubCauseCode, - collisionRisk CollisionRiskSubCauseCode, - signalViolation SignalViolationSubCauseCode, - dangerousSituation DangerousSituationSubCauseCode, - railwayLevelCrossing RailwayLevelCrossingSubCauseCode, - reserved101 SubCauseCodeType, - reserved102 SubCauseCodeType, - reserved103 SubCauseCodeType, - reserved104 SubCauseCodeType, - reserved105 SubCauseCodeType, - reserved106 SubCauseCodeType, - reserved107 SubCauseCodeType, - reserved108 SubCauseCodeType, - reserved109 SubCauseCodeType, - reserved110 SubCauseCodeType, - reserved111 SubCauseCodeType, - reserved112 SubCauseCodeType, - reserved113 SubCauseCodeType, - reserved114 SubCauseCodeType, - reserved115 SubCauseCodeType, - reserved116 SubCauseCodeType, - reserved117 SubCauseCodeType, - reserved118 SubCauseCodeType, - reserved119 SubCauseCodeType, - reserved120 SubCauseCodeType, - reserved121 SubCauseCodeType, - reserved122 SubCauseCodeType, - reserved123 SubCauseCodeType, - reserved124 SubCauseCodeType, - reserved125 SubCauseCodeType, - reserved126 SubCauseCodeType, - reserved127 SubCauseCodeType, - reserved128 SubCauseCodeType + reserved0 SubCauseCodeType, + trafficCondition1 TrafficConditionSubCauseCode, + accident2 AccidentSubCauseCode, + roadworks3 RoadworksSubCauseCode, + reserved4 SubCauseCodeType, + impassability5 SubCauseCodeType, + adverseWeatherCondition-Adhesion6 AdverseWeatherCondition-AdhesionSubCauseCode, + aquaplaning7 SubCauseCodeType, + reserved8 SubCauseCodeType, + hazardousLocation-SurfaceCondition9 HazardousLocation-SurfaceConditionSubCauseCode, + hazardousLocation-ObstacleOnTheRoad10 HazardousLocation-ObstacleOnTheRoadSubCauseCode, + hazardousLocation-AnimalOnTheRoad11 HazardousLocation-AnimalOnTheRoadSubCauseCode, + humanPresenceOnTheRoad12 HumanPresenceOnTheRoadSubCauseCode, + reserved13 SubCauseCodeType, + wrongWayDriving14 WrongWayDrivingSubCauseCode, + rescueAndRecoveryWorkInProgress15 RescueAndRecoveryWorkInProgressSubCauseCode, + reserved16 SubCauseCodeType, + adverseWeatherCondition-ExtremeWeatherCondition17 AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, + adverseWeatherCondition-Visibility18 AdverseWeatherCondition-VisibilitySubCauseCode, + adverseWeatherCondition-Precipitation19 AdverseWeatherCondition-PrecipitationSubCauseCode, + violence20 SubCauseCodeType, + reserved21 SubCauseCodeType, + reserved22 SubCauseCodeType, + reserved23 SubCauseCodeType, + reserved24 SubCauseCodeType, + reserved25 SubCauseCodeType, + slowVehicle26 SlowVehicleSubCauseCode, + dangerousEndOfQueue27 DangerousEndOfQueueSubCauseCode, + reserved28 SubCauseCodeType, + reserved29 SubCauseCodeType, + reserved30 SubCauseCodeType, + reserved31 SubCauseCodeType, + reserved32 SubCauseCodeType, + reserved33 SubCauseCodeType, + reserved34 SubCauseCodeType, + reserved35 SubCauseCodeType, + reserved36 SubCauseCodeType, + reserved37 SubCauseCodeType, + reserved38 SubCauseCodeType, + reserved39 SubCauseCodeType, + reserved40 SubCauseCodeType, + reserved41 SubCauseCodeType, + reserved42 SubCauseCodeType, + reserved43 SubCauseCodeType, + reserved44 SubCauseCodeType, + reserved45 SubCauseCodeType, + reserved46 SubCauseCodeType, + reserved47 SubCauseCodeType, + reserved48 SubCauseCodeType, + reserved49 SubCauseCodeType, + reserved50 SubCauseCodeType, + reserved51 SubCauseCodeType, + reserved52 SubCauseCodeType, + reserved53 SubCauseCodeType, + reserved54 SubCauseCodeType, + reserved55 SubCauseCodeType, + reserved56 SubCauseCodeType, + reserved57 SubCauseCodeType, + reserved58 SubCauseCodeType, + reserved59 SubCauseCodeType, + reserved60 SubCauseCodeType, + reserved61 SubCauseCodeType, + reserved62 SubCauseCodeType, + reserved63 SubCauseCodeType, + reserved64 SubCauseCodeType, + reserved65 SubCauseCodeType, + reserved66 SubCauseCodeType, + reserved67 SubCauseCodeType, + reserved68 SubCauseCodeType, + reserved69 SubCauseCodeType, + reserved70 SubCauseCodeType, + reserved71 SubCauseCodeType, + reserved72 SubCauseCodeType, + reserved73 SubCauseCodeType, + reserved74 SubCauseCodeType, + reserved75 SubCauseCodeType, + reserved76 SubCauseCodeType, + reserved77 SubCauseCodeType, + reserved78 SubCauseCodeType, + reserved79 SubCauseCodeType, + reserved80 SubCauseCodeType, + reserved81 SubCauseCodeType, + reserved82 SubCauseCodeType, + reserved83 SubCauseCodeType, + reserved84 SubCauseCodeType, + reserved85 SubCauseCodeType, + reserved86 SubCauseCodeType, + reserved87 SubCauseCodeType, + reserved88 SubCauseCodeType, + reserved89 SubCauseCodeType, + reserved90 SubCauseCodeType, + vehicleBreakdown91 VehicleBreakdownSubCauseCode, + postCrash92 PostCrashSubCauseCode, + humanProblem93 HumanProblemSubCauseCode, + stationaryVehicle94 StationaryVehicleSubCauseCode, + emergencyVehicleApproaching95 EmergencyVehicleApproachingSubCauseCode, + hazardousLocation-DangerousCurve96 HazardousLocation-DangerousCurveSubCauseCode, + collisionRisk97 CollisionRiskSubCauseCode, + signalViolation98 SignalViolationSubCauseCode, + dangerousSituation99 DangerousSituationSubCauseCode, + railwayLevelCrossing100 RailwayLevelCrossingSubCauseCode, + reserved101 SubCauseCodeType, + reserved102 SubCauseCodeType, + reserved103 SubCauseCodeType, + reserved104 SubCauseCodeType, + reserved105 SubCauseCodeType, + reserved106 SubCauseCodeType, + reserved107 SubCauseCodeType, + reserved108 SubCauseCodeType, + reserved109 SubCauseCodeType, + reserved110 SubCauseCodeType, + reserved111 SubCauseCodeType, + reserved112 SubCauseCodeType, + reserved113 SubCauseCodeType, + reserved114 SubCauseCodeType, + reserved115 SubCauseCodeType, + reserved116 SubCauseCodeType, + reserved117 SubCauseCodeType, + reserved118 SubCauseCodeType, + reserved119 SubCauseCodeType, + reserved120 SubCauseCodeType, + reserved121 SubCauseCodeType, + reserved122 SubCauseCodeType, + reserved123 SubCauseCodeType, + reserved124 SubCauseCodeType, + reserved125 SubCauseCodeType, + reserved126 SubCauseCodeType, + reserved127 SubCauseCodeType, + reserved128 SubCauseCodeType } /** * This DF is an alternative representation of the cause code value of a traffic event. * - * It includes the following components: + * It shall include the following components: * - * @field ccAndScc: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. + * @field ccAndScc: the main cause of a detected event. Each entry is of a different type and represents the sub cause code. * * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. @@ -4254,16 +4406,15 @@ CauseCodeChoice::= CHOICE { * @category: Traffic information * @revision: Created in V2.1.1 */ - CauseCodeV2 ::= SEQUENCE { ccAndScc CauseCodeChoice, - ... + ... } /** * The DF describes the position of a CEN DSRC road side equipment. * - * It includes the following components: + * It shall include the following components: * * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. * @@ -4272,22 +4423,23 @@ CauseCodeV2 ::= SEQUENCE { * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. * * @category: Infrastructure information, Communication information - * @revision: V1.3.1 + * @revision: revised in V2.1.1 (cenDsrcTollingZoneId is directly of type ProtectedZoneId) */ CenDsrcTollingZone ::= SEQUENCE { protectedZoneLatitude Latitude, protectedZoneLongitude Longitude, - cenDsrcTollingZoneID CenDsrcTollingZoneID OPTIONAL, - ... + cenDsrcTollingZoneId ProtectedZoneId OPTIONAL, + ... } /** * - * This DF represents the shape of a circular area or a right cylinder that is centred on a reference position defined outside of the context of this DF. + * This DF represents the shape of a circular area or a right cylinder that is centred on the shape´s reference point. * - * It includes the following components: + * It shall include the following components: * - * @field nodeCenterPoint: optional offset point which the rectangle is centred on with respect to the reference position. + * @field shapeReferencePoint: optional reference point that represents the centre of the circle, relative to an externally specified reference position. + * If this component is absent, the externally specified reference position represents the shape´s reference point. * * @field radius: the radius of the circular area. * @@ -4298,29 +4450,28 @@ CenDsrcTollingZone ::= SEQUENCE { * @revision: Created in V2.1.1 */ CircularShape ::= SEQUENCE { - nodeCenterPoint CartesianPosition3d OPTIONAL, - radius StandardLength12b, - height StandardLength12b OPTIONAL, - ... + shapeReferencePoint CartesianPosition3d OPTIONAL, + radius StandardLength12b, + height StandardLength12b OPTIONAL } /** - * This DF indicates the opening/closure status of a lane or a set of lanes. + * This DF indicates the opening/closure status of the lanes of a carrieway. * - * It includes the following components: + * It shall include the following components: * - * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. + * @field innerhardShoulderStatus: this information is optional and shall be included if an inner hard shoulder is present and the information is known. * It indicates the open/closing status of inner hard shoulder lanes. * - * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. + * @field outerhardShoulderStatus: this information is optional and shall be included if an outer hard shoulder is present and the information is known. * It indicates the open/closing status of outer hard shoulder lanes. * * @field drivingLaneStatus: this information is optional and shall be included if the information is known. * It indicates the open/closing status of driving lanes. - * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. + * For carriageways with more than 13 driving lanes, the drivingLaneStatus component shall not be present. * * @category: GeoReference information, Road topology information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ ClosedLanes ::= SEQUENCE { innerhardShoulderStatus HardShoulderStatus OPTIONAL, @@ -4332,7 +4483,7 @@ ClosedLanes ::= SEQUENCE { /** * This DF provides information about the breakup of a cluster. * - * It includes the following components: + * It shall include the following components: * * @field clusterBreakupReason: indicates the reason for breakup. * @@ -4350,7 +4501,7 @@ ClusterBreakupInfo ::= SEQUENCE { /** * This DF provides information about the joining of a cluster. * - * It includes the following components: + * It shall include the following components: * * @field clusterId: indicates the identifier of the cluster. * @@ -4360,7 +4511,7 @@ ClusterBreakupInfo ::= SEQUENCE { * @revision: Created in V2.1.1 */ ClusterJoinInfo ::= SEQUENCE { - clusterId ClusterId, + clusterId Identifier1B, joinTime DeltaTimeQuarterSecond, ... } @@ -4368,7 +4519,7 @@ ClusterJoinInfo ::= SEQUENCE { /** * The DF provides information about the leaving of a cluster. * - * It includes the following components: + * It shall include the following components: * * @field clusterId: indicates the cluster. * @@ -4378,34 +4529,34 @@ ClusterJoinInfo ::= SEQUENCE { * @revision: Created in V2.1.1 */ ClusterLeaveInfo ::= SEQUENCE { - clusterId ClusterId, + clusterId Identifier1B, clusterLeaveReason ClusterLeaveReason, ... } /** - * This DF represents the column of the lower triangular positive semi-definite matrix and consists of a list of correlation row values. + * This DF represents a column of a lower triangular positive semi-definite matrix and consists of a list of correlation cell values ordered by rows. * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. - * Each column "i" of the lower triangular then contains k-(i-1) values, where "i" refers to the column number count + * Each column "i" of the lower triangular matrix then contains k-(i-1) values (ordered by rows from 1 to n-1), where "i" refers to the column number count * starting at 1 from the left. * * @category: Sensing Information * @revision: Created in V2.1.1 */ -CorrelationColumn ::= SEQUENCE SIZE (1..21) OF CorrelationRowValue +CorrelationColumn ::= SEQUENCE SIZE (1..13,...) OF CorrelationCellValue /** - * This DF represents the curvature of the vehicle trajectory and the accuracy. + * This DF represents the curvature of the vehicle trajectory and the associated confidence value. * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. * - * It includes the following components: + * It shall include the following components: * * @field curvatureValue: Detected curvature of the vehicle trajectory. * - * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. + * @field curvatureConfidence: along with a confidence value of the curvature value with a predefined confidence level. * * @category: Vehicle information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ Curvature ::= SEQUENCE { curvatureValue CurvatureValue, @@ -4415,12 +4566,12 @@ Curvature ::= SEQUENCE { /** * This DF provides a description of dangerous goods being carried by a heavy vehicle. * - * It includes the following components: + * It shall include the following components: * * @field dangerousGoodsType: Type of dangerous goods. * * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in - * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.5], + * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.4], * * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. * If yes, the value shall be set to TRUE, @@ -4452,13 +4603,13 @@ DangerousGoodsExtended ::= SEQUENCE { emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, phoneNumber PhoneNumber OPTIONAL, companyName UTF8String (SIZE (1..24)) OPTIONAL, - ... + ... } /** - * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. + * This DF defines a geographical point position as a 3 dimensional offset position to a geographical reference point. * - * It includes the following components: + * It shall include the following components: * * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. * @@ -4476,7 +4627,7 @@ DeltaReferencePosition ::= SEQUENCE { } /** - * This DF represents a portion of digital map, described using a list of waypoints @ref ReferencePosition. + * This DF represents a portion of digital map. It shall contain a list of waypoints @ref ReferencePosition. * * @category: GeoReference information * @revision: V1.3.1 @@ -4485,11 +4636,12 @@ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition /** * - * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on a reference position which is defined outside of the context of this DF. + * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on the shape´s reference point. * - * It includes the following components: + * It shall include the following components: * - * @field centerPoint: optional offset point which the ellipse is centred on with respect to the reference position. + * @field shapeReferencePoint: optional reference point which represents the centre of the ellipse, relative to an externally specified reference position. + * If this component is absent, the externally specified reference position represents the shape´s reference point. * * @field semiMajorAxisLength: half length of the major axis of the ellipse. * @@ -4504,17 +4656,16 @@ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition */ EllipticalShape ::= SEQUENCE { - centerPoint CartesianPosition3d OPTIONAL, + shapeReferencePoint CartesianPosition3d OPTIONAL, semiMajorAxisLength StandardLength12b, semiMinorAxisLength StandardLength12b, orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL, - ... + height StandardLength12b OPTIONAL } /** * - * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.18]. + * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.16]. * The following options are available: * * @field euVehicleCategoryL: indicates a vehicle in the L category. @@ -4542,7 +4693,7 @@ EuVehicleCategoryCode ::= CHOICE { } /** - * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime + * The DF shall contain a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime * or do not contain the COMPONENT eventDeltaTime. * * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. @@ -4556,13 +4707,13 @@ EventZone::= EventHistory (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) /** - * The DF consists of a list of @ref EventPoint. + * The DF shall contain a list of @ref EventPoint. * * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. * * @category: GeoReference information, Traffic information - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref EventZone instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref EventZone instead. * @revision: Generalized the semantics in V2.1.1 */ EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint @@ -4571,7 +4722,7 @@ EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint /** * This DF provides information related to an event at a defined position. * - * It includes the following components: + * It shall include the following components: * * @field eventPosition: offset position of a detected event point to a defined position. * @@ -4588,28 +4739,9 @@ EventPoint ::= SEQUENCE { informationQuality InformationQuality } -/** - * This DF represents the status of the exterior light switches of a traffic participant. - * - * It includes the following components: - * - * @field vehicular: represents the status of the exterior light switches of a road vehicle. - * - * @field vruSpecific: represents the status of the exterior light switches of a VRU. - * - * @category: VRU information - * @revision: created in V2.1.1 - */ -ExteriorLightsExtended ::= SEQUENCE { - vehicular ExteriorLights, - vruSpecific VruSpecificExteriorLights, - ... -} - - /** * This DF indicates a transversal position in relation to the different lanes of the road. - * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where V-ITS-S would normally not be present. + * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where Vehicle ITS-S would normally not be present. * * The following options are available: * @@ -4634,16 +4766,17 @@ GeneralizedLanePosition::= CHOICE { /** * This DF represents the Heading in a WGS84 co-ordinates system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * - * It includes the following components: + * It shall include the following components: * * @field headingValue: the heading value. * - * @field headingConfidence: the accuracy of the reported heading value with a predefined confidence level. + * @field headingConfidence: the confidence value of the heading value with a predefined confidence level. * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84Angle instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84Angle instead. * @category: Kinematics Information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ Heading ::= SEQUENCE { headingValue HeadingValue, @@ -4654,7 +4787,7 @@ Heading ::= SEQUENCE { /** * This DF provides information associated to heading change indicators such as a change of direction. * - * It includes the following components: + * It shall include the following components: * * @field direction: the direction of heading change value. * @@ -4672,13 +4805,13 @@ HeadingChangeIndication ::= SEQUENCE { /** * This DF represents a frequency channel * - * It includes the following components: + * It shall include the following components: * * @field centreFrequency: the centre frequency of the channel - * @unit: 10exp+2 Hz (where exp is exponent) + * @unit: 10^(exp+2) Hz (where exp is exponent) * * @field channelWidth: width of the channel - * @unit: 10exp Hz (where exp is exponent) + * @unit: 10^exp Hz (where exp is exponent) * * @field exponent of the power of 10 * @unit: N/A @@ -4696,7 +4829,7 @@ InterferenceManagementChannel ::= SEQUENCE { * * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. * - * It includes the following components: + * It shall include the following components: * * @field zoneDefinition: contains the geographical definition of the zone. * @@ -4713,17 +4846,15 @@ InterferenceManagementZone ::= SEQUENCE { /** * This DF represents the geographical definition of the zone where band sharing occurs. * - * It includes the following components: + * It shall include the following components: * * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. * * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. * - * @field interferenceManagementZoneRadius: optional radius of the interference management zone in metres. + * @field interferenceManagementZoneId: optional identification of the interference management zone. * - * @field interferenceManagementZoneID: optional identification of the interference management zone. - * - * @field interferenceManagementZoneShape: shape of the interference management zone. + * @field interferenceManagementZoneShape: shape of the interference management zone placed at the centre point. * * @category: Communication information * @revision: created in V2.1.1 @@ -4731,14 +4862,13 @@ InterferenceManagementZone ::= SEQUENCE { InterferenceManagementZoneDefinition::= SEQUENCE{ interferenceManagementZoneLatitude Latitude, interferenceManagementZoneLongitude Longitude, - interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, - interferenceManagementZoneID ProtectedZoneID OPTIONAL, + interferenceManagementZoneId ProtectedZoneId OPTIONAL, interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, ... } /** - * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. + * This DF shall contain a list of up to 16 definitions containing interference management information, per affected frequency channels. * * @category: Communication information. * @revision: created in V2.1.1 @@ -4749,7 +4879,7 @@ InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManageme /** * This DF contains interference management information for one affected frequency channel. * - * It includes the following components: + * It shall include the following components: * * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management * @@ -4773,7 +4903,7 @@ InterferenceManagementInfoPerChannel ::= SEQUENCE { } /** - * This DF consist of a list of up to 16 interference management zones. + * This DF shall contain 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. * @@ -4783,16 +4913,16 @@ InterferenceManagementInfoPerChannel ::= SEQUENCE { InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone /** - * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.17]. + * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.15]. * - * It includes the following components: + * It shall include the following components: * * @field region: 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 @ref Id is unique within the region. + * It is the duty of that entity to guarantee that the @ref Id is unique within the region. * * @field id: the identifier of the intersection * - * @note: when the RoadRegulatorID is present, the IntersectionReferenceID is guaranteed to be globally unique. + * @note: when the component region is present, the IntersectionReferenceId is guaranteed to be globally unique. * @category: Road topology information * @revision: created in V2.1.1 */ @@ -4802,7 +4932,7 @@ IntersectionReferenceId ::= SEQUENCE { } /** - * This DF consists of a list of waypoints @ref ReferencePosition. + * This DF shall contain a list of waypoints @ref ReferencePosition. * * @category: GeoReference information * @revision: Editorial update in V2.1.1 @@ -4813,27 +4943,27 @@ ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition * 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: + * It shall include the following components: * * @field protocolVersion: version of the ITS message. * * @field messageId: type of the ITS message. * - * @field stationId: the identifier of the ITS-S that generates the ITS message in question. + * @field stationId: the identifier of the ITS-S that generated the ITS message. * * @category: Communication information * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. */ ItsPduHeader ::= SEQUENCE { - protocolVersion INTEGER (0..255), + protocolVersion OrdinalNumber1B, messageId MessageId, - stationId StationID + stationId StationId } /** * This DF indicates a transversal position in resolution of lanes and the associated lane type. * - * It includes the following components: + * It shall include the following components: * * @field transversalPosition: the transversal position. * @@ -4849,17 +4979,17 @@ LanePositionAndType::= SEQUENCE { } /** - * This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. + * This DF indicates the vehicle acceleration at lateral direction and the confidence value of the lateral acceleration. * - * It includes the following components: + * It shall include the following components: * * @field lateralAccelerationValue: lateral acceleration value at a point in time. * - * @field lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. + * @field lateralAccelerationConfidence: confidence value of the lateral acceleration value. * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. * @category Vehicle information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ LateralAcceleration ::= SEQUENCE { lateralAccelerationValue LateralAccelerationValue, @@ -4867,13 +4997,13 @@ LateralAcceleration ::= SEQUENCE { } /** - * This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. + * This DF indicates the vehicle acceleration at longitudinal direction and the confidence value of the longitudinal acceleration. * - * It includes the following components: + * It shall include the following components: * * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. - * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined + * @field longitudinalAccelerationConfidence: confidence value of the longitudinal acceleration value. * * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. * @category: Vehicle information @@ -4887,11 +5017,11 @@ LongitudinalAcceleration ::= SEQUENCE { /** * This DF represents the estimated position along the longitudinal length of a particular lane. * - * It includes the following components: + * It shall include the following components: * * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. * - * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. + * @field longitudinalLanePositionConfidence: The confidence value associated to the value. * * @category: Road topology information * @revision: created in V2.1.1 @@ -4902,25 +5032,55 @@ LongitudinalLanePosition ::= SEQUENCE { } /** - * This DF represents the elements of a lower triangular positive semi-definite matrix, not including the main diagonal elements of the matrix. + * This DF shall contain a list of a lower triangular positive semi-definite matrices. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +LowerTriangularPositiveSemidefiniteMatrices::= SEQUENCE SIZE (1..4) OF LowerTriangularPositiveSemidefiniteMatrix + +/** + * This DF represents a lower triangular positive semi-definite matrix. + * + * It shall include the following components: + * + * @field componentsIncludedIntheMatrix: the indication of which components of a @ref PerceivedObject are included in the matrix. + * This component also implicitly indicates the number n of included components which defines the size (n x n) of the full correlation matrix "A". + * + * @field matrix: the list of cells of the lower triangular positive semi-definite matrix ordered by columns and by rows. + * + * The number of columns to be included "k" is equal to the number of included components "n" indicated by componentsIncludedIntheMatrix minus 1: k = n-1. + * These components shall be included in the order or their appearance in componentsIncludedIntheMatrix. + * Each column "i" of the lowerTriangularCorrelationMatrixColumns contains k-(i-1) values. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE{ + componentsIncludedIntheMatrix MatrixIncludedComponents, + matrix LowerTriangularPositiveSemidefiniteMatrixColumns +} + +/** + * This DF represents the columns of a lower triangular positive semi-definite matrix, each column not including the main diagonal cell of the matrix. * Given a matrix "A" of size n x n, the number of columns @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. * - * @category: Vehicle information - * @revision: V1.3.1 + * @category: Sensing information + * @revision: Created in V2.1.1 */ -LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn +LowerTriangularPositiveSemidefiniteMatrixColumns ::= SEQUENCE SIZE (1..13) OF CorrelationColumn /** - * This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301 [i.17]. + * This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301 [i.15]. * - * It includes the following components: + * It shall include the following components: * * @field mapReference: optionally identifies the MAPEM containing the topology information. * It is absent if the MAPEM topology is known from the context. * - * @field laneId: identifies the lane in the road segment or intersection topology on which the position is located. + * @field laneId: optionally identifies the lane in the road segment or intersection topology on which the position is located. * - * @field connectionId: identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the + * @field connectionId: optionally identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the * conflict area of an intersection which connects e.g an ingress with an egress lane. * * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. @@ -4930,14 +5090,16 @@ LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF Correlati */ MapPosition ::= SEQUENCE { mapReference MapReference OPTIONAL, - laneId Identifier1B, + laneId Identifier1B OPTIONAL, + connectionId Identifier1B OPTIONAL, longitudinalLanePosition LongitudinalLanePosition OPTIONAL, - connectionId Identifier1B, ... } + ((WITH COMPONENTS {..., laneId PRESENT, connectionId ABSENT }) | + (WITH COMPONENTS {..., laneId ABSENT, connectionId PRESENT })) /** - * This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301 [i.17]. + * This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301 [i.15]. * * The following options are provided: * @@ -4948,16 +5110,33 @@ MapPosition ::= SEQUENCE { * @category: Road topology information * @revision: Created in V2.1.1 */ - MapReference::= CHOICE { roadsegment RoadSegmentReferenceId, intersection IntersectionReferenceId } +/** + * This DE indicates a message rate. + * + * @field mantissa: indicates the mantissa. + * + * @field exponent: indicates the exponent. + * + * The specified message rate is: mantissa*(10^exponent) + * + * @unit: Hz + * @category: Communication information + * @revision: Created in V2.1.1 + */ +MessageRateHz::= SEQUENCE { + mantissa INTEGER (1..100), + exponent INTEGER (-5..2) + } + /** * This DF provides information about a message with respect to the segmentation process at the sender. * - * It includes the following components: + * It shall include the following components: * * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. * @@ -4965,13 +5144,13 @@ MapReference::= CHOICE { */ MessageSegmentationInfo ::= SEQUENCE { - totalMsgNo CardinalNumber1B (1..255), - thisMsgNo OrdinalNumber1B + totalMsgNo CardinalNumber3b, + thisMsgNo OrdinalNumber3b } /** - * - * This DF represents a list of @ref MitigationPerTechnologyClass. + * This DF shall contain a list of @ref MitigationPerTechnologyClass. + * * @category: Communication information * @revision: Created in V2.1.1 */ @@ -4980,20 +5159,20 @@ MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyCl /** * 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: + * It shall include the following components: * - * @field accessTechnologyClass: channel access technology to which this mitigation is applied. + * @field accessTechnologyClass: channel access technology to which this mitigation is intended to be applied. * * @field lowDutyCycle: duty cycle limit. - * @unit: 0.01% steps + * @unit: 0,01% steps * * @field powerReduction: the delta value of power to be reduced. * @unit: dB * - * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.25]. + * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.19]. * @unit: ms * - * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.26]. + * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.20]. * @unit: ms * * @note: All parameters are optional, as they may not apply to some of the technologies or @@ -5022,7 +5201,7 @@ MitigationPerTechnologyClass ::= SEQUENCE { * * @field groupSubClass: the object is a VRU group or cluster. * - * @field otherSubClass: the object is of a different types as the above. + * @field otherSubClass: the object is of a different type than the above. * * @category: Sensing information * @revision: Created in V2.1.1 @@ -5036,7 +5215,7 @@ ObjectClass ::= CHOICE { } /** - * This DF consist of a list of object classes. + * This DF shall contain a list of object classes. * * @category: Sensing information * @revision: Created in V2.1.1 @@ -5044,13 +5223,13 @@ ObjectClass ::= CHOICE { ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence /** - * This DF represents the classification of a detected object together with a confidence indication. + * This DF represents the classification of a detected object together with a confidence level. * - * It includes the following components: + * It shall include the following components: * * @field objectClass: the class of the object. * - * @field ObjectClassConfidence: the associated confidence information. + * @field Confidence: the associated confidence level. * * @category: Sensing information * @revision: Created in V2.1.1 @@ -5059,14 +5238,15 @@ ObjectClassWithConfidence ::= SEQUENCE { objectClass ObjectClass, confidence ConfidenceLevel } + /** - * This DF represents a dimension of an object together with a confidence indication. + * This DF represents a dimension of an object together with a confidence value. * - * It includes the following components: + * It shall include the following components: * - * @field ObjectDimensionValue: the object dimension value which can be estimated as the mean of the current distribution. + * @field value: the object dimension value which can be estimated as the mean of the current distribution. * - * @field ObjectDimensionValue: the associated confidence information. + * @field confidence: the associated confidence value. * * @category: Sensing information * @revision: Created in V2.1.1 @@ -5077,8 +5257,8 @@ ObjectDimension ::= SEQUENCE { } /** - * This DF that represents a path with a set of path points. - * It may contain up to `40` @ref PathPoint. + * This DF represents a path with a set of path points. + * It shall contain up to `40` @ref 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. @@ -5089,8 +5269,8 @@ ObjectDimension ::= SEQUENCE { Path::= SEQUENCE (SIZE(0..40)) OF PathPoint /** - * This DF that represents a path history with a set of path points. - * It may contain up to `40` @ref PathPoint. + * This DF represents a path history with a set of path points. + * It shall contain up to `40` @ref 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. @@ -5099,11 +5279,11 @@ Path::= SEQUENCE (SIZE(0..40)) OF PathPoint * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead * @revision: semantics updated in V2.1.1 */ -PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint +PathHistory::= SEQUENCE (SIZE(40)) OF PathPoint /** - * This DF that represents a predicted path with a set of path points. - * It may contain up to `15` @ref PathPoint. + * This DF represents a predicted path with a set of path points. + * It shall contain up to `15` @ref 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. @@ -5114,9 +5294,9 @@ PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted /** - * This DF defines an offset waypoint position within a path. + * This DF defines an offset waypoint position within a path. * - * It includes the following components: + * It shall include the following components: * * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. * @@ -5133,157 +5313,82 @@ PathPoint ::= SEQUENCE { /** * This DF defines a predicted offset waypoint position within a path. * - * It includes the following components: + * It shall include the following components: * * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. * * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. * - * @field horizontalPositionConfidence: the accuracy of the horizontal geographical position. + * @field horizontalPositionConfidence: the confidence value associated to the horizontal geographical position. * * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. * - * @field altitudeConfidence: the accuracy of the altitude value of the geographical position. + * @field altitudeConfidence: the confidence value associated to the altitude value of the geographical position. * * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. * * @category GeoReference information * @revision: semantics updated in V2.1.1 */ - PathPointPredicted::= SEQUENCE { deltaLatitude DeltaLatitude, deltaLongitude DeltaLongitude, horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, deltaAltitude DeltaAltitude DEFAULT unavailable, altitudeConfidence AltitudeConfidence DEFAULT unavailable, - pathDeltaTime DeltaTimeTenthOfSecond, + pathDeltaTime PathDeltaTime, ... } /** - * This DF contains information about a perceived object including its kinematic and attitude vector in a pre-defined coordinate system. + * This DF contains information about a perceived object including its kinematic state and attitude vector in a pre-defined coordinate system. * - * It includes the following components: + * It shall include the following components: * - * @field objectID: optional identifier assigned to a detected object. + * @field objectId: optional identifier assigned to a detected object. * - * @field timeOfMeasurement: the time difference from a reference time to the time of the measurement of the object using the DE DeltaTime. + * @field timeOfMeasurement: 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 after the reference time. * - * @field xCoordinate: 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. - * - * @field yCoordinate: 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. - * - * @field zCoordinate: 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. - * - * @field velocityMagnitude: 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 + * @field position: the position of the geometric centre of the object´s bounding box within the pre-defined coordinate system, with the associated variance. * - * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * @field velocity: the velocity vector of the object within the pre-defined coordinate system with the associated variance. * - * @field xVelocity: velocity component of the detected object in x-direction at the time of measurement, with the associated variance. + * @field acceleration: the acceleration vector of the object within the pre-defined coordinate system with the associated variance. * - * @field yVelocity: velocity component of the detected object in y-direction at the time of measurement, with the associated variance. - * - * @field zVelocity: optional velocity component of the detected object in z-direction at the time of measurement, with the associated variance. - * - * @field accelerationMagnitude: 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. - * - * @field accelerationDirection: polar angle of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * @field angleZ: optional first angle of object bounding box at the time of measurement, with the associated variance. + * The angle is measured with positive values considering the object orientation turning around the z-axis using the right-hand rule, starting from the x-axis. + * This extrinsic rotation shall be applied around the centre point of the object´s bounding box before all other rotations. + + * @field angleY: optional second angle of object bounding box at the time of measurement with the associated variance. + * The angle is measured with positive values considering the object orientation turning around the y-axis using the right-hand rule, starting from the z-axis. + * This extrinsic rotation shall be applied around the centre point of the object´s bounding box after the rotation by angleZ and before the rotation by angleX. * - * @field xAcceleration: optional Acceleration of the detected object in x-direction at the time of measurement, with the associated variance. + * @field angleX: optional third angle of object bounding box at the time of measurement with the associated variance. + * The angle is measured with positive values considering the object orientation turning around the x-axis using the right-hand rule, starting from the z-axis. + * This extrinsic rotation shall be applied around the centre point of the object´s bounding box after all other rotations. * - * @field yAcceleration: optional Acceleration of the detected object in y-direction at the time of measurement, with the associated variance. + * @field zAngleRate: optional rate 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. * - * @field zAcceleration: optional Acceleration of the detected object in z-direction at the time of measurement, with the associated variance. + * @field lowerTriangularCorrelationMatrices: optional set of lower triangular correlation matrices for selected components of the provided kinematic state and attitude vector. * - * @field rollAngle: 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. - * - * @field pitchAngle: 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. - * - * @field yawAngle: 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. - * - * @field rollSpeed: 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. - * - * @field pitchSpeed: 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. + * @field objectDimensionZ: 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. * - * @field yawSpeed: 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. + * @field objectDimensionY: 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. * - * @field rollAcceleration: 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. - * - * @field pitchAcceleration: 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. - * - * @field yawAcceleration: 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. - * - * @field lowerTriangularCorrelationMatrixColumns: 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. - * - * @field planarObjectDimension1: 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. - * - * @field planarObjectDimension2: 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. - * - * @field verticalObjectDimension: optional vertical dimension of object as provided by the sensor or object model. + * @field objectDimensionX: 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. * - * @field objectRefPoint: 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. - * * @field objectAge: 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. * - * @field objectConfidence: 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. + * @field objectPerceptionQuality: optional confidence associated to the object. * * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. * - * @field dynamicStatus: optional dynamic capabilities of a detected object. - * * @field classification: optional classification of the described object * * @field matchedPosition: optional map-matched position of an object. @@ -5291,41 +5396,23 @@ PathPointPredicted::= SEQUENCE { * @category Sensing information * @revision: created in V2.1.1 */ - PerceivedObject ::= SEQUENCE { - objectID Identifier2B OPTIONAL, + 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, + position CartesianPosition3dWithConfidence, + velocity Velocity3dWithConfidence OPTIONAL, + acceleration Acceleration3dWithConfidence OPTIONAL, + zAngle CartesianAngle OPTIONAL, + yAngle CartesianAngle OPTIONAL, + xAngle CartesianAngle OPTIONAL, + zAngleRate CartesianAngularSpeed OPTIONAL, + lowerTriangularCorrelationMatrices LowerTriangularPositiveSemidefiniteMatrices OPTIONAL, + objectDimensionZ ObjectDimension OPTIONAL, + objectDimensionY ObjectDimension OPTIONAL, + objectDimensionX ObjectDimension OPTIONAL, objectAge DeltaTimeMilliSecondPosNeg (0..1500) OPTIONAL, - objectConfidence ObjectConfidence OPTIONAL, + objectPerceptionQuality ObjectPerceptionQuality OPTIONAL, sensorIdList SequenceOfIdentifier1B OPTIONAL, - dynamicStatus ObjectDynamicStatus OPTIONAL, classification ObjectClassDescription OPTIONAL, mapPosition MapPosition OPTIONAL, ... @@ -5334,9 +5421,13 @@ PerceivedObject ::= SEQUENCE { /** * This DF represents the shape of a polygonal area or of a right prism. * - * It includes the following components: + * It shall include the following components: + * + * @8ref: @field shapeReferencePoint: 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. * - * @field polygon: the polygonal area and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * @field polygon: the polygonal area represented by a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * All nodes of the polygon shall be considered relative to the shape´s reference point. * * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. * @@ -5345,17 +5436,17 @@ PerceivedObject ::= SEQUENCE { * */ PolygonalShape ::= SEQUENCE { - polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), - height StandardLength12b OPTIONAL, - ... + shapeReferencePoint CartesianPosition3d OPTIONAL, + polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), + height StandardLength12b OPTIONAL } /** - * This DF provides the horizontal position accuracy in a shape of ellipse with a + * 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 includes the following components: + * It shall include the following components: * * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point * and major axis point of the position accuracy ellipse. @@ -5365,6 +5456,7 @@ PolygonalShape ::= SEQUENCE { * * @field semiMajorOrientation: 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. * * * @category GeoReference information @@ -5373,11 +5465,37 @@ PolygonalShape ::= SEQUENCE { PosConfidenceEllipse ::= SEQUENCE { semiMajorConfidence SemiAxisLength, semiMinorConfidence SemiAxisLength, - semiMajorOrientation Wgs84AngleValue + semiMajorOrientation HeadingValue +} + +/** + * 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: + * + * @field semiMajorAxisLength: half of length of the major axis, i.e. distance between the centre point + * and major axis point of the position accuracy ellipse. + * + * @field semiMinorAxisLength: half of length of the minor axis, i.e. distance between the centre point + * and minor axis point of the position accuracy ellipse. + * + * @field semiMajorAxisOrientation: 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. + * + * @category GeoReference information + * @revision: created in V2.1.1 based on @ref PosConfidenceEllipse + */ +PositionConfidenceEllipse ::= SEQUENCE { + semiMajorAxisLength SemiAxisLength, + semiMinorAxisLength SemiAxisLength, + semiMajorAxisOrientation Wgs84AngleValue } /** - * This DF contains a list of distances @ref PosPillar that refer to the perpendicular distance between centre of vehicle front bumper + * This DF shall contain a list of distances @ref 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, @@ -5393,9 +5511,9 @@ PosConfidenceEllipse ::= SEQUENCE { PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar /** - * This DF describes a zone of protection inside which the ITSG5 communication should be restricted. + * This DF describes a zone of protection inside which the ITS communication should be restricted. * - * It includes the following components: + * It shall include the following components: * * @field protectedZoneType: type of the protected zone. * @@ -5407,12 +5525,12 @@ PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar * * @field protectedZoneRadius: optional radius of the protected communication zone in metres. * - * @field protectedZoneID: the optional ID of the protected communication zone. + * @field protectedZoneId: the optional ID of the protected communication zone. * * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. * * @category: Infrastructure information, Communication information - * @revision: V1.3.1 + * @revision: revised in V2.1.1 (changed protectedZoneID to protectedZoneId) */ ProtectedCommunicationZone ::= SEQUENCE { protectedZoneType ProtectedZoneType, @@ -5420,12 +5538,12 @@ ProtectedCommunicationZone ::= SEQUENCE { protectedZoneLatitude Latitude, protectedZoneLongitude Longitude, protectedZoneRadius ProtectedZoneRadius OPTIONAL, - protectedZoneID ProtectedZoneID OPTIONAL, + protectedZoneId ProtectedZoneId OPTIONAL, ... } /** - * This DF consist of a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). + * This DF shall contain a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). * * It may provide up to 16 protected communication zones information. * @@ -5447,10 +5565,10 @@ ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicat * * 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) - * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, + * for controlling traffic lights, barriers, bollards, etc. This DF shall include information like route, course, * destination, priority, etc. * - * The R09.x content is defined in VDV recommendation 420 [i.8]. It includes following information: + * The R09.x content is defined in VDV recommendation 420 [i.7]. It includes following information: * - Priority Request Information (pre-request, request, ready to start) * - End of Prioritization procedure * - Priority request direction @@ -5471,53 +5589,52 @@ PtActivation ::= SEQUENCE { /** * This DF describes a radial shape. 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 + * 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 * 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). * - * It includes the following components: + * It shall include the following components: * - * @field sensorPositionOffset: the optional offset opoint. + * @field shapeReferencePoint: 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. * - * @field range: the radial range of the sensor from the reference point or sensor point offset. + * @field range: the radial range of the shape from the shape´s reference point. * * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor's horizontal opening angle in positive angular direction with respect to the + * shape's horizontal opening angle in positive angular direction with respect to the * WGS84 coordinate system. * - * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor's horizontal opening angle in positive angular direction with respect to the WGS84 coordinate - * system. + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the shape's + * horizontal opening angle in positive angular direction with respect to the WGS84 coordinate system. * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's - * 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. + * @field verticalOpeningAngleStart: 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. * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the shape's * 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 using the DE CartesianAngleValue. + * located in the north-east plane of the WGS84 coordinate system. * * @category Sensing information * @revision: created in V2.1.1 */ RadialShape ::= SEQUENCE { - offsetPoint CartesianPosition3d OPTIONAL, + shapeReferencePoint CartesianPosition3d OPTIONAL, range StandardLength12b, stationaryHorizontalOpeningAngleStart Wgs84AngleValue, stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, - ... + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL } /** * This DF describes a list of radial shapes. * - * It includes the following components: + * It shall include the following components: * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). * @@ -5534,11 +5651,10 @@ RadialShape ::= SEQUENCE { */ RadialShapes ::= SEQUENCE { refPointId Identifier1B, - xCoordinate CartesianCoordinateSmall, -- tbd: is this along the positive or the negative x axis? + xCoordinate CartesianCoordinateSmall, yCoordinate CartesianCoordinateSmall, zCoordinate CartesianCoordinateSmall OPTIONAL, - radialShapesList RadialShapesList, - ... + radialShapesList RadialShapesList } /** @@ -5559,21 +5675,21 @@ RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF RadialShapeDetails * be provided to reflect characteristics of sensors mounted at an altitude (e.g. sensors mounted * above intersections). * - * It includes the following components: + * It shall include the following components: * * @field range: the radial range of the sensor from the reference point or sensor point offset. * - * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor's horizontal opening angle in positive angular direction. + * @field horizontalOpeningAngleStart: the orientation indicating the beginning of the + * shape's horizontal opening angle in positive angular direction. * - * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor's horizontal opening angle in positive angular direction. + * @field horizontalOpeningAngleEnd: The orientation indicating the end of the shape's horizontal + * opening angle in positive angular direction. * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the shape's * 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. + * located in the north-east plane of the WGS84 coordinate system. * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the shape's * 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. * @@ -5585,14 +5701,13 @@ RadialShapeDetails ::= SEQUENCE { horizontalOpeningAngleStart CartesianAngleValue, horizontalOpeningAngleEnd CartesianAngleValue, verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, - ... + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL } /** * 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. * - * It includes the following components: + * It shall include the following components: * * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. * @@ -5601,6 +5716,7 @@ RadialShapeDetails ::= SEQUENCE { * @field semiBreadth: represents half the breadth of the rectangle. * * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. * @@ -5612,22 +5728,23 @@ RectangularShape ::= SEQUENCE { semiLength StandardLength12b, semiBreadth StandardLength12b, orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL + height StandardLength12b OPTIONAL } /** - * A position within a geographic coordinate system together with a confidence indication. + * A position within a geographic coordinate system together with a confidence ellipse. * - * It includes the following components: + * It shall include the following components: * * @field latitude: the latitude of the geographical point. * * @field longitude: the longitude of the geographical point. * - * @field positionConfidenceEllipse: the accuracy of the geographical position. + * @field positionConfidenceEllipse: the confidence ellipse associated to the geographical position. * * @field altitude: the altitude and an altitude accuracy of the geographical point. * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref ReferencePositionWithConfidence instead. * @category: GeoReference information * @revision: description updated in V2.1.1 */ @@ -5639,7 +5756,30 @@ ReferencePosition ::= SEQUENCE { } /** - * This DF consist of a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. + * A position within a geographic coordinate system together with a confidence ellipse. + * + * It shall include the following components: + * + * @field latitude: the latitude of the geographical point. + * + * @field longitude: the longitude of the geographical point. + * + * @field positionConfidenceEllipse: the confidence ellipse associated to the geographical position. + * + * @field altitude: the altitude and an altitude accuracy of the geographical point. + * + * @category: GeoReference information + * @revision: created in V2.1.1 based on @ref ReferencePosition but using @ref PositionConfidenceEllipse. + */ +ReferencePositionWithConfidence ::= SEQUENCE { + latitude Latitude, + longitude Longitude, + positionConfidenceEllipse PositionConfidenceEllipse, + altitude Altitude +} + +/** + * This DF shall contain a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. * * @category: Infrastructure information, Traffic information * @revision: V1.3.1 @@ -5649,14 +5789,14 @@ RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType /** * This DF represents a unique id for a road segment * - * It includes the following components: + * It shall include the following components: * * @field region: 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 @ref Id is unique within the region. * * @field id: the identifier of the road segment * - * @note: when the RoadRegulatorID is present, the RoadSegmentReferenceID is guaranteed to be globally unique. + * @note: when the component region is present, the RoadSegmentReferenceId is guaranteed to be globally unique. * @category: GeoReference information * @revision: created in V2.1.1 */ @@ -5668,28 +5808,31 @@ RoadSegmentReferenceId ::= SEQUENCE { /** * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). * - * It includes the following components: + * It shall include the following components: * * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. * * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. - * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant inidcated in the component subjectStation is safe. + * 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. * * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. * + * @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) + * * @category: Traffic information, Kinematics information * @revision: created in V2.1.1 */ SafeDistanceIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, + subjectStation StationId OPTIONAL, safeDistanceIndicator SafeDistanceIndicator, timeToCollision DeltaTimeTenthOfSecond OPTIONAL, ... } /** - * This DF represents a list of maximum `16` @ref CartesianPosition3d. + * This DF shall contain a list of DF @ref CartesianPosition3d. * * @category: GeoReference information * @revision: created in V2.1.1 @@ -5697,7 +5840,7 @@ SafeDistanceIndication ::= SEQUENCE { SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d /** - * The DF contains a list of identifiers. + * The DF contains a list of DE @ref Identifier1B. * * @category: Basic information * @revision: created in V2.1.1 @@ -5705,60 +5848,60 @@ SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPositi SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B /** - * The DF contains a list of DF SafeDistanceIndication. + * The DF contains a list of DF @ref SafeDistanceIndication. * * @category: Traffic information, Kinematics information * @revision: created in V2.1.1 */ -SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..9,...)) OF SafeDistanceIndication +SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..8,...)) OF SafeDistanceIndication /** - * The DF contains a list of DF TrajectoryInterceptionIndication. + * The DF shall contain a list of DF @ref TrajectoryInterceptionIndication. * * @category: Traffic information, Kinematics information * @revision: created in V2.1.1 */ -SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..9,...)) OF TrajectoryInterceptionIndication +SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..8,...)) OF TrajectoryInterceptionIndication /** * This DF provides the definition of a geographical area or volume, based on different options. * - * It includes the following components: + * It is a choice of the following components: * - * @field rectangle: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. + * @field rectangular: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. * - * @field circle: definition of an area of circular shape or a right circular cylinder. + * @field circular: definition of an area of circular shape or a right circular cylinder. * - * @field polygon: definition of an area of polygonal shape or a right prism. + * @field polygonal: definition of an area of polygonal shape or a right prism. * - * @field ellipse: definition of an area of elliptical shape or a right elliptical cylinder. + * @field elliptical: definition of an area of elliptical shape or a right elliptical cylinder. * * @field radial: definition of a radial shape. * - * @field radialShapes: definition of list of radial shapes. + * @field radialList: definition of list of radial shapes. * * @category: GeoReference information * @revision: Created in V2.1.1 */ Shape::= CHOICE { - rectangle RectangularShape, - circle CircularShape, - polygon PolygonalShape, - ellipse EllipticalShape, - radial RadialShape, - radialShapes RadialShapes, + rectangular RectangularShape, + circular CircularShape, + polygonal PolygonalShape, + elliptical EllipticalShape, + radial RadialShape, + radialShapes RadialShapes, ... } /** - * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * This DF represents the speed and associated confidence value. * - * It includes the following components: + * It shall include the following components: * * @field speedValue: the speed value. * - * @field speedConfidence: the accuracy of the reported speed value. + * @field speedConfidence: the confidence value of the speed value. * * @category: Kinematics information * @revision: V1.3.1 @@ -5768,31 +5911,14 @@ Speed ::= SEQUENCE { speedConfidence SpeedConfidence } -/** - * This DF describes the extended speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). - * - * It includes the following components: - * - * @field speedValue: the extended speed value. - * - * @field speedConfidence: the accuracy of the reported speed value. - * - * @category: Kinematics information - * @revision: V2.1.1 - */ -SpeedExtended ::= SEQUENCE { - speedValue SpeedValueExtended, - speedConfidence SpeedConfidence -} - /** * This DF provides the indication of change in stability. * - * It includes the following components: + * It shall include the following components: * * @field lossProbability: the probability of stability loss. * - * @field actionDeltaTime: accuracy of the reported speed value. + * @field actionDeltaTime: the period over which the the probability of stability loss is estimated. * * @category: Kinematics information * @revision: V2.1.1 @@ -5806,11 +5932,11 @@ StabilityChangeIndication ::= SEQUENCE { /** * This DF represents the steering wheel angle of the vehicle at certain point in time. * - * It includes the following components: + * It shall include the following components: * * @field steeringWheelAngleValue: steering wheel angle value. * - * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. + * @field steeringWheelAngleConfidence: confidence value of the steering wheel angle value. * * @category: Vehicle information * @revision: Created in V2.1.1 @@ -5831,7 +5957,7 @@ Traces ::= SEQUENCE SIZE(1..7) OF Path /** * Ths DF represents the a position on a traffic island between two lanes. * - * It includes the following components: + * It shall include the following components: * * @field oneSide: represents one lane. * @@ -5849,27 +5975,27 @@ TrafficIslandPosition ::= SEQUENCE { /** * This DF provides detailed information about an attached trailer. * - * It includes the following components: + * It shall include the following components: * * @field refPointId: identifier of the reference point of the trailer. * * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the * vehicle Reference Point. * - * @field frontOverhang: Length of the trailer overhang in the positive x direction (according to ISO 8855) from the + * @field frontOverhang: optional length of the trailer overhang in the positive x direction (according to ISO 8855) from the * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer * is not overhanging to the front with respect to the trailer reference point. * - * @field rearOverhang: Length of the trailer overhang in the negative x direction (according to ISO 8855) from the + * @field rearOverhang: optional length of the trailer overhang in the negative x direction (according to ISO 8855) from the * trailer Reference Point indicated by the refPointID. * * @field trailerWidth: optional width of the trailer. * - * @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x - * direction of the ISO 8855 [i.2] coordinate system centered on the trailer) and the direction of + * @field hitchAngle: optional Value and confidence value of the angle between the trailer orientation (corresponding to the x + * direction of the ISO 8855 [2] coordinate system centered on the trailer) and the direction of * the segment having as end points the reference point of the trailer and the reference point of * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane - * xy, described in the local Cartesian coordinate system of the preceding reference point. The + * xy, described in the local Cartesian coordinate system of the trailer. The * angle is measured with negative values considering the trailer orientation turning clockwise * starting from the segment direction. The angle value accuracy is provided with the * confidence level of 95 %. @@ -5877,20 +6003,42 @@ TrafficIslandPosition ::= SEQUENCE { * @category: Vehicle information * @revision: Created in V2.1.1 */ -TrailerData ::= SEQUENCE { --tbd check descriptions above +TrailerData ::= SEQUENCE { refPointId Identifier1B, - hitchPointOffset StandardLength1B, -- tbd is the value unavailable needed? - frontOverhang StandardLength1B, - rearOverhang StandardLength1B, - trailerWidth VehicleWidth, + hitchPointOffset StandardLength1B, + frontOverhang StandardLength1B OPTIONAL, + rearOverhang StandardLength1B OPTIONAL, + trailerWidth VehicleWidth OPTIONAL, hitchAngle CartesianAngle, ... } +/** + * This DE provides information about the presence of a trailer. + * + * The value shall be set to: + * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value. + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. + * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. + * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * nor the detection of trailer presence/absence is possible. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 based on VehicleLengthConfidenceIndication +*/ +TrailerPresenceInformation ::= ENUMERATED { + noTrailerPresent (0), + trailerPresentWithKnownLength (1), + trailerPresentWithUnknownLength (2), + trailerPresenceIsUnknown (3), + unavailable (4) +} + /** * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. * - * It includes the following components: + * It shall include the following components: * * @field subjectStation: indicates the subject station. * @@ -5904,9 +6052,9 @@ TrailerData ::= SEQUENCE { --tbd check descriptions above * @revision: Created in V2.1.1 */ TrajectoryInterceptionIndication ::= SEQUENCE { - subjectStation StationID OPTIONAL, - trajectoryInterceptionProbability TrajectoryInterceptionProbability, - trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, + subjectStation StationId OPTIONAL, + trajectoryInterceptionProbability TrajectoryInterceptionProbability, + trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, ... } @@ -5931,17 +6079,17 @@ Ext2::=CHOICE{ Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length /** - * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. + * This DF indicates the vehicle acceleration at vertical direction and the associated confidence value. * - * It includes the following components: + * It shall include the following components: * * @field verticalAccelerationValue: vertical acceleration value at a point in time. * - * @field verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. + * @field verticalAccelerationConfidence: confidence value of the vertical acceleration value with a predefined confidence level. * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead * @category Vehicle information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ VerticalAcceleration ::= SEQUENCE { verticalAccelerationValue VerticalAccelerationValue, @@ -5951,7 +6099,7 @@ VerticalAcceleration ::= SEQUENCE { /** * This DF provides information related to the identification of a vehicle. * - * It includes the following components: + * It shall include the following components: * * @field wMInumber: World Manufacturer Identifier (WMI) code. * @@ -5969,11 +6117,11 @@ VehicleIdentification ::= SEQUENCE { /** * This DF represents the length of vehicle and accuracy indication information. * - * It includes the following components: + * It shall include the following components: * * @field vehicleLengthValue: length of vehicle. * - * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. + * @field vehicleLengthConfidenceIndication: indication of the length value confidence. * * @category: Vehicle information * @revision: V1.3.1 @@ -5983,34 +6131,144 @@ VehicleLength ::= SEQUENCE { vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication } +/** + * This DF represents the length of vehicle and accuracy indication information. + * + * It shall include the following components: + * + * @field vehicleLengthValue: length of vehicle. + * + * @field trailerPresenceInformation: information about the trailer presence. + * + * @category: Vehicle information + * @revision: created in V2.1.1 based on @ref VehicleLength but using @ref TrailerPresenceInformation + */ +VehicleLengthV2 ::= SEQUENCE { + vehicleLengthValue VehicleLengthValue, + trailerPresenceInformation TrailerPresenceInformation +} + +/** + * This DF represents a velocity vector with associated confidence value. + * + * The following options are available: + * + * @field polarVelocity: the representation of the velocity vector in a polar coordinate system. + * + * @field cartesianVelocity: the representation of the velocity vector in a cartesian coordinate system. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +Velocity3dWithConfidence::= CHOICE{ + polarVelocity VelocityPolarWithZ, + cartesianVelocity VelocityCartesian +} + +/** + * This DF represents a velocity vector in a cartesian coordinate system. + + * It shall include the following components: + * + * @field xVelocity: the x component of the velocity vector with the associated confidence value. + * + * @field yVelocity: the y component of the velocity vector with the associated confidence value. + * + * @field zVelocity: the optional z component of the velocity vector with the associated confidence value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +VelocityCartesian::= SEQUENCE { + xVelocity VelocityComponent, + yVelocity VelocityComponent, + zVelocity VelocityComponent OPTIONAL +} + +/** + * This DF represents a component of the velocity vector and the associated confidence value. + * + * It shall include the following components: + * + * @field value: the value of the component. + * + * @field confidence: the confidence value of the value. + * + * @category: Kinematics information + * @revision: V2.1.1 + */ +VelocityComponent ::= SEQUENCE { + value SpeedValueExtended, + confidence SpeedConfidence +} + +/** + * This DF represents a velocity vector in a polar coordinate system. + + * It shall include the following components: + * + * @field velocityMagnitude: magnitude of the velocity vector of the detected object in the X-Y plane with the associated confidence value. + * + * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane with the associated confidence value. + * + * @field zVelocity: the optional z component of the velocity vector with the associated confidence value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +VelocityPolarWithZ::= SEQUENCE { + velocityMagnitude VelocityComponent, + velocityDirection CartesianAngle, + zVelocity VelocityComponent OPTIONAL +} + /** * This DF provides information about a VRU cluster. * - * It includes the following components: + * It shall include the following components: * * @field clusterId: optional identifier of a VRU cluster . * * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. * - * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group. + * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group, i.e. the known members in the cluster + 1 (for the cluster leader) . * - * @field clusterProfiles: optionally identifies all the VRU profile types that are believed to be within the cluster. + * @field clusterProfiles: optionally identifies all the VRU profile types that are known to be within the cluster. * if this component is absent it means that the information is unavailable. * * @category: VRU information * @revision: Created in V2.1.1 */ VruClusterInformation ::= SEQUENCE { - clusterId ClusterId OPTIONAL, - clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, - clusterCardinalitySize ClusterCardinalitySize, + clusterId Identifier1B OPTIONAL, + clusterBoundingBoxShape Shape (WITH COMPONENTS{..., elliptical ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, + clusterCardinalitySize CardinalNumber1B, clusterProfiles VruClusterProfiles OPTIONAL, ... } +/** + * This DF represents the status of the exterior light switches of a VRU. + * This DF is an extension of the vehicular DE @ref ExteriorLights. + * + * It shall include the following components: + * + * @field vehicular: represents the status of the exterior light switches of a road vehicle. + * + * @field vruSpecific: represents the status of the exterior light switches of a VRU. + * + * @category: VRU information + * @revision: created in V2.1.1 + */ +VruExteriorLights ::= SEQUENCE { + vehicular ExteriorLights, + vruSpecific VruSpecificExteriorLights, + ... +} + /** * This DF indicates the profile of a VRU including sub-profile information - * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.22]: + * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.18]: * * @field pedestrian: VRU Profile 1 - Pedestrian. * @@ -6018,7 +6276,7 @@ VruClusterInformation ::= SEQUENCE { * * @field motorcyclist: VRU Profile 3 - Motorcyclist. * - * @field animal: VRU Profile 4 - Animals. + * @field animal: VRU Profile 4 - Animal. * * @category: VRU information * @revision: Created in V2.1.1 @@ -6026,19 +6284,20 @@ VruClusterInformation ::= SEQUENCE { VruProfileAndSubprofile ::= CHOICE { pedestrian VruSubProfilePedestrian, bicyclistAndLightVruVehicle VruSubProfileBicyclist, - motorcylist VruSubProfileMotorcyclist, + motorcyclist VruSubProfileMotorcyclist, animal VruSubProfileAnimal, ... } /** - * This DF represents an angular component along with a confidence in the WGS84 coordinate system. + * This DF represents an angular component along with a confidence value in the WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * - * It includes the following components: + * It shall include the following components: * - * @field value: the angle value which can be estimated as the mean of the current distribution. + * @field value: the angle value, which can be estimated as the mean of the current distribution. * - * @field confidence: the accuracy associated to the provided value. + * @field confidence: the confidence value associated to the angle value. * * @category: GeoReference information * @revision: Created in V2.1.1 @@ -6052,11 +6311,11 @@ Wgs84Angle ::= SEQUENCE { /** * This DF represents a yaw rate of vehicle at a point in time. * - * It includes the following components: + * It shall include the following components: * * @field yawRateValue: yaw rate value at a point in time. * - * @field yawRateConfidence: accuracy of reported yaw rate value. + * @field yawRateConfidence: confidence value associated to the yaw rate value. * * @category: Vehicle Information * @revision: V1.3.1 -- GitLab From bf0f4cbc44d8c8b90df8fabd79d20333f51f34c1 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Mon, 12 Sep 2022 06:04:52 +0000 Subject: [PATCH 52/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 303112 -> 323259 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 63b1b9c098a2286ae79296c0bae3e14896ef8405..83521780bbba8c006c4242962a44363aea60f1aa 100644 GIT binary patch delta 34707 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 BM#TUC delta 24805 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 hX%9*k!-Y?I-=|LBf5vZ*_JB&3 Date: Wed, 14 Sep 2022 07:07:08 +0000 Subject: [PATCH 53/91] Replace ITS-Container.asn --- ITS-Container.asn | 1246 ++++++++++++++++++++++++--------------------- 1 file changed, 671 insertions(+), 575 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 732220c..72975c7 100644 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -29,8 +29,8 @@ AccelerationChange::= ENUMERATED { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 101)` if the confidence value is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `101` if the confidence value is out of range i.e. greater than 10 m/s2. + * - `n (n > 0 and n < 101)` if the confidence value is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `101` if the confidence value is out of range i.e. greater than 10 m/s2, * - `102` if the confidence value is unavailable. * * The value 0 shall not be used. @@ -85,14 +85,33 @@ AccelerationControl ::= BIT STRING { speedLimiterEngaged (6) } (SIZE(7)) +/** + * This DE represents the magnitude of the acceleration vector in a defined coordinate system. + * + * The value shall be set to: + * - `0` to indicate no acceleration, + * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration or greater than 15,9 m/s2, + * - `161` when the data is unavailable. + * + * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. + * @unit 0,1 m/s2 + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AccelerationMagnitudeValue ::= INTEGER { + positiveOutOfRange (160), + unavailable (161) +} (0.. 161) + /** * This DE represents the value of an acceleration component in a defined coordinate system. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. + * - `-160` for values equal to or less than -16 m/s2, + * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration or greater than 15,9 m/s2, * - `161` when the data is unavailable. * * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. @@ -111,9 +130,9 @@ AccelerationValue ::= INTEGER { * This DE indicates an access technology. * * The value shall be set to: - * - `0`: in case of any access technology class. - * - `1`: in case of ITS-G5 access technology class. - * - `2`: in case of LTE-V2X access technology class. + * - `0`: in case of any access technology class, + * - `1`: in case of ITS-G5 access technology class, + * - `2`: in case of LTE-V2X access technology class, * - `3`: in case of NR-V2X access technology class. * * @category: Communication information @@ -162,17 +181,17 @@ AccidentSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailable. - * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road. - * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road. - * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road. - * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road. - * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road. - * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road. - * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road. - * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. - * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface. - * - 10 - `roadsSalted` - when the low road adhesion is due to salted road. + * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailable, + * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road, + * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road, + * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road, + * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road, + * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road, + * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road, + * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road, + * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard, + * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface, + * - 10 - `roadsSalted` - when the low road adhesion is due to salted road, * - 11-255 - are reserved for future usage. * * @category: Traffic information @@ -196,12 +215,12 @@ AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable. - * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind. - * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail. - * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane. - * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm. - * - 5 - `tornado` - in case the type of extreme weather condition is tornado. + * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable, + * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind, + * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail, + * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane, + * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm, + * - 5 - `tornado` - in case the type of extreme weather condition is tornado, * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. * - 7-255 - are reserved for future usage. * @@ -222,9 +241,9 @@ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. * * The value shall be set to: - * - 0 - `unavailable` : in case information on the type of precipitation is unavailable. - * - 1 - `heavyRain` : in case the type of precipitation is heavy rain. - * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall. + * - 0 - `unavailable` : in case information on the type of precipitation is unavailable, + * - 1 - `heavyRain` : in case the type of precipitation is heavy rain, + * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall, * - 3 - `softHail` : in case the type of precipitation is soft hail. * - 4-255 : are reserved for future usage * @@ -242,14 +261,14 @@ AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable. - * - 1 - `fog` - in case the cause of low visibility is fog. - * - 2 - `smoke` - in case the cause of low visibility is smoke. - * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall. - * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain. - * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail. - * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare. - * - 7 - `sandstorms` - in case the cause of low visibility is sand storm. + * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable, + * - 1 - `fog` - in case the cause of low visibility is fog, + * - 2 - `smoke` - in case the cause of low visibility is smoke, + * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall, + * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain, + * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail, + * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare, + * - 7 - `sandstorms` - in case the cause of low visibility is sand storm, * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. * - 9-255 - are reserved for future usage * @@ -289,21 +308,21 @@ AirHumidity ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - 0 - `alt-000-01` if the confidence value is equal to or less than 0,01 metre. - * - 1 - `alt-000-02` if the confidence value is equal to or less than 0,02 metre and greater than 0,01 metre. - * - 2 - `alt-000-05` if the confidence value is equal to or less than 0,05 metre and greater than 0,02 metre. - * - 3 - `alt-000-10` if the confidence value is equal to or less than 0,1 metre and greater than 0,05 metre. - * - 4 - `alt-000-20` if the confidence value is equal to or less than 0,2 metre and greater than 0,1 metre. - * - 5 - `alt-000-50` if the confidence value is equal to or less than 0,5 metre and greater than 0,2 metre. - * - 6 - `alt-001-00` if the confidence value is equal to or less than 1 metre and greater than 0,5 metre. - * - 7 - `alt-002-00` if the confidence value is equal to or less than 2 metres and greater than 1 metre. - * - 8 - `alt-005-00` if the confidence value is equal to or less than 5 metres and greater than 2 metres. - * - 9 - `alt-010-00` if the confidence value is equal to or less than 10 metres and greater than 5 metres. - * - 10 - `alt-020-00` if the confidence value is equal to or less than 20 metres and greater than 10 metres. - * - 11 - `alt-050-00` if the confidence value is equal to or less than 50 metres and greater than 20 metres. - * - 12 - `alt-100-00` if the confidence value is equal to or less than 100 metres and greater than 50 metres. - * - 13 - `alt-200-00` if the confidence value is equal to or less than 200 metres and greater than 100 metres. - * - 14 - `outOfRange` if the confidence value is out of range, i.e. greater than 200 metres. + * - 0 - `alt-000-01` if the confidence value is equal to or less than 0,01 metre, + * - 1 - `alt-000-02` if the confidence value is equal to or less than 0,02 metre and greater than 0,01 metre, + * - 2 - `alt-000-05` if the confidence value is equal to or less than 0,05 metre and greater than 0,02 metre, + * - 3 - `alt-000-10` if the confidence value is equal to or less than 0,1 metre and greater than 0,05 metre, + * - 4 - `alt-000-20` if the confidence value is equal to or less than 0,2 metre and greater than 0,1 metre, + * - 5 - `alt-000-50` if the confidence value is equal to or less than 0,5 metre and greater than 0,2 metre, + * - 6 - `alt-001-00` if the confidence value is equal to or less than 1 metre and greater than 0,5 metre, + * - 7 - `alt-002-00` if the confidence value is equal to or less than 2 metres and greater than 1 metre, + * - 8 - `alt-005-00` if the confidence value is equal to or less than 5 metres and greater than 2 metres, + * - 9 - `alt-010-00` if the confidence value is equal to or less than 10 metres and greater than 5 metres, + * - 10 - `alt-020-00` if the confidence value is equal to or less than 20 metres and greater than 10 metres, + * - 11 - `alt-050-00` if the confidence value is equal to or less than 50 metres and greater than 20 metres, + * - 12 - `alt-100-00` if the confidence value is equal to or less than 100 metres and greater than 50 metres, + * - 13 - `alt-200-00` if the confidence value is equal to or less than 200 metres and greater than 100 metres, + * - 14 - `outOfRange` if the confidence value is out of range, i.e. greater than 200 metres, * - 15 - `unavailable` if the confidence value is unavailable * * @note: The fact that an altitude value is received with confidence value set to `unavailable(15)` can be caused @@ -343,9 +362,9 @@ AltitudeConfidence ::= ENUMERATED { * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `-100 000` if the altitude is equal to or less than -1 000 m. - * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0,01 metre and greater than (n-1) x 0,01 metre. - * - `800 000` if the altitude greater than 7 999,99 m. + * - `-100 000` if the altitude is equal to or less than -1 000 m, + * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0,01 metre and greater than (n-1) x 0,01 metre, + * - `800 000` if the altitude greater than 7 999,99 m, * - `800 001` if the information is not available. * * @note: the range of this DE does not use the full binary encoding range, but all reasonable values are covered. In order to cover all possible altitude ranges a larger encoding would be necessary. @@ -364,8 +383,8 @@ AltitudeValue ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. - * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. + * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees, + * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees, * - `127` if the accuracy information is not available. * * @unit: 0,1 degrees @@ -383,13 +402,13 @@ AngleConfidence ::= INTEGER { * For correlation computation, maximum interval levels can be assumed. * * The value shall be set to: - * - 0 - `degSec-01` if the accuracy is equal to or less than 1 degree/second. - * - 1 - `degSec-02` if the accuracy is equal to or less than 2 degrees/second and greater than 1 degree/second. - * - 2 - `degSec-05` if the accuracy is equal to or less than 5 degrees/second and greater than 2 degrees/second. - * - 3 - `degSec-10` if the accuracy is equal to or less than 10 degrees/second and greater than 5 degrees/second. - * - 4 - `degSec-20` if the accuracy is equal to or less than 20 degrees/second and greater than 10 degrees/second. - * - 5 - `degSec-50` if the accuracy is equal to or less than 50 degrees/second and greater than 20 degrees/second. - * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second. + * - 0 - `degSec-01` if the accuracy is equal to or less than 1 degree/second, + * - 1 - `degSec-02` if the accuracy is equal to or less than 2 degrees/second and greater than 1 degree/second, + * - 2 - `degSec-05` if the accuracy is equal to or less than 5 degrees/second and greater than 2 degrees/second, + * - 3 - `degSec-10` if the accuracy is equal to or less than 10 degrees/second and greater than 5 degrees/second, + * - 4 - `degSec-20` if the accuracy is equal to or less than 20 degrees/second and greater than 10 degrees/second, + * - 5 - `degSec-50` if the accuracy is equal to or less than 50 degrees/second and greater than 20 degrees/second, + * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second, * - 7 - `unavailable` if the accuracy information is unavailable * * @category: Kinematics information @@ -412,14 +431,14 @@ AngularSpeedConfidence ::= ENUMERATED { * For correlation computation, maximum interval levels shall be assumed. * * The value shall be set to: - * - 0 - `degSecSquared-01` if the accuracy is equal to or less than 1 degree/second2. - * - 1 - `degSecSquared-02` if the accuracy is equal to or less than 2 degrees/second2 and greater than 1 degree/second2. - * - 2 - `degSecSquared-05` if the accuracy is equal to or less than 5 degree/second2 and greater than 1 degree/second2. - * - 3 - `degSecSquared-10` if the accuracy is equal to or less than 10 degree/second2 and greater than 5 degree/second2. - * - 4 - `degSecSquared-20` if the accuracy is equal to or less than 20 degrees/second2 and greater than 10 degree/second2. - * - 5 - `degSecSquared-50` if the accuracy is equal to or less than 50 degrees/second2 and greater than 20 degrees/second2. - * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second2. - * - 7 - `unavailable` if the accuracy information is unavailable + * - 0 - `degSecSquared-01` if the accuracy is equal to or less than 1 degree/second2, + * - 1 - `degSecSquared-02` if the accuracy is equal to or less than 2 degrees/second2 and greater than 1 degree/second2, + * - 2 - `degSecSquared-05` if the accuracy is equal to or less than 5 degree/second2 and greater than 1 degree/second2, + * - 3 - `degSecSquared-10` if the accuracy is equal to or less than 10 degree/second2 and greater than 5 degree/second2, + * - 4 - `degSecSquared-20` if the accuracy is equal to or less than 20 degrees/second2 and greater than 10 degree/second2, + * - 5 - `degSecSquared-50` if the accuracy is equal to or less than 50 degrees/second2 and greater than 20 degrees/second2, + * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second2, + * - 7 - `unavailable` if the accuracy information is unavailable. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -438,9 +457,9 @@ AngularAccelerationConfidence ::= ENUMERATED { /** * This DE indicates the number of axles of a passing train. * - * The following values are specified: - * - `n(n > 2 and n < 1001)` indicates that the train has n x axles. - * - `1001`indicates that the number of axles is out of range. + * The value shall be set to: + * - `n(n > 2 and n < 1001)` indicates that the train has n x axles, + * - `1001`indicates that the number of axles is out of range, * - `1002` the information is unavailable. * * @@ -456,10 +475,10 @@ AxlesCount ::= INTEGER{ /** * This DE represents the measured uncompensated atmospheric pressure. * - * The following values are specified: - * - `2999` indicates that the applicable value is less than 29990 Pa. - * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa. - * - `12001` indicates that the values is greater than 120000 Pa. + * The value shall be set to: + * - `2999` indicates that the applicable value is less than 29990 Pa, + * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, + * - `12001` indicates that the values is greater than 120000 Pa, * - `12002` indicates that the information is not available. * * @category: Basic information @@ -476,9 +495,9 @@ BarometricPressure ::= INTEGER{ /** * This DE indicates the cardinal number of bogies of a train. * -* The value shall be set to: - * - `n (n > 1 and n < 100)` indicates that the train has n x bogies - * - `100`indicates that the number of bogies is out of range. + * The value shall be set to: + * - `n (n > 1 and n < 100)` indicates that the train has n x bogies, + * - `100`indicates that the number of bogies is out of range, * - `101` the information is unavailable. * * @unit: Number of bogies @@ -511,7 +530,7 @@ CardinalNumber3b ::= INTEGER(1..8) * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. + * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, * - `36001` if the accuracy information is not available. * * The value 3600 shall not be used. @@ -526,44 +545,44 @@ CartesianAngleValue ::= INTEGER { } (0..3601) /** - * This DE represents an angular speed value described in a local Cartesian coordinate system, per default counted positive in + * This DE represents an angular acceleration value described in a local Cartesian coordinate system, per default counted positive in * a right-hand local coordinate system from the abscissa. * - * The value shall be set to: - * - `-255` if the speed is equal to or less than -255 degrees/s. - * - `n` (`n > -255` and `n < 255`) if the speed is equal to or less than n x 1 degree/s, and greater than (n-1) x 1 degree/s. - * - `255` if the speed is greater than 254 degrees/s. + * The value shall be set to: + * - `-255` if the acceleration is equal to or less than -255 degrees/s2, + * - `n` (`n > -255` and `n < 255`) if the acceleration is equal to or less than n x 1 degree/s2, + and greater than `(n-1)` x 0,01 degrees/s2, + * - `255` if the acceleration is greater than 254 degrees/s2, * - `256` if the information is unavailable. * - * @unit: degree/s + * @unit: degree/s2 (degrees per second squared) * @category: Kinematics information * @revision: Created in V2.1.1 */ -CartesianAngularSpeedValue ::= INTEGER { +CartesianAngularAccelerationComponentValue ::= INTEGER { negativeOutofRange (-255), positiveOutOfRange (255), - unavailable (256) + unavailable (256) } (-255..256) /** - * This DE represents an angular acceleration value described in a local Cartesian coordinate system, per default counted positive in + * This DE represents an angular velocity component described in a local Cartesian coordinate system, per default counted positive in * a right-hand local coordinate system from the abscissa. * - * The value shall be set to: - * - `-255` if the acceleration is equal to or less than -255 degrees/s2 - * - `n` (`n > -255` and `n < 255`) if the acceleration is equal to or less than n x 1 degree/s2, - and greater than `(n-1)` x 0,01 degrees/s2. - * - `255` if the acceleration is greater than 254 degrees/s2 - * - `256` if the information is unavailable + * The value shall be set to: + * - `-255` if the velocity is equal to or less than -255 degrees/s, + * - `n` (`n > -255` and `n < 255`) if the velocity is equal to or less than n x 1 degree/s, and greater than (n-1) x 1 degree/s, + * - `255` if the velocity is greater than 254 degrees/s, + * - `256` if the information is unavailable. * - * @unit: degree/s2 (degrees per second squared) + * @unit: degree/s * @category: Kinematics information * @revision: Created in V2.1.1 */ -CartesianAngularAccelerationValue ::= INTEGER { +CartesianAngularVelocityComponentValue ::= INTEGER { negativeOutofRange (-255), positiveOutOfRange (255), - unavailable (256) + unavailable (256) } (-255..256) /** @@ -576,8 +595,8 @@ CartesianAngularAccelerationValue ::= INTEGER { * - 3 - `roadworks` - in case the type of event is roadwork, * - 4 - reserved for future usage, * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any - * blocking of a road, partial or total, which has not been adequately - * secured and signposted, + * blocking of a road, partial or total, which has not been adequately + * secured and signposted, * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, * - 7 - `aquaplaning` - danger of aquaplaning on the road, * - 8 - reserved for future usage, @@ -654,8 +673,8 @@ CauseCodeType ::= INTEGER { * This DF represents the value of a cartesian coordinate with a range of -30,94 metres to +10,00 metres. * * The value shall be set to: - ` - `1001` if the longitudinal offset is out of range, i.e. less than or equal to -30,94 metres. - * - `n (n > -3094 and n < 1001)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre. + ` - `1001` if the longitudinal offset is out of range, i.e. less than or equal to -30,94 metres, + * - `n (n > -3094 and n < 1001)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `1001` if the longitudinal offset is out of range, i.e. greater than 10 metres. * * @unit 0,01 m @@ -671,8 +690,8 @@ CartesianCoordinateSmall::= INTEGER { * This DF represents the value of a cartesian coordinate with a range of -327,68 metres to + 327,66 metres. * * The value shall be set to: - ` - `-32768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres. - * - `n (n > -32768 and n < 32767)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre. + ` - `-32768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres, + * - `n (n > -32768 and n < 32767)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `32767` if the longitudinal offset is out of range, i.e. greater than + 327,66 metres. * * @unit 0,01 m @@ -688,8 +707,8 @@ CartesianCoordinate::= INTEGER{ * This DF represents the value of a cartesian coordinate with a range of -1 310,72 metres to + 1 310,70 metres. * * The value shall be set to: - ` - `-131072` if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres. - * - `n (n > -1 310,72 and n < 131071)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre. + ` - `-131072` if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres, + * - `n (n > -1 310,72 and n < 131071)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `131071` if the longitudinal offset is out of range, i.e. greater than + 1 310,70 metres. * * @unit 0,01 m @@ -714,11 +733,11 @@ CenDsrcTollingZoneID::= ProtectedZoneId * This DE indicates the reason why a cluster leader intends to break up the cluster. * * The value shall be set to: - * - 0 - `notProvided` - if the information is not provided. - * - 1 - `clusteringPurposeCompleted` - if the cluster purpose has been completed. - * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box. - * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster. - * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps. + * - 0 - `notProvided` - if the information is not provided, + * - 1 - `clusteringPurposeCompleted` - if the cluster purpose has been completed, + * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box, + * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster, + * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps, * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. * - 6 to 15 - reserved for future use * @@ -739,14 +758,14 @@ ClusterBreakupReason ::= ENUMERATED { * This DE indicates the reason why a cluster participant is leaving the cluster. * * The value shall be set to: - * - 0 - `notProvided ` - if the information is not provided. - * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore. - * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbanded by the leader. - * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box. - * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of a defined range. - * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster. - * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure. - * - 7 - `failedJoin` - if the participant failed to join the cluster. + * - 0 - `notProvided ` - if the information is not provided, + * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore, + * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbanded by the leader, + * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box, + * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of a defined range, + * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster, + * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure, + * - 7 - `failedJoin` - if the participant failed to join the cluster, * - 8 - `safetyCondition` - if a safety condition applies. * - 9 to 15 - reserved for future use * @@ -794,9 +813,7 @@ CollisionRiskSubCauseCode ::= INTEGER { * This DE represents a confidence level in percentage. * * The value shall be set to: - * - * - `0` : in case the confidence value is unknown but the value is valid. - * - `n (n > 0 and n < 101)` : for the confidence value in %. + * - `n (n > 0 and n < 101)` : for the confidence value in %, * - `101` : in case the confidence value is not available. * * @unit Percent @@ -806,15 +823,15 @@ CollisionRiskSubCauseCode ::= INTEGER { ConfidenceLevel ::= INTEGER { unknown (0), unavailable (101) -} (0..101) +} (1..101) /** * This DE indicates the coordinate confidence value which represents the estimated absolute accuracy of a position coordinate with a default confidence level of 95%. * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n` (`n > 0` and `n < 4095`) if the confidence value is is equal to or less than n x 0,01 metre, and greater than (n-1) x 0,01 metre. - * - `4095` if the confidence value is greater than 40,94 metres. + * - `n` (`n > 0` and `n < 4095`) if the confidence value is is equal to or less than n x 0,01 metre, and greater than (n-1) x 0,01 metre, + * - `4095` if the confidence value is greater than 40,94 metres, * - `4096` if the confidence value is not available. * * @unit 0,01 m @@ -830,11 +847,11 @@ CoordinateConfidence ::= INTEGER { * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. * * The value shall be set to: - * - `-100` in case of full negative correlation - * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100. - * - `0` in case of no correlation. - * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. - * - `100` in case of full positive correlation + * - `-100` in case of full negative correlation, + * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100, + * - `0` in case of no correlation, + * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100, + * - `100` in case of full positive correlation, * - `101` in case the correlation information is unavailable. * * @unit: the value is scaled by 100 @@ -852,8 +869,8 @@ CorrelationCellValue ::= INTEGER { * The DE describes whether the yaw rate is used to calculate the curvature for a curvature value. * * The value shall be set to: - * - 0 - `yawRateUsed` - if the yaw rate is used. - * - 1 - `yawRateNotUsed` - if the yaw rate is not used. + * - 0 - `yawRateUsed` - if the yaw rate is used, + * - 1 - `yawRateNotUsed` - if the yaw rate is not used, * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. * * @category: Vehicle information @@ -871,13 +888,13 @@ CurvatureCalculationMode ::= ENUMERATED { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - 0 - `onePerMeter-0-00002` if the confidence value is less than or equal to 0,00002 m-1. - * - 1 - `onePerMeter-0-0001` if the confidence value is less than or equal to 0,0001 m-1 and greater than 0,00002 m-1. - * - 2 - `onePerMeter-0-0005` if the confidence value is less than or equal to 0,0005 m-1 and greater than 0,0001 m-1. - * - 3 - `onePerMeter-0-002` if the confidence value is less than or equal to 0,002 m-1 and greater than 0,0005 m-1. - * - 4 - `nePerMeter-0-01` if the confidence value is less than or equal to 0,01 m-1 and greater than 0,002 m-1. - * - 5 - `nePerMeter-0-1` if the confidence value is less than or equal to 0,1 m-1 and greater than 0,01 m-1. - * - 6 - `outOfRange` if the confidence value is out of range, i.e. greater than 0,1 m-1. + * - 0 - `onePerMeter-0-00002` if the confidence value is less than or equal to 0,00002 m-1, + * - 1 - `onePerMeter-0-0001` if the confidence value is less than or equal to 0,0001 m-1 and greater than 0,00002 m-1, + * - 2 - `onePerMeter-0-0005` if the confidence value is less than or equal to 0,0005 m-1 and greater than 0,0001 m-1, + * - 3 - `onePerMeter-0-002` if the confidence value is less than or equal to 0,002 m-1 and greater than 0,0005 m-1, + * - 4 - `nePerMeter-0-01` if the confidence value is less than or equal to 0,01 m-1 and greater than 0,002 m-1, + * - 5 - `nePerMeter-0-1` if the confidence value is less than or equal to 0,1 m-1 and greater than 0,01 m-1, + * - 6 - `outOfRange` if the confidence value is out of range, i.e. greater than 0,1 m-1, * - 7 - `unavailable` if the confidence value is not available. * * @note: The fact that a curvature value is received with confidence value set to `unavailable(7)` can be caused by @@ -915,11 +932,11 @@ CurvatureConfidence ::= ENUMERATED { * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. * * The value shall be set to: - * - `-1023` for values smaller than -1023. - * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1). - * - `0` when the vehicle is moving straight. - * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1). - * - `1022`, for values greater than 1021. + * - `-1023` for values smaller than -1023, + * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1), + * - `0` when the vehicle is moving straight, + * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1), + * - `1022`, for values greater than 1021, * - `1023`, if the information is not available. * * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. @@ -1022,11 +1039,11 @@ DangerousSituationSubCauseCode ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `-12700` for values equal to or lower than -127 metres. - * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 metre below the reference position. - * - `0` for no altitudinal offset. - * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 metre above the reference position. - * - `12799` for values equal to or greater than 127,99 metres. + * - `-12700` for values equal to or lower than -127 metres, + * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 metre below the reference position, + * - `0` for no altitudinal offset, + * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 metre above the reference position, + * - `12799` for values equal to or greater than 127,99 metres, * - `12800` when the information is unavailable. * * @unit: 0,01 metre @@ -1044,9 +1061,9 @@ DeltaAltitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position. - * - `0` for no latitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 10^-7 degree towards the north from the reference position. + * - `n` (`n >= -131071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, + * - `0` for no latitudinal offset, + * - `n` (`n > 0` and `n < 131072`) for offset n x 10^-7 degree towards the north from the reference position, * - `131072` when the information is unavailable. * * @unit: 10^-7 degree @@ -1062,9 +1079,9 @@ DeltaLatitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position. - * - `0` for no longitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 10^-7 degree towards the east from the reference position. + * - `n` (`n >= -131071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, + * - `0` for no longitudinal offset, + * - `n` (`n > 0` and `n < 131072`) for offset n x 10^-7 degree towards the east from the reference position, * - `131072` when the information is unavailable. * * @unit: 10^-7 degree @@ -1133,9 +1150,9 @@ DeltaTimeSecond ::= INTEGER (0..86400) * Example: a reference direction may be implicitly defined by the definition of a geographical zone. * * The value shall be set to: - * - 0 - `sameDirection` - to indicate the same direction as the reference direction. - * - 1 - `oppositeDirection` - to indicate opposite direction as the reference direction. - * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction. + * - 0 - `sameDirection` - to indicate the same direction as the reference direction, + * - 1 - `oppositeDirection` - to indicate opposite direction as the reference direction, + * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction, * - 3 - `unavailable` - to indicate that the information is unavailable. * * @category: GeoReference information @@ -1152,8 +1169,8 @@ Direction::= INTEGER{ * This DE indicates in which direction something is moving. * * The value shall be set to: - * - 0 - `forward` - to indicate it is moving forward. - * - 1 - `backwards` - to indicate it is moving backwards. + * - 0 - `forward` - to indicate it is moving forward, + * - 1 - `backwards` - to indicate it is moving backwards, * - 2 - `unavailable` - to indicate that the information is unavailable. * * @category: Kinematics information @@ -1197,7 +1214,7 @@ EmbarkationStatus ::= BOOLEAN * The right-of-priority bit shall be set to `1` if the corresponding right is requested. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way. + * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way, * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. * * @category: Traffic information @@ -1231,12 +1248,12 @@ EmergencyVehicleApproachingSubCauseCode ::= INTEGER { * This DE indicated the type of energy being used and stored in vehicle. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle. - * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle. - * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle. - * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle. - * - 4 - `diesel` - when diesel is being used and stored in vehicle. - * - 5 - `gasoline` - when gasoline is being used and stored in vehicle. + * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle, + * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle, + * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle, + * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle, + * - 4 - `diesel` - when diesel is being used and stored in vehicle, + * - 5 - `gasoline` - when gasoline is being used and stored in vehicle, * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. * * - Otherwise, the corresponding bit shall be set to `0`. @@ -1294,13 +1311,13 @@ EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} * This DE describes the status of the exterior light switches of a vehicle. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on. - * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on. - * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on. - * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on. - * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on. - * - 5 - `reverseLightOn` - when the reverse light switch is on. - * - 6 - `fogLightOn` - when the tail fog light switch is on. + * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on, + * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on, + * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on, + * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on, + * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on, + * - 5 - `reverseLightOn` - when the reverse light switch is on, + * - 6 - `fogLightOn` - when the tail fog light switch is on, * - 7 - `parkingLightsOn` - when the parking light switch is on. * * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. @@ -1344,8 +1361,8 @@ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) * (e.g. for stopping or for driving) or closed for all vehicles. * * The value shall be set to: - * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations. - * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case. + * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations, + * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case, * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. * * @category: Traffic information @@ -1520,8 +1537,8 @@ HeadingValue ::= INTEGER { * rear to front). * * The value shall be set to: - * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre. - * - `99` if the height is out of range, i.e. equal to or greater than 0,98 m. + * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `99` if the height is out of range, i.e. equal to or greater than 0,98 m, * - `100` if the height information is not available. * * @unit 0,01 metre @@ -1591,12 +1608,12 @@ Identifier2B ::= INTEGER (0..65535) * This DE represents the quality level of provided information. * * The value shall be set to: - * - 0 - if the information is unavailable. - * - 1 - if the quality level is lowest - * - `n (n > 1 and n < 7)` if the quality level is n. - * - 7 - if the quality level is highest - * @note: Definition of quality level is out of scope of the present document. + * - 0 - if the information is unavailable, + * - 1 - if the quality level is lowest, + * - `n (n > 1 and n < 7)` if the quality level is n, + * - 7 - if the quality level is highest. * + * @note: Definition of quality level is out of scope of the present document. * @category: Basic information * @revision: Editorial update in V2.1.1 */ @@ -1608,12 +1625,12 @@ InformationQuality ::= INTEGER (0..7) * It is an extension of the type @ref ProtectedZoneType. * * The value shall be set to: - * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14] - * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14] - * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling - * - 3 - `urbanRail` - as specified in ETSI TS 103 724 [i.13], clause 7 - * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.13], clause 7 - * - 5 - `fixedLinks` - as specified in ETSI TS 103 724 [i.13], clause 7 + * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14], + * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14], + * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling, + * - 3 - `urbanRail` - as specified in ETSI TS 103 724 [i.13], clause 7, + * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.13], clause 7, + * - 5 - `fixedLinks` - as specified in ETSI TS 103 724 [i.13], clause 7, * * @category: Communication information * @revision: Created in V2.1.1 @@ -1728,15 +1745,15 @@ Iso3833VehicleType ::= INTEGER { * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. * * For right-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road. - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane. - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction. + * - `-1` if the position is off, i.e. besides the road, + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane, + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction, * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). * * For left-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road. - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane. - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction. + * - `-1` if the position is off, i.e. besides the road, + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane, + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction, * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. @@ -1758,30 +1775,30 @@ LanePosition ::= INTEGER { * This DE represents the type of a lane. * * The value shall be set to: - * - 0 - `traffic` - Lane dedicated to the movement of vehicles. - * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning. - * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow. - * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. - * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it. - * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. - * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic. - * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. - * - 8 - `bus` - Lane dedicated to movement of buses providing public transport. - * - 9 - `taxi` - Lane dedicated to movement of taxis. - * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane. - * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. - * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths. - * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles. - * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median - separating the two directional carriageways of the highway. - * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings. - * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys. - * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes. - * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. + * - 0 - `traffic` - Lane dedicated to the movement of vehicles, + * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning, + * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow, + * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it, + * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it, + * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic, + * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic, + * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc., + * - 8 - `bus` - Lane dedicated to movement of buses providing public transport, + * - 9 - `taxi` - Lane dedicated to movement of taxis, + * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane, + * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll, + * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths, + * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles, + * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median, + separating the two directional carriageways of the highway, + * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings, + * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys, + * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes, + * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder, * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between - the road surface edge and the boundary of a road. + the road surface edge and the boundary of a road, * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. - * - values 21 to 30 reserved for future use + * - values 21 to 30 reserved for future use. * * @category: Road topology information * @revision: Created in V2.1.1 @@ -1815,8 +1832,8 @@ LaneType::= INTEGER{ * This DE represents the width of a lane measured at a defined position. * * The value shall be set to: - * - `n (n >= 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre. - * - `1022` if the lane width is out of range, i.e. greater than 10,21 m. + * - `n (n >= 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `1022` if the lane width is out of range, i.e. greater than 10,21 m, * - `1023` if the lane width information is not available. * * The value 0 shall not be used. @@ -1833,9 +1850,9 @@ LaneWidth::= INTEGER (0..1023) * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >= -900000000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator. - * - `0` is used for the latitude of the equator. - * - `n (n > 0 and n < 900000001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator. + * - `n (n >= -900000000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, + * - `0` is used for the latitude of the equator, + * - `n (n > 0 and n < 900000001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator, * - `900 000 001` when the information is unavailable. * * @unit: 10^-7 degree @@ -1851,29 +1868,33 @@ Latitude ::= INTEGER { * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. + * - `-160` for values equal to or less than -16 m/s2, * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation - * with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2. + * with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation - with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. + with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration or greater than 15,9 m/s2, * - `161` when the data is unavailable. * * @note: the empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * * @unit: 0,1 m/s2 * @category: Vehicle information * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. */ -LateralAccelerationValue ::= AccelerationValue +LateralAccelerationValue ::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) +} (-160 .. 161) /** * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lightBarActivated` - when the light bar is activated. + * - 0 - `lightBarActivated` - when the light bar is activated, * - 1 - `sirenActivated` - when the siren is activated. * * Otherwise, it shall be set to 0. @@ -1892,9 +1913,9 @@ LightBarSirenInUse ::= BIT STRING { * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > -1800000000 and n < 0)` x 10^-7 degree, i.e. negative values for longitudes to the west. - * - `0` to indicate the prime meridian. - * - `n (n > 0 and n < 1800000001)` x 10^-7 degree, i.e. positive values for longitudes to the east. + * - `n (n > -1800000000 and n < 0)` x 10^-7 degree, i.e. negative values for longitudes to the west, + * - `0` to indicate the prime meridian, + * - `n (n > 0 and n < 1800000001)` x 10^-7 degree, i.e. positive values for longitudes to the east, * - `1 800 000 001` when the information is unavailable. * * The value -1800000000 shall not be used. @@ -1913,29 +1934,33 @@ Longitude ::= INTEGER { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. + * - `-160` for values equal to or less than -16 m/s2, + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2 + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration or greater than 15,9 m/s2, * - `161` when the data is unavailable. * * This acceleration is along the tangent plane of the road surface and does not include gravity components. - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * @unit: 0,1 m/s2 * @category: Vehicle information * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. */ -LongitudinalAccelerationValue::= AccelerationValue +LongitudinalAccelerationValue::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) +} (-160 .. 161) /** * This DE represents the longitudinal offset of a map-matched position along a matched lane, beginning from the lane's starting point. * * The value shall be set to: - * - `n (n >= 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre. - * - `32766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m. - * - `32767` if the longitudinal offset information is not available. * + * - `n (n >= 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `32766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m, + * - `32767` if the longitudinal offset information is not available. * * @unit 0,1 metre * @category: Road topology information @@ -1951,8 +1976,8 @@ LongitudinalLanePositionValue ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 1022)` if the confidence value is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m. - * - `1022` if the confidence value is out of range i.e. greater than 102,1 m. + * - `n (n > 0 and n < 1022)` if the confidence value is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, + * - `1022` if the confidence value is out of range i.e. greater than 102,1 m, * - `1023` if the confidence value is unavailable. * * @unit 0,1 metre @@ -1969,18 +1994,18 @@ LongitudinalLanePositionConfidence ::= INTEGER { * This DE indicates the components of an @ref PerceivedObject that are included in the @ref LowerTriangularPositiveSemidefiniteMatrix. * * The corresponding bit shall be set to 1 if the component is included: - * - 0 - `xCoordinate` - when the component xCoordinate of the component @ref CartesianPosition3dWithConfidence is included. - * - 1 - `yCoordinate` - when the component yCoordinate of the component @ref CartesianPosition3dWithConfidence is included. - * - 1 - `zCoordinate` - when the component zCoordinate of the component @ref CartesianPosition3dWithConfidence is included. - * - 1 - `xVelocityOrVelocityMagnitude` - when the component xVelocity or VelocityMagnitude of the component @ref VelocityPolarWithZ is included. - * - 1 - `yVelocityOrVelocityDirection` - when the component yVelocity or VelocityDirection of the component @ref VelocityPolarWithZ is included. - * - 1 - `zVelocity` - when the component zVelocity of the component @ref VelocityPolarWithZ is included. - * - 1 - `xAccelOrAccelMagnitude` - when the component xAcceleration of the component @ref AccelerationCartesian or the component AccelerationMagnitude of the component @ref AccelerationPolarWithZ is included. - * - 1 - `yAccelOrAccelDirection` - when the component yAcceleration of the component @ref AccelerationCartesian or the component AccelerationDirection of the component @ref AccelerationPolarWithZ is included. - * - 1 - `zAcceleration` - when the component zAcceleration of the component @ref AccelerationCartesianor of the component @ref AccelerationPolarWithZ is included. - * - 1 - `zAngle` - when the component zAngle is included. - * - 1 - `yAngle` - when the component yAngle is included. - * - 1 - `xAngle` - when the component xAngle is included. + * - 0 - `xCoordinate` - when the component xCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 1 - `yCoordinate` - when the component yCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 1 - `zCoordinate` - when the component zCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 1 - `xVelocityOrVelocityMagnitude` - when the component xVelocity or VelocityMagnitude of the component @ref VelocityPolarWithZ is included, + * - 1 - `yVelocityOrVelocityDirection` - when the component yVelocity or VelocityDirection of the component @ref VelocityPolarWithZ is included + * - 1 - `zVelocity` - when the component zVelocity of the component @ref VelocityPolarWithZ is included, + * - 1 - `xAccelOrAccelMagnitude` - when the component xAcceleration of the component @ref AccelerationCartesian or the component AccelerationMagnitude of the component @ref AccelerationPolarWithZ is included, + * - 1 - `yAccelOrAccelDirection` - when the component yAcceleration of the component @ref AccelerationCartesian or the component AccelerationDirection of the component @ref AccelerationPolarWithZ is included, + * - 1 - `zAcceleration` - when the component zAcceleration of the component @ref AccelerationCartesianor of the component @ref AccelerationPolarWithZ is included, + * - 1 - `zAngle` - when the component zAngle is included, + * - 1 - `yAngle` - when the component yAngle is included, + * - 1 - `xAngle` - when the component xAngle is included, * - 1 - `zAngleRate` - when the component zAngleRate is included. * * Otherwise, it shall be set to 0. @@ -2024,11 +2049,11 @@ MatrixIncludedComponents::= BIT STRING{ * - 14 - `cpm` - reserved for Collective Perception Message (CPM), * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], - * - 17 - `dsm` - reserved for Diagnosis, logging and Status Message (DSM). - * - 18 - `pcim` - reserved for Parking Control Infrastructure Message. - * - 19 - `pcvm` - reserved for Parking Control Vehicle Message. - * - 20 - `mcm` - reserved for Manoeuvre Coordination Message. - * - 21 - `pam` - reserved for Parking Availability Message. + * - 17 - `dsm` - reserved for Diagnosis, logging and Status Message, + * - 18 - `pcim` - reserved for Parking Control Infrastructure Message, + * - 19 - `pcvm` - reserved for Parking Control Vehicle Message, + * - 20 - `mcm` - reserved for Manoeuvre Coordination Message, + * - 21 - `pam` - reserved for Parking Availability Message, * - 22-255 - reserved for future usage. * * @category: Communication information @@ -2079,8 +2104,8 @@ NumberOfOccupants ::= INTEGER { * This DE represents a single-value indication about the overall information quality of a perceived object. * * The value shall be set to: - * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. - * - `n (n > 0 and n < 15)` : for the applicable confidence value. + * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed, + * - `n (n > 0 and n < 15)` : for the applicable confidence value, * -`15` : if there is full confidence in the detected Object. * * @unit n/a @@ -2096,8 +2121,8 @@ ObjectPerceptionQuality ::= INTEGER { * This DE represents a single dimension of an object. * * The value shall be set to: - * - `n (n > 0 and n < 255)` if the accuracy is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m. - * - `255` if the accuracy is out of range i.e. greater than 25,4 m. + * - `n (n > 0 and n < 255)` if the accuracy is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, + * - `255` if the accuracy is out of range i.e. greater than 25,4 m, * - `256` if the data is unavailable. * * @unit 0,1 m @@ -2114,8 +2139,8 @@ ObjectDimensionValue ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 31)` if the confidence value is equal to or less than n x 0,1 metre, and more than (n-1) x 0,1 metre. - * - `31` if the confidence value is out of range i.e. greater than 3,0 m. + * - `n (n > 0 and n < 31)` if the confidence value is equal to or less than n x 0,1 metre, and more than (n-1) x 0,1 metre, + * - `31` if the confidence value is out of range i.e. greater than 3,0 m, * - `32` if the confidence value is unavailable. * * @unit 0,1 m @@ -2131,8 +2156,8 @@ ObjectDimensionConfidence ::= INTEGER { * This DE indicates the face or part of a face of a solid object. * * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: - * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object. - * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object. + * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object, + * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object, * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. * * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. @@ -2179,15 +2204,21 @@ OrdinalNumber3b ::= INTEGER(1..8) * This DE indicates the subclass of a detected object for @ref ObjectClass "otherSubclass". * * The value shall be set to: - * - `0` - unknown - if the subclass is unknown. - * - `1` - roadSideUnit - if the object is a roadside unit. + * - `0` - unknown - if the subclass is unknown. + * - `1` - roadSideUnit - if the object is a roadside unit. + * - `2` - singleObject - if the object is a single object . + * - `3` - multipleObjects - if the object is a group of multiple objects . + * - `4` - bulkMaterial - if the object is a bulk material . * * @category: Sensing information * @revision: Created in V2.1.1 */ OtherSubClass ::= INTEGER { - unknown (0), - roadSideUnit (1) + unknown (0), + roadSideUnit (1), + singleObject (2), + multipleObjects (3), + bulkMaterial (4) } (0..255) /** @@ -2195,7 +2226,7 @@ OtherSubClass ::= INTEGER { * * @unit 0,01 second * @category GeoReference information - * @revision: Created in V1.3.1 + * @revision: V1.3.1 */ PathDeltaTime ::= INTEGER (1..65535, ...) @@ -2204,9 +2235,9 @@ PathDeltaTime ::= INTEGER (1..65535, ...) * A performance class value is used to describe age of data. The exact values are out of scope of the present document. * * The value shall be set to: - * - `0` if the performance class is unknown. - * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.5] - * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.5] + * - `0` if the performance class is unknown, + * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.5], + * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.5], * - Values in the range `3 to 7` are reserved for future use. * * @category: Vehicle information @@ -2231,8 +2262,8 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * the vehicle bounding box of the empty load vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 metre and 6,2 metres. - * - `62` for values equal to or higher than `6.1 metres`. + * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 metre and 6,2 metres, + * - `62` for values equal to or higher than `6.1 metres`, * - `63` if the information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. @@ -2323,8 +2354,8 @@ PositionOfOccupants ::= BIT STRING { * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 0,1 metre. * * The value shall be set to: - * - `n (n > 0 and n < 19) for any aplicable value between 0,1 metre and 1,9 metres. - * - `19` for values equal to or higher than 1.8 metres. + * - `n (n > 0 and n < 19)` for any aplicable value between 0,1 metre and 1,9 metres, + * - `19` for values equal to or higher than 1.8 metres, * - `20` if the information is unavailable. * * @category: Vehicle information @@ -2341,8 +2372,8 @@ PosFrontAx ::= INTEGER { * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 metre and 1,26 metres. - * - `126` for values equal to or higher than 1.25 metres. + * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 metre and 1,26 metres, + * - `126` for values equal to or higher than 1.25 metres, * - `127` if the information is unavailable. * * @unit 0,01 metre @@ -2359,8 +2390,8 @@ PosLonCarr ::= INTEGER { * middle point of the front line of the vehicle bounding box. * * The value shall be set to: - * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 metre and 2,9 metres. - * - `29` for values equal to or greater than 2.8 metres. + * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 metre and 2,9 metres, + * - `29` for values equal to or greater than 2.8 metres, * - `30` if the information is unavailable. * * @unit 0,1 metre @@ -2398,9 +2429,9 @@ PostCrashSubCauseCode ::= INTEGER { * This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square metre. * * The following values are specified: -* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0,1 mm/h and greater than (n-1) x 0,1 mm/h. -* - `2000` if the amount of rain falling is greater than 199.9 mm/h -* - `2001` if the information is not available +* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0,1 mm/h and greater than (n-1) x 0,1 mm/h, +* - `2000` if the amount of rain falling is greater than 199.9 mm/h, +* - `2001` if the information is not available. * * @unit: 0,1 mm/h * @category: Basic Information @@ -2505,13 +2536,13 @@ RailwayLevelCrossingSubCauseCode ::= INTEGER { * This DE describes a distance of relevance for information indicated in a message. * * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m. - * - 1 `lessThan100m` : for distances below 100 m. - * - 2 `lessThan200m` : for distances below 200 m. - * - 3 `lessThan500m` : for distances below 300 m. - * - 4 `lessThan1000m` : for distances below 1 000 m. - * - 5 `lessThan5km` : for distances below 5 000 m. - * - 6 `lessThan10km` : for distances below 10 000 m. + * - 0 `lessThan50m` : for distances below 50 m, + * - 1 `lessThan100m` : for distances below 100 m, + * - 2 `lessThan200m` : for distances below 200 m, + * - 3 `lessThan500m` : for distances below 300 m, + * - 4 `lessThan1000m` : for distances below 1 000 m, + * - 5 `lessThan5km` : for distances below 5 000 m, + * - 6 `lessThan10km` : for distances below 10 000 m, * - 7 `over10km` : for distances over 10 000 m. * * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref StandardLength3b instead. @@ -2534,9 +2565,9 @@ RelevanceDistance ::= ENUMERATED { * This DE indicates a traffic direction that is relevant to information indicated in a message. * * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions. - * - 1 `upstreamTraffic` : for upstream traffic. - * - 2 `downstreamTraffic` : for downstream traffic. + * - 0 `allTrafficDirections` : for all traffic directions, + * - 1 `upstreamTraffic` : for upstream traffic, + * - 2 `downstreamTraffic` : for downstream traffic, * - 3 `oppositeTraffic` : for traffic in the opposite direction. * * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. @@ -2561,7 +2592,7 @@ RelevanceTrafficDirection ::= ENUMERATED { * ITS-S after receiving request from other ITS-Ss. * * The value shall be set to: - * - 0 `request` : for a request message. + * - 0 `request` : for a request message, * - 1 `response` : for a response message. * * @category Communication information @@ -2601,9 +2632,9 @@ RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { * This DE indicates the type of a road segment. * * The value shall be set to: - * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. - * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. - * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions, + * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions, + * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions, * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. * * @category: Road Topology Information @@ -2626,8 +2657,8 @@ The value shall be set to: * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, - * - 6 `winterService` : in case winter service work is ongoing, - * - 7-255 reserved for future usage. + * - 6 `winterService` : in case winter service work is ongoing. + * - 7-255 : are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2646,7 +2677,7 @@ RoadworksSubCauseCode ::= INTEGER { * This DE indicates if a distance is safe. * * The value shall be set to: - * - `FALSE` if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} is simultaneously satisfied with confidence level of 90 % or more. + * - `FALSE` if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} is simultaneously satisfied with confidence level of 90 % or more, * - `TRUE` otherwise. * * @note: the abbreviations used are Lateral Distance (LaD), Longitudinal Distance (LoD) and Vertical Distance (VD) @@ -2693,20 +2724,20 @@ SemiAxisLength ::= INTEGER{ * * The value shall be set to: * - `0` undefined : in case the sensor type is undefined. - * - `1` radar : in case the sensor is a radar. - * - `2` lidar : in case the sensor is a lidar. - * - `3` monovideo : in case the sensor is mono video. - * - `4` stereovision : in case the sensor is stereo vision. - * - `5` nightvision : in case the sensor is night vision. - * - `6` ultrasonic : in case the sensor is ultrasonic. - * - `7` pmd : in case the sensor is photonic mixing device. - * - `8` inductionLoop : in case the sensor is an induction loop. - * - `9` sphericalCamera : in case the sensor is a spherical camera. - * - `10` uwb : in case the sensor is ultra wide band. - * - `11` acoustic : in case the sensor is acoustic. - * - `12` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. + * - `1` radar : in case the sensor is a radar, + * - `2` lidar : in case the sensor is a lidar, + * - `3` monovideo : in case the sensor is mono video, + * - `4` stereovision : in case the sensor is stereo vision, + * - `5` nightvision : in case the sensor is night vision, + * - `6` ultrasonic : in case the sensor is ultrasonic, + * - `7` pmd : in case the sensor is photonic mixing device, + * - `8` inductionLoop : in case the sensor is an induction loop, + * - `9` sphericalCamera : in case the sensor is a spherical camera, + * - `10` uwb : in case the sensor is ultra wide band, + * - `11` acoustic : in case the sensor is acoustic, + * - `12` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion, * - `13` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. - * - 14-31 reserved for future usage. + * - 14-31 : are reserved for future usage. * * @category: Sensing Information * @revision: created in V2.1.1 @@ -2791,9 +2822,9 @@ SlowVehicleSubCauseCode ::= INTEGER { * The DE indicates if a vehicle is carrying goods in the special transport conditions. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load. - * - 1 `excessWidth` : the vehicle is carrying goods in excess of width. - * - 2 `excessLength` : the vehicle is carrying goods in excess of length. + * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load, + * - 1 `excessWidth` : the vehicle is carrying goods in excess of width, + * - 2 `excessLength` : the vehicle is carrying goods in excess of length, * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. * * Otherwise, the corresponding bit shall be set to 0. @@ -2844,12 +2875,12 @@ SpeedConfidence ::= INTEGER { SpeedLimit ::= INTEGER (1..255) /** - * This DE represents a speed value, i.e. the magnitude of the horizontal velocity-vector. + * This DE represents a speed value, i.e. the magnitude of the velocity-vector. * * The value shall be set to: * - `0` in a standstill situation. - * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s. - * - `16382` for speed values greater than 163,81 m/s. + * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s, + * - `16382` for speed values greater than 163,81 m/s, * - `16383` if the speed accuracy information is not available. * * @note: the the definition of “standstill” is out of scope of this document. @@ -2868,16 +2899,16 @@ SpeedValue ::= INTEGER { * This DE represents the value of a velocity component in a defined coordinate system. * * The value shall be set to: - * - `-16383` if the speed is equal to or smaller than -163,83 m/s - * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s. - * - `16382` for speed values equal to or greater than 163,81 m/s. - * - `16383` if the speed accuracy information is not available. + * - `-16383` if the velocity is equal to or smaller than -163,83 m/s, + * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s, + * - `16382` for velocity values equal to or greater than 163,81 m/s, + * - `16383` if the velocity information is not available. * * @unit: 0,01 m/s * @category: Kinematics information * @revision: Created in V2.1.1 */ -SpeedValueExtended ::= INTEGER { +VelocityComponentValue ::= INTEGER { negativeOutOfRange (-16383), psotiveOutOfRange (16382), unavailable (16383) @@ -2888,10 +2919,10 @@ SpeedValueExtended ::= INTEGER { * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. * * The value shall be set to: - * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable". - * - `n (n > 0 and n < 50)` to indicate the actual stability level. - * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability". - * - the values between 51 and 62 are reserved for future use. + * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable", + * - `n (n > 0 and n < 50)` to indicate the actual stability level, + * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability", + * - the values between 51 and 62 are reserved for future use, * - `63`: this value indicates that the information is unavailable. * * @unit: 2% @@ -2917,14 +2948,14 @@ StandardLength12b::= INTEGER (0..4095) * The DE represents length as a measure of distance between points. * * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m. - * - 1 `lessThan100m` : for distances below 100 m. - * - 2 `lessThan200m` : for distances below 200 m. - * - 3 `lessThan500m` : for distances below 300 m. - * - 4 `lessThan1000m` : for distances below 1 000 m. - * - 5 `lessThan5km` : for distances below 5 000 m. - * - 6 `lessThan10km` : for distances below 10 000 m. - * - 7 `over10km` : for distances over 10 000 m. + * - 0 `lessThan50m` : for distances below 50 m, + * - 1 `lessThan100m` : for distances below 100 m, + * - 2 `lessThan200m` : for distances below 200 m, + * - 3 `lessThan500m` : for distances below 300 m, + * - 4 `lessThan1000m` : for distances below 1 000 m, + * - 5 `lessThan5km` : for distances below 5 000 m, + * - 6 `lessThan10km` : for distances below 10 000 m, + * - 7 `over10km` : for distances over 10 000 m. * * @category: GeoReference information * @revision: Created in V2.1.1 from RelevanceDistance @@ -2971,9 +3002,9 @@ StandardLength2B::= INTEGER (0..65535) * This DE indicates the duration in minutes since which something is stationary. * * The value shall be set to: - * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. - * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more than 1 minute. - * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. + * - 0 `lessThan1Minute` : for being stationary since less than 1 minute, + * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more than 1 minute, + * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute, * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. * * @category: Kinematics information @@ -3026,29 +3057,29 @@ StationId ::= INTEGER(0..4294967295) * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. * * The value shall be set to: - * - 0 `unknown`: information about the ITS-S context is not provided, - * - 1 `pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). - * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2). - * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] - class L1, L2 (VRU Profile 3). - * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] - class L3, L4, L5, L6, L7 (VRU Profile 3). - * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1. - * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3. - * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1. - * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3. - * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in - UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O. - * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle). - * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets. - * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). - * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4). - * - 14 reserved for future usage. - * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, - on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity). - * - 16 `central`: ITS-S placed inside an ITS centre. - * - 17-255: reserved for future usage. - * + * - 0 `unknown` : information about the ITS-S context is not provided, + * - 1 `pedestrian` : ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1), + * - 2 `cyclist` : ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), + * - 3 `moped` : ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + class L1, L2 (VRU Profile 3), + * - 4 `motorcycles` : ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + class L3, L4, L5, L6, L7 (VRU Profile 3), + * - 5 `passengerCar` : ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, + * - 6 `bus` : ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, + * - 7 `lightTruck` : ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, + * - 8 `heavyTruck` : ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, + * - 9 `trailer` : ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in + UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, + * - 10 `specialVehicles` : ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram` : ITS-S mounted on a vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle` : ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2), + * - 13 `animal` : ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), + * - 14 : reserved for future usage, + * - 15 `roadSideUnit` : ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 16-255 : are reserved for future usage. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrafficParticipantType instead. * @category: Communication information. * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) */ @@ -3067,8 +3098,7 @@ StationType ::= INTEGER { tram (11), lightVruVehicle (12), animal (13), - roadSideUnit (15), - central (16) + roadSideUnit (15) } (0..255) /** @@ -3104,12 +3134,12 @@ SteeringWheelAngleConfidence ::= INTEGER { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: - * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. + * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right, * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, - turning clockwise (i.e. to the right). + turning clockwise (i.e. to the right), * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, - turning counter-clockwise (i.e. to the left). - * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. + turning counter-clockwise (i.e. to the left), + * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left, * - `512` if information is not available. * * @unit: 1,5 degree @@ -3135,8 +3165,8 @@ SubCauseCodeType ::= INTEGER (0..255) * This DE indicates a temperature value. * The value shall be set to: - * - `-60` for temperature equal to or less than -60 degrees C. - * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C. + * - `-60` for temperature equal to or less than -60 degrees C, + * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C, * - `67` for temperature equal to or greater than 67 degrees C. * * @unit: degrees Celsius @@ -3221,13 +3251,58 @@ TrafficDirection ::= ENUMERATED { oppositeTraffic (3) } +/** + * This DE represents the type of a traffic participant. + * + * The value shall be set to: + * - 0 `unknown` : information about traffic participant is not provided, + * - 1 `pedestrian` : human being not using a mechanical device for their trip (VRU profile 1), + * - 2 `cyclist` : non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), + * - 3 `moped` : Ilight motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L1, L2 (VRU Profile 3), + * - 4 `motorcycles` : motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L3, L4, L5, L6, L7 (VRU Profile 3), + * - 5 `passengerCar` : small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, + * - 6 `bus` : large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, + * - 7 `lightTruck` : light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, + * - 8 `heavyTruck` : Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, + * - 9 `trailer` : unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, + * - 10 `specialVehicles` : vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram` : vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle` : human being traveling on light vehicle, incl. possible use of roller skates or skateboards (VRU profile 2), + * - 13 `animal` : animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), + * - 14 `agricultural` : agricultural and forestry vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class T, + * - 15 `roadSideUnit` : infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 16-255 : are reserved for future usage. + * + * @category: Communication information. + * @revision: Created in V2.1.1 based on StationType + */ +TrafficParticipantType ::= INTEGER { + unknown (0), + pedestrian (1), + cyclist (2), + moped (3), + motorcycle (4), + passengerCar (5), + bus (6), + lightTruck (7), + heavyTruck (8), + trailer (9), + specialVehicle (10), + tram (11), + lightVruVehicle (12), + animal (13), + agricultural (14), + roadSideUnit (15) +} (0..255) + /** * This DE indicates traffic rules that apply to vehicles at a certain position. * * The value shall be set to: - * - `0` if overtaking is prohibited for all vehicles. - * - `1` if overtaking is prohibited for trucks. - * - `2` if vehicles should pass to the right lane. + * - `0` if overtaking is prohibited for all vehicles, + * - `1` if overtaking is prohibited for trucks, + * - `2` if vehicles should pass to the right lane, * - `3` if vehicles should pass to the left lane. * * @category: Infrastructure information, Traffic information @@ -3240,12 +3315,34 @@ TrafficRule ::= ENUMERATED { passToLeft (3), ...} +/** + * This DE provides information about the presence of a trailer. + * + * The value shall be set to: + * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value. + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. + * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. + * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * nor the detection of trailer presence/absence is possible. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 based on VehicleLengthConfidenceIndication +*/ +TrailerPresenceInformation ::= ENUMERATED { + noTrailerPresent (0), + trailerPresentWithKnownLength (1), + trailerPresentWithUnknownLength (2), + trailerPresenceIsUnknown (3), + unavailable (4) +} + /** * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. * * The value shall be set to: - * - `n (n >= 0 and n <= 50)` to indicate the actual probability. - * - the values between 51 and 62 are reserved. + * - `n (n >= 0 and n <= 50)` to indicate the actual probability, + * - the values between 51 and 62 are reserved, * - `63`: to indicate that the information is unavailable. * * @unit: 2% @@ -3260,9 +3357,9 @@ TrajectoryInterceptionProbability ::= INTEGER { * This DE defines the confidence level of the trajectoryInterceptionProbability. * * The value shall be set to: - * - `0` to indicate confidence level less than 50 % - * - `1` to indicate confidence level greater than or equal to 50 % and less than 70 %. - * - `2` to indicate confidence level greater than or equal to 70 % and less than 90 %. + * - `0` to indicate confidence level less than 50 %, + * - `1` to indicate confidence level greater than or equal to 50 % and less than 70 %, + * - `2` to indicate confidence level greater than or equal to 70 % and less than 90 %, * - `3` to indicate confidence level greater than or equal to 90%. * * @category: Kinematics information @@ -3283,7 +3380,7 @@ TrajectoryInterceptionConfidence ::= INTEGER { * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref DeltaTimeMilliSecondPos instead. * @unit: 0,001 s * @category: Basic information - * @revision: Created in V1.3.1 + * @revision: V1.3.1 */ TransmissionInterval::= INTEGER (1..10000) @@ -3306,8 +3403,8 @@ TurningDirection::= ENUMERATED { * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. * * The value shall be set to: - * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 metre, and greater than (n-1) x 0,4 metre. - * - `254` indicates that the turning radius is greater than 253 x 0,4 metre = 101.2 metres. + * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 metre, and greater than (n-1) x 0,4 metre, + * - `254` indicates that the turning radius is greater than 253 x 0,4 metre = 101.2 metres, * - `255` indicates that the information is unavailable. * * For vehicle with tracker, the turning radius applies to the vehicle only. @@ -3327,7 +3424,7 @@ TurningRadius ::= INTEGER { * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref DeltaTimeSecond instead. * @unit: 1 s * @category: Basic information - * @revision: Created in V1.3.1 + * @revision: V1.3.1 */ ValidityDuration::= INTEGER (0..86400) @@ -3353,8 +3450,8 @@ VDS ::= IA5String (SIZE(6)) * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, * - 8 `tyrePuncture` : in case vehicle break down is caused by tyre puncture, * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, - * - 10 `vehicleOnFire` : in case the vehicle is on fire, - * - 11-255: reserved for future usage. + * - 10 `vehicleOnFire` : in case the vehicle is on fire. + * - 11-255 : are reserved for future usage. * * @category: Traffic information @@ -3379,8 +3476,8 @@ VehicleBreakdownSubCauseCode ::= INTEGER { * equipment which may result in varying height, the largest possible height shall be used. * * The value shall be set to: - * - `n (n >0 and n < 127)` indicates the applicable value is equal to or less than n x 0,05 metre, and greater than (n-1) x 0,05 metre. - * - `127` indicates that the vehicle width is greater than 6,3 metres. + * - `n (n >0 and n < 127)` indicates the applicable value is equal to or less than n x 0,05 metre, and greater than (n-1) x 0,05 metre, + * - `127` indicates that the vehicle width is greater than 6,3 metres, * - `128` indicates that the information in unavailable. * * @unit: 0,05 metre @@ -3395,11 +3492,11 @@ VehicleHeight ::= INTEGER { * This DE provides information about the presence of a trailer. * * The value shall be set to: - * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value. - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. - * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. - * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present, + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value, + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value, + * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible, + * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer, * nor the detection of trailer presence/absence is possible. * * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrailerPresenceInformation instead. @@ -3418,8 +3515,8 @@ VehicleLengthConfidenceIndication ::= ENUMERATED { * This DE represents the length of a vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre. - * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. + * - `n (n > 0 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, + * - `1 022` to indicate that the vehicle length is greater than 102.1 metres, * - `1 023` to indicate that the information in unavailable. * * @@ -3436,8 +3533,8 @@ VehicleLengthValue ::= INTEGER { * This DE represents the mass of an empty loaded vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 1023)` to indicate that the applicable value is equal to or less than n x 10^5 gramm, and greater than (n-1) x 10^5 gramm. - * - `1 023` indicates that the vehicle mass is greater than 102 200 000 g. + * - `n (n > 0 and n < 1023)` to indicate that the applicable value is equal to or less than n x 10^5 gramm, and greater than (n-1) x 10^5 gramm, + * - `1 023` indicates that the vehicle mass is greater than 102 200 000 g, * - `1 024` indicates the vehicle mass information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. @@ -3467,10 +3564,10 @@ VehicleMass ::= INTEGER { * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, * - 10 `military` : to indicate that the vehicle is used for military purpose, * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, - * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service, - * - 13 `reserved` : reserved for future usage, - * - 14 `reserved` : reserved for future usage, - * - 15 `reserved` : reserved for future usage. + * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service. + * - 13 `reserved` : is reserved for future usage. + * - 14 `reserved` : is reserved for future usage. + * - 15 `reserved` : is reserved for future usage. * * @category: Vehicle Information * @revision: Description updated in V2.1.1 (removed reference to CEN/TS 16157-3) @@ -3498,16 +3595,16 @@ VehicleRole ::= ENUMERATED { * This DE describes the subclass of a vehicle. * * The value shall be set to: - * - `0` unknown : to indicate that the type of vehicle is unknown. - * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1. - * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3. - * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1. - * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2, N3. - * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O. - * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). - * - `7` tram : to indicate a vehicle running on tracks along public streets. - * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. - * - `9` agricultural : to indicate a vehicle used for agricultural purposes. + * - `0` unknown : to indicate that the type of vehicle is unknown, + * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, + * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, + * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, + * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2, N3, + * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, + * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle), + * - `7` tram : to indicate a vehicle running on tracks along public streets, + * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine, + * - `9` agricultural : to indicate a vehicle used for agricultural purposes, * - Values 10 to 31 are reserved for future use. * * @category: Vehicle information @@ -3530,8 +3627,8 @@ VehicleSubClass ::= INTEGER { * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. * The value shall be set to: - * - `n (n >0 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre. - * - `61`indicates that the vehicle width is greater than 6,0 metres. + * - `n (n >0 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, + * - `61`indicates that the vehicle width is greater than 6,0 metres, * - `62`indicates that the information in unavailable. * * @unit: 0,1 metre @@ -3548,10 +3645,10 @@ VehicleWidth ::= INTEGER { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. + * - `-160` for values equal to or less than -16 m/s2, + * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration or greater than 15,9 m/s2, * - `161` when the data is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. @@ -3561,16 +3658,20 @@ VehicleWidth ::= INTEGER { * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. * */ -VerticalAccelerationValue ::= AccelerationValue +VerticalAccelerationValue ::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) +} (-160 .. 161) /** * This DE Identifies all the VRU profile types within a cluster. * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU. - * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member. - * - 2 `motorcyclist` : indicates that the VRU cluster contains at least one motorcycle VRU member. + * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU, + * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member, + * - 2 `motorcyclist` : indicates that the VRU cluster contains at least one motorcycle VRU member, * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. * * Otherwise, the corresponding bit shall be set to 0. @@ -3589,14 +3690,14 @@ VruClusterProfiles ::= BIT STRING { * This DE represents the possible usage conditions of the VRU device. * - The value shall be set to: - * - 0 `unavailable` : to indicate that the usage conditions are unavailable. - * - 1 `other (1)` : to indicate that the VRU device is in a state not defined below. - * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device. - * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use. - * - 4 `typing (4)` : to indicate that the human is texting or performaing any other manual input activity. - * - 5 `calling (5)` : to indicate that the VRU device is currently receiving a call. - * - 6 `playingGames (6)` : to indicate that the human is playing games. - * - 7 `reading (7)` : to indicate that the human is reading on the VRU device. + * - 0 `unavailable` : to indicate that the usage conditions are unavailable, + * - 1 `other (1)` : to indicate that the VRU device is in a state not defined below, + * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device, + * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use, + * - 4 `typing (4)` : to indicate that the human is texting or performaing any other manual input activity, + * - 5 `calling (5)` : to indicate that the VRU device is currently receiving a call, + * - 6 `playingGames (6)` : to indicate that the human is playing games, + * - 7 `reading (7)` : to indicate that the human is reading on the VRU device, * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. * @@ -3621,11 +3722,11 @@ VruDeviceUsage ::= ENUMERATED { * * - The value shall be set to: * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, - * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing. - * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). - * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. - * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. - * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing, + * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk), + * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk, + * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane, + * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area, * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3645,14 +3746,14 @@ VruEnvironment ::= ENUMERATED { * This DE indicates the status of the possible human control over a VRU vehicle. * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable. - * - 1 `braking` : to indicate that the VRU is braking. - * - 2 `hardBraking` : to indicate that the VRU is braking hard. - * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling. - * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking. - * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard. - * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. - * - value 7 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` : to indicate that the information is unavailable, + * - 1 `braking` : to indicate that the VRU is braking, + * - 2 `hardBraking` : to indicate that the VRU is braking hard, + * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling, + * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking, + * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard, + * - 6 `noReaction` : to indicate that the VRU is not changing its behavior, + * - 7 to 255 : are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3672,10 +3773,10 @@ VruMovementControl ::= ENUMERATED { * This DE indicates the profile of a pedestrian. * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable. - * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies. - * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker. - * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. + * - 0 `unavailable` : to indicate that the information on is unavailable, + * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies, + * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker, + * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder, * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3693,16 +3794,16 @@ VruSubProfilePedestrian ::= ENUMERATED { * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable. - * - 1 `bicyclist ` : to indicate a cycle and bicyclist. - * - 2 `wheelchair-user` : to indicate a wheelchair and its user. - * - 3 `horse-and-rider` : to indicate a horse and rider. - * - 4 `rollerskater` : to indicate a rolleskater and skater. - * - 5 `e-scooter` : to indicate an e-scooter and rider. - * - 6 `personal-transporter` : to indicate a personal-transporter and rider. - * - 7 `pedelec` : to indicate a pedelec and rider. - * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. - * - value 9 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` : to indicate that the information is unavailable, + * - 1 `bicyclist ` : to indicate a cycle and bicyclist, + * - 2 `wheelchair-user` : to indicate a wheelchair and its user, + * - 3 `horse-and-rider` : to indicate a horse and rider, + * - 4 `rollerskater` : to indicate a rolleskater and skater, + * - 5 `e-scooter` : to indicate an e-scooter and rider, + * - 6 `personal-transporter` : to indicate a personal-transporter and rider, + * - 7 `pedelec` : to indicate a pedelec and rider, + * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. + * - 9 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3724,12 +3825,12 @@ VruSubProfileBicyclist ::= ENUMERATED { * This DE indicates the profile of a motorcyclist and corresponding vehicle. * * The value shall be set to: - * - 0 `unavailable ` : to indicate that the information is unavailable. - * - 1 `moped (1)` : to indicate a moped and rider. - * - 2 `motorcycle` : to indicate a motorcycle and rider. - * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider. - * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. - * - value 5 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable ` : to indicate that the information is unavailable, + * - 1 `moped (1)` : to indicate a moped and rider, + * - 2 `motorcycle` : to indicate a motorcycle and rider, + * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider, + * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider, + * - 5 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3747,11 +3848,11 @@ VruSubProfileMotorcyclist ::= ENUMERATED { * This DE indicates the profile of an animal * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable. - * - 1 `wild-animal` : to indicate a animal living in the wildness. - * - 2 `farm-animal` : to indicate an animal beloning to a farm. - * - 3 `service-animal` : to indicate an animal that supports a human being. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` : to indicate that the information is unavailable, + * - 1 `wild-animal` : to indicate a animal living in the wildness, + * - 2 `farm-animal` : to indicate an animal beloning to a farm, + * - 3 `service-animal` : to indicate an animal that supports a human being. + * - 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3768,11 +3869,11 @@ VruSubProfileAnimal ::= ENUMERATED { * This DE indicates the approximate size of a VRU including the VRU vehicle used. * * The value shall be set to: - * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1. - * - 1 `low (1)` : the VRU size class is low depending on the VRU profile. - * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile. + * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1, + * - 1 `low (1)` : the VRU size class is low depending on the VRU profile, + * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile, * - 3 `high (3)` : the VRU size class is high depending on the VRU profile. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3789,15 +3890,15 @@ VruSizeClass ::= ENUMERATED { * This DE describes the status of the exterior light switches of a VRU. * * The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU + * The bit corresponding to a specific light shall be set to 1, when the corresponding switch is turned on, either manually by the driver or VRU * or automatically by a vehicle or VRU system: - * - 0 `unavailable` : indicates no information available. - * - 1 `backFlashLight ` : indicates the status of the back flash light. - * - 2 `helmetLight` : indicates the status of the helmet light. - * - 3 `armLight` : indicates the status of the arm light. - * - 4 `legLight` : indicates the status of the leg light. + * - 0 `unavailable` : indicates no information available, + * - 1 `backFlashLight ` : indicates the status of the back flash light, + * - 2 `helmetLight` : indicates the status of the helmet light, + * - 3 `armLight` : indicates the status of the arm light, + * - 4 `legLight` : indicates the status of the leg light, * - 5 `wheelLight` : indicates the status of the wheel light. - * - Bits 6 to 8 : reserved for future use. + * - Bits 6 to 8 : are reserved for future use. * The bit values do not indicate if the corresponding lamps are alight or not. * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. * @@ -3817,8 +3918,8 @@ VruSpecificExteriorLights ::= BIT STRING { * This DE indicates the perpendicular distance between front and rear axle of the wheel base of vehicle. * * The value shall be set to: - * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre. - * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. + * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres, * - `127` indicates that the information is unavailable. * * @unit 0,1 metre @@ -3835,8 +3936,8 @@ WheelBaseVehicle ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >=1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees. - * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees. + * - `n (n >=1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, + * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, * - `127` if the confidence value is not available. * * @@ -3900,15 +4001,15 @@ WrongWayDrivingSubCauseCode ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `0` if the confidence value is equal to or less than 0,01 degree/second. - * - `1` if the confidence value is equal to or less than 0,05 degrees/second or greater than 0,01 degree/second. - * - `2` if the confidence value is equal to or less than 0,1 degree/second or greater than 0,05 degree/second. - * - `3` if the confidence value is equal to or less than 1 degree/second or greater than 0,1 degree/second. - * - `4` if the confidence value is equal to or less than 5 degrees/second or greater than 1 degrees/second. - * - `5` if the confidence value is equal to or less than 10 degrees/second or greater than 5 degrees/second. - * - `6` if the confidence value is equal to or less than 100 degrees/second or greater than 10 degrees/second. - * - `7` if the confidence value is out of range, i.e. greater than 100 degrees/second. - * - `8` if the confidence value is unavailable + * - `0` if the confidence value is equal to or less than 0,01 degree/second, + * - `1` if the confidence value is equal to or less than 0,05 degrees/second or greater than 0,01 degree/second, + * - `2` if the confidence value is equal to or less than 0,1 degree/second or greater than 0,05 degree/second, + * - `3` if the confidence value is equal to or less than 1 degree/second or greater than 0,1 degree/second, + * - `4` if the confidence value is equal to or less than 5 degrees/second or greater than 1 degrees/second, + * - `5` if the confidence value is equal to or less than 10 degrees/second or greater than 5 degrees/second, + * - `6` if the confidence value is equal to or less than 100 degrees/second or greater than 10 degrees/second, + * - `7` if the confidence value is out of range, i.e. greater than 100 degrees/second, + * - `8` if the confidence value is unavailable. * * NOTE: The fact that a yaw rate value is received with confidence value set to `unavailable(8)` can be caused by * several reasons, such as: @@ -3942,12 +4043,12 @@ YawRateConfidence ::= ENUMERATED { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: - * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. + * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right, * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s. + and greater than (n-1) x 0,01 degrees/s, * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s. - * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. + and greater than (n-1) x 0,01 degrees/s, + * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left, * - `32 767` to indicate that the information is not available. * * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. @@ -3992,6 +4093,7 @@ Acceleration3dWithConfidence::= CHOICE { * It shall include the following components: * * @field velocityMagnitude: magnitude of the acceleration vector in the X-Y plane with the associated confidence value. + * Negative magnitude values indicate accelerating backwards. * * @field velocityDirection: polar angle of the acceleration vector in the X-Y plane with the associated confidence value. * @@ -4001,21 +4103,21 @@ Acceleration3dWithConfidence::= CHOICE { * @revision: Created in V2.1.1 */ AccelerationPolarWithZ::= SEQUENCE{ - accelerationMagnitude AccelerationComponent, + accelerationMagnitude AccelerationMagnitude, accelerationDirection CartesianAngle, zAcceleration AccelerationComponent OPTIONAL } /** - * This DF represents an velocity acceleration in a cartesian coordinate system. + * This DF represents a acceleration vector in a cartesian coordinate system. * It shall include the following components: * - * @field xVelocity: the x component of the acceleration vector with the associated confidence value. + * @field xAcceleration: the x component of the acceleration vector with the associated confidence value. * - * @field yVelocity: the y component of the acceleration vector with the associated confidence value. + * @field yAcceleration: the y component of the acceleration vector with the associated confidence value. * - * @field zVelocity: the optional z component of the acceleration vector with the associated confidence value. + * @field zAcceleration: the optional z component of the acceleration vector with the associated confidence value. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -4039,7 +4141,7 @@ AccelerationCartesian::= SEQUENCE{ * @revision: Created in V2.1.1 */ AccelerationComponent ::= SEQUENCE { - value AccelerationValue, + value AccelerationMagnitudeValue, confidence AccelerationConfidence } @@ -4061,6 +4163,23 @@ AccelerationChangeIndication ::= SEQUENCE { ... } +/** + * This DF represents the magnitude of the acceleration vector and associated confidence value. + * + * It shall include the following components: + * + * @field accelerationMagnitudeValue: the magnitude of the acceleration vector. + * + * @field accelerationConfidence: the confidence value of the magnitude value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +AccelerationMagnitude::= SEQUENCE { + accelerationMagnitudeValue AccelerationMagnitudeValue, + accelerationConfidence AccelerationConfidence +} + /** * This DF represents an identifier used to describe a protocol action taken by an ITS-S. * @@ -4110,7 +4229,7 @@ Altitude ::= SEQUENCE { * * It shall include the following components: * - * @field stationType: the type of station that has generated the message that contains the basic container. + * @field stationType: the type of technical context in which the ITS-S that has generated the message is integrated in. * * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. * @@ -4118,7 +4237,7 @@ Altitude ::= SEQUENCE { * @revision: Created in V2.1.1 */ BasicContainer ::= SEQUENCE { - stationType StationType, + stationType TrafficParticipantType, referencePosition ReferencePositionWithConfidence, ... } @@ -4141,19 +4260,19 @@ CartesianAngle ::= SEQUENCE { } /** - * This DF represents an angular speed component along with a confidence value in a cartesian coordinate system. + * This DF represents an angular velocity component along with a confidence value in a cartesian coordinate system. * * It shall include the following components: * - * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. + * @field value: The angular velocity component. * * @field confidence: The confidence value associated to the provided value. * * @category: Kinematics information * @revision: Created in V2.1.1 */ -CartesianAngularSpeed ::= SEQUENCE { - value CartesianAngularSpeedValue, +CartesianAngularVelocityComponent ::= SEQUENCE { + value CartesianAngularVelocityComponentValue, confidence AngularSpeedConfidence } @@ -4162,15 +4281,15 @@ CartesianAngularSpeed ::= SEQUENCE { * * It shall include the following components: * - * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. + * @field value: The angular acceleration component value. * * @field confidence: The confidence value associated to the provided value. * * @category: Kinematics information * @revision: Created in V2.1.1 */ -CartesianAngularAcceleration ::= SEQUENCE { - value CartesianAngularAccelerationValue, +CartesianAngularAccelerationComponent ::= SEQUENCE { + value CartesianAngularAccelerationComponentValue, confidence AngularAccelerationConfidence } @@ -4456,7 +4575,7 @@ CircularShape ::= SEQUENCE { } /** - * This DF indicates the opening/closure status of the lanes of a carrieway. + * This DF indicates the opening/closure status of the lanes of a carriageway. * * It shall include the following components: * @@ -4583,7 +4702,7 @@ Curvature ::= SEQUENCE { * If yes, the value shall be set to TRUE, * * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency - * service should deal with an incident. This component is optional; it shall be present if the information is available, + * service should deal with an incident. This component is optional; it shall be present if the information is available. * * @field phoneNumber: contact phone number of assistance service in case of incident or accident. * This component is optional, it shall be present if the information is available. @@ -4692,20 +4811,6 @@ EuVehicleCategoryCode ::= CHOICE { euVehicleCategoryG NULL } -/** - * The DF shall contain a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime - * or do not contain the COMPONENT eventDeltaTime. - * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. - * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. - * - * @category: GeoReference information, Traffic information - * @revision: created in V2.1.1 based on EventHistory - */ -EventZone::= EventHistory - ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | - (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) - /** * The DF shall contain a list of @ref EventPoint. * @@ -4718,7 +4823,6 @@ EventZone::= EventHistory */ EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint - /** * This DF provides information related to an event at a defined position. * @@ -4739,6 +4843,20 @@ EventPoint ::= SEQUENCE { informationQuality InformationQuality } +/** + * The DF shall contain a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime + * or do not contain the COMPONENT eventDeltaTime. + * + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @revision: created in V2.1.1 based on EventHistory + */ +EventZone::= EventHistory + ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | + (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) + /** * This DF indicates a transversal position in relation to the different lanes of the road. * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where Vehicle ITS-S would normally not be present. @@ -5005,7 +5123,7 @@ LateralAcceleration ::= SEQUENCE { * @field longitudinalAccelerationConfidence: confidence value of the longitudinal acceleration value. * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. * @category: Vehicle information * @revision: V1.3.1 */ @@ -5063,7 +5181,7 @@ LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE{ /** * This DF represents the columns of a lower triangular positive semi-definite matrix, each column not including the main diagonal cell of the matrix. - * Given a matrix "A" of size n x n, the number of columns @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. + * Given a matrix "A" of size n x n, the number of @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. * * @category: Sensing information * @revision: Created in V2.1.1 @@ -5195,22 +5313,22 @@ MitigationPerTechnologyClass ::= SEQUENCE { * * The following options are available: * - * @field vehicleSubClass: the object is a road vehicle. + * @field vehicleSubClass: the object is a road vehicle and the specific subclass is specified. * - * @field vruSubClass: the object is a VRU. + * @field vruSubClass: the object is a VRU and the specific subclass is specified. * - * @field groupSubClass: the object is a VRU group or cluster. + * @field groupSubClass: the object is a VRU group or cluster and the cluster information is specified. * - * @field otherSubClass: the object is of a different type than the above. + * @field otherSubClass: the object is of a different type than the above and the specific subclass is specified. * * @category: Sensing information * @revision: Created in V2.1.1 */ ObjectClass ::= CHOICE { - vehicleSubClass VehicleSubClass, - vruSubClass VruProfileAndSubprofile, - groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), - otherSubClass OtherSubClass, + vehicleSubClass TrafficParticipantType (unknown|passengerCar..tram|agricultural), + vruSubClass VruProfileAndSubprofile, + groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), + otherSubClass OtherSubClass, ... } @@ -5336,7 +5454,7 @@ PathPointPredicted::= SEQUENCE { horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, deltaAltitude DeltaAltitude DEFAULT unavailable, altitudeConfidence AltitudeConfidence DEFAULT unavailable, - pathDeltaTime PathDeltaTime, + pathDeltaTime DeltaTimeTenthOfSecond, ... } @@ -5348,7 +5466,7 @@ PathPointPredicted::= SEQUENCE { * @field objectId: optional identifier assigned to a detected object. * * @field timeOfMeasurement: 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 after the reference time. + * Negative values indicate that the provided object state refers to a point in time before the reference time. * * @field position: the position of the geometric centre of the object´s bounding box within the pre-defined coordinate system, with the associated variance. * @@ -5368,8 +5486,8 @@ PathPointPredicted::= SEQUENCE { * The angle is measured with positive values considering the object orientation turning around the x-axis using the right-hand rule, starting from the z-axis. * This extrinsic rotation shall be applied around the centre point of the object´s bounding box after all other rotations. * - * @field zAngleRate: optional rate 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. + * @field zAngleVelocity: 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. * * @field lowerTriangularCorrelationMatrices: optional set of lower triangular correlation matrices for selected components of the provided kinematic state and attitude vector. * @@ -5405,7 +5523,7 @@ PerceivedObject ::= SEQUENCE { zAngle CartesianAngle OPTIONAL, yAngle CartesianAngle OPTIONAL, xAngle CartesianAngle OPTIONAL, - zAngleRate CartesianAngularSpeed OPTIONAL, + zAngleVelocity CartesianAngularVelocityComponent OPTIONAL, lowerTriangularCorrelationMatrices LowerTriangularPositiveSemidefiniteMatrices OPTIONAL, objectDimensionZ ObjectDimension OPTIONAL, objectDimensionY ObjectDimension OPTIONAL, @@ -5423,7 +5541,7 @@ PerceivedObject ::= SEQUENCE { * * It shall include the following components: * - * @8ref: @field shapeReferencePoint: the optional reference point used for the definition of the shape, relative to an externally specified reference position. + * @field shapeReferencePoint: 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. * * @field polygon: the polygonal area represented by a list of minimum `3` to maximum `16` @ref CartesianPosition3d. @@ -5794,7 +5912,7 @@ RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType * @field region: 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 @ref Id is unique within the region. * - * @field id: the identifier of the road segment + * @field id: the identifier of the road segment. * * @note: when the component region is present, the RoadSegmentReferenceId is guaranteed to be globally unique. * @category: GeoReference information @@ -5819,7 +5937,7 @@ RoadSegmentReferenceId ::= SEQUENCE { * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. * * @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) + * and their respective thresholds, Minimum Safe Lateral Distance (MSLaD), Minimum Safe Longitudinal Distance (MSLoD), and Minimum Safe Vertical Distance (MSVD). * * @category: Traffic information, Kinematics information * @revision: created in V2.1.1 @@ -6013,28 +6131,6 @@ TrailerData ::= SEQUENCE { ... } -/** - * This DE provides information about the presence of a trailer. - * - * The value shall be set to: - * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value. - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. - * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. - * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer - * nor the detection of trailer presence/absence is possible. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 based on VehicleLengthConfidenceIndication -*/ -TrailerPresenceInformation ::= ENUMERATED { - noTrailerPresent (0), - trailerPresentWithKnownLength (1), - trailerPresentWithUnknownLength (2), - trailerPresenceIsUnknown (3), - unavailable (4) -} - /** * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. * @@ -6056,7 +6152,7 @@ TrajectoryInterceptionIndication ::= SEQUENCE { trajectoryInterceptionProbability TrajectoryInterceptionProbability, trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, ... - } +} /** * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. @@ -6198,7 +6294,7 @@ VelocityCartesian::= SEQUENCE { * @revision: V2.1.1 */ VelocityComponent ::= SEQUENCE { - value SpeedValueExtended, + value VelocityComponentValue, confidence SpeedConfidence } @@ -6217,7 +6313,7 @@ VelocityComponent ::= SEQUENCE { * @revision: Created in V2.1.1 */ VelocityPolarWithZ::= SEQUENCE { - velocityMagnitude VelocityComponent, + velocityMagnitude Speed, velocityDirection CartesianAngle, zVelocity VelocityComponent OPTIONAL } -- GitLab From 7a76484918e7b41578920941166dc276d8adf511 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Wed, 14 Sep 2022 07:07:39 +0000 Subject: [PATCH 54/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 323259 -> 329466 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 83521780bbba8c006c4242962a44363aea60f1aa..006be9743715c77e29e471aae13ef0783832275d 100644 GIT binary patch delta 8357 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 delta 6342 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 Z_6M(0TV@z%s&6nEsdH39eiBc6{~tcj6{r9J -- GitLab From 4da6a92652262ff9245032ce65258a7bbc9a3104 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Wed, 14 Sep 2022 08:27:18 +0000 Subject: [PATCH 55/91] Replace ITS-Container.asn --- ITS-Container.asn | 248 ++++++++++++++++++++++------------------------ 1 file changed, 119 insertions(+), 129 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 72975c7..9aa24fb 100644 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -13,8 +13,8 @@ BEGIN * This DE indicates a change of acceleration. * * The value shall be set to: - * - 0 - `accelerate` - if the magnitude of the horizontal velocity-vector increases. - * - 1 - `decelerate` - if the magnitude of the horizontal velocity-vector decreases. + * - 0 - `accelerate` - if the magnitude of the horizontal velocity vector increases. + * - 1 - `decelerate` - if the magnitude of the horizontal velocity vector decreases. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -90,8 +90,8 @@ AccelerationControl ::= BIT STRING { * * The value shall be set to: * - `0` to indicate no acceleration, - * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration or greater than 15,9 m/s2, + * - `n (n > 0 and n < 160)` to indicate acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, * - `161` when the data is unavailable. * * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. @@ -108,10 +108,10 @@ AccelerationMagnitudeValue ::= INTEGER { * This DE represents the value of an acceleration component in a defined coordinate system. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2, + * - `-160` for acceleration values equal to or less than -16 m/s2, * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration or greater than 15,9 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, * - `161` when the data is unavailable. * * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. @@ -299,8 +299,8 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { * @revision: created in V2.1.1 */ AirHumidity ::= INTEGER { - oneHundredPercent (1000), - unavailable (1001) + oneHundredPercent (1000), + unavailable (1001) } (1..1001) /** @@ -468,8 +468,8 @@ AngularAccelerationConfidence ::= ENUMERATED { * @revision: Created in V2.1.1 */ AxlesCount ::= INTEGER{ - outOfRange (1001), - unavailable (1002) + outOfRange (1001), + unavailable (1002) } (2..1002) /** @@ -562,7 +562,7 @@ CartesianAngleValue ::= INTEGER { CartesianAngularAccelerationComponentValue ::= INTEGER { negativeOutofRange (-255), positiveOutOfRange (255), - unavailable (256) + unavailable (256) } (-255..256) /** @@ -582,14 +582,14 @@ CartesianAngularAccelerationComponentValue ::= INTEGER { CartesianAngularVelocityComponentValue ::= INTEGER { negativeOutofRange (-255), positiveOutOfRange (255), - unavailable (256) + unavailable (256) } (-255..256) /** *The DE represents the value of the cause code of an event. * * The value shall be set to: - * - 0 - - reserved for future use, + * - 0 - reserved for future use, * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, * - 2 - `accident` - in case the type of event is a road accident, * - 3 - `roadworks` - in case the type of event is roadwork, @@ -636,27 +636,21 @@ CauseCodeType ::= INTEGER { trafficCondition (1), accident (2), roadworks (3), - impassability (5), adverseWeatherCondition-Adhesion (6), aquaplaning (7), - hazardousLocation-SurfaceCondition (9), hazardousLocation-ObstacleOnTheRoad (10), hazardousLocation-AnimalOnTheRoad (11), humanPresenceOnTheRoad (12), - wrongWayDriving (14), rescueAndRecoveryWorkInProgress (15), - adverseWeatherCondition-ExtremeWeatherCondition (17), adverseWeatherCondition-Visibility (18), adverseWeatherCondition-Precipitation (19), violence (20), - slowVehicle (26), dangerousEndOfQueue (27), - vehicleBreakdown (91), postCrash (92), humanProblem (93), @@ -673,8 +667,8 @@ CauseCodeType ::= INTEGER { * This DF represents the value of a cartesian coordinate with a range of -30,94 metres to +10,00 metres. * * The value shall be set to: - ` - `1001` if the longitudinal offset is out of range, i.e. less than or equal to -30,94 metres, - * - `n (n > -3094 and n < 1001)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `3094` if the longitudinal offset is out of range, i.e. less than or equal to -30,94 metres, + * - `n (n > -3 094 and n < 1 001)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `1001` if the longitudinal offset is out of range, i.e. greater than 10 metres. * * @unit 0,01 m @@ -690,9 +684,9 @@ CartesianCoordinateSmall::= INTEGER { * This DF represents the value of a cartesian coordinate with a range of -327,68 metres to + 327,66 metres. * * The value shall be set to: - ` - `-32768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres, - * - `n (n > -32768 and n < 32767)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `32767` if the longitudinal offset is out of range, i.e. greater than + 327,66 metres. + ` - `-32 768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres, + * - `n (n > -32 768 and n < 32 767)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `32 767` if the longitudinal offset is out of range, i.e. greater than + 327,66 metres. * * @unit 0,01 m * @category: Basic information @@ -708,8 +702,8 @@ CartesianCoordinate::= INTEGER{ * * The value shall be set to: ` - `-131072` if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres, - * - `n (n > -1 310,72 and n < 131071)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `131071` if the longitudinal offset is out of range, i.e. greater than + 1 310,70 metres. + * - `n (n > 131 072 and n < 131 071)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `131 071` if the longitudinal offset is out of range, i.e. greater than + 1 310,70 metres. * * @unit 0,01 m * @category: Basic information @@ -739,7 +733,7 @@ CenDsrcTollingZoneID::= ProtectedZoneId * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster, * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps, * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. - * - 6 to 15 - reserved for future use + * - 6 to 15 - are reserved for future use. * * @category: Cluster information * @revision: Created in V2.1.1 @@ -767,7 +761,7 @@ ClusterBreakupReason ::= ENUMERATED { * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure, * - 7 - `failedJoin` - if the participant failed to join the cluster, * - 8 - `safetyCondition` - if a safety condition applies. - * - 9 to 15 - reserved for future use + * - 9 to 15 - are reserved for future use * * @category: Cluster information * @revision: Created in V2.1.1 @@ -795,7 +789,7 @@ ClusterLeaveReason ::= ENUMERATED { * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users - * e.g. pedestrians or bicycles, + * e.g. pedestrians or bicycles. * - 5-255 - are reserved for future usage. * * @category: Traffic information @@ -813,15 +807,14 @@ CollisionRiskSubCauseCode ::= INTEGER { * This DE represents a confidence level in percentage. * * The value shall be set to: - * - `n (n > 0 and n < 101)` : for the confidence value in %, - * - `101` : in case the confidence value is not available. + * - `n (n > 0 and n < 101)` : for the confidence level in %, + * - `101` : in case the confidence level is not available. * * @unit Percent * @category: Basic information * @revision: Created in V2.1.1 */ ConfidenceLevel ::= INTEGER { - unknown (0), unavailable (101) } (1..101) @@ -955,7 +948,7 @@ CurvatureValue ::= INTEGER { /** * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. * - * The following value are specified: + * The value shall be set to: * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, @@ -1039,12 +1032,12 @@ DangerousSituationSubCauseCode ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `-12700` for values equal to or lower than -127 metres, - * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 metre below the reference position, + * - `-12 700` for values equal to or lower than -127 metres, + * - `n` (`n > -12 700` and `n <= 0) for altitude offset n x 0,01 metre below the reference position, * - `0` for no altitudinal offset, * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 metre above the reference position, - * - `12799` for values equal to or greater than 127,99 metres, - * - `12800` when the information is unavailable. + * - `12 799` for values equal to or greater than 127,99 metres, + * - `12 800` when the information is unavailable. * * @unit: 0,01 metre * @category: GeoReference information @@ -1061,10 +1054,10 @@ DeltaAltitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, + * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, * - `0` for no latitudinal offset, - * - `n` (`n > 0` and `n < 131072`) for offset n x 10^-7 degree towards the north from the reference position, - * - `131072` when the information is unavailable. + * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the north from the reference position, + * - `131 072` when the information is unavailable. * * @unit: 10^-7 degree * @category: GeoReference information @@ -1079,10 +1072,10 @@ DeltaLatitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, + * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, * - `0` for no longitudinal offset, - * - `n` (`n > 0` and `n < 131072`) for offset n x 10^-7 degree towards the east from the reference position, - * - `131072` when the information is unavailable. + * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the east from the reference position, + * - `131 072` when the information is unavailable. * * @unit: 10^-7 degree * @category: GeoReference information @@ -1382,8 +1375,8 @@ HardShoulderStatus ::= ENUMERATED { * - 1 - `wildAnimals` - in case wild animals are detected on the road, * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, * - 3 - `smallAnimals` - in case small size animals are detected on the road, - * - 4 - `largeAnimals` - in case large size animals are detected on the road, - * - 5-255 - reserved for future usage. + * - 4 - `largeAnimals` - in case large size animals are detected on the road. + * - 5-255 - are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -1405,7 +1398,7 @@ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, - * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves starting with a right turn curve, + * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves starting with a right turn curve. * - 6-255 - are reserved for future usage. * * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass @@ -1434,8 +1427,8 @@ HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { * - 4 - `bigObjects` - in case the detected obstacles are big objects, * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, * - 6 - `hubCaps` - in case the detected obstacles are hub caps, - * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles, - * - 8-255 - reserved for future usage. + * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles. + * - 8-255 - are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -1465,8 +1458,8 @@ The value shall be set to: * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, * - 9 - `fallingIce` - in case road surface damage is due to falling ice, - * - 10 - `fire` - in case there is fire on or near to the road surface, - * - 11-255 - reserved for future usage. + * - 10 - `fire` - in case there is fire on or near to the road surface. + * - 11-255 - are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -1557,7 +1550,7 @@ HeightLonCarr ::= INTEGER { * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, * - 1 - `childrenOnRoadway` - in case children are detected on the road, * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, - * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road, + * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road. * - 4-255 - are reserved for future usage. * * @category: Traffic information @@ -1576,7 +1569,7 @@ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { * The value shall be set to: * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, - * - 2 - `heartProblem` - in case human problem is due to heart problem, + * - 2 - `heartProblem` - in case human problem is due to heart problem. * - 3-255 - reserved for future usage. * * @category: Traffic information @@ -1608,10 +1601,10 @@ Identifier2B ::= INTEGER (0..65535) * This DE represents the quality level of provided information. * * The value shall be set to: - * - 0 - if the information is unavailable, - * - 1 - if the quality level is lowest, + * - `0` if the information is unavailable, + * - `1` if the quality level is lowest, * - `n (n > 1 and n < 7)` if the quality level is n, - * - 7 - if the quality level is highest. + * - `7` if the quality level is highest. * * @note: Definition of quality level is out of scope of the present document. * @category: Basic information @@ -1630,7 +1623,7 @@ InformationQuality ::= INTEGER (0..7) * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling, * - 3 - `urbanRail` - as specified in ETSI TS 103 724 [i.13], clause 7, * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.13], clause 7, - * - 5 - `fixedLinks` - as specified in ETSI TS 103 724 [i.13], clause 7, + * - 5 - `fixedLinks` - as specified in ETSI TS 103 724 [i.13], clause 7. * * @category: Communication information * @revision: Created in V2.1.1 @@ -1850,9 +1843,9 @@ LaneWidth::= INTEGER (0..1023) * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >= -900000000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, + * - `n (n >= -900 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, * - `0` is used for the latitude of the equator, - * - `n (n > 0 and n < 900000001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator, + * - `n (n > 0 and n < 900 000 001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator, * - `900 000 001` when the information is unavailable. * * @unit: 10^-7 degree @@ -1868,12 +1861,12 @@ Latitude ::= INTEGER { * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2, + * - `-160` for acceleration values equal to or less than -16 m/s2, * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation * with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration or greater than 15,9 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, * - `161` when the data is unavailable. * * @note: the empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. @@ -1881,7 +1874,7 @@ Latitude ::= INTEGER { * * @unit: 0,1 m/s2 * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. + * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). */ LateralAccelerationValue ::= INTEGER { negativeOutOfRange (-160), @@ -1913,9 +1906,9 @@ LightBarSirenInUse ::= BIT STRING { * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > -1800000000 and n < 0)` x 10^-7 degree, i.e. negative values for longitudes to the west, + * - `n (n > -1 800 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for longitudes to the west, * - `0` to indicate the prime meridian, - * - `n (n > 0 and n < 1800000001)` x 10^-7 degree, i.e. positive values for longitudes to the east, + * - `n (n > 0 and n < 1 800 000 001)` x 10^-7 degree, i.e. positive values for longitudes to the east, * - `1 800 000 001` when the information is unavailable. * * The value -1800000000 shall not be used. @@ -1934,10 +1927,10 @@ Longitude ::= INTEGER { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2, + * - `-160` for acceleration values equal to or less than -16 m/s2, * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2 * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration or greater than 15,9 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, * - `161` when the data is unavailable. * * This acceleration is along the tangent plane of the road surface and does not include gravity components. @@ -1946,7 +1939,7 @@ Longitude ::= INTEGER { * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * @unit: 0,1 m/s2 * @category: Vehicle information - * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. + * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). T */ LongitudinalAccelerationValue::= INTEGER { negativeOutOfRange (-160), @@ -1959,8 +1952,8 @@ LongitudinalAccelerationValue::= INTEGER { * * The value shall be set to: * - `n (n >= 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, - * - `32766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m, - * - `32767` if the longitudinal offset information is not available. + * - `32 766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m, + * - `32 767` if the longitudinal offset information is not available. * * @unit 0,1 metre * @category: Road topology information @@ -1976,9 +1969,9 @@ LongitudinalLanePositionValue ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 1022)` if the confidence value is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, - * - `1022` if the confidence value is out of range i.e. greater than 102,1 m, - * - `1023` if the confidence value is unavailable. + * - `n (n > 0 and n < 1 022)` if the confidence value is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, + * - `1 022` if the confidence value is out of range i.e. greater than 102,1 m, + * - `1 023` if the confidence value is unavailable. * * @unit 0,1 metre * @category: Road topology information @@ -1996,17 +1989,17 @@ LongitudinalLanePositionConfidence ::= INTEGER { * The corresponding bit shall be set to 1 if the component is included: * - 0 - `xCoordinate` - when the component xCoordinate of the component @ref CartesianPosition3dWithConfidence is included, * - 1 - `yCoordinate` - when the component yCoordinate of the component @ref CartesianPosition3dWithConfidence is included, - * - 1 - `zCoordinate` - when the component zCoordinate of the component @ref CartesianPosition3dWithConfidence is included, - * - 1 - `xVelocityOrVelocityMagnitude` - when the component xVelocity or VelocityMagnitude of the component @ref VelocityPolarWithZ is included, - * - 1 - `yVelocityOrVelocityDirection` - when the component yVelocity or VelocityDirection of the component @ref VelocityPolarWithZ is included - * - 1 - `zVelocity` - when the component zVelocity of the component @ref VelocityPolarWithZ is included, - * - 1 - `xAccelOrAccelMagnitude` - when the component xAcceleration of the component @ref AccelerationCartesian or the component AccelerationMagnitude of the component @ref AccelerationPolarWithZ is included, - * - 1 - `yAccelOrAccelDirection` - when the component yAcceleration of the component @ref AccelerationCartesian or the component AccelerationDirection of the component @ref AccelerationPolarWithZ is included, - * - 1 - `zAcceleration` - when the component zAcceleration of the component @ref AccelerationCartesianor of the component @ref AccelerationPolarWithZ is included, - * - 1 - `zAngle` - when the component zAngle is included, - * - 1 - `yAngle` - when the component yAngle is included, - * - 1 - `xAngle` - when the component xAngle is included, - * - 1 - `zAngleRate` - when the component zAngleRate is included. + * - 2 - `zCoordinate` - when the component zCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 3 - `xVelocityOrVelocityMagnitude` - when the component xVelocity or VelocityMagnitude of the component @ref VelocityPolarWithZ is included, + * - 4 - `yVelocityOrVelocityDirection` - when the component yVelocity or VelocityDirection of the component @ref VelocityPolarWithZ is included + * - 5 - `zVelocity` - when the component zVelocity of the component @ref VelocityPolarWithZ is included, + * - 6 - `xAccelOrAccelMagnitude` - when the component xAcceleration of the component @ref AccelerationCartesian or the component AccelerationMagnitude of the component @ref AccelerationPolarWithZ is included, + * - 7 - `yAccelOrAccelDirection` - when the component yAcceleration of the component @ref AccelerationCartesian or the component AccelerationDirection of the component @ref AccelerationPolarWithZ is included, + * - 8 - `zAcceleration` - when the component zAcceleration of the component @ref AccelerationCartesian or of the component @ref AccelerationPolarWithZ is included, + * - 9 - `zAngle` - when the component zAngle is included, + * - 10 - `yAngle` - when the component yAngle is included, + * - 11 - `xAngle` - when the component xAngle is included, + * - 12 - `zAngleRate` - when the component zAngleRate is included. * * Otherwise, it shall be set to 0. * @@ -2088,7 +2081,7 @@ MessageId::= INTEGER { * * The value shall be set to: * - `n (n >= 0 and n < 126)` for the number n of occupants, - * - `126` for values equal to or higher than 126, + * - `126` for values equal to or higher than 125, * - `127` if information is not available. * * @unit: 1 person @@ -2206,9 +2199,9 @@ OrdinalNumber3b ::= INTEGER(1..8) * The value shall be set to: * - `0` - unknown - if the subclass is unknown. * - `1` - roadSideUnit - if the object is a roadside unit. - * - `2` - singleObject - if the object is a single object . - * - `3` - multipleObjects - if the object is a group of multiple objects . - * - `4` - bulkMaterial - if the object is a bulk material . + * - `2` - singleObject - if the object is a single object. + * - `3` - multipleObjects - if the object is a group of multiple objects. + * - `4` - bulkMaterial - if the object is a bulk material. * * @category: Sensing information * @revision: Created in V2.1.1 @@ -2411,8 +2404,8 @@ PosPillar ::= INTEGER { * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, - * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle, - * - 5-255 : reserved for future usage. + * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle. + * - 5-255 : are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2606,7 +2599,7 @@ RequestResponseIndication ::= ENUMERATED { /** * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` * - * The following value are specified: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, @@ -2774,8 +2767,8 @@ SequenceNumber ::= INTEGER (0..65535) * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, * - 1 `stopSignViolation` : in case a stop sign violation is detected, * - 2 `trafficLightViolation` : in case a traffic light violation is detected, - * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, - * - 4-255 : reserved for future usage. + * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected. + * - 4-255 : are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2800,8 +2793,8 @@ SignalViolationSubCauseCode ::= INTEGER { * - 5 `convoy` : in case of slow driving convoy on the road, * - 6 `snowplough` : in case of slow driving snow plough on the road, * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, - * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road, - * - 9-255 : reserved for future usage. + * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road. + * - 9-255 : are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2844,7 +2837,7 @@ SpecialTransportType ::= BIT STRING { * * The value shall be set to: * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n * 0,01 m/s. - * - `126` if the confidence value is out of range, i.e. greater than 1,25 m/s. + * - `126` if the confidence value is out of range, i.e. greater than 1,25 m/s, * - `127` if the confidence value information is not available. * * @note: The fact that a speed value is received with confidence value set to `unavailable(127)` can be caused by several reasons, such as: @@ -2879,9 +2872,9 @@ SpeedLimit ::= INTEGER (1..255) * * The value shall be set to: * - `0` in a standstill situation. - * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s, - * - `16382` for speed values greater than 163,81 m/s, - * - `16383` if the speed accuracy information is not available. + * - `n (n > 0 and n < 16 382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s, + * - `16 382` for speed values greater than 163,81 m/s, + * - `16 383` if the speed accuracy information is not available. * * @note: the the definition of “standstill” is out of scope of this document. * @@ -2899,10 +2892,10 @@ SpeedValue ::= INTEGER { * This DE represents the value of a velocity component in a defined coordinate system. * * The value shall be set to: - * - `-16383` if the velocity is equal to or smaller than -163,83 m/s, - * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s, - * - `16382` for velocity values equal to or greater than 163,81 m/s, - * - `16383` if the velocity information is not available. + * - `-16 383` if the velocity is equal to or smaller than -163,83 m/s, + * - `n (n > -16 383 and n < 16 382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s, + * - `16 382` for velocity values equal to or greater than 163,81 m/s, + * - `16 383` if the velocity information is not available. * * @unit: 0,01 m/s * @category: Kinematics information @@ -2919,7 +2912,7 @@ VelocityComponentValue ::= INTEGER { * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. * * The value shall be set to: - * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable", + * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable", * - `n (n > 0 and n < 50)` to indicate the actual stability level, * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability", * - the values between 51 and 62 are reserved for future use, @@ -3645,17 +3638,17 @@ VehicleWidth ::= INTEGER { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2, + * - `-160` for acceleration values equal to or less than -16 m/s2, * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration or greater than 15,9 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, * - `161` when the data is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * * @category: Vehicle information * @unit: 0,1 m/s2 - * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. + * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly). * */ VerticalAccelerationValue ::= INTEGER { @@ -3698,8 +3691,8 @@ VruClusterProfiles ::= BIT STRING { * - 5 `calling (5)` : to indicate that the VRU device is currently receiving a call, * - 6 `playingGames (6)` : to indicate that the human is playing games, * - 7 `reading (7)` : to indicate that the human is reading on the VRU device, - * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, - * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. + * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static. + * - value 9 to 255 : are reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3726,8 +3719,8 @@ VruDeviceUsage ::= ENUMERATED { * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk), * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk, * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane, - * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area, - * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + * - value 5 to 255 : are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3752,7 +3745,7 @@ VruEnvironment ::= ENUMERATED { * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling, * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking, * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard, - * - 6 `noReaction` : to indicate that the VRU is not changing its behavior, + * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. * - 7 to 255 : are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3776,8 +3769,8 @@ VruMovementControl ::= ENUMERATED { * - 0 `unavailable` : to indicate that the information on is unavailable, * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies, * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker, - * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder, - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. + * - value 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3826,10 +3819,10 @@ VruSubProfileBicyclist ::= ENUMERATED { * * The value shall be set to: * - 0 `unavailable ` : to indicate that the information is unavailable, - * - 1 `moped (1)` : to indicate a moped and rider, + * - 1 `moped` : to indicate a moped and rider, * - 2 `motorcycle` : to indicate a motorcycle and rider, * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider, - * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider, + * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. * - 5 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3869,10 +3862,10 @@ VruSubProfileAnimal ::= ENUMERATED { * This DE indicates the approximate size of a VRU including the VRU vehicle used. * * The value shall be set to: - * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1, - * - 1 `low (1)` : the VRU size class is low depending on the VRU profile, - * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile, - * - 3 `high (3)` : the VRU size class is high depending on the VRU profile. + * - 0 `unavailable` : to indicate that there is no matched size class or due to privacy reasons in profile 1, + * - 1 `low` : to indicate that the VRU size class is low depending on the VRU profile, + * - 2 `medium` : to indicate that the VRU size class is medium depending on the VRU profile, + * - 3 `high` : to indicate that the VRU size class is high depending on the VRU profile. * - 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -4092,12 +4085,12 @@ Acceleration3dWithConfidence::= CHOICE { * It shall include the following components: * - * @field velocityMagnitude: magnitude of the acceleration vector in the X-Y plane with the associated confidence value. + * @field accelerationMagnitude: magnitude of the acceleration vector in the X-Y plane with the associated confidence value. * Negative magnitude values indicate accelerating backwards. * - * @field velocityDirection: polar angle of the acceleration vector in the X-Y plane with the associated confidence value. + * @field accelerationDirection: polar angle of the acceleration vector in the X-Y plane with the associated confidence value. * - * @field zVelocity: the optional z component of the acceleration vector with the associated confidence value. + * @field zAcceleration: the optional z component of the acceleration vector with the associated confidence value. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -4925,14 +4918,11 @@ HeadingChangeIndication ::= SEQUENCE { * * It shall include the following components: * - * @field centreFrequency: the centre frequency of the channel - * @unit: 10^(exp+2) Hz (where exp is exponent) + * @field centreFrequency: the centre frequency of the channel in 10^(exp+2) Hz (where exp is exponent) * - * @field channelWidth: width of the channel - * @unit: 10^exp Hz (where exp is exponent) + * @field channelWidth: width of the channel in 10^exp Hz (where exp is exponent) * - * @field exponent of the power of 10 - * @unit: N/A + * @field exponent: exponent of the power of 10 used in the calculation of the components above. * * @category: Communication information * @revision: created in V2.1.1 @@ -6257,8 +6247,8 @@ VehicleLengthV2 ::= SEQUENCE { * @revision: Created in V2.1.1 */ Velocity3dWithConfidence::= CHOICE{ - polarVelocity VelocityPolarWithZ, - cartesianVelocity VelocityCartesian + polarVelocity VelocityPolarWithZ, + cartesianVelocity VelocityCartesian } /** -- GitLab From b73caed8e57fdbfe2fbf448da2cef94066add10c Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Wed, 14 Sep 2022 08:27:45 +0000 Subject: [PATCH 56/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 329466 -> 331329 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 006be9743715c77e29e471aae13ef0783832275d..c47fa17f5842aaefae1ea7aec35627a37e4cfb0e 100644 GIT binary patch delta 2555 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 VVFtc()8IwRq$~4}ZW`7V{tu;ew)Ox3 -- GitLab From 7596ef533fa818975a67e8824ce4cf7459232f92 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Wed, 14 Sep 2022 08:40:25 +0000 Subject: [PATCH 57/91] Replace ITS-Container.asn --- ITS-Container.asn | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 9aa24fb..252cce8 100644 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -3041,10 +3041,20 @@ StationaryVehicleSubCauseCode ::= INTEGER { * The ITS-S ID may be a pseudonym. It may change over space and/or over time. * * @category: Basic information - * @revision: Update in V2.1.1 : changed name from StationID to StationId + * @revision: Created in V2.1.1 based on @ref StationID */ StationId ::= INTEGER(0..4294967295) +/** + * This DE represents the identifier of an ITS-S. + * The ITS-S ID may be a pseudonym. It may change over space and/or over time. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref StationId instead. + * @category: Basic information + * @revision: V1.3.1 + */ +StationID ::= INTEGER(0..4294967295) + /** * This DE represents the type of technical context the ITS-S is integrated in. * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. @@ -4183,13 +4193,31 @@ AccelerationMagnitude::= SEQUENCE { * @field sequenceNumber: a sequence number. * * @category: Communication information - * @revision: Update in V2.1.1 changed name from ActionID to ActionId + * @revision: Created in V2.1.1 based on @ref ActionID. */ ActionId ::= SEQUENCE { originatingStationId StationId, sequenceNumber SequenceNumber } +/** + * This DF represents an identifier used to describe a protocol action taken by an ITS-S. + * + * It shall include the following components: + * + * @field originatingStationId: Id of the ITS-S that takes the action. + * + * @field sequenceNumber: a sequence number. + * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref ActionId instead. + * @category: Communication information + * @revision: V1.3.1 + */ +ActionID ::= SEQUENCE { + originatingStationId StationID, + sequenceNumber SequenceNumber +} + /** * This DF shall contain a list of @ref ActionId. -- GitLab From b04f4030d8480a241ab14fbaeb22caf60f8b1e6b Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Wed, 14 Sep 2022 08:40:52 +0000 Subject: [PATCH 58/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 331329 -> 332501 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index c47fa17f5842aaefae1ea7aec35627a37e4cfb0e..e301a2584fe74f31f0a67f73b6e23ba322f3bd25 100644 GIT binary patch delta 259 zcmX>&N95{Kk%kt=Elf+DCpW|jPESy0=9-?cmW7owxFoS8Ge6JMW%>hWCQm_67bQCz z{X{#2@Ifc0CzBo4a!lu+#FRSS{y($i^hd85MG+dee|BcN@(|5f$7G19dei@@GFMNp zT*1sM1`~tW0OL&;uxA#VuByU3hu=j@D^^1pVf6(S=I=181*hj}F^7skj7I|jPwlk3>B;tk~0$X(o<6u@)C1X71E0G za}|P15=%1k^E_P?O7h{HlX`UOhX)#5oSQyDbv@gGgr6sYBO)= J)n+;I9021&Hwpj% -- GitLab From 20f675f73fc06bf6c888c46857f14cd48afdcde2 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Wed, 14 Sep 2022 09:48:41 +0000 Subject: [PATCH 59/91] Replace ITS-Container.asn --- ITS-Container.asn | 3213 +++++++++++++++++++++++++-------------------- 1 file changed, 1791 insertions(+), 1422 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index c32f288..252cce8 100755 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,7 +1,3 @@ --- Draft CDD ASN.1 module Release 2. --- Date: 04.07.2022 - - ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) 102894 cdd (2) major-version-3 (3) minor-version-1 (1)} DEFINITIONS AUTOMATIC TAGS ::= @@ -17,8 +13,8 @@ BEGIN * This DE indicates a change of acceleration. * * The value shall be set to: - * - 0 - `accelerate` - if the acceleration is positive. - * - 1 - `decelerate` - if the acceleration is negative. + * - 0 - `accelerate` - if the magnitude of the horizontal velocity vector increases. + * - 1 - `decelerate` - if the magnitude of the horizontal velocity vector decreases. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -29,20 +25,23 @@ AccelerationChange::= ENUMERATED { } /** - * This DE represents the absolute accuracy of a reported vehicle acceleration value with a confidence level of 95%. + * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy of an acceleration value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 101)` if the acceleration accuracy is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `101` if the acceleration accuracy is out of range i.e. greater than 10 m/s2. - * - `102` if the data is unavailable. + * - `n (n > 0 and n < 101)` if the confidence value is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `101` if the confidence value is out of range i.e. greater than 10 m/s2, + * - `102` if the confidence value is unavailable. * - * @note: The fact that an acceleration value is received with confidence set to 'unavailable(102)' can be caused by several reasons, such as: + * The value 0 shall not be used. + * + * @note: The fact that an acceleration value is received with confidence value set to 'unavailable(102)' can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported acceleration value may be valid and used by the application. + * In all 3 cases above, the acceleration value may be valid and used by the application. * - * @note: If an acceleration value is received and its confidence is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @note: If an acceleration value is received and its confidence value is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @unit 0,1 m/s2 * @category: Kinematics information @@ -70,7 +69,7 @@ AccelerationConfidence ::= INTEGER { * - 6 - `speedLimiterEngaged` - speed limiter is engaged. * * Otherwise (for example when the corresponding system is not available due to non equipped system - * or information is unavailable), the corresponding bit shall be set to _0_. + * or information is unavailable), the corresponding bit shall be set to 0. * * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. * @category: Kinematics information @@ -86,17 +85,36 @@ AccelerationControl ::= BIT STRING { speedLimiterEngaged (6) } (SIZE(7)) +/** + * This DE represents the magnitude of the acceleration vector in a defined coordinate system. + * + * The value shall be set to: + * - `0` to indicate no acceleration, + * - `n (n > 0 and n < 160)` to indicate acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, + * - `161` when the data is unavailable. + * + * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. + * @unit 0,1 m/s2 + * @category: Kinematics information + * @revision: Created in V2.1.1 +*/ +AccelerationMagnitudeValue ::= INTEGER { + positiveOutOfRange (160), + unavailable (161) +} (0.. 161) + /** * This DE represents the value of an acceleration component in a defined coordinate system. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate positive acceleration is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. + * - `-160` for acceleration values equal to or less than -16 m/s2, + * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, * - `161` when the data is unavailable. * - * @note: zero acceleration is indicated using n=0. + * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. * @unit 0,1 m/s2 * @category: Kinematics information * @revision: Created in V2.1.1 @@ -112,9 +130,9 @@ AccelerationValue ::= INTEGER { * This DE indicates an access technology. * * The value shall be set to: - * - `0`: in case of any access technology class. - * - `1`: in case of ITS-G5 access technology class. - * - `2`: in case of LTE-V2X access technology class. + * - `0`: in case of any access technology class, + * - `1`: in case of ITS-G5 access technology class, + * - `2`: in case of LTE-V2X access technology class, * - `3`: in case of NR-V2X access technology class. * * @category: Communication information @@ -163,17 +181,17 @@ AccidentSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailabl. - * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road. - * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road. - * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road. - * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road. - * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road. - * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road. - * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road. - * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard. - * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface. - * - 10 - `roadsSalted` - when the low road adhesion is due to salted road. + * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailable, + * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road, + * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road, + * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road, + * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road, + * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road, + * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road, + * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road, + * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard, + * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface, + * - 10 - `roadsSalted` - when the low road adhesion is due to salted road, * - 11-255 - are reserved for future usage. * * @category: Traffic information @@ -197,12 +215,12 @@ AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable. - * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind. - * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail. - * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane. - * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm. - * - 5 - `tornado` - in case the type of extreme weather condition is tornado. + * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable, + * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind, + * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail, + * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane, + * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm, + * - 5 - `tornado` - in case the type of extreme weather condition is tornado, * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. * - 7-255 - are reserved for future usage. * @@ -223,9 +241,9 @@ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. * * The value shall be set to: - * - 0 - `unavailable` : in case information on the type of precipitation is unavailable. - * - 1 - `heavyRain` : in case the type of precipitation is heavy rain. - * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall. + * - 0 - `unavailable` : in case information on the type of precipitation is unavailable, + * - 1 - `heavyRain` : in case the type of precipitation is heavy rain, + * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall, * - 3 - `softHail` : in case the type of precipitation is soft hail. * - 4-255 : are reserved for future usage * @@ -243,14 +261,14 @@ AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable. - * - 1 - `fog` - in case the cause of low visibility is fog. - * - 2 - `smoke` - in case the cause of low visibility is smoke. - * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall. - * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain. - * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail. - * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare. - * - 7 - `sandstorms` - in case the cause of low visibility is sand storm. + * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable, + * - 1 - `fog` - in case the cause of low visibility is fog, + * - 2 - `smoke` - in case the cause of low visibility is smoke, + * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall, + * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain, + * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail, + * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare, + * - 7 - `sandstorms` - in case the cause of low visibility is sand storm, * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. * - 9-255 - are reserved for future usage * @@ -270,10 +288,10 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the air humidity in tens of percent. + * This DE represents the air humidity in tenths of percent. * * The value shall be set to: - * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0.1 percent and greater than (n-1) x 0.1 percent. + * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0,1 percent and greater than (n-1) x 0,1 percent. * - `1001` indicates that the air humidity is unavailable. * * @category: Basic information @@ -281,43 +299,44 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { * @revision: created in V2.1.1 */ AirHumidity ::= INTEGER { - oneHundredPercent (1000), - unavailable (1001) + oneHundredPercent (1000), + unavailable (1001) } (1..1001) /** - * This DE represents the absolute accuracy of an altitude value of a geographical point for a confidence level of 95%. + * This DE indicates the altitude confidence value which represents the estimated absolute accuracy of an altitude value of a geographical point with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - 0 - `alt-000-01` if the altitude accuracy is equal to or less than 0,01 metre. - * - 1 - `alt-000-02` if the altitude accuracy is equal to or less than 0,02 metre. - * - 2 - `alt-000-05` if the altitude accuracy is equal to or less than 0,05 metre. - * - 3 - `alt-000-10` if the altitude accuracy is equal to or less than 0,1 metre. - * - 4 - `alt-000-20` if the altitude accuracy is equal to or less than 0,2 metre. - * - 5 - `alt-000-50` if the altitude accuracy is equal to or less than 0,5 metre. - * - 6 - `alt-001-00` if the altitude accuracy is equal to or less than 1 metre. - * - 7 - `alt-002-00` if the altitude accuracy is equal to or less than 2 metres. - * - 8 - `alt-005-00` if the altitude accuracy is equal to or less than 5 metres. - * - 9 - `alt-010-00` if the altitude accuracy is equal to or less than 10 metres. - * - 10 - `alt-020-00` if the altitude accuracy is equal to or less than 20 metres. - * - 11 - `alt-050-00` if the altitude accuracy is equal to or less than 50 metres. - * - 12 - `alt-100-00` if the altitude accuracy is equal to or less than 100 metres. - * - 13 - `alt-200-00` if the altitude accuracy is equal to or less than 200 metres. - * - 14 - `outOfRange` if the altitude accuracy is out of range, i.e. greater than 200 metres. - * - 15 - `unavailable` if the altitude accuracy information is unavailable - * - * @note: The fact that an altitude value is received with confidence set to `unavailable(15)` can be caused + * - 0 - `alt-000-01` if the confidence value is equal to or less than 0,01 metre, + * - 1 - `alt-000-02` if the confidence value is equal to or less than 0,02 metre and greater than 0,01 metre, + * - 2 - `alt-000-05` if the confidence value is equal to or less than 0,05 metre and greater than 0,02 metre, + * - 3 - `alt-000-10` if the confidence value is equal to or less than 0,1 metre and greater than 0,05 metre, + * - 4 - `alt-000-20` if the confidence value is equal to or less than 0,2 metre and greater than 0,1 metre, + * - 5 - `alt-000-50` if the confidence value is equal to or less than 0,5 metre and greater than 0,2 metre, + * - 6 - `alt-001-00` if the confidence value is equal to or less than 1 metre and greater than 0,5 metre, + * - 7 - `alt-002-00` if the confidence value is equal to or less than 2 metres and greater than 1 metre, + * - 8 - `alt-005-00` if the confidence value is equal to or less than 5 metres and greater than 2 metres, + * - 9 - `alt-010-00` if the confidence value is equal to or less than 10 metres and greater than 5 metres, + * - 10 - `alt-020-00` if the confidence value is equal to or less than 20 metres and greater than 10 metres, + * - 11 - `alt-050-00` if the confidence value is equal to or less than 50 metres and greater than 20 metres, + * - 12 - `alt-100-00` if the confidence value is equal to or less than 100 metres and greater than 50 metres, + * - 13 - `alt-200-00` if the confidence value is equal to or less than 200 metres and greater than 100 metres, + * - 14 - `outOfRange` if the confidence value is out of range, i.e. greater than 200 metres, + * - 15 - `unavailable` if the confidence value is unavailable + * + * @note: The fact that an altitude value is received with confidence value set to `unavailable(15)` can be caused * by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported altitude value may be valid and used by the application. + * In all 3 cases above, the altitude value may be valid and used by the application. * - * @note: If an altitude value is received and its confidence is set to `outOfRange(14)`, it means that the reported + * @note: If an altitude value is received and its confidence value is set to `outOfRange(14)`, it means that the * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @category: GeoReference information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ AltitudeConfidence ::= ENUMERATED { alt-000-01 (0), @@ -339,30 +358,33 @@ AltitudeConfidence ::= ENUMERATED { } /** - * This DE represents the altitude value in a WGS84 co-ordinate system. + * This DE represents the altitude value in a WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `-100 000` if the altitude is equal to or less than -1 000 m. - * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0.01 meters and greater than (n-1) x 0,01 meters. - * - `800 000` if the altitude greater than 7 999 m. + * - `-100 000` if the altitude is equal to or less than -1 000 m, + * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0,01 metre and greater than (n-1) x 0,01 metre, + * - `800 000` if the altitude greater than 7 999,99 m, * - `800 001` if the information is not available. * - * @unit: 0.01 meter + * @note: the range of this DE does not use the full binary encoding range, but all reasonable values are covered. In order to cover all possible altitude ranges a larger encoding would be necessary. + * @unit: 0,01 metre * @category: GeoReference information * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) */ AltitudeValue ::= INTEGER { - negativeOutOFRange (-100000), + negativeOutOfRange (-100000), postiveOutOfRange (800000), unavailable (800001) } (-100000..800001) /** - * This DE represents the absolute accuracy of an angle value for a predefined confidence level of 95 %. + * This DE indicates the angle confidence value which represents the estimated absolute accuracy of an angle value with a default confidence level of 95 %. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees. - * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees. + * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees, + * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees, * - `127` if the accuracy information is not available. * * @unit: 0,1 degrees @@ -375,94 +397,92 @@ AngleConfidence ::= INTEGER { } (1..127) /** - * This DE represents the absolute accuracy of a reported angular speed value for a confidence level of 95%. + * This DE indicates the angular speed confidence value which represents the estimated absolute accuracy of an angular speed value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * For correlation computation, maximum interval levels can be assumed. * * The value shall be set to: - * - 0 - `degSec-000-01` if the accuracy is equal to or less than 0,01 degree/second - * - 1 - `degSec-000-05` if the accuracy is equal to or less than 0,05 degrees/second - * - 2 - `degSec-000-10` if the accuracy is equal to or less than 0,1 degree/second - * - 3 - `degSec-001-00` if the accuracy is equal to or less than 1 degree/second - * - 4 - `degSec-005-00` if the accuracy is equal to or less than 5 degrees/second - * - 5 - `degSec-010-00` if the accuracy is equal to or less than 10 degrees/second - * - 6 - `degSec-100-00` if the accuracy is equal to or less than 100 degrees/second - * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second - * - 8 - `unavailable` if the accuracy information is unavailable + * - 0 - `degSec-01` if the accuracy is equal to or less than 1 degree/second, + * - 1 - `degSec-02` if the accuracy is equal to or less than 2 degrees/second and greater than 1 degree/second, + * - 2 - `degSec-05` if the accuracy is equal to or less than 5 degrees/second and greater than 2 degrees/second, + * - 3 - `degSec-10` if the accuracy is equal to or less than 10 degrees/second and greater than 5 degrees/second, + * - 4 - `degSec-20` if the accuracy is equal to or less than 20 degrees/second and greater than 10 degrees/second, + * - 5 - `degSec-50` if the accuracy is equal to or less than 50 degrees/second and greater than 20 degrees/second, + * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second, + * - 7 - `unavailable` if the accuracy information is unavailable * * @category: Kinematics information * @revision: Created in V2.1.1 */ AngularSpeedConfidence ::= ENUMERATED { - degSec-000-01 (0), - degSec-000-05 (1), - degSec-000-10 (2), - degSec-001-00 (3), - degSec-005-00 (4), - degSec-010-00 (5), - degSec-100-00 (6), - outOfRange (7), - unavailable (8) + degSec-01 (0), + degSec-02 (1), + degSec-05 (2), + degSec-10 (3), + degSec-20 (4), + degSec-50 (5), + outOfRange (7), + unavailable (8) } /** - * Tis DE represents the absolute accuracy of a reported angular acceleration value for a confidence level of 95%. + * This DE indicates the angular acceleration confidence value which represents the estimated accuracy of an angular acceleration value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * For correlation computation, maximum interval levels shall be assumed. * * The value shall be set to: - * - 0 - `degSecSquared-000-01` if the accuracy is equal to or less than 0,01 degree/second2 - * - 1 - `degSecSquared-000-05` if the accuracy is equal to or less than 0,05 degrees/second2 - * - 2 - `degSecSquared-000-10` if the accuracy is equal to or less than 0,1 degree/second2 - * - 3 - `degSecSquared-001-00` if the accuracy is equal to or less than 1 degree/second2 - * - 4 - `degSecSquared-005-00` if the accuracy is equal to or less than 5 degrees/second2 - * - 5 - `degSecSquared-010-00` if the accuracy is equal to or less than 10 degrees/second2 - * - 6 - `degSecSquared-100-00` if the accuracy is equal to or less than 100 degrees/second2 - * - 7 - `outOfRange` if the accuracy is out of range, i.e. greater than 100 degrees/second2 - * - 8 - `unavailable` if the accuracy information is unavailable + * - 0 - `degSecSquared-01` if the accuracy is equal to or less than 1 degree/second2, + * - 1 - `degSecSquared-02` if the accuracy is equal to or less than 2 degrees/second2 and greater than 1 degree/second2, + * - 2 - `degSecSquared-05` if the accuracy is equal to or less than 5 degree/second2 and greater than 1 degree/second2, + * - 3 - `degSecSquared-10` if the accuracy is equal to or less than 10 degree/second2 and greater than 5 degree/second2, + * - 4 - `degSecSquared-20` if the accuracy is equal to or less than 20 degrees/second2 and greater than 10 degree/second2, + * - 5 - `degSecSquared-50` if the accuracy is equal to or less than 50 degrees/second2 and greater than 20 degrees/second2, + * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second2, + * - 7 - `unavailable` if the accuracy information is unavailable. * * @category: Kinematics information * @revision: Created in V2.1.1 */ AngularAccelerationConfidence ::= ENUMERATED { - degSecSquared-000-01 (0), - degSecSquared-000-05 (1), - degSecSquared-000-10 (2), - degSecSquared-001-00 (3), - degSecSquared-005-00 (4), - degSecSquared-010-00 (5), - degSecSquared-100-00 (6), - outOfRange (7), - unavailable (8) + degSecSquared-01 (0), + degSecSquared-02 (1), + degSecSquared-05 (2), + degSecSquared-10 (3), + degSecSquared-20 (4), + degSecSquared-50 (5), + outOfRange (6), + unavailable (7) } /** - * This DE indicates the number of axels of a passing train. + * This DE indicates the number of axles of a passing train. * - * The following values are specified: - * - `n(n > 2 and n < 1001)` indicates that the train has n x axels. - * - `1001`indicates that the number of axels is out of range. + * The value shall be set to: + * - `n(n > 2 and n < 1001)` indicates that the train has n x axles, + * - `1001`indicates that the number of axles is out of range, * - `1002` the information is unavailable. * * - * @unit: Number of axels + * @unit: Number of axles * @category: Vehicle information * @revision: Created in V2.1.1 */ AxlesCount ::= INTEGER{ - outOfRange (1001), - unavailable (1002) + outOfRange (1001), + unavailable (1002) } (2..1002) /** - * This DE represent the measured uncompesated atmospheric pressure in units of hPascal (hPa). + * This DE represents the measured uncompensated atmospheric pressure. * - * The following values are specified: - * - `2999` indicates that the applicable value is less than 299.9 hPa. - * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 0.1 hPa and greater than (n-1) x 0.1 hPa. - * - `12001` indicates that the values is greater than 1200 hPa. + * The value shall be set to: + * - `2999` indicates that the applicable value is less than 29990 Pa, + * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, + * - `12001` indicates that the values is greater than 120000 Pa, * - `12002` indicates that the information is not available. * * @category: Basic information - * @unit: 0.1 hPa + * @unit: 10 Pascal * @revision: Created in V2.1.1 */ BarometricPressure ::= INTEGER{ @@ -475,9 +495,9 @@ BarometricPressure ::= INTEGER{ /** * This DE indicates the cardinal number of bogies of a train. * -* The value shall be set to: - * - `n (n > 1 and n < 100)` indicates that the train has n x bogie - * - `100`indicates that the number of bogie is out of range. + * The value shall be set to: + * - `n (n > 1 and n < 100)` indicates that the train has n x bogies, + * - `100`indicates that the number of bogies is out of range, * - `101` the information is unavailable. * * @unit: Number of bogies @@ -503,14 +523,14 @@ CardinalNumber1B ::= INTEGER(0..255) * @category: Basic information * @revision: Created in V2.1.1 */ -CardinalNumber4b ::= INTEGER(0..15) +CardinalNumber3b ::= INTEGER(1..8) /** - * This DE represents an angle value described in a local Cartesian coordinate system, counted positive in + * This DE represents an angle value described in a local Cartesian coordinate system, per default counted positive in * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees. + * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, * - `36001` if the accuracy information is not available. * * The value 3600 shall not be used. @@ -525,58 +545,58 @@ CartesianAngleValue ::= INTEGER { } (0..3601) /** - * This DE represents an angular speed value described in a local Cartesian coordinate system, counted positive in + * This DE represents an angular acceleration value described in a local Cartesian coordinate system, per default counted positive in * a right-hand local coordinate system from the abscissa. * - * The value shall be set to: - * - `-32766` if the speed is equal to or less than 327,66 degrees/s. - * - `n` (`n > -32766` and `n < 32766`) if the speed is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s. - * - `32766` if the speed is greater than 327,65 degrees/s. - * - `32767` if the information is unavailable. + * The value shall be set to: + * - `-255` if the acceleration is equal to or less than -255 degrees/s2, + * - `n` (`n > -255` and `n < 255`) if the acceleration is equal to or less than n x 1 degree/s2, + and greater than `(n-1)` x 0,01 degrees/s2, + * - `255` if the acceleration is greater than 254 degrees/s2, + * - `256` if the information is unavailable. * - * @unit 0,01 degrees/s + * @unit: degree/s2 (degrees per second squared) * @category: Kinematics information * @revision: Created in V2.1.1 */ -CartesianAngularSpeedValue ::= INTEGER { - negativeOutofRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) +CartesianAngularAccelerationComponentValue ::= INTEGER { + negativeOutofRange (-255), + positiveOutOfRange (255), + unavailable (256) +} (-255..256) /** - * This DE represents an angular acceleration value described in a local Cartesian coordinate system, counted positive in + * This DE represents an angular velocity component described in a local Cartesian coordinate system, per default counted positive in * a right-hand local coordinate system from the abscissa. * - * The value shall be set to: - * - `-32766` if the acceleration is equal to or less than 327,66 degrees/s2 - * - `n` (`n > -32766` and `n < 32766`) if the acceleration is equal to or less than n x 0,01 degrees/s2, - and greater than `(n-1)` x 0,01 degrees/s2. - * - `32766` if the acceleration is greater than 327,65 degrees/s2 - * - `32767` if the information is unavailable + * The value shall be set to: + * - `-255` if the velocity is equal to or less than -255 degrees/s, + * - `n` (`n > -255` and `n < 255`) if the velocity is equal to or less than n x 1 degree/s, and greater than (n-1) x 1 degree/s, + * - `255` if the velocity is greater than 254 degrees/s, + * - `256` if the information is unavailable. * - * @unit 0,01 degrees/s2 (degrees per second squared) + * @unit: degree/s * @category: Kinematics information * @revision: Created in V2.1.1 */ -CartesianAngularAccelerationValue ::= INTEGER { - negativeOutofRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) +CartesianAngularVelocityComponentValue ::= INTEGER { + negativeOutofRange (-255), + positiveOutOfRange (255), + unavailable (256) +} (-255..256) /** *The DE represents the value of the cause code of an event. * * The value shall be set to: - * - 0 - - reserved for future use, + * - 0 - reserved for future use, * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, * - 2 - `accident` - in case the type of event is a road accident, * - 3 - `roadworks` - in case the type of event is roadwork, * - 4 - reserved for future usage, * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any - * blocking of a road, partial or total, which has not been adequately - * secured and signposted, + * blocking of a road, partial or total, which has not been adequately + * secured and signposted, * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, * - 7 - `aquaplaning` - danger of aquaplaning on the road, * - 8 - reserved for future usage, @@ -616,27 +636,21 @@ CauseCodeType ::= INTEGER { trafficCondition (1), accident (2), roadworks (3), - impassability (5), adverseWeatherCondition-Adhesion (6), aquaplaning (7), - hazardousLocation-SurfaceCondition (9), hazardousLocation-ObstacleOnTheRoad (10), hazardousLocation-AnimalOnTheRoad (11), humanPresenceOnTheRoad (12), - wrongWayDriving (14), rescueAndRecoveryWorkInProgress (15), - adverseWeatherCondition-ExtremeWeatherCondition (17), adverseWeatherCondition-Visibility (18), adverseWeatherCondition-Precipitation (19), violence (20), - slowVehicle (26), dangerousEndOfQueue (27), - vehicleBreakdown (91), postCrash (92), humanProblem (93), @@ -650,7 +664,12 @@ CauseCodeType ::= INTEGER { } (0..255) /** - * This DF represents the value of a cartesian coordinate with a range of -30,93 meters to +10,00 meters. + * This DF represents the value of a cartesian coordinate with a range of -30,94 metres to +10,00 metres. + * + * The value shall be set to: + * - `3094` if the longitudinal offset is out of range, i.e. less than or equal to -30,94 metres, + * - `n (n > -3 094 and n < 1 001)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `1001` if the longitudinal offset is out of range, i.e. greater than 10 metres. * * @unit 0,01 m * @category: Basic information @@ -662,7 +681,12 @@ CartesianCoordinateSmall::= INTEGER { } (-3094..1001) /** - * This DF represents the value of a cartesian coordinate with a range of -327,68 to + 327,67 meters. + * This DF represents the value of a cartesian coordinate with a range of -327,68 metres to + 327,66 metres. + * + * The value shall be set to: + ` - `-32 768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres, + * - `n (n > -32 768 and n < 32 767)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `32 767` if the longitudinal offset is out of range, i.e. greater than + 327,66 metres. * * @unit 0,01 m * @category: Basic information @@ -674,8 +698,13 @@ CartesianCoordinate::= INTEGER{ } (-32768..32767) /** - * This DF represents the value of a cartesian coordinate with a range of -1 310,72 to + 1 310,71 meters. + * This DF represents the value of a cartesian coordinate with a range of -1 310,72 metres to + 1 310,70 metres. * + * The value shall be set to: + ` - `-131072` if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres, + * - `n (n > 131 072 and n < 131 071)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `131 071` if the longitudinal offset is out of range, i.e. greater than + 1 310,70 metres. + * * @unit 0,01 m * @category: Basic information * @revision: Created in V2.1.1 @@ -690,7 +719,7 @@ CartesianCoordinateLarge::= INTEGER{ * * @category: Communication information * @revision: V1.3.1 - * @note: this DE is not in use anymore and is deprecated. + * @note: this DE is deprecated and shall not be used anymore. */ CenDsrcTollingZoneID::= ProtectedZoneId @@ -698,13 +727,13 @@ CenDsrcTollingZoneID::= ProtectedZoneId * This DE indicates the reason why a cluster leader intends to break up the cluster. * * The value shall be set to: - * - 0 - `notProvided` - if the information is not provided. - * - 1 - `clusteringPurposeCompleted` - if the cluster purposes has been completed. - * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box. - * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster. - * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps. + * - 0 - `notProvided` - if the information is not provided, + * - 1 - `clusteringPurposeCompleted` - if the cluster purpose has been completed, + * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box, + * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster, + * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps, * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. - * - 6 to 15 - reserved for future use + * - 6 to 15 - are reserved for future use. * * @category: Cluster information * @revision: Created in V2.1.1 @@ -723,16 +752,16 @@ ClusterBreakupReason ::= ENUMERATED { * This DE indicates the reason why a cluster participant is leaving the cluster. * * The value shall be set to: - * - 0 - `notProvided ` - if the information is not provided. - * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore. - * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbounded by the leader. - * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box. - * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of adefined range. - * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster. - * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure. - * - 7 - `failedJoin` - if the participant failed to join the cluster. + * - 0 - `notProvided ` - if the information is not provided, + * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore, + * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbanded by the leader, + * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box, + * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of a defined range, + * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster, + * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure, + * - 7 - `failedJoin` - if the participant failed to join the cluster, * - 8 - `safetyCondition` - if a safety condition applies. - * - 9 to 15 - reserved for future use + * - 9 to 15 - are reserved for future use * * @category: Cluster information * @revision: Created in V2.1.1 @@ -760,7 +789,7 @@ ClusterLeaveReason ::= ENUMERATED { * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users - * e.g. pedestrians or bicycles, + * e.g. pedestrians or bicycles. * - 5-255 - are reserved for future usage. * * @category: Traffic information @@ -778,53 +807,51 @@ CollisionRiskSubCauseCode ::= INTEGER { * This DE represents a confidence level in percentage. * * The value shall be set to: - * - * - `0` : in case the confidence value is unknown but the reported value is valid. - * - `n (n > 0 and n < 101)` : for the confidence value in %. - * - `101` : in case the confidence value is not available. + * - `n (n > 0 and n < 101)` : for the confidence level in %, + * - `101` : in case the confidence level is not available. * * @unit Percent * @category: Basic information * @revision: Created in V2.1.1 */ ConfidenceLevel ::= INTEGER { - unknown (0), unavailable (101) -} (0..101) +} (1..101) /** - * This DE represents the absolute accuracy of measurement to a confidence level of 95%. + * This DE indicates the coordinate confidence value which represents the estimated absolute accuracy of a position coordinate with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n` (`n > 0` and `n < 4094`) if the accuracy is is equal to or less than n x 0,01 meter, and greater than (n-1) x 0,1 meter. - * - `4094` if the accuracy information is greater than 40,93 meter. - * - `4095` if the accuracy information is not available. + * - `n` (`n > 0` and `n < 4095`) if the confidence value is is equal to or less than n x 0,01 metre, and greater than (n-1) x 0,01 metre, + * - `4095` if the confidence value is greater than 40,94 metres, + * - `4096` if the confidence value is not available. * * @unit 0,01 m * @category: Basic information * @revision: Created in V2.1.1 */ CoordinateConfidence ::= INTEGER { - outOfRange (4094), - unavailable (4095) -} (0..4095) + outOfRange (4095), + unavailable (4096) +} (1..4096) /** * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. * - * The following values are specified. - * - `-100` indicates full negative correlation - * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100. - * - `0` indicates not correlated or unavailable - * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100. - * - `100` indicates full positive correlation - * - `101` indicates correlation is unavailable. + * The value shall be set to: + * - `-100` in case of full negative correlation, + * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100, + * - `0` in case of no correlation, + * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100, + * - `100` in case of full positive correlation, + * - `101` in case the correlation information is unavailable. * * @unit: the value is scaled by 100 * @category: Sensing information * @revision: Created in V2.1.1 */ -CorrelationRowValue ::= INTEGER { +CorrelationCellValue ::= INTEGER { full-negative-correlation (-100), no-correlation (0), full-positive-correlation (100), @@ -832,11 +859,11 @@ CorrelationRowValue ::= INTEGER { } (-100..101) /** - * The DE describes whether the yaw rate is used to calculate the curvature for a reported curvature value. + * The DE describes whether the yaw rate is used to calculate the curvature for a curvature value. * * The value shall be set to: - * - 0 - `yawRateUsed` - if the yaw rate is used. - * - 1 - `yawRateNotUsed` - if the yaw rate is not used. + * - 0 - `yawRateUsed` - if the yaw rate is used, + * - 1 - `yawRateNotUsed` - if the yaw rate is not used, * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. * * @category: Vehicle information @@ -850,30 +877,31 @@ CurvatureCalculationMode ::= ENUMERATED { } /** - * This DE describes the absolute accuracy range of a reported curvature value for a confidence level of 95%. + * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy range of a curvature value with a confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - 0 - `onePerMeter-0-00002` if the accuracy is less than or equal to 0,00002 m-1. - * - 1 - `onePerMeter-0-0001` if the accuracy is less than or equal to 0,0001 m-1. - * - 2 - `onePerMeter-0-0005` if the accuracy is less than or equal to 0,0005 m-1. - * - 3 - `onePerMeter-0-002` if the accuracy is less than or equal to 0,002 m-1. - * - 4 - `nePerMeter-0-01` if the accuracy is less than or equal to 0,01 m-1. - * - 5 - `nePerMeter-0-1` if the accuracy is less than or equal to 0,1 m-1. - * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 0,1 m-1. - * - 7 - `unavailable` if the information is not available. - * - * @note: The fact that a curvature value is received with confidence set to `unavailable(7)` can be caused by + * - 0 - `onePerMeter-0-00002` if the confidence value is less than or equal to 0,00002 m-1, + * - 1 - `onePerMeter-0-0001` if the confidence value is less than or equal to 0,0001 m-1 and greater than 0,00002 m-1, + * - 2 - `onePerMeter-0-0005` if the confidence value is less than or equal to 0,0005 m-1 and greater than 0,0001 m-1, + * - 3 - `onePerMeter-0-002` if the confidence value is less than or equal to 0,002 m-1 and greater than 0,0005 m-1, + * - 4 - `nePerMeter-0-01` if the confidence value is less than or equal to 0,01 m-1 and greater than 0,002 m-1, + * - 5 - `nePerMeter-0-1` if the confidence value is less than or equal to 0,1 m-1 and greater than 0,01 m-1, + * - 6 - `outOfRange` if the confidence value is out of range, i.e. greater than 0,1 m-1, + * - 7 - `unavailable` if the confidence value is not available. + * + * @note: The fact that a curvature value is received with confidence value set to `unavailable(7)` can be caused by * several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported curvature value may be valid and used by the application. + * In all 3 cases above, the curvature value may be valid and used by the application. * - * @note: If a curvature value is received and its confidence is set to 'outOfRange(6)', it means that the reported curvature value is not valid + * @note: If a curvature value is received and its confidence value is set to 'outOfRange(6)', it means that the curvature value is not valid * and therefore cannot be trusted. Such value is not useful for the application. * * @category: Vehicle information - * @revision: description revised in V2.1.1 + * @revision: Description revised in V2.1.1 */ CurvatureConfidence ::= ENUMERATED { onePerMeter-0-00002 (0), @@ -891,17 +919,17 @@ CurvatureConfidence ::= ENUMERATED { * ``` * Value = 1 / Radius * 10000 * ``` - * wherein radius is the vehicle turning curve radius in meters. + * wherein radius is the vehicle turning curve radius in metres. * * Positive values indicate a turning curve to the left hand side of the driver. * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. * * The value shall be set to: - * - `-1023` for values smaller than -1023. - * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1). - * - `0` when the vehicle is moving straight. - * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1). - * - `1022`, for values greater than 1021. + * - `-1023` for values smaller than -1023, + * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1), + * - `0` when the vehicle is moving straight, + * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1), + * - `1022`, for values greater than 1021, * - `1023`, if the information is not available. * * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. @@ -920,7 +948,7 @@ CurvatureValue ::= INTEGER { /** * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. * - * The following value are specified: + * The value shall be set to: * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, @@ -941,7 +969,7 @@ DangerousEndOfQueueSubCauseCode ::= INTEGER { /** * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. - * The value is assigned according to `_class_` and `_division_` definitions of dangerous goods as specified in part II, + * The value is assigned according to `class` and `division` definitions of dangerous goods as specified in part II, * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.3]. * * @@ -979,7 +1007,7 @@ DangerousGoodsBasic::= ENUMERATED { * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, - * - 4 - `absEngaged` - in case Anti-lock braking system (ABS) is engaged, + * - 4 - `absEngaged` - in case Anti-lock Braking System (ABS) is engaged, * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, @@ -1004,14 +1032,14 @@ DangerousSituationSubCauseCode ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `-12700` for values equal to or lower than -127 metres. - * - `n` (`n > -12700` and `n <= 0) for altitude offset n x 0,01 meter below the reference position. - * - `0` for no altitudinal offset. - * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 meter above the reference position. - * - `12799` for values equal to or greater than 127,99 metres. - * - `12800` when the information is unavailable. - * - * @unit: 0.01 metre + * - `-12 700` for values equal to or lower than -127 metres, + * - `n` (`n > -12 700` and `n <= 0) for altitude offset n x 0,01 metre below the reference position, + * - `0` for no altitudinal offset, + * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 metre above the reference position, + * - `12 799` for values equal to or greater than 127,99 metres, + * - `12 800` when the information is unavailable. + * + * @unit: 0,01 metre * @category: GeoReference information * @revision: editorial update in V2.1.1 */ @@ -1026,12 +1054,12 @@ DeltaAltitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the south from the reference position. - * - `0` for no latitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the north from the reference position. - * - `131072` when the information is unavailable. + * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, + * - `0` for no latitudinal offset, + * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the north from the reference position, + * - `131 072` when the information is unavailable. * - * @unit: 0.1 microdegree + * @unit: 10^-7 degree * @category: GeoReference information * @revision: editorial update in V2.1.1 */ @@ -1044,12 +1072,12 @@ DeltaLatitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131071` and `n < 0`) for offset n x 0,1 microdegrees towards the west from the reference position. - * - `0` for no longitudinal offset. - * - `n` (`n > 0` and `n < 131072`) for offset n x 0,1 microdegrees towards the east from the reference position. - * - `131072` when the information is unavailable. + * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, + * - `0` for no longitudinal offset, + * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the east from the reference position, + * - `131 072` when the information is unavailable. * - * @unit: 0.1 microdegree + * @unit: 10^-7 degree * @category: GeoReference information * @revision: editorial update in V2.1.1 */ @@ -1057,15 +1085,6 @@ DeltaLongitude ::= INTEGER { unavailable (131072) } (-131071..131072) -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 0,01 s - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) - /** * This DE represents a difference in time with respect to a reference time. @@ -1073,7 +1092,7 @@ DeltaTimeHundredthOfSecond::= INTEGER (1..65535, ...) * * @unit: 0,001 s * @category: Basic information - * @revision: Created in V2.1.1 from the DE TransmissionInterval + * @revision: Created in V2.1.1 from the DE TransmissionInterval in [i.2] */ DeltaTimeMilliSecondPos ::= INTEGER (1..10000) @@ -1088,14 +1107,16 @@ DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) /** * This DE represents a difference in time with respect to a reference time. - * It can be interpreted as the first 8 bytes of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, + * It can be interpreted as the first 8 bits of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, * multiply by 256 (i.e. append a `00` byte) * * @unit: 256 * 0,001 s * @category: Basic information * @revision: Created in V2.1.1 */ -DeltaTimeQuarterSecond::= INTEGER (1..255) +DeltaTimeQuarterSecond::= INTEGER { + unavailable (255) +} (1..255) /** * This DE represents a difference in time with respect to a reference time. @@ -1117,15 +1138,14 @@ DeltaTimeTenthOfSecond::= INTEGER { */ DeltaTimeSecond ::= INTEGER (0..86400) - /** * This DE indicates a direction with respect to a defined reference direction. * Example: a reference direction may be implicitly defined by the definition of a geographical zone. * * The value shall be set to: - * - 0 - `sameDirection` - to indicate the same direction as the reference direction. - * - 1 - `oppositeDirection` - to indicateopposite direction as the reference direction. - * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction. + * - 0 - `sameDirection` - to indicate the same direction as the reference direction, + * - 1 - `oppositeDirection` - to indicate opposite direction as the reference direction, + * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction, * - 3 - `unavailable` - to indicate that the information is unavailable. * * @category: GeoReference information @@ -1142,8 +1162,8 @@ Direction::= INTEGER{ * This DE indicates in which direction something is moving. * * The value shall be set to: - * - 0 - `forward` - to indicate it is moving forward. - * - 1 - `backwards` - to indicate it is moving backwards. + * - 0 - `forward` - to indicate it is moving forward, + * - 1 - `backwards` - to indicate it is moving backwards, * - 2 - `unavailable` - to indicate that the information is unavailable. * * @category: Kinematics information @@ -1158,7 +1178,7 @@ DriveDirection ::= ENUMERATED { /** * This DE indicates whether a driving lane is open to traffic. * - * A lane is counted from inside border of the road excluding the hardshoulder. The size of the bit string shall + * A lane is counted from inside border of the road excluding the hard shoulder. The size of the bit string shall * correspond to the total number of the driving lanes in the carriageway. * * The numbering is matched to @ref LanePosition. @@ -1166,7 +1186,7 @@ DriveDirection ::= ENUMERATED { * * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. * - * @note:Hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. + * @note: hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. * * @category: Traffic information * @revision: V1.3.1 @@ -1187,7 +1207,7 @@ EmbarkationStatus ::= BOOLEAN * The right-of-priority bit shall be set to `1` if the corresponding right is requested. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way. + * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way, * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. * * @category: Traffic information @@ -1202,11 +1222,11 @@ EmergencyPriority ::= BIT STRING { * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". * * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event - * is unavailable, - * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, - * - 2 -`prioritizedVehicleApproaching` - in case a prioritized vehicle (e.g. bus) is approaching, - * - 3-255 - reserved for future usage. + * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event + * is unavailable, + * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, + * - 2 - `prioritizedVehicleApproaching` - in case a prioritized vehicle is approaching, + * - 3-255 - reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -1221,12 +1241,12 @@ EmergencyVehicleApproachingSubCauseCode ::= INTEGER { * This DE indicated the type of energy being used and stored in vehicle. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle. - * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle. - * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle. - * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle. - * - 4 - `diesel` - when diesel is being used and stored in vehicle. - * - 5 - `gasoline` - when gasoline is being used and stored in vehicle. + * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle, + * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle, + * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle, + * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle, + * - 4 - `diesel` - when diesel is being used and stored in vehicle, + * - 5 - `gasoline` - when gasoline is being used and stored in vehicle, * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. * * - Otherwise, the corresponding bit shall be set to `0`. @@ -1284,13 +1304,13 @@ EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} * This DE describes the status of the exterior light switches of a vehicle. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on. - * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on. - * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on. - * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on. - * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on. - * - 5 - `reverseLightOn` - when the reverse light switch is on. - * - 6 - `fogLightOn` - when the tail fog light switch is on. + * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on, + * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on, + * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on, + * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on, + * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on, + * - 5 - `reverseLightOn` - when the reverse light switch is on, + * - 6 - `fogLightOn` - when the tail fog light switch is on, * - 7 - `parkingLightsOn` - when the parking light switch is on. * * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. @@ -1325,7 +1345,7 @@ ExteriorLights ::= BIT STRING { * This means that generationDeltaTime = TimestampIts mod 65 536. * * @category Time information - * @revision: Created in V2.1.1 based on EN 302 637-2 + * @revision: Created in V2.1.1 based on ETSI TS 103 900 [i.1] */ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) @@ -1334,8 +1354,8 @@ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) * (e.g. for stopping or for driving) or closed for all vehicles. * * The value shall be set to: - * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations. - * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case. + * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations, + * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case, * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. * * @category: Traffic information @@ -1344,7 +1364,8 @@ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) HardShoulderStatus ::= ENUMERATED { availableForStopping (0), closed (1), - availableForDriving (2)} + availableForDriving (2) +} /** * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. @@ -1353,9 +1374,9 @@ HardShoulderStatus ::= ENUMERATED { * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, * - 1 - `wildAnimals` - in case wild animals are detected on the road, * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, - * - 3 - `smallAnimals` - in case small size animal is detected on the road, - * - 4 - `largeAnimals` - in case large size animal is detected on the road, - * - 5-255 - reserved for future usage. + * - 3 - `smallAnimals` - in case small size animals are detected on the road, + * - 4 - `largeAnimals` - in case large size animals are detected on the road. + * - 5-255 - are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -1377,7 +1398,7 @@ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, - * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves stating with a right turn curve, + * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves starting with a right turn curve. * - 6-255 - are reserved for future usage. * * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass @@ -1406,8 +1427,8 @@ HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { * - 4 - `bigObjects` - in case the detected obstacles are big objects, * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, * - 6 - `hubCaps` - in case the detected obstacles are hub caps, - * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles, - * - 8-255 - reserved for future usage. + * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles. + * - 8-255 - are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -1437,8 +1458,8 @@ The value shall be set to: * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, * - 9 - `fallingIce` - in case road surface damage is due to falling ice, - * - 10 - `fire` - in case there is fire on or near to the road surface, - * - 11-255 - reserved for future usage. + * - 10 - `fire` - in case there is fire on or near to the road surface. + * - 11-255 - are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -1458,59 +1479,67 @@ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the absolute accuracy of a reported heading value for a confidence level of 95 %. + * This DE indicates the heading confidence value which represents the estimated absolute accuracy of a heading value with a confidence level of 95 %. * -The value shall be set to: - * - `1` if the heading accuracy is equal to or less than 0,1 degree, - * - `n (n > 1 and n < 125)` if the heading accuracy is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, - * - `125` if the heading accuracy is equal to or less than 12,5 degrees, - * - `126` if the heading accuracy is out of range, i.e. greater than 12,5 degrees, - * - `127` if the heading accuracy information is not available. + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, + * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, + * - `127` if the confidence value information is not available. * - * @note: The fact that a value is received with confidence set to `unavailable(127)` can be caused by several reasons, + * @note: The fact that a value is received with confidence value set to `unavailable(127)` can be caused by several reasons, * such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported heading value may be valid and used by the application. + * In all 3 cases above, the heading value may be valid and used by the application. * - * @note: If a heading value is received and its confidence is set to `outOfRange(126)`, it means that the reported + * @note: If a heading value is received and its confidence value is set to `outOfRange(126)`, it means that the * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleConfidence instead. + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84AngleConfidence instead. * * @unit: 0,1 degree * @category: GeoReference information * @revision: Description revised in V2.1.1 */ -HeadingConfidence ::= Wgs84AngleConfidence +HeadingConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) /** -HeadingValue * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. * - * @note: this DE is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84AngleValue instead. + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84AngleValue instead. * * Unit: 0,1 degree * Categories: GeoReference information * @revision: Description revised in V2.1.1 (usage of value 3600 specified) */ -HeadingValue ::= Wgs84AngleValue +HeadingValue ::= INTEGER { + wgs84North (0), + wgs84East (900), + wgs84South (1800), + wgs84West (2700), + doNotUse (3600), + unavailable (3601) +} (0..3601) /** * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle * rear to front). * * The value shall be set to: - * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 meter and more than (n-1) x 0,01 meter. - * - `99` if the height is out of range, i.e. equal to or greater than 98 cm. + * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `99` if the height is out of range, i.e. equal to or greater than 0,98 m, * - `100` if the height information is not available. * - * @unit 0,01 meter + * @unit 0,01 metre * @category Vehicle information * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) */ HeightLonCarr ::= INTEGER { + outOfRange(99), unavailable(100) } (1..100) @@ -1519,13 +1548,13 @@ HeightLonCarr ::= INTEGER { * * The value shall be set to: * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, - * - 1 - `childrenOnRoadway` - in case children are detected on the road event, + * - 1 - `childrenOnRoadway` - in case children are detected on the road, * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, - * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road, + * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road. * - 4-255 - are reserved for future usage. * * @category: Traffic information - * @revision: V1.3.1 + * @revision: editorial revision in V2.1.1 */ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { unavailable (0), @@ -1540,7 +1569,7 @@ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { * The value shall be set to: * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, - * - 2 - `heartProblem` - in case human problem is due to heart problem, + * - 2 - `heartProblem` - in case human problem is due to heart problem. * - 3-255 - reserved for future usage. * * @category: Traffic information @@ -1572,12 +1601,12 @@ Identifier2B ::= INTEGER (0..65535) * This DE represents the quality level of provided information. * * The value shall be set to: - * - 0 - if the information is unavailable. - * - 1 - if the quality level is lowest - * - `n (n > 1 and n < 7)` if the quality level is n. - * - 7 - if the quality level is highest - * @note: Definition of quality level is out of scope of the present document. + * - `0` if the information is unavailable, + * - `1` if the quality level is lowest, + * - `n (n > 1 and n < 7)` if the quality level is n, + * - `7` if the quality level is highest. * + * @note: Definition of quality level is out of scope of the present document. * @category: Basic information * @revision: Editorial update in V2.1.1 */ @@ -1587,15 +1616,14 @@ InformationQuality ::= INTEGER (0..7) * This DE defines the type of an interference management zone, so that an ITS-S can * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). * It is an extension of the type @ref ProtectedZoneType. - * * The value shall be set to: - * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14] - * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14] - * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling - * - 3 - `urbanRail(3)` - as specified in ETSI TS 103 724 [i.13], clause 7 - * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.13], clause 7 - * - 5 - `fixedLinks(5)` - as specified in ETSI TS 103 724 [i.13], clause 7 + * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14], + * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14], + * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling, + * - 3 - `urbanRail` - as specified in ETSI TS 103 724 [i.13], clause 7, + * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.13], clause 7, + * - 5 - `fixedLinks` - as specified in ETSI TS 103 724 [i.13], clause 7. * * @category: Communication information * @revision: Created in V2.1.1 @@ -1626,7 +1654,7 @@ InterferenceManagementZoneType ::= ENUMERATED { * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 * - 10 - `specialPassengerCar` - term No 3.1.1.9 - * - 11 - `bus (11)` - term No 3.1.2 + * - 11 - `bus` - term No 3.1.2 * - 12 - `minibus` - term No 3.1.2.1 * - 13 - `urbanBus` - term No 3.1.2.2 * - 14 - `interurbanCoach` - term No 3.1.2.3 @@ -1710,15 +1738,15 @@ Iso3833VehicleType ::= INTEGER { * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. * * For right-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road. - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane. - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction. + * - `-1` if the position is off, i.e. besides the road, + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane, + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction, * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). * * For left-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road. - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane. - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction. + * - `-1` if the position is off, i.e. besides the road, + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane, + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction, * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. @@ -1740,33 +1768,33 @@ LanePosition ::= INTEGER { * This DE represents the type of a lane. * * The value shall be set to: - * - 0 - `traffic` - Lane dedicated to the movement of vehicles. - * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning. - * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow. - * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it. - * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it. - * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic. - * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic. - * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc. - * - 8 - `bus` - Lane dedicated to movement of buses providing public transport. - * - 9 - `taxi` - Lane dedicated to movement of taxis. - * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane. - * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll. - * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths. - * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles. - * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median - separating the two directional carriageways of the highway. - * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings. - * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys. - * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes. - * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder. + * - 0 - `traffic` - Lane dedicated to the movement of vehicles, + * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning, + * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow, + * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it, + * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it, + * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic, + * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic, + * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc., + * - 8 - `bus` - Lane dedicated to movement of buses providing public transport, + * - 9 - `taxi` - Lane dedicated to movement of taxis, + * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane, + * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll, + * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths, + * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles, + * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median, + separating the two directional carriageways of the highway, + * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings, + * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys, + * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes, + * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder, * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between - the road surface edge and the boundary of a road. + the road surface edge and the boundary of a road, * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. - * - values 21 to 30 reserved for future use + * - values 21 to 30 reserved for future use. * * @category: Road topology information - * @revision: V2.1.1 + * @revision: Created in V2.1.1 */ LaneType::= INTEGER{ traffic (0), @@ -1796,7 +1824,14 @@ LaneType::= INTEGER{ /** * This DE represents the width of a lane measured at a defined position. * - * @unit: 0.01 meter + * The value shall be set to: + * - `n (n >= 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `1022` if the lane width is out of range, i.e. greater than 10,21 m, + * - `1023` if the lane width information is not available. + * + * The value 0 shall not be used. + * + * @unit: 0,01 metre * @category: GeoReference information * @revision: Created in V2.1.1 */ @@ -1805,14 +1840,15 @@ LaneWidth::= INTEGER (0..1023) /** * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or * in south hemisphere. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >= -900000000 and n < 0)`, i.e. negative values for latitudes south of the Equator. - * - `0` is used for the latitude of the equator. - * - `n (n > 0 and n < 900000001)`, i.e. positive values for latitudes north of the Equator. + * - `n (n >= -900 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, + * - `0` is used for the latitude of the equator, + * - `n (n > 0 and n < 900 000 001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator, * - `900 000 001` when the information is unavailable. * - * @unit: 0.1 microdegree + * @unit: 10^-7 degree * @category: GeoReference information * @revision: Editorial update in V2.1.1 */ @@ -1823,31 +1859,35 @@ Latitude ::= INTEGER { /** * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - + * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. + * - `-160` for acceleration values equal to or less than -16 m/s2, * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation - * with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. + * with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation - with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. + with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, * - `161` when the data is unavailable. * * @note: the empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * - * @unit: 0.1 m/s2 - * @category Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the more generic type AccelerationValue. + * @unit: 0,1 m/s2 + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). */ -LateralAccelerationValue ::= AccelerationValue +LateralAccelerationValue ::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) +} (-160 .. 161) /** * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lightBarActivated` - when the light bar is activated. + * - 0 - `lightBarActivated` - when the light bar is activated, * - 1 - `sirenActivated` - when the siren is activated. * * Otherwise, it shall be set to 0. @@ -1863,16 +1903,17 @@ LightBarSirenInUse ::= BIT STRING { /** * This DE represents the absolute geographical longitude in a WGS84 coordinate system, providing a range of 180 degrees * to the east or to the west of the prime meridian. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > -1800000000 and n < 0)`, i.e. negative values for longitudes to the west. - * - `0` to indicate the prime meridian. - * - `n (n > 0 and n < 1800000001)`, i.e. positive values for longitudes to the east. + * - `n (n > -1 800 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for longitudes to the west, + * - `0` to indicate the prime meridian, + * - `n (n > 0 and n < 1 800 000 001)` x 10^-7 degree, i.e. positive values for longitudes to the east, * - `1 800 000 001` when the information is unavailable. * * The value -1800000000 shall not be used. * - * @unit: 0.1 microdegree + * @unit: 10^-7 degree * @category: GeoReference information * @revision: Description revised in V2.1.1 */ @@ -1883,43 +1924,56 @@ Longitude ::= INTEGER { /** * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * -* The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. + * The value shall be set to: + * - `-160` for acceleration values equal to or less than -16 m/s2, + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2 + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, * - `161` when the data is unavailable. * * This acceleration is along the tangent plane of the road surface and does not include gravity components. - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * @unit: 0,1 m/s2 * @category: Vehicle information - * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). This type is now based on the generic type AccelerationValue. + * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). T */ -LongitudinalAccelerationValue::= AccelerationValue +LongitudinalAccelerationValue::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) +} (-160 .. 161) /** - * This DE represents the longitudinal offset of the map-matched position of a particular object along the - * matched lane, beginning from the lane's starting point. + * This DE represents the longitudinal offset of a map-matched position along a matched lane, beginning from the lane's starting point. * - * @unit 0,1 m + * The value shall be set to: + * - `n (n >= 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `32 766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m, + * - `32 767` if the longitudinal offset information is not available. + * + * @unit 0,1 metre * @category: Road topology information * @revision: Created in V2.1.1 */ -LongitudinalLanePositionValue ::= INTEGER (0..32767) +LongitudinalLanePositionValue ::= INTEGER { + outOfRange(32766), + unavailable(32767) +}(0..32767) /** - * This DE represents the absolute accuracy of longitudinal lane position measurement to a confidence level of 95%. + * This DE indicates the longitudinal lane position confidence value which represents the estimated accuracy of longitudinal lane position measurement with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 1022)` if the accuracy is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m. - * - `1022` if the accuracy is out of range i.e. greater than 102,1 m. - * - `1023` if the data is unavailable. + * - `n (n > 0 and n < 1 022)` if the confidence value is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, + * - `1 022` if the confidence value is out of range i.e. greater than 102,1 m, + * - `1 023` if the confidence value is unavailable. * - * @unit 0,1 meter + * @unit 0,1 metre * @category: Road topology information * @revision: Created in V2.1.1 */ @@ -1928,6 +1982,46 @@ LongitudinalLanePositionConfidence ::= INTEGER { unavailable (1023) } (0..1023) + +/** + * This DE indicates the components of an @ref PerceivedObject that are included in the @ref LowerTriangularPositiveSemidefiniteMatrix. + * + * The corresponding bit shall be set to 1 if the component is included: + * - 0 - `xCoordinate` - when the component xCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 1 - `yCoordinate` - when the component yCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 2 - `zCoordinate` - when the component zCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 3 - `xVelocityOrVelocityMagnitude` - when the component xVelocity or VelocityMagnitude of the component @ref VelocityPolarWithZ is included, + * - 4 - `yVelocityOrVelocityDirection` - when the component yVelocity or VelocityDirection of the component @ref VelocityPolarWithZ is included + * - 5 - `zVelocity` - when the component zVelocity of the component @ref VelocityPolarWithZ is included, + * - 6 - `xAccelOrAccelMagnitude` - when the component xAcceleration of the component @ref AccelerationCartesian or the component AccelerationMagnitude of the component @ref AccelerationPolarWithZ is included, + * - 7 - `yAccelOrAccelDirection` - when the component yAcceleration of the component @ref AccelerationCartesian or the component AccelerationDirection of the component @ref AccelerationPolarWithZ is included, + * - 8 - `zAcceleration` - when the component zAcceleration of the component @ref AccelerationCartesian or of the component @ref AccelerationPolarWithZ is included, + * - 9 - `zAngle` - when the component zAngle is included, + * - 10 - `yAngle` - when the component yAngle is included, + * - 11 - `xAngle` - when the component xAngle is included, + * - 12 - `zAngleRate` - when the component zAngleRate is included. + * + * Otherwise, it shall be set to 0. + * + * @category Sensing information + * @revision: Created in V2.1.1 + */ +MatrixIncludedComponents::= BIT STRING{ + xPosition (0), + yPosition (1), + zPosition (2), + xVelocityOrVelocityMagnitude (3), + yVelocityOrVelocityDirection (4), + zSpeed (5), + xAccelOrAccelMagnitude (6), + yAccelOrAccelDirection (7), + zAcceleration (8), + zAngle (9), + yAngle (10), + xAngle (11), + zAngleRate (12) +} (SIZE(13,...)) + /** * This DE represents the type of facility layer message. * @@ -1945,11 +2039,15 @@ LongitudinalLanePositionConfidence ::= INTEGER { * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.9], * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.17], * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.15], - * - 14 - `cpm` - for Collective Perception Message (CPM) as specified in ETSI TS 103 324 [i.18], + * - 14 - `cpm` - reserved for Collective Perception Message (CPM), * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], - * - 17 - `dsm` - for Diagnosis, logging and Status Message (DSM) as specified in ETSI TS 103 693 [i.19]. - * - 18-255 - reserved for future usage, + * - 17 - `dsm` - reserved for Diagnosis, logging and Status Message, + * - 18 - `pcim` - reserved for Parking Control Infrastructure Message, + * - 19 - `pcvm` - reserved for Parking Control Vehicle Message, + * - 20 - `mcm` - reserved for Manoeuvre Coordination Message, + * - 21 - `pam` - reserved for Parking Availability Message, + * - 22-255 - reserved for future usage. * * @category: Communication information * @revision: Created in V2.1.1 from @ref ItsPduHeader. @@ -1971,16 +2069,20 @@ MessageId::= INTEGER { cpm (14), imzm (15), vam (16), - dsm (17) + dsm (17), + pcim (18), + pcvm (19), + mcm (20), + pam (21) } (0..255) /** * This DE represents the number of occupants in a vehicle. * * The value shall be set to: - * - `n (n > 1 and n < 126)` for the number n of occupants. - * - `126` for values equal to or higher than 126. - * - `127` if information is not available.`. + * - `n (n >= 0 and n < 126)` for the number n of occupants, + * - `126` for values equal to or higher than 125, + * - `127` if information is not available. * * @unit: 1 person * @category: Vehicle information @@ -1992,18 +2094,18 @@ NumberOfOccupants ::= INTEGER { } (0 .. 127) /** - * This DE represents a single-value indication about the overall information quality of a perceived object on the computation. + * This DE represents a single-value indication about the overall information quality of a perceived object. * * The value shall be set to: - * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed. - * - `n (n > 0 and n < 15)` : for the applicable confidence value. - * -`15` : if there is full confidence in the detected ObjectDescriptor. + * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed, + * - `n (n > 0 and n < 15)` : for the applicable confidence value, + * -`15` : if there is full confidence in the detected Object. * * @unit n/a * @category: Sensing information * @revision: Created in V2.1.1 */ -ObjectConfidence ::= INTEGER { +ObjectPerceptionQuality ::= INTEGER { noConfidence (0), fullConfidence (15) } (0..15) @@ -2011,74 +2113,44 @@ ObjectConfidence ::= INTEGER { /** * This DE represents a single dimension of an object. * + * The value shall be set to: + * - `n (n > 0 and n < 255)` if the accuracy is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, + * - `255` if the accuracy is out of range i.e. greater than 25,4 m, + * - `256` if the data is unavailable. + * * @unit 0,1 m * @category: Sensing information * @revision: Created in V2.1.1 */ -ObjectDimensionValue ::= INTEGER (0..1023) +ObjectDimensionValue ::= INTEGER { + outOfRange (255), + unavailable (256) +}(1..256) /** - * This DE represents the accuracy of the provided object dimension value with a confidence level of 95%. + * This DE indicates the object dimension confidence value which represents the estimated absolute accuracy of an object dimension value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 14)` if the dimension accuracy is equal to or less than n x 0,1 meter, and more than (n-1) x 0,1 meter . - * - `11` if the dimension accuracy is out of range i.e. greater than 1 m. - * - `12` if the data is unavailable. + * - `n (n > 0 and n < 31)` if the confidence value is equal to or less than n x 0,1 metre, and more than (n-1) x 0,1 metre, + * - `31` if the confidence value is out of range i.e. greater than 3,0 m, + * - `32` if the confidence value is unavailable. * * @unit 0,1 m * @category: Sensing information * @revision: Created in V2.1.1 */ ObjectDimensionConfidence ::= INTEGER { - outOfRange (14), - unavailable (15) -} (0..15) - -/** - * The DE indicates whether the detected object is classified as a dynamic (i.e. moving) object. - * This value indicates whether an object has the general capability to move, i.e. change its - * position. - * - * The value shall be set to: - * - `0` - dynamic - if the object is moving. - * - `1` - hasBeenDynamic - if the object has been dynamic before, e.g., a car stopping at a traffic light. - * - `2` - static - if the object has been detected to be not moving throughout any previous observation. - * - `3` - unavailable - if the information is unavailable. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDynamicStatus ::= INTEGER { - dynamic (0), - hasBeenDynamic (1), - static (2), - unavailable (3) -} (0..3) - -/** - * This DE indicates the approximate position of the reference point of measurement for the object dimensions using a 9 cell grid. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -ObjectRefPoint ::= INTEGER { - bottomLeft (0), - midLeft (1), - topLeft (2), - bottomMid (3), - midMid (4), - topMid (5), - bottomRight (6), - midRight (7), - topRight (8) -} (0..8) + outOfRange (31), + unavailable (32) +} (1..32) /** * This DE indicates the face or part of a face of a solid object. * * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: - * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object. - * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object. + * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object, + * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object, * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. * * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. @@ -2095,27 +2167,6 @@ ObjectFace ::= ENUMERATED { back (5) } -/** - * This DE represent a lateral position with lane-level resolution on the road reservation, which is not on regular traffic lanes. - * - * The value shall be set to: - * - 0 - `unavailable` - if information on the lane position is unavailable. - * - 1 - `sidewalk` - if the position is on the side-walk. - * - 2 - `parkingLane` - if the position is on an area at the side of the road not intended for travel but for vehicular parking. - * - 3 - `bikeLane` - if the position is on an area reserved for bicycles. - * - 4-15 - reserved for future usage. Value 15 set to "max" in order to bound the size of the encoded field. - * - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -OffRoadLanePosition ::= ENUMERATED { - unavailable (0), - sidewalk (1), - parkingLane (2), - bikeLane (3), - max (15) -} - /** * This DE represents a time period to describe the opening days and hours of a Point of Interest. * (for example local commerce). @@ -2140,40 +2191,46 @@ OrdinalNumber1B ::= INTEGER(0..255) * @category: Basic information * @revision: Created in V2.1.1 */ -OrdinalNumber4b ::= INTEGER(0..15) +OrdinalNumber3b ::= INTEGER(1..8) /** - * This DE indicates the subclass of a detected object for object class "otherSubclass". + * This DE indicates the subclass of a detected object for @ref ObjectClass "otherSubclass". * * The value shall be set to: - * - `0` - unknown - if the subclass is unknown. - * - `1` - roadSideUnit - if the object is a roadside unit. + * - `0` - unknown - if the subclass is unknown. + * - `1` - roadSideUnit - if the object is a roadside unit. + * - `2` - singleObject - if the object is a single object. + * - `3` - multipleObjects - if the object is a group of multiple objects. + * - `4` - bulkMaterial - if the object is a bulk material. * * @category: Sensing information * @revision: Created in V2.1.1 */ OtherSubClass ::= INTEGER { - unknown (0), - roadSideUnit (1) + unknown (0), + roadSideUnit (1), + singleObject (2), + multipleObjects (3), + bulkMaterial (4) } (0..255) /** * This DE represents the recorded or estimated travel time between a position and a predefined reference position. * - * @unit 0.01 second + * @unit 0,01 second * @category GeoReference information - * @revision: same type as in V1.3.1 but now based on a basic type + * @revision: V1.3.1 */ -PathDeltaTime ::= DeltaTimeHundredthOfSecond +PathDeltaTime ::= INTEGER (1..65535, ...) /** * This DE denotes the ability of an ITS-S to provide up-to-date information. * A performance class value is used to describe age of data. The exact values are out of scope of the present document. * * The value shall be set to: - * - `0` if the performance class is unknown. - * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.5] - * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.5] + * - `0` if the performance class is unknown, + * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.5], + * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.5], * - Values in the range `3 to 7` are reserved for future use. * * @category: Vehicle information @@ -2198,18 +2255,18 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * the vehicle bounding box of the empty load vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 meter and 6,2 meters. - * - `62` for values equal to or higher than `6.2 metres`. + * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 metre and 6,2 metres, + * - `62` for values equal to or higher than `6.1 metres`, * - `63` if the information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * * @unit 0,1 metre * @category Vehicle information - * @revision: Editorial update in V2.1.1 + * @revision: description revised in V2.1.1 (the meaning of 62 has changed slightly) */ PosCentMass ::= INTEGER { - tenCentimeters (1), + tenCentimetres (1), outOfRange (62), unavailable (63) } (1..63) @@ -2287,16 +2344,16 @@ PositionOfOccupants ::= BIT STRING { } (SIZE(20)) /** - * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 10 centimetres. + * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 0,1 metre. * * The value shall be set to: - * - `n (n > 0 and n < 19) for any aplicable value between 0,1 meter and 1,9 meters. - * - `19` for values equal to or higher than 1.9 metres. + * - `n (n > 0 and n < 19)` for any aplicable value between 0,1 metre and 1,9 metres, + * - `19` for values equal to or higher than 1.8 metres, * - `20` if the information is unavailable. * * @category: Vehicle information - * @unit 0.1 metre - * @revision: Editorial update in V2.1.1 + * @unit 0,1 metre + * @revision: description revised in V2.1.1 (the meaning of 19 has changed slightly) */ PosFrontAx ::= INTEGER { outOfRange (19), @@ -2308,13 +2365,13 @@ PosFrontAx ::= INTEGER { * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 meter and 1,26 meters. - * - `126` for values equal to or higher than 1.26 metres. + * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 metre and 1,26 metres, + * - `126` for values equal to or higher than 1.25 metres, * - `127` if the information is unavailable. * * @unit 0,01 metre * @category Vehicle information - * @revision: Editorial update in V2.1.1 + * @revision: description revised in V2.1.1 (the meaning of 126 has changed slightly) */ PosLonCarr ::= INTEGER { outOfRange (126), @@ -2326,13 +2383,13 @@ PosLonCarr ::= INTEGER { * middle point of the front line of the vehicle bounding box. * * The value shall be set to: - * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 meter and 2,9 meters. - * - `29` for values equal to or greater than 2.9 metres. + * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 metre and 2,9 metres, + * - `29` for values equal to or greater than 2.8 metres, * - `30` if the information is unavailable. * * @unit 0,1 metre * @category Vehicle information - * @revision: Editorial update in V2.1.1 + * @revision: description revised in V2.1.1 (the meaning of 29 has changed slightly) */ PosPillar ::= INTEGER { outOfRange (29), @@ -2347,8 +2404,8 @@ PosPillar ::= INTEGER { * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, - * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle, - * - 5-255 : reserved for future usage. + * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle. + * - 5-255 : are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2362,14 +2419,14 @@ PostCrashSubCauseCode ::= INTEGER { } (0..255) /** -* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square meter. +* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square metre. * * The following values are specified: -* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0.1 mm/h and greater than (n-1) x 0.1 mm/h. -* - `2000` if the amount of rain falling is greater than 199.9 mm/h -* - `2001` if the information is not available +* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0,1 mm/h and greater than (n-1) x 0,1 mm/h, +* - `2000` if the amount of rain falling is greater than 199.9 mm/h, +* - `2001` if the information is not available. * -* @unit: 0.1 mm/h +* @unit: 0,1 mm/h * @category: Basic Information * @revision: created in V2.1.1 */ @@ -2379,7 +2436,7 @@ PrecipitationIntensity ::= INTEGER { } (1..2001) /** - * This DE represenst the indentifier of a protected communication zone. + * This DE represents the indentifier of a protected communication zone. * * * @category: Infrastructure information, Communication information @@ -2388,7 +2445,7 @@ PrecipitationIntensity ::= INTEGER { ProtectedZoneId ::= INTEGER (0.. 134217727) /** - * This DE represenst the radius of a protected communication zone. + * This DE represents the radius of a protected communication zone. * * * @unit: metre @@ -2472,16 +2529,16 @@ RailwayLevelCrossingSubCauseCode ::= INTEGER { * This DE describes a distance of relevance for information indicated in a message. * * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m. - * - 1 `lessThan100m` : for distances below 100 m. - * - 2 `lessThan200m` : for distances below 200 m. - * - 3 `lessThan500m` : for distances below 300 m. - * - 4 `lessThan1000m` : for distances below 1000 m. - * - 5 `lessThan5km` : for distances below 5000 m. - * - 6 `lessThan10km` : for distances below 10000 m. - * - 7 `over10km` : for distances over 10000 m. + * - 0 `lessThan50m` : for distances below 50 m, + * - 1 `lessThan100m` : for distances below 100 m, + * - 2 `lessThan200m` : for distances below 200 m, + * - 3 `lessThan500m` : for distances below 300 m, + * - 4 `lessThan1000m` : for distances below 1 000 m, + * - 5 `lessThan5km` : for distances below 5 000 m, + * - 6 `lessThan10km` : for distances below 10 000 m, + * - 7 `over10km` : for distances over 10 000 m. * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref StandardLength3b instead. + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref StandardLength3b instead. * * @category: GeoReference information * @revision: Editorial update in V2.1.1 @@ -2501,9 +2558,9 @@ RelevanceDistance ::= ENUMERATED { * This DE indicates a traffic direction that is relevant to information indicated in a message. * * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions. - * - 1 `upstreamTraffic` : for upstream traffic. - * - 2 `downstreamTraffic` : for downstream traffic. + * - 0 `allTrafficDirections` : for all traffic directions, + * - 1 `upstreamTraffic` : for upstream traffic, + * - 2 `downstreamTraffic` : for downstream traffic, * - 3 `oppositeTraffic` : for traffic in the opposite direction. * * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. @@ -2511,7 +2568,7 @@ RelevanceDistance ::= ENUMERATED { * @note: Upstream traffic corresponds to the incoming traffic towards the event position, * and downstream traffic to the departing traffic away from the event position. * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref TrafficDirection instead. + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrafficDirection instead. * * @category: GeoReference information * @revision: Editorial update in V2.1.1 @@ -2528,7 +2585,7 @@ RelevanceTrafficDirection ::= ENUMERATED { * ITS-S after receiving request from other ITS-Ss. * * The value shall be set to: - * - 0 `request` : for a request message. + * - 0 `request` : for a request message, * - 1 `response` : for a response message. * * @category Communication information @@ -2542,7 +2599,7 @@ RequestResponseIndication ::= ENUMERATED { /** * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` * - * The following value are specified: + * The value shall be set to: * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, @@ -2568,9 +2625,9 @@ RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { * This DE indicates the type of a road segment. * * The value shall be set to: - * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions. - * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions. - * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions. + * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions, + * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions, + * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions, * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. * * @category: Road Topology Information @@ -2593,8 +2650,8 @@ The value shall be set to: * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, - * - 6 `winterService` : in case winter service work is ongoing, - * - 7-255 reserved for future usage. + * - 6 `winterService` : in case winter service work is ongoing. + * - 7-255 : are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2610,11 +2667,13 @@ RoadworksSubCauseCode ::= INTEGER { } (0..255) /** - * This DE indicates if a distance is safe - * This DE is FALSE if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} simultaneously satisfied with confidence of 90 % or more. - * Otherwise stationSafeDistanceIndication is set to TRUE. + * This DE indicates if a distance is safe. * - * @Note: the ebbreviations used are Lateral Distance (LaD), Longitudinal Distance (LoD) and Vertical Distance (VD) + * The value shall be set to: + * - `FALSE` if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} is simultaneously satisfied with confidence level of 90 % or more, + * - `TRUE` otherwise. + * + * @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) * * @category: Traffic information, Kinematics information @@ -2623,30 +2682,32 @@ RoadworksSubCauseCode ::= INTEGER { SafeDistanceIndicator::= BOOLEAN /** - * This DE represenst the absolute position accuracy in one of the axis direction as defined in a shape of ellipse with a + * This DE indicates the horizontal position confidence value which represents the estimated absolute position accuracy, in one of the axis direction as defined in a shape of ellipse with a * confidence level of 95 %. * * The value shall be set to: - * - `1` if the accuracy is equal to or less than 1 cm, - * - `n (n > 1 and n < 4 094)` if the accuracy is equal to or less than n cm, - * - `4 094` if the accuracy is out of range, i.e. greater than 4 093 cm, + * - `n (n > 0 and n < 4 094)` if the accuracy is equal to or less than n * 0,01 metre, + * - `4 094` if the accuracy is out of range, i.e. greater than 4,093 m, * - `4 095` if the accuracy information is unavailable. + * + * The value 0 shall not be used. * - * @note: The fact that a position coordinate value is received with confidence set to 'unavailable(4095)' + * @note: The fact that a position coordinate value is received with confidence value set to 'unavailable(4095)' * can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported position coordinate value may be valid and used by the application. - * If a position coordinate value is received and its confidence is set to 'outOfRange(4094)', it means that - * the reported position coordinate value is not valid and therefore cannot be trusted. Such value is not useful + * In all 3 cases above, the position coordinate value may be valid and used by the application. + * If a position coordinate value is received and its confidence value is set to 'outOfRange(4094)', it means that + * the position coordinate value is not valid and therefore cannot be trusted. Such value is not useful * for the application. - * @unit 0,01 meter + * @unit 0,01 metre * @category: GeoReference Information - * @revision: Editorial update in V2.1.1 + * @revision: Description revised in V2.1.1 */ SemiAxisLength ::= INTEGER{ + doNotUse (0), outOfRange (4094), unavailable (4095) } (0..4095) @@ -2656,20 +2717,20 @@ SemiAxisLength ::= INTEGER{ * * The value shall be set to: * - `0` undefined : in case the sensor type is undefined. - * - `1` radar : in case the sensor is a radar. - * - `2` lidar : in case the sensor is a lidar. - * - `3` monovideo : in case the sensor is mono video. - * - `4` stereovision : in case the sensor is stereo vision. - * - `5` nightvision : in case the sensor is night vision. - * - `6` ultrasonic : in case the sensor is ultrasonic. - * - `7` pmd : in case the sensor is photonic mixing device. - * - `8` inductionLoop : in case the sensor is an induction loop. - * - `9` sphericalCamera : in case the sensor is a spherical camera. - * - `10` uwb : in case the sensor is ultra wide band. - * - `11` acoustic : in case the sensor is acoustic. - * - `12` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion. + * - `1` radar : in case the sensor is a radar, + * - `2` lidar : in case the sensor is a lidar, + * - `3` monovideo : in case the sensor is mono video, + * - `4` stereovision : in case the sensor is stereo vision, + * - `5` nightvision : in case the sensor is night vision, + * - `6` ultrasonic : in case the sensor is ultrasonic, + * - `7` pmd : in case the sensor is photonic mixing device, + * - `8` inductionLoop : in case the sensor is an induction loop, + * - `9` sphericalCamera : in case the sensor is a spherical camera, + * - `10` uwb : in case the sensor is ultra wide band, + * - `11` acoustic : in case the sensor is acoustic, + * - `12` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion, * - `13` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. - * - 14-15 reserved for future usage. + * - 14-31 : are reserved for future usage. * * @category: Sensing Information * @revision: created in V2.1.1 @@ -2689,7 +2750,7 @@ SensorType ::= INTEGER { acoustic (11), localAggregation (12), itsAggregation (13) -} (0..15) +} (0..31) /** * This DE represents a sequence number. @@ -2706,8 +2767,8 @@ SequenceNumber ::= INTEGER (0..65535) * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, * - 1 `stopSignViolation` : in case a stop sign violation is detected, * - 2 `trafficLightViolation` : in case a traffic light violation is detected, - * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected, - * - 4-255 : reserved for future usage. + * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected. + * - 4-255 : are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2732,8 +2793,8 @@ SignalViolationSubCauseCode ::= INTEGER { * - 5 `convoy` : in case of slow driving convoy on the road, * - 6 `snowplough` : in case of slow driving snow plough on the road, * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, - * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road, - * - 9-255 : reserved for future usage. + * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road. + * - 9-255 : are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2752,11 +2813,11 @@ SlowVehicleSubCauseCode ::= INTEGER { /** * The DE indicates if a vehicle is carrying goods in the special transport conditions. - + * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load. - * - 1 `excessWidth` : the vehicle is carrying goods in excess of width. - * - 2 `excessLength` : the vehicle is carrying goods in excess of length. + * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load, + * - 1 `excessWidth` : the vehicle is carrying goods in excess of width, + * - 2 `excessLength` : the vehicle is carrying goods in excess of length, * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. * * Otherwise, the corresponding bit shall be set to 0. @@ -2771,23 +2832,24 @@ SpecialTransportType ::= BIT STRING { } (SIZE(4)) /** - * This DE represents the absolute accuracy of a speed value information for a predefined confidence level of 95%. + * This DE indicates the speed confidence value which represents the estimated absolute accuracy of a speed value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 126)` if the speed accuracy is equal to or less than n cm/s. - * - `126` if the speed accuracy is out of range, i.e. greater than 125 cm/s. - * - `127` if the speed accuracy information is not available. + * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n * 0,01 m/s. + * - `126` if the confidence value is out of range, i.e. greater than 1,25 m/s, + * - `127` if the confidence value information is not available. * - * @note: The fact that a speed value is received with confidence set to `unavailable(127)` can be caused by several reasons, such as: + * @note: The fact that a speed value is received with confidence value set to `unavailable(127)` can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported speed value may be valid and used by the application. + * In all 3 cases above, the speed value may be valid and used by the application. * - * @note: If a speed value is received and its confidence is set to `outOfRange(126)`, it means that the reported speed value is not valid + * @note: If a speed value is received and its confidence value is set to `outOfRange(126)`, it means that the speed value is not valid * and therefore cannot be trusted. Such is not useful for the application. * - * @unit cm/s + * @unit: 0,01 m/s * @category: Vehicle information * @revision: Description revised in V2.1.1 */ @@ -2806,14 +2868,16 @@ SpeedConfidence ::= INTEGER { SpeedLimit ::= INTEGER (1..255) /** - * This DE represents a speed value, i.e. the magnitude of the horizontal velocity-vector. + * This DE represents a speed value, i.e. the magnitude of the velocity-vector. * * The value shall be set to: * - `0` in a standstill situation. - * - `n (n > 0 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s. - * - `16382` for speed values greater than 163,81 m/s. - * - `16383` if the speed accuracy information is not available. + * - `n (n > 0 and n < 16 382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s, + * - `16 382` for speed values greater than 163,81 m/s, + * - `16 383` if the speed accuracy information is not available. * + * @note: the the definition of “standstill” is out of scope of this document. + * * @unit: 0,01 m/s * @category: Kinematics information * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) @@ -2828,16 +2892,16 @@ SpeedValue ::= INTEGER { * This DE represents the value of a velocity component in a defined coordinate system. * * The value shall be set to: - * - `-16383` if the speed is equal to or smaller than -163,83 m/s - * - `n (n > -16383 and n < 16382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s. - * - `16382` for speed values equal to or greater than 163,81 m/s. - * - `16383` if the speed accuracy information is not available. + * - `-16 383` if the velocity is equal to or smaller than -163,83 m/s, + * - `n (n > -16 383 and n < 16 382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s, + * - `16 382` for velocity values equal to or greater than 163,81 m/s, + * - `16 383` if the velocity information is not available. * * @unit: 0,01 m/s * @category: Kinematics information * @revision: Created in V2.1.1 */ -SpeedValueExtended ::= INTEGER { +VelocityComponentValue ::= INTEGER { negativeOutOfRange (-16383), psotiveOutOfRange (16382), unavailable (16383) @@ -2848,10 +2912,10 @@ SpeedValueExtended ::= INTEGER { * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. * * The value shall be set to: - * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable". - * - `n (n > 0 and n < 50)` to indicate the actual stability level. - * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability". - * - the values between 51 and 62 are reserved for future use. + * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable", + * - `n (n > 0 and n < 50)` to indicate the actual stability level, + * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability", + * - the values between 51 and 62 are reserved for future use, * - `63`: this value indicates that the information is unavailable. * * @unit: 2% @@ -2865,26 +2929,26 @@ StabilityLossProbability ::= INTEGER { } (0..63) /** - * The DE represents length as a measure of distance between points or as a dimension of an object. + * The DE represents length as a measure of distance between points or as a dimension of an object or shape. * - * @unit: 0.1 meter + * @unit: 0,1 metre * @category: Basic information * @revision: Created in V2.1.1 */ StandardLength12b::= INTEGER (0..4095) /** - * The DE represents length as a measure of distance between points or as a dimension of an object. + * The DE represents length as a measure of distance between points. * * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m. - * - 1 `lessThan100m` : for distances below 100 m. - * - 2 `lessThan200m` : for distances below 200 m. - * - 3 `lessThan500m` : for distances below 300 m. - * - 4 `lessThan1000m` : for distances below 1000 m. - * - 5 `lessThan5km` : for distances below 5000 m. - * - 6 `lessThan10km` : for distances below 10000 m. - * - 7 `over10km` : for distances over 10000 m. + * - 0 `lessThan50m` : for distances below 50 m, + * - 1 `lessThan100m` : for distances below 100 m, + * - 2 `lessThan200m` : for distances below 200 m, + * - 3 `lessThan500m` : for distances below 300 m, + * - 4 `lessThan1000m` : for distances below 1 000 m, + * - 5 `lessThan5km` : for distances below 5 000 m, + * - 6 `lessThan10km` : for distances below 10 000 m, + * - 7 `over10km` : for distances over 10 000 m. * * @category: GeoReference information * @revision: Created in V2.1.1 from RelevanceDistance @@ -2903,7 +2967,7 @@ StandardLength3b ::= ENUMERATED { /** * The DE represents length as a measure of distance between points or as a dimension of an object. * - * @unit: 0.1 meter + * @unit: 0,1 metre * @category: Basic information * @revision: Created in V2.1.1 */ @@ -2912,7 +2976,7 @@ StandardLength9b::= INTEGER (0..511) /** * The DE represents length as a measure of distance between points or as a dimension of an object. * - * @unit: 0.1 meter + * @unit: 0,1 metre * @category: Basic information * @revision: Created in V2.1.1 */ @@ -2921,7 +2985,7 @@ StandardLength1B::= INTEGER (0..255) /** * The DE represents length as a measure of distance between points or as a dimension of an object. * - * @unit: 0.1 meter + * @unit: 0,1 metre * @category: Basic information * @revision: Created in V2.1.1 */ @@ -2931,9 +2995,9 @@ StandardLength2B::= INTEGER (0..65535) * This DE indicates the duration in minutes since which something is stationary. * * The value shall be set to: - * - 0 `lessThan1Minute` : for being stationary since less than 1 minute. - * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more 1 minute. - * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute. + * - 0 `lessThan1Minute` : for being stationary since less than 1 minute, + * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more than 1 minute, + * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute, * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. * * @category: Kinematics information @@ -2977,37 +3041,48 @@ StationaryVehicleSubCauseCode ::= INTEGER { * The ITS-S ID may be a pseudonym. It may change over space and/or over time. * * @category: Basic information - * @revision: Update in V2.1.1 : changed name from StationID to StationId + * @revision: Created in V2.1.1 based on @ref StationID */ StationId ::= INTEGER(0..4294967295) /** - * This DE represenst the type of technical context the ITS-S is integrated in. + * This DE represents the identifier of an ITS-S. + * The ITS-S ID may be a pseudonym. It may change over space and/or over time. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref StationId instead. + * @category: Basic information + * @revision: V1.3.1 + */ +StationID ::= INTEGER(0..4294967295) + +/** + * This DE represents the type of technical context the ITS-S is integrated in. * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. * * The value shall be set to: - * - 0 `unknown`: information about the ITS-S context is not provided, - * - 1 pedestrian`: ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1). - * - 2 `cyclist`: ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles, - * - 3 `moped`: ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] - class L1, L2 (VRU Profile 3) - * - 4 `motorcycles`: ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] - class L3, L4, L5, L6, L7 (VRU Profile 3) - * - 5 `passengerCar`: ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, - * - 6 `bus`: ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, - * - 7 `lightTruck`: ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, - * - 8 `heavyTruck`: ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, - * - 9 `trailer`: ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in - UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, - * - 10 `specialVehicles`: ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram`: ITS-S mounted on a vehicle which runs on tracks along public streets, - * - 12 `lightVruVehicle`: ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2). - * - 13 `animal`: ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4) - * - 14 reserved for future usage - * - 15 `roadSideUnit`: ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, - on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), - * - 16-255> reserved for future usage. - * + * - 0 `unknown` : information about the ITS-S context is not provided, + * - 1 `pedestrian` : ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1), + * - 2 `cyclist` : ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), + * - 3 `moped` : ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + class L1, L2 (VRU Profile 3), + * - 4 `motorcycles` : ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + class L3, L4, L5, L6, L7 (VRU Profile 3), + * - 5 `passengerCar` : ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, + * - 6 `bus` : ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, + * - 7 `lightTruck` : ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, + * - 8 `heavyTruck` : ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, + * - 9 `trailer` : ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in + UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, + * - 10 `specialVehicles` : ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram` : ITS-S mounted on a vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle` : ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2), + * - 13 `animal` : ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), + * - 14 : reserved for future usage, + * - 15 `roadSideUnit` : ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 16-255 : are reserved for future usage. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrafficParticipantType instead. * @category: Communication information. * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) */ @@ -3030,25 +3105,25 @@ StationType ::= INTEGER { } (0..255) /** - * This DE represents the absolute accuracy for a reported steering wheel angle value for a confidence level of 95 %. + * This DE indicates the steering wheel angle confidence value which represents the estimated absolute accuracy for a steering wheel angle value with a confidence level of 95 %. * * The value shall be set to: - * - `n (n > 0 and n < 126)` if the steering wheel angle accuracy is equal to or less than n x 1,5 degrees, - * - `126` if the accuracy is out of range, i.e. greater than 187,5 degrees, - * - `127` if the accuracy information is not available. + * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n x 1,5 degrees, + * - `126` if the confidence value is out of range, i.e. greater than 187,5 degrees, + * - `127` if the confidence value is not available. * - * @note 1: The fact that a steering wheel angle value is received with confidence set to 'unavailable(127)' + * @note: The fact that a steering wheel angle value is received with confidence value set to 'unavailable(127)' * can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported steering wheel angle value may be valid and used by the application. + * In all 3 cases above, the steering wheel angle value may be valid and used by the application. * - * If a steering wheel angle value is received and its confidence is set to 'outOfRange(126)', - * it means that the reported steering wheel angle value is not valid and therefore cannot be trusted. + * If a steering wheel angle value is received and its confidence value is set to 'outOfRange(126)', + * it means that the steering wheel angle value is not valid and therefore cannot be trusted. * Such value is not useful for the application. * - * @unit: 1.5 degree + * @unit: 1,5 degree * @category: Vehicle Information * @revision: Description revised in V2.1.1 */ @@ -3059,18 +3134,18 @@ SteeringWheelAngleConfidence ::= INTEGER { /** * This DE represents the steering wheel angle of the vehicle at certain point in time. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: - * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right. + * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right, * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, - turning clockwise (i.e. to the right). + turning clockwise (i.e. to the right), * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, - turning counter-clockwise (i.e. to the left). - * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left. + turning counter-clockwise (i.e. to the left), + * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left, * - `512` if information is not available. * - * @unit: 1.5 degree + * @unit: 1,5 degree * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). */ SteeringWheelAngleValue ::= INTEGER { @@ -3082,7 +3157,7 @@ SteeringWheelAngleValue ::= INTEGER { /** * This DE indicates the generic sub cause of a detected event. * - * @note 1: The sub cause code value assignment varies based on value of @ref CauseCode + * @note: The sub cause code value assignment varies based on value of @ref CauseCode * * @category: Traffic information * @revision: Description revised in V2.1.1 (this is the generic sub cause type) @@ -3093,8 +3168,8 @@ SubCauseCodeType ::= INTEGER (0..255) * This DE indicates a temperature value. * The value shall be set to: - * - `-60` for temperature equal to or less than -60 degrees C. - * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C. + * - `-60` for temperature equal to or less than -60 degrees C, + * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C, * - `67` for temperature equal to or greater than 67 degrees C. * * @unit: degrees Celsius @@ -3159,9 +3234,9 @@ TrafficConditionSubCauseCode ::= INTEGER { * This DE indicates a traffic direction that is relevant to information indicated in a message. * * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions. - * - 1 `upstreamTraffic` : for upstream traffic. - * - 2 `downstreamTraffic` : for downstream traffic. + * - 0 `allTrafficDirections` : for all traffic directions, + * - 1 `upstreamTraffic` : for upstream traffic, + * - 2 `downstreamTraffic` : for downstream traffic, * - 3 `oppositeTraffic` : for traffic in the opposite direction. * * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. @@ -3179,13 +3254,58 @@ TrafficDirection ::= ENUMERATED { oppositeTraffic (3) } +/** + * This DE represents the type of a traffic participant. + * + * The value shall be set to: + * - 0 `unknown` : information about traffic participant is not provided, + * - 1 `pedestrian` : human being not using a mechanical device for their trip (VRU profile 1), + * - 2 `cyclist` : non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), + * - 3 `moped` : Ilight motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L1, L2 (VRU Profile 3), + * - 4 `motorcycles` : motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L3, L4, L5, L6, L7 (VRU Profile 3), + * - 5 `passengerCar` : small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, + * - 6 `bus` : large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, + * - 7 `lightTruck` : light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, + * - 8 `heavyTruck` : Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, + * - 9 `trailer` : unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, + * - 10 `specialVehicles` : vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram` : vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle` : human being traveling on light vehicle, incl. possible use of roller skates or skateboards (VRU profile 2), + * - 13 `animal` : animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), + * - 14 `agricultural` : agricultural and forestry vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class T, + * - 15 `roadSideUnit` : infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 16-255 : are reserved for future usage. + * + * @category: Communication information. + * @revision: Created in V2.1.1 based on StationType + */ +TrafficParticipantType ::= INTEGER { + unknown (0), + pedestrian (1), + cyclist (2), + moped (3), + motorcycle (4), + passengerCar (5), + bus (6), + lightTruck (7), + heavyTruck (8), + trailer (9), + specialVehicle (10), + tram (11), + lightVruVehicle (12), + animal (13), + agricultural (14), + roadSideUnit (15) +} (0..255) + /** * This DE indicates traffic rules that apply to vehicles at a certain position. * * The value shall be set to: - * - `0` if overtaking is prohibited for all vehicles. - * - `1` if overtaking is prohibited for trucks. - * - `2` if vehicles should pass to the right lane. + * - `0` if overtaking is prohibited for all vehicles, + * - `1` if overtaking is prohibited for trucks, + * - `2` if vehicles should pass to the right lane, * - `3` if vehicles should pass to the left lane. * * @category: Infrastructure information, Traffic information @@ -3198,14 +3318,37 @@ TrafficRule ::= ENUMERATED { passToLeft (3), ...} +/** + * This DE provides information about the presence of a trailer. + * + * The value shall be set to: + * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value. + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. + * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. + * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * nor the detection of trailer presence/absence is possible. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 based on VehicleLengthConfidenceIndication +*/ +TrailerPresenceInformation ::= ENUMERATED { + noTrailerPresent (0), + trailerPresentWithKnownLength (1), + trailerPresentWithUnknownLength (2), + trailerPresenceIsUnknown (3), + unavailable (4) +} + /** * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. * * The value shall be set to: - * - `n (n >= 0 and n <= 50)` to indicate the actual stability level. - * - the values between 51 and 62 are reserved. + * - `n (n >= 0 and n <= 50)` to indicate the actual probability, + * - the values between 51 and 62 are reserved, * - `63`: to indicate that the information is unavailable. * + * @unit: 2% * @category: Kinematics information * @revision: Created in V2.1.1 */ @@ -3217,10 +3360,10 @@ TrajectoryInterceptionProbability ::= INTEGER { * This DE defines the confidence level of the trajectoryInterceptionProbability. * * The value shall be set to: - * - `0` to indicate confidence less than 50 % - * - `1` to indicate confidence greater than or equal to 50 % and less than 70 %. - * - `2` to indicate confidence greater than or equal to 70 % and less than 90 %. - * - `3` to indicate confidence greater than or equal to 90%. + * - `0` to indicate confidence level less than 50 %, + * - `1` to indicate confidence level greater than or equal to 50 % and less than 70 %, + * - `2` to indicate confidence level greater than or equal to 70 % and less than 90 %, + * - `3` to indicate confidence level greater than or equal to 90%. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -3232,6 +3375,18 @@ TrajectoryInterceptionConfidence ::= INTEGER { above90Percent (3) } (0..3) +/** + * This DE represents the time interval between two consecutive message transmissions. + + * Example: a time interval between two consecutive message transmissions. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref DeltaTimeMilliSecondPos instead. + * @unit: 0,001 s + * @category: Basic information + * @revision: V1.3.1 + */ +TransmissionInterval::= INTEGER (1..10000) + /** * This DE provides the turning direction. * @@ -3251,14 +3406,14 @@ TurningDirection::= ENUMERATED { * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. * * The value shall be set to: - * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 meter, and greater than (n-1) x 0,4 meters. - * - `254` indicates that the turning radius is greater than 253 x 0.4 metre = 101.2 metres. + * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 metre, and greater than (n-1) x 0,4 metre, + * - `254` indicates that the turning radius is greater than 253 x 0,4 metre = 101.2 metres, * - `255` indicates that the information is unavailable. * * For vehicle with tracker, the turning radius applies to the vehicle only. * * @category: Vehicle information - * @unit 0.4 metre + * @unit 0,4 metre * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) */ TurningRadius ::= INTEGER { @@ -3266,8 +3421,18 @@ TurningRadius ::= INTEGER { unavailable (255) } (1..255) +/** + * This DE represents the duration of a traffic event validity. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref DeltaTimeSecond instead. + * @unit: 1 s + * @category: Basic information + * @revision: V1.3.1 +*/ +ValidityDuration::= INTEGER (0..86400) + /** - * This De represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.6]. + * This DE represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.6]. * * @category: Vehicle information * @revision: V1.3.1 @@ -3286,10 +3451,10 @@ VDS ::= IA5String (SIZE(6)) * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, - * - 8 `tyrePuncture` : in case vehicle break down is caused by tire puncture, + * - 8 `tyrePuncture` : in case vehicle break down is caused by tyre puncture, * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, - * - 10 `vehicleOnFire` : in case the vehicle is on fire, - * - 11-255: reserved for future usage. + * - 10 `vehicleOnFire` : in case the vehicle is on fire. + * - 11-255 : are reserved for future usage. * * @category: Traffic information @@ -3309,26 +3474,35 @@ VehicleBreakdownSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the height if the vehicle, measured from the ground to the highest point, excluding any antennas. + * This DE represents the height of the vehicle, measured from the ground to the highest point, excluding any antennas. * In case vehicles are equipped with adjustable ride heights, camper shells, and any other * equipment which may result in varying height, the largest possible height shall be used. * - * @unit 5 cm (DE ranges to 6.35 m) - * @revision: V1.3.1 + * The value shall be set to: + * - `n (n >0 and n < 127)` indicates the applicable value is equal to or less than n x 0,05 metre, and greater than (n-1) x 0,05 metre, + * - `127` indicates that the vehicle width is greater than 6,3 metres, + * - `128` indicates that the information in unavailable. + * + * @unit: 0,05 metre + * @revision: created in V2.1.1 */ -VehicleHeight ::= INTEGER (0..127) +VehicleHeight ::= INTEGER { + outOfRange (126), + unavailable (127) +}(1..128) /** * This DE provides information about the presence of a trailer. * * The value shall be set to: - * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in a reported vehicle length value. - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in a reported vehicle length value. - * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. - * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present, + * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value, + * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value, + * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible, + * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer, * nor the detection of trailer presence/absence is possible. * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrailerPresenceInformation instead. * @category: Vehicle information * @revision: Description revised in V2.1.1 */ @@ -3344,12 +3518,12 @@ VehicleLengthConfidenceIndication ::= ENUMERATED { * This DE represents the length of a vehicle. * * The value shall be set to: - * - `n (n > 1 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. - * - `1 022` to indicate that the vehicle length is greater than 102.1 metres. + * - `n (n > 0 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, + * - `1 022` to indicate that the vehicle length is greater than 102.1 metres, * - `1 023` to indicate that the information in unavailable. * * - * @unit: 0.1 metre + * @unit: 0,1 metre * @category: Vehicle information * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). */ @@ -3359,16 +3533,16 @@ VehicleLengthValue ::= INTEGER { } (1..1023) /** - * This DE represents the mass of an empty loaded vehicle in multiple of 100 kg. + * This DE represents the mass of an empty loaded vehicle. * * The value shall be set to: - * - `n (n > 1 and n < 1023)` to indicate that the applicable value is equal to or less than n x 100 kg, and greater than (n-1) x 100 kg. - * - `1 023` indicates that the vehicle mass is greater than 102 200 kg. + * - `n (n > 0 and n < 1023)` to indicate that the applicable value is equal to or less than n x 10^5 gramm, and greater than (n-1) x 10^5 gramm, + * - `1 023` indicates that the vehicle mass is greater than 102 200 000 g, * - `1 024` indicates the vehicle mass information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * - * @unit: 100kg + * @unit: 10^5 gramm * @category: Vehicle information * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). */ @@ -3393,13 +3567,13 @@ VehicleMass ::= INTEGER { * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, * - 10 `military` : to indicate that the vehicle is used for military purpose, * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, - * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service, - * - 13 `reserved` : reserved for future usage, - * - 14 `reserved` : reserved for future usage, - * - 15 `reserved` : reserved for future usage. + * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service. + * - 13 `reserved` : is reserved for future usage. + * - 14 `reserved` : is reserved for future usage. + * - 15 `reserved` : is reserved for future usage. * * @category: Vehicle Information - * @revision: escription updated in V2.1.1 (removed reference to CEN/TS 16157-3) + * @revision: Description updated in V2.1.1 (removed reference to CEN/TS 16157-3) */ VehicleRole ::= ENUMERATED { default (0), @@ -3424,17 +3598,17 @@ VehicleRole ::= ENUMERATED { * This DE describes the subclass of a vehicle. * * The value shall be set to: - * - `0` unknown : to indicate that the type of vehicle is unknown. - * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1. - * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3. - * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1. - * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2, N3. - * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O. - * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle). - * - `7` tram : to indicate a vehicle running on tracks along public streets. - * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine. - * - `9` agricultural : to indicate a vehicle used for agricultural purposes. - * - Values 10 to 255 are reserved for future use. + * - `0` unknown : to indicate that the type of vehicle is unknown, + * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, + * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, + * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, + * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2, N3, + * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, + * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle), + * - `7` tram : to indicate a vehicle running on tracks along public streets, + * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine, + * - `9` agricultural : to indicate a vehicle used for agricultural purposes, + * - Values 10 to 31 are reserved for future use. * * @category: Vehicle information * @revision: Created in V2.1.1 @@ -3450,17 +3624,17 @@ VehicleSubClass ::= INTEGER { tram (7), emergencyVehicle (8), agricultural (9) -} (0..255) +} (0..31) /** * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. * The value shall be set to: - * - `n (n > 1 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 meter, and greater than (n-1) x 0,1 meter. - * - `61`indicates that the vehicle width is greater than 6,0 metres. + * - `n (n >0 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, + * - `61`indicates that the vehicle width is greater than 6,0 metres, * - `62`indicates that the information in unavailable. * - * @unit: 0.1 metre + * @unit: 0,1 metre * @category: Vehicle information * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). */ @@ -3471,32 +3645,36 @@ VehicleWidth ::= INTEGER { /** * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: - * - `-160` for values equal to or less than -16 m/s2. - * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2. - * - `160` for acceleration or greater than 15,9 m/s2. + * - `-160` for acceleration values equal to or less than -16 m/s2, + * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, * - `161` when the data is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * * @category: Vehicle information - * @unit: 0.1 m/s2 - * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly): This type is now based on the more generic type AccelerationValue. + * @unit: 0,1 m/s2 + * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly). * */ -VerticalAccelerationValue ::= AccelerationValue +VerticalAccelerationValue ::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) +} (-160 .. 161) /** - * This DE Identifies all the VRU profile types that are believed to be within a cluster. + * This DE Identifies all the VRU profile types within a cluster. * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU. - * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member. - * - 2 `motorcycle` : indicates that the VRU cluster contains at least one motorcycle VRU member. + * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU, + * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member, + * - 2 `motorcyclist` : indicates that the VRU cluster contains at least one motorcycle VRU member, * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. * * Otherwise, the corresponding bit shall be set to 0. @@ -3512,19 +3690,19 @@ VruClusterProfiles ::= BIT STRING { } (SIZE(4)) /** - * This DE represents the possible VRU usage conditions. + * This DE represents the possible usage conditions of the VRU device. * - The value shall be set to: - * - 0 `unavailable` : to indicate that the usage conditions are unavailable. - * - 1 `other (1)` : to indicate that the VRU is in a state not defined below. - * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device. - * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use. - * - 4 `typing (4)` : to indicate that the human is texting, entering addresses and other manual input activity. - * - 5 `calling (5)` : to indicate that the VRU device is currently received a call. - * - 6 `playingGames (6)` : to indicate that the human is playing games. - * - 7 `reading (7)` : to indicate that the human is reading on the VRU device. - * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static, - * - value 9 to 255 : reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` : to indicate that the usage conditions are unavailable, + * - 1 `other (1)` : to indicate that the VRU device is in a state not defined below, + * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device, + * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use, + * - 4 `typing (4)` : to indicate that the human is texting or performaing any other manual input activity, + * - 5 `calling (5)` : to indicate that the VRU device is currently receiving a call, + * - 6 `playingGames (6)` : to indicate that the human is playing games, + * - 7 `reading (7)` : to indicate that the human is reading on the VRU device, + * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static. + * - value 9 to 255 : are reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3547,12 +3725,12 @@ VruDeviceUsage ::= ENUMERATED { * * - The value shall be set to: * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, - * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing. - * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk). - * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk. - * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane. - * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. - * - value 5 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing, + * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk), + * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk, + * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane, + * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. + * - value 5 to 255 : are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3571,14 +3749,14 @@ VruEnvironment ::= ENUMERATED { * This DE indicates the status of the possible human control over a VRU vehicle. * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable. - * - 1 `braking` : to indicate that the VRU is braking. - * - 2 `hardBraking` : to indicate that the VRU is braking hard. - * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling. - * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking. - * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard. + * - 0 `unavailable` : to indicate that the information is unavailable, + * - 1 `braking` : to indicate that the VRU is braking, + * - 2 `hardBraking` : to indicate that the VRU is braking hard, + * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling, + * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking, + * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard, * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. - * - value 7 to 255 : reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * - 7 to 255 : are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3598,11 +3776,11 @@ VruMovementControl ::= ENUMERATED { * This DE indicates the profile of a pedestrian. * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable. - * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies. - * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker. - * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` : to indicate that the information on is unavailable, + * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies, + * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker, + * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. + * - value 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3619,16 +3797,16 @@ VruSubProfilePedestrian ::= ENUMERATED { * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable. - * - 1 `bicyclist ` : to indicate a cycle and bicyclist. - * - 2 `wheelchair-user` : to indicate a wheelchair and its user. - * - 3 `horse-and-rider` : to indicate a horse and rider. - * - 4 `rollerskater` : to indicate a rolleskater and skater. - * - 5 `e-scooter` : to indicate an e-scooter and rider. - * - 6 `personal-transporter` : to indicate a personal-transporter and rider. - * - 7 `pedelec` : to indicate a pedelec and rider. - * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. - * - value 9 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` : to indicate that the information is unavailable, + * - 1 `bicyclist ` : to indicate a cycle and bicyclist, + * - 2 `wheelchair-user` : to indicate a wheelchair and its user, + * - 3 `horse-and-rider` : to indicate a horse and rider, + * - 4 `rollerskater` : to indicate a rolleskater and skater, + * - 5 `e-scooter` : to indicate an e-scooter and rider, + * - 6 `personal-transporter` : to indicate a personal-transporter and rider, + * - 7 `pedelec` : to indicate a pedelec and rider, + * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. + * - 9 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3650,12 +3828,12 @@ VruSubProfileBicyclist ::= ENUMERATED { * This DE indicates the profile of a motorcyclist and corresponding vehicle. * * The value shall be set to: - * - 0 `unavailable ` : to indicate that the information is unavailable. - * - 1 `moped (1)` : to indicate a moped and rider. - * - 2 `motorcycle` : to indicate a motorcycle and rider. - * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider. + * - 0 `unavailable ` : to indicate that the information is unavailable, + * - 1 `moped` : to indicate a moped and rider, + * - 2 `motorcycle` : to indicate a motorcycle and rider, + * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider, * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. - * - value 5 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 5 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3670,14 +3848,14 @@ VruSubProfileMotorcyclist ::= ENUMERATED { } /** - * This DE indicates the profile of a animal + * This DE indicates the profile of an animal * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable. - * - 1 `wild-animal` : to indicate a animal living in the wildness. - * - 2 `farm-animal` : to indicate an animal beloning to a farm. - * - 3 `service-animal` : to indicate an animal that supports a human being. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` : to indicate that the information is unavailable, + * - 1 `wild-animal` : to indicate a animal living in the wildness, + * - 2 `farm-animal` : to indicate an animal beloning to a farm, + * - 3 `service-animal` : to indicate an animal that supports a human being. + * - 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3694,11 +3872,11 @@ VruSubProfileAnimal ::= ENUMERATED { * This DE indicates the approximate size of a VRU including the VRU vehicle used. * * The value shall be set to: - * - 0 `unavailable(0)` : There is no matched size class or due to privacy reasons in profile 1. - * - 1 `low (1)` : the VRU size class is low depending on the VRU profile. - * - 2 `medium (2)` : the VRU size class is medium depending on the VRU profile. - * - 3 `high (3)` : the VRU size class is high depending on the VRU profile. - * - value 4 to 15 : reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` : to indicate that there is no matched size class or due to privacy reasons in profile 1, + * - 1 `low` : to indicate that the VRU size class is low depending on the VRU profile, + * - 2 `medium` : to indicate that the VRU size class is medium depending on the VRU profile, + * - 3 `high` : to indicate that the VRU size class is high depending on the VRU profile. + * - 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3712,19 +3890,18 @@ VruSizeClass ::= ENUMERATED { } /** - * This DE describes the status of the exterior light switches of a vehicle or a VRU. - * The DE is an extension of the existing vehicular DE ExteriorLight. + * This DE describes the status of the exterior light switches of a VRU. * * The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to 1, when the corresponding switch is turned on, either manually by the driver or VRU + * The bit corresponding to a specific light shall be set to 1, when the corresponding switch is turned on, either manually by the driver or VRU * or automatically by a vehicle or VRU system: - * - 0 `unavailable` : indicates no information available. - * - 1 `backFlashLight ` : indicates the status of the back flash light. - * - 2 `helmetLight` : indicates the status of the helmet light. - * - 3 `armLight` : indicates the status of the arm light. - * - 4 `legLight` : indicates the status of the leg leight. + * - 0 `unavailable` : indicates no information available, + * - 1 `backFlashLight ` : indicates the status of the back flash light, + * - 2 `helmetLight` : indicates the status of the helmet light, + * - 3 `armLight` : indicates the status of the arm light, + * - 4 `legLight` : indicates the status of the leg light, * - 5 `wheelLight` : indicates the status of the wheel light. - * - Bits 6 to 8 : reserved for future use. + * - Bits 6 to 8 : are reserved for future use. * The bit values do not indicate if the corresponding lamps are alight or not. * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. * @@ -3744,11 +3921,11 @@ VruSpecificExteriorLights ::= BIT STRING { * This DE indicates the perpendicular distance between front and rear axle of the wheel base of vehicle. * * The value shall be set to: - * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0.1 metres and more than (n-1) x 0.1 metres. - * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres. + * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres, * - `127` indicates that the information is unavailable. * - * @unit 0.1 metre + * @unit 0,1 metre * @category: Vehicle information * @revision: Created in V2.1.1 */ @@ -3758,13 +3935,13 @@ WheelBaseVehicle ::= INTEGER { } (1..127) /** - * This DE represents the absolute accuracy of a reported angle value for a confidence level of 95 %. - * The required confidence level is defined by the corresponding standards applying this DE. + * This DE indicates the angle confidence value which represents the estimated accuracy of an angle value with a default confidence level of 95 %. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >=1 and n < 126)` is equal to or less than n x 0.1 degrees and more than (n-1) x 0.1 degrees. - * - `126` if the angle accuracy is out of range, i.e. greater than 12,5 degrees. - * - `127` if the angle accuracy information is not available. + * - `n (n >=1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, + * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, + * - `127` if the confidence value is not available. * * * @unit 0,1 degrees @@ -3779,6 +3956,7 @@ Wgs84AngleConfidence ::= INTEGER { /** * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. * * @unit 0,1 degrees @@ -3822,27 +4000,28 @@ WrongWayDrivingSubCauseCode ::= INTEGER { } (0..255) /** - * This DE denotes the absolute accuracy range for reported yaw rate value for a confidence level of 95%. + * This DE indicates the yaw rate confidence value which represents the estimated accuracy for a yaw rate value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `0` indicates that the accuracy is equal to or less than 0,01 degree/second. - * - `1` indicates that the accuracy is equal to or less than 0,05 degrees/second. - * - `2` indicates that the accuracy is equal to or less than 0,1 degree/second. - * - `3` indicates that the accuracy is equal to or less than 1 degree/second. - * - `4` indicates that the accuracy is equal to or less than 5 degrees/second. - * - `5` indicates that the accuracy is equal to or less than 10 degrees/second. - * - `6` indicates that the accuracy is equal to or less than 100 degrees/second. - * - `7` indicates that the accuracy is out of range, i.e. greater than 100 degrees/second. - * - `8` indicates that the accuracy information is unavailable - * - * NOTE: The fact that a yaw rate value is received with confidence set to `unavailable(8)` can be caused by + * - `0` if the confidence value is equal to or less than 0,01 degree/second, + * - `1` if the confidence value is equal to or less than 0,05 degrees/second or greater than 0,01 degree/second, + * - `2` if the confidence value is equal to or less than 0,1 degree/second or greater than 0,05 degree/second, + * - `3` if the confidence value is equal to or less than 1 degree/second or greater than 0,1 degree/second, + * - `4` if the confidence value is equal to or less than 5 degrees/second or greater than 1 degrees/second, + * - `5` if the confidence value is equal to or less than 10 degrees/second or greater than 5 degrees/second, + * - `6` if the confidence value is equal to or less than 100 degrees/second or greater than 10 degrees/second, + * - `7` if the confidence value is out of range, i.e. greater than 100 degrees/second, + * - `8` if the confidence value is unavailable. + * + * NOTE: The fact that a yaw rate value is received with confidence value set to `unavailable(8)` can be caused by * several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the reported yaw rate value may be valid and used by the application. + * In all 3 cases above, the yaw rate value may be valid and used by the application. * - * If a yaw rate value is received and its confidence is set to `outOfRange(7)`, it means that the reported + * If a yaw rate value is received and its confidence value is set to `outOfRange(7)`, it means that the * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. * * @category: Traffic information @@ -3852,7 +4031,7 @@ YawRateConfidence ::= ENUMERATED { degSec-000-01 (0), degSec-000-05 (1), degSec-000-10 (2), - degSec-001-00 (3), + degSec-001-00 (3), degSec-005-00 (4), degSec-010-00 (5), degSec-100-00 (6), @@ -3861,16 +4040,18 @@ YawRateConfidence ::= ENUMERATED { } /** - * This DE represents the vehicle rotation around z-axis of coordinate system centred on the centre of mass of the empty-loaded - * vehicle. It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. The leading sign denotes the direction of rotation. + * This DE represents the vehicle rotation around z-axis of the coordinate system centred on the centre of mass of the empty-loaded + * vehicle. The leading sign denotes the direction of rotation. * + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. + * * The value shall be set to: - * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right. + * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right, * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s. + and greater than (n-1) x 0,01 degrees/s, * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s. - * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left. + and greater than (n-1) x 0,01 degrees/s, + * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left, * - `32 767` to indicate that the information is not available. * * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. @@ -3892,33 +4073,91 @@ YawRateValue ::= INTEGER { -- Specification of CDD Data Frames: ---------------------------------------- -/** - * This DF represents an acceleration component along with a confidence with a predefined confidence level of 95% for the component. - * - * It includes the following components: - * - * @field value: the acceleration value which can be estimated as the mean of the current distribution. - * - * @field value confidence: the accuracy associated to the provided value at a predefined confidence level of 95% for the component. +/** + * This DF represents an acceleration vector with associated confidence value. * - * @category: Kinematic Information + * It shall include the following components: + * + * @field polarAcceleration: the representation of the acceleration vector in a polar coordinate system. + * + * @field cartesianAcceleration: the representation of the acceleration vector in a cartesian coordinate system. + * + * @category: Kinematics information * @revision: Created in V2.1.1 */ -Acceleration1d ::= SEQUENCE { - value AccelerationValue, - confidence AccelerationConfidence +Acceleration3dWithConfidence::= CHOICE { + polarAcceleration AccelerationPolarWithZ, + cartesianAcceleration AccelerationCartesian } -/** - * This DF represents information associated to changes in acceleration. - * - * It includes the following components: - * - * @field accelOrDecel: the indication of an acceleration change. - * - * @field value actionDeltaTime: the period in which the acceleration change action is performed. +/** + * This DF represents an acceleration vector in a polar coordinate system. + + * It shall include the following components: + * + * @field accelerationMagnitude: magnitude of the acceleration vector in the X-Y plane with the associated confidence value. + * Negative magnitude values indicate accelerating backwards. + * + * @field accelerationDirection: polar angle of the acceleration vector in the X-Y plane with the associated confidence value. * - * @category: Kinematic Information + * @field zAcceleration: the optional z component of the acceleration vector with the associated confidence value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +AccelerationPolarWithZ::= SEQUENCE{ + accelerationMagnitude AccelerationMagnitude, + accelerationDirection CartesianAngle, + zAcceleration AccelerationComponent OPTIONAL +} + +/** + * This DF represents a acceleration vector in a cartesian coordinate system. + + * It shall include the following components: + * + * @field xAcceleration: the x component of the acceleration vector with the associated confidence value. + * + * @field yAcceleration: the y component of the acceleration vector with the associated confidence value. + * + * @field zAcceleration: the optional z component of the acceleration vector with the associated confidence value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +AccelerationCartesian::= SEQUENCE{ + xAcceleration AccelerationComponent, + yAcceleration AccelerationComponent, + zAcceleration AccelerationComponent OPTIONAL +} + +/** + * This DF represents an acceleration component along with a confidence value. + * + * It shall include the following components: + * + * @field value: the value of the acceleration component which can be estimated as the mean of the current distribution. + * + * @field confidence: the confidence value associated to the provided value. + * + * @category: Kinematic Information + * @revision: Created in V2.1.1 + */ +AccelerationComponent ::= SEQUENCE { + value AccelerationMagnitudeValue, + confidence AccelerationConfidence +} + +/** + * This DF represents information associated to changes in acceleration. + * + * It shall include the following components: + * + * @field accelOrDecel: the indication of an acceleration change. + * + * @field actionDeltaTime: the period over which the acceleration change action is performed. + * + * @category: Kinematic Information * @revision: Created in V2.1.1 */ AccelerationChangeIndication ::= SEQUENCE { @@ -3927,17 +4166,34 @@ AccelerationChangeIndication ::= SEQUENCE { ... } +/** + * This DF represents the magnitude of the acceleration vector and associated confidence value. + * + * It shall include the following components: + * + * @field accelerationMagnitudeValue: the magnitude of the acceleration vector. + * + * @field accelerationConfidence: the confidence value of the magnitude value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +AccelerationMagnitude::= SEQUENCE { + accelerationMagnitudeValue AccelerationMagnitudeValue, + accelerationConfidence AccelerationConfidence +} + /** * This DF represents an identifier used to describe a protocol action taken by an ITS-S. * - * It includes the following components: + * It shall include the following components: * * @field originatingStationId: Id of the ITS-S that takes the action. * * @field sequenceNumber: a sequence number. * * @category: Communication information - * @revision: Update in V2.1.1 changed name from ActionID to ActionId + * @revision: Created in V2.1.1 based on @ref ActionID. */ ActionId ::= SEQUENCE { originatingStationId StationId, @@ -3945,7 +4201,25 @@ ActionId ::= SEQUENCE { } /** - * This DF represents a list of @ref ActionID. + * This DF represents an identifier used to describe a protocol action taken by an ITS-S. + * + * It shall include the following components: + * + * @field originatingStationId: Id of the ITS-S that takes the action. + * + * @field sequenceNumber: a sequence number. + * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref ActionId instead. + * @category: Communication information + * @revision: V1.3.1 + */ +ActionID ::= SEQUENCE { + originatingStationId StationID, + sequenceNumber SequenceNumber +} + +/** + * This DF shall contain a list of @ref ActionId. * @category: Communication Information * @revision: Created in V2.1.1 based on ReferenceDenms from DENM Release 1 @@ -3953,16 +4227,18 @@ ActionId ::= SEQUENCE { ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionId /** - * This DF provides the altitude and accuracy of an altitude information in a WGS84 coordinate system. + * This DF provides the altitude and confidence level of an altitude information in a WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * - * It includes the following components: + * It shall include the following components: * * @field altitudeValue: altitude of a geographical point. * - * @field altitudeConfidence: accuracy of the reported altitudeValue within a specific confidence level. + * @field altitudeConfidence: confidence level of the altitudeValue. * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref AltitudeWithConfidence instead. * @category: GeoReference information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ Altitude ::= SEQUENCE { altitudeValue AltitudeValue, @@ -3972,9 +4248,9 @@ Altitude ::= SEQUENCE { /** * This DE represents a general container for usage in various types of messages. * - * It includes the following components: + * It shall include the following components: * - * @field stationType: the type of station that has generated the message that contains the basic container. + * @field stationType: the type of technical context in which the ITS-S that has generated the message is integrated in. * * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. * @@ -3982,19 +4258,19 @@ Altitude ::= SEQUENCE { * @revision: Created in V2.1.1 */ BasicContainer ::= SEQUENCE { - stationType StationType, - referencePosition ReferencePosition, + stationType TrafficParticipantType, + referencePosition ReferencePositionWithConfidence, ... } /** - * This DF represents a general Data Frame to describe an angle component along with a confidence in a cartesian coordinate system. + * This DF represents a general Data Frame to describe an angle component along with a confidence value in a cartesian coordinate system. * - * It includes the following components: + * It shall include the following components: * * @field value: The angle value which can be estimated as the mean of the current distribution. * - * @field confidence: The accuracy associated to the provided value. + * @field confidence: The confidence value associated to the provided value. * * @category: Kinematics information * @revision: Created in V2.1.1 @@ -4005,47 +4281,47 @@ CartesianAngle ::= SEQUENCE { } /** - * This DF represents a general Data Frame to describe an angular speed component along with a confidence in a cartesian coordinate system. + * This DF represents an angular velocity component along with a confidence value in a cartesian coordinate system. * - * It includes the following components: + * It shall include the following components: * - * @field value: The angular speed (rate) value which can be estimated as the mean of the current distribution. + * @field value: The angular velocity component. * - * @field confidence: The accuracy associated to the provided value. + * @field confidence: The confidence value associated to the provided value. * * @category: Kinematics information * @revision: Created in V2.1.1 */ -CartesianAngularSpeed ::= SEQUENCE { - value CartesianAngularSpeedValue, +CartesianAngularVelocityComponent ::= SEQUENCE { + value CartesianAngularVelocityComponentValue, confidence AngularSpeedConfidence } /** - * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence in a cartesian coordinate system. + * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence value in a cartesian coordinate system. * - * It includes the following components: + * It shall include the following components: * - * @field value: The angular acceleration value which can be estimated as the mean of the current distribution. + * @field value: The angular acceleration component value. * - * @field confidence: The accuracy associated to the provided value. + * @field confidence: The confidence value associated to the provided value. * * @category: Kinematics information * @revision: Created in V2.1.1 */ -CartesianAngularAcceleration ::= SEQUENCE { - value CartesianAngularAccelerationValue, +CartesianAngularAccelerationComponent ::= SEQUENCE { + value CartesianAngularAccelerationComponentValue, confidence AngularAccelerationConfidence } /** - * This DF represents a coordinate in a cartesian reference system + * This DF represents a coordinate along with a confidence value in a cartesian reference system. * - * It includes the following components: + * It shall include the following components: * - * @field value: the coordinate value which can be estimated as the mean of the current distribution. + * @field value: the coordinate value, which can be estimated as the mean of the current distribution. * - * @field confidence: the coordinate accuracy associated to the provided value. + * @field confidence: the coordinate confidence value associated to the provided value. * * @category: GeoReference information * @revision: Created in V2.1.1 @@ -4058,7 +4334,7 @@ CartesianCoordinateWithConfidence ::= SEQUENCE { /** * This DF represents a position in a two- or three-dimensional cartesian coordinate system. * - * It includes the following components: + * It shall include the following components: * * @field xCoordinate: the X coordinate value. * @@ -4075,10 +4351,30 @@ CartesianPosition3d::=SEQUENCE{ zCoordinate CartesianCoordinate OPTIONAL } +/** + * This DF represents a position in a two- or three-dimensional cartesian coordinate system with an addocaited confidence level for each coordinate. + * + * It shall include the following components: + * + * @field xCoordinate: the X coordinate value with the associated confidence level. + * + * @field yCoordinate: the Y coordinate value with the associated confidence level. + * + * @field zCoordinate: the optional Z coordinate value with the associated confidence level. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianPosition3dWithConfidence::= SEQUENCE{ + xCoordinate CartesianCoordinateWithConfidence, + yCoordinate CartesianCoordinateWithConfidence, + zCoordinate CartesianCoordinateWithConfidence OPTIONAL +} + /** * This DF is a representation of the cause code value of a traffic event. * - * It includes the following components: + * It shall include the following components: * * @field causeCode: the main cause of a detected event. * @@ -4087,7 +4383,7 @@ CartesianPosition3d::=SEQUENCE{ * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref CauseCodeV2 instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref CauseCodeV2 instead. * * @category: Traffic information * @revision: Editorial update in V2.1.1 @@ -4101,150 +4397,148 @@ CauseCode ::= SEQUENCE { /** * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. * - * * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. * @category: Traffic information - * @revision: Editorial update in V2.1.1 + * @revision: Created in V2.1.1 */ - CauseCodeChoice::= CHOICE { - reserved SubCauseCodeType, - trafficCondition TrafficConditionSubCauseCode, - accident AccidentSubCauseCode, - roadworks RoadworksSubCauseCode, - reserved4 SubCauseCodeType, - impassability SubCauseCodeType, - adverseWeatherCondition-Adhesion AdverseWeatherCondition-AdhesionSubCauseCode, - aquaplaning SubCauseCodeType, - reserved8 SubCauseCodeType, - hazardousLocation-SurfaceCondition HazardousLocation-SurfaceConditionSubCauseCode, - hazardousLocation-ObstacleOnTheRoad HazardousLocation-ObstacleOnTheRoadSubCauseCode, - hazardousLocation-AnimalOnTheRoad HazardousLocation-AnimalOnTheRoadSubCauseCode, - humanPresenceOnTheRoad HumanPresenceOnTheRoadSubCauseCode, - reserved13 SubCauseCodeType, - wrongWayDriving WrongWayDrivingSubCauseCode, - rescueAndRecoveryWorkInProgress RescueAndRecoveryWorkInProgressSubCauseCode, - reserved16 SubCauseCodeType, - adverseWeatherCondition-ExtremeWeatherCondition AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, - adverseWeatherCondition-Visibility AdverseWeatherCondition-VisibilitySubCauseCode, - adverseWeatherCondition-Precipitation AdverseWeatherCondition-PrecipitationSubCauseCode, - violence SubCauseCodeType, - reserved21 SubCauseCodeType, - reserved22 SubCauseCodeType, - reserved23 SubCauseCodeType, - reserved24 SubCauseCodeType, - reserved25 SubCauseCodeType, - slowVehicle SlowVehicleSubCauseCode, - dangerousEndOfQueue DangerousEndOfQueueSubCauseCode, - reserved28 SubCauseCodeType, - reserved29 SubCauseCodeType, - reserved30 SubCauseCodeType, - reserved31 SubCauseCodeType, - reserved32 SubCauseCodeType, - reserved33 SubCauseCodeType, - reserved34 SubCauseCodeType, - reserved35 SubCauseCodeType, - reserved36 SubCauseCodeType, - reserved37 SubCauseCodeType, - reserved38 SubCauseCodeType, - reserved39 SubCauseCodeType, - reserved40 SubCauseCodeType, - reserved41 SubCauseCodeType, - reserved42 SubCauseCodeType, - reserved43 SubCauseCodeType, - reserved44 SubCauseCodeType, - reserved45 SubCauseCodeType, - reserved46 SubCauseCodeType, - reserved47 SubCauseCodeType, - reserved48 SubCauseCodeType, - reserved49 SubCauseCodeType, - reserved50 SubCauseCodeType, - reserved51 SubCauseCodeType, - reserved52 SubCauseCodeType, - reserved53 SubCauseCodeType, - reserved54 SubCauseCodeType, - reserved55 SubCauseCodeType, - reserved56 SubCauseCodeType, - reserved57 SubCauseCodeType, - reserved58 SubCauseCodeType, - reserved59 SubCauseCodeType, - reserved60 SubCauseCodeType, - reserved61 SubCauseCodeType, - reserved62 SubCauseCodeType, - reserved63 SubCauseCodeType, - reserved64 SubCauseCodeType, - reserved65 SubCauseCodeType, - reserved66 SubCauseCodeType, - reserved67 SubCauseCodeType, - reserved68 SubCauseCodeType, - reserved69 SubCauseCodeType, - reserved70 SubCauseCodeType, - reserved71 SubCauseCodeType, - reserved72 SubCauseCodeType, - reserved73 SubCauseCodeType, - reserved74 SubCauseCodeType, - reserved75 SubCauseCodeType, - reserved76 SubCauseCodeType, - reserved77 SubCauseCodeType, - reserved78 SubCauseCodeType, - reserved79 SubCauseCodeType, - reserved80 SubCauseCodeType, - reserved81 SubCauseCodeType, - reserved82 SubCauseCodeType, - reserved83 SubCauseCodeType, - reserved84 SubCauseCodeType, - reserved85 SubCauseCodeType, - reserved86 SubCauseCodeType, - reserved87 SubCauseCodeType, - reserved88 SubCauseCodeType, - reserved89 SubCauseCodeType, - reserved90 SubCauseCodeType, - vehicleBreakdown VehicleBreakdownSubCauseCode, - postCrash PostCrashSubCauseCode, - humanProblem HumanProblemSubCauseCode, - stationaryVehicle StationaryVehicleSubCauseCode, - emergencyVehicleApproaching EmergencyVehicleApproachingSubCauseCode, - hazardousLocation-DangerousCurve HazardousLocation-DangerousCurveSubCauseCode, - collisionRisk CollisionRiskSubCauseCode, - signalViolation SignalViolationSubCauseCode, - dangerousSituation DangerousSituationSubCauseCode, - railwayLevelCrossing RailwayLevelCrossingSubCauseCode, - reserved101 SubCauseCodeType, - reserved102 SubCauseCodeType, - reserved103 SubCauseCodeType, - reserved104 SubCauseCodeType, - reserved105 SubCauseCodeType, - reserved106 SubCauseCodeType, - reserved107 SubCauseCodeType, - reserved108 SubCauseCodeType, - reserved109 SubCauseCodeType, - reserved110 SubCauseCodeType, - reserved111 SubCauseCodeType, - reserved112 SubCauseCodeType, - reserved113 SubCauseCodeType, - reserved114 SubCauseCodeType, - reserved115 SubCauseCodeType, - reserved116 SubCauseCodeType, - reserved117 SubCauseCodeType, - reserved118 SubCauseCodeType, - reserved119 SubCauseCodeType, - reserved120 SubCauseCodeType, - reserved121 SubCauseCodeType, - reserved122 SubCauseCodeType, - reserved123 SubCauseCodeType, - reserved124 SubCauseCodeType, - reserved125 SubCauseCodeType, - reserved126 SubCauseCodeType, - reserved127 SubCauseCodeType, - reserved128 SubCauseCodeType + reserved0 SubCauseCodeType, + trafficCondition1 TrafficConditionSubCauseCode, + accident2 AccidentSubCauseCode, + roadworks3 RoadworksSubCauseCode, + reserved4 SubCauseCodeType, + impassability5 SubCauseCodeType, + adverseWeatherCondition-Adhesion6 AdverseWeatherCondition-AdhesionSubCauseCode, + aquaplaning7 SubCauseCodeType, + reserved8 SubCauseCodeType, + hazardousLocation-SurfaceCondition9 HazardousLocation-SurfaceConditionSubCauseCode, + hazardousLocation-ObstacleOnTheRoad10 HazardousLocation-ObstacleOnTheRoadSubCauseCode, + hazardousLocation-AnimalOnTheRoad11 HazardousLocation-AnimalOnTheRoadSubCauseCode, + humanPresenceOnTheRoad12 HumanPresenceOnTheRoadSubCauseCode, + reserved13 SubCauseCodeType, + wrongWayDriving14 WrongWayDrivingSubCauseCode, + rescueAndRecoveryWorkInProgress15 RescueAndRecoveryWorkInProgressSubCauseCode, + reserved16 SubCauseCodeType, + adverseWeatherCondition-ExtremeWeatherCondition17 AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, + adverseWeatherCondition-Visibility18 AdverseWeatherCondition-VisibilitySubCauseCode, + adverseWeatherCondition-Precipitation19 AdverseWeatherCondition-PrecipitationSubCauseCode, + violence20 SubCauseCodeType, + reserved21 SubCauseCodeType, + reserved22 SubCauseCodeType, + reserved23 SubCauseCodeType, + reserved24 SubCauseCodeType, + reserved25 SubCauseCodeType, + slowVehicle26 SlowVehicleSubCauseCode, + dangerousEndOfQueue27 DangerousEndOfQueueSubCauseCode, + reserved28 SubCauseCodeType, + reserved29 SubCauseCodeType, + reserved30 SubCauseCodeType, + reserved31 SubCauseCodeType, + reserved32 SubCauseCodeType, + reserved33 SubCauseCodeType, + reserved34 SubCauseCodeType, + reserved35 SubCauseCodeType, + reserved36 SubCauseCodeType, + reserved37 SubCauseCodeType, + reserved38 SubCauseCodeType, + reserved39 SubCauseCodeType, + reserved40 SubCauseCodeType, + reserved41 SubCauseCodeType, + reserved42 SubCauseCodeType, + reserved43 SubCauseCodeType, + reserved44 SubCauseCodeType, + reserved45 SubCauseCodeType, + reserved46 SubCauseCodeType, + reserved47 SubCauseCodeType, + reserved48 SubCauseCodeType, + reserved49 SubCauseCodeType, + reserved50 SubCauseCodeType, + reserved51 SubCauseCodeType, + reserved52 SubCauseCodeType, + reserved53 SubCauseCodeType, + reserved54 SubCauseCodeType, + reserved55 SubCauseCodeType, + reserved56 SubCauseCodeType, + reserved57 SubCauseCodeType, + reserved58 SubCauseCodeType, + reserved59 SubCauseCodeType, + reserved60 SubCauseCodeType, + reserved61 SubCauseCodeType, + reserved62 SubCauseCodeType, + reserved63 SubCauseCodeType, + reserved64 SubCauseCodeType, + reserved65 SubCauseCodeType, + reserved66 SubCauseCodeType, + reserved67 SubCauseCodeType, + reserved68 SubCauseCodeType, + reserved69 SubCauseCodeType, + reserved70 SubCauseCodeType, + reserved71 SubCauseCodeType, + reserved72 SubCauseCodeType, + reserved73 SubCauseCodeType, + reserved74 SubCauseCodeType, + reserved75 SubCauseCodeType, + reserved76 SubCauseCodeType, + reserved77 SubCauseCodeType, + reserved78 SubCauseCodeType, + reserved79 SubCauseCodeType, + reserved80 SubCauseCodeType, + reserved81 SubCauseCodeType, + reserved82 SubCauseCodeType, + reserved83 SubCauseCodeType, + reserved84 SubCauseCodeType, + reserved85 SubCauseCodeType, + reserved86 SubCauseCodeType, + reserved87 SubCauseCodeType, + reserved88 SubCauseCodeType, + reserved89 SubCauseCodeType, + reserved90 SubCauseCodeType, + vehicleBreakdown91 VehicleBreakdownSubCauseCode, + postCrash92 PostCrashSubCauseCode, + humanProblem93 HumanProblemSubCauseCode, + stationaryVehicle94 StationaryVehicleSubCauseCode, + emergencyVehicleApproaching95 EmergencyVehicleApproachingSubCauseCode, + hazardousLocation-DangerousCurve96 HazardousLocation-DangerousCurveSubCauseCode, + collisionRisk97 CollisionRiskSubCauseCode, + signalViolation98 SignalViolationSubCauseCode, + dangerousSituation99 DangerousSituationSubCauseCode, + railwayLevelCrossing100 RailwayLevelCrossingSubCauseCode, + reserved101 SubCauseCodeType, + reserved102 SubCauseCodeType, + reserved103 SubCauseCodeType, + reserved104 SubCauseCodeType, + reserved105 SubCauseCodeType, + reserved106 SubCauseCodeType, + reserved107 SubCauseCodeType, + reserved108 SubCauseCodeType, + reserved109 SubCauseCodeType, + reserved110 SubCauseCodeType, + reserved111 SubCauseCodeType, + reserved112 SubCauseCodeType, + reserved113 SubCauseCodeType, + reserved114 SubCauseCodeType, + reserved115 SubCauseCodeType, + reserved116 SubCauseCodeType, + reserved117 SubCauseCodeType, + reserved118 SubCauseCodeType, + reserved119 SubCauseCodeType, + reserved120 SubCauseCodeType, + reserved121 SubCauseCodeType, + reserved122 SubCauseCodeType, + reserved123 SubCauseCodeType, + reserved124 SubCauseCodeType, + reserved125 SubCauseCodeType, + reserved126 SubCauseCodeType, + reserved127 SubCauseCodeType, + reserved128 SubCauseCodeType } /** * This DF is an alternative representation of the cause code value of a traffic event. * - * It includes the following components: + * It shall include the following components: * - * @field ccAndScc: the main cause of a detected event. Each choice is of a different type and represents the sub cause code. + * @field ccAndScc: the main cause of a detected event. Each entry is of a different type and represents the sub cause code. * * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. @@ -4252,16 +4546,15 @@ CauseCodeChoice::= CHOICE { * @category: Traffic information * @revision: Created in V2.1.1 */ - CauseCodeV2 ::= SEQUENCE { ccAndScc CauseCodeChoice, - ... + ... } /** * The DF describes the position of a CEN DSRC road side equipment. * - * It includes the following components: + * It shall include the following components: * * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. * @@ -4281,11 +4574,12 @@ CenDsrcTollingZone ::= SEQUENCE { /** * - * This DF represents the shape of a circular area or a right cylinder that is centred on a reference position defined outside of the context of this DF. + * This DF represents the shape of a circular area or a right cylinder that is centred on the shape´s reference point. * - * It includes the following components: + * It shall include the following components: * - * @field nodeCenterPoint: optional offset point which the rectangle is centred on with respect to the reference position. + * @field shapeReferencePoint: optional reference point that represents the centre of the circle, relative to an externally specified reference position. + * If this component is absent, the externally specified reference position represents the shape´s reference point. * * @field radius: the radius of the circular area. * @@ -4296,29 +4590,28 @@ CenDsrcTollingZone ::= SEQUENCE { * @revision: Created in V2.1.1 */ CircularShape ::= SEQUENCE { - nodeCenterPoint CartesianPosition3d OPTIONAL, - radius StandardLength12b, - height StandardLength12b OPTIONAL, - ... + shapeReferencePoint CartesianPosition3d OPTIONAL, + radius StandardLength12b, + height StandardLength12b OPTIONAL } /** - * This DF indicates the opening/closure status of a lane or a set of lanes. + * This DF indicates the opening/closure status of the lanes of a carriageway. * - * It includes the following components: + * It shall include the following components: * - * @field innerhardShoulderStatus: this information is optional and shall be included if the information is known. + * @field innerhardShoulderStatus: this information is optional and shall be included if an inner hard shoulder is present and the information is known. * It indicates the open/closing status of inner hard shoulder lanes. * - * @field outerhardShoulderStatus: this information is optional and shall be included if the information is known. + * @field outerhardShoulderStatus: this information is optional and shall be included if an outer hard shoulder is present and the information is known. * It indicates the open/closing status of outer hard shoulder lanes. * * @field drivingLaneStatus: this information is optional and shall be included if the information is known. * It indicates the open/closing status of driving lanes. - * For roads with more than 13 driving lanes, the drivingLaneStatus DE shall not be set. + * For carriageways with more than 13 driving lanes, the drivingLaneStatus component shall not be present. * * @category: GeoReference information, Road topology information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ ClosedLanes ::= SEQUENCE { innerhardShoulderStatus HardShoulderStatus OPTIONAL, @@ -4330,7 +4623,7 @@ ClosedLanes ::= SEQUENCE { /** * This DF provides information about the breakup of a cluster. * - * It includes the following components: + * It shall include the following components: * * @field clusterBreakupReason: indicates the reason for breakup. * @@ -4348,7 +4641,7 @@ ClusterBreakupInfo ::= SEQUENCE { /** * This DF provides information about the joining of a cluster. * - * It includes the following components: + * It shall include the following components: * * @field clusterId: indicates the identifier of the cluster. * @@ -4366,7 +4659,7 @@ ClusterJoinInfo ::= SEQUENCE { /** * The DF provides information about the leaving of a cluster. * - * It includes the following components: + * It shall include the following components: * * @field clusterId: indicates the cluster. * @@ -4382,28 +4675,28 @@ ClusterLeaveInfo ::= SEQUENCE { } /** - * This DF represents the column of the lower triangular positive semi-definite matrix and consists of a list of correlation row values. + * This DF represents a column of a lower triangular positive semi-definite matrix and consists of a list of correlation cell values ordered by rows. * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. - * Each column "i" of the lower triangular then contains k-(i-1) values, where "i" refers to the column number count + * Each column "i" of the lower triangular matrix then contains k-(i-1) values (ordered by rows from 1 to n-1), where "i" refers to the column number count * starting at 1 from the left. * * @category: Sensing Information * @revision: Created in V2.1.1 */ -CorrelationColumn ::= SEQUENCE SIZE (1..21) OF CorrelationRowValue +CorrelationColumn ::= SEQUENCE SIZE (1..13,...) OF CorrelationCellValue /** - * This DF represents the curvature of the vehicle trajectory and the accuracy. + * This DF represents the curvature of the vehicle trajectory and the associated confidence value. * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. * - * It includes the following components: + * It shall include the following components: * * @field curvatureValue: Detected curvature of the vehicle trajectory. * - * @field curvatureConfidence: Accuracy of the reported curvature value with a predefined confidence level. + * @field curvatureConfidence: along with a confidence value of the curvature value with a predefined confidence level. * * @category: Vehicle information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ Curvature ::= SEQUENCE { curvatureValue CurvatureValue, @@ -4413,7 +4706,7 @@ Curvature ::= SEQUENCE { /** * This DF provides a description of dangerous goods being carried by a heavy vehicle. * - * It includes the following components: + * It shall include the following components: * * @field dangerousGoodsType: Type of dangerous goods. * @@ -4430,7 +4723,7 @@ Curvature ::= SEQUENCE { * If yes, the value shall be set to TRUE, * * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency - * service should deal with an incident. This component is optional; it shall be present if the information is available, + * service should deal with an incident. This component is optional; it shall be present if the information is available. * * @field phoneNumber: contact phone number of assistance service in case of incident or accident. * This component is optional, it shall be present if the information is available. @@ -4454,9 +4747,9 @@ DangerousGoodsExtended ::= SEQUENCE { } /** - * This DF defines a geographical point position as a 3 dimensional offset position to a reference geographical point. + * This DF defines a geographical point position as a 3 dimensional offset position to a geographical reference point. * - * It includes the following components: + * It shall include the following components: * * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. * @@ -4474,7 +4767,7 @@ DeltaReferencePosition ::= SEQUENCE { } /** - * This DF represents a portion of digital map, described using a list of waypoints @ref ReferencePosition. + * This DF represents a portion of digital map. It shall contain a list of waypoints @ref ReferencePosition. * * @category: GeoReference information * @revision: V1.3.1 @@ -4483,11 +4776,12 @@ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition /** * - * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on a reference position which is defined outside of the context of this DF. + * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on the shape´s reference point. * - * It includes the following components: + * It shall include the following components: * - * @field centerPoint: optional offset point which the ellipse is centred on with respect to the reference position. + * @field shapeReferencePoint: optional reference point which represents the centre of the ellipse, relative to an externally specified reference position. + * If this component is absent, the externally specified reference position represents the shape´s reference point. * * @field semiMajorAxisLength: half length of the major axis of the ellipse. * @@ -4502,12 +4796,11 @@ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition */ EllipticalShape ::= SEQUENCE { - centerPoint CartesianPosition3d OPTIONAL, + shapeReferencePoint CartesianPosition3d OPTIONAL, semiMajorAxisLength StandardLength12b, semiMinorAxisLength StandardLength12b, orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL, - ... + height StandardLength12b OPTIONAL } /** @@ -4540,36 +4833,21 @@ EuVehicleCategoryCode ::= CHOICE { } /** - * The DF consists of a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime - * or do not contain the COMPONENT eventDeltaTime. - * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. - * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. - * - * @category: GeoReference information, Traffic information - * @revision: created in V2.1.1 based on EventHistory - */ -EventZone::= EventHistory - ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | - (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) - -/** - * The DF consists of a list of @ref EventPoint. + * The DF shall contain a list of @ref EventPoint. * * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. * * @category: GeoReference information, Traffic information - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref EventZone instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref EventZone instead. * @revision: Generalized the semantics in V2.1.1 */ EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint - /** * This DF provides information related to an event at a defined position. * - * It includes the following components: + * It shall include the following components: * * @field eventPosition: offset position of a detected event point to a defined position. * @@ -4587,26 +4865,22 @@ EventPoint ::= SEQUENCE { } /** - * This DF represents the status of the exterior light switches of a traffic participant. + * The DF shall contain a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime + * or do not contain the COMPONENT eventDeltaTime. * - * It includes the following components: - * - * @field vehicular: represents the status of the exterior light switches of a road vehicle. - * - * @field vruSpecific: represents the status of the exterior light switches of a VRU. + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. * - * @category: VRU information - * @revision: created in V2.1.1 + * @category: GeoReference information, Traffic information + * @revision: created in V2.1.1 based on EventHistory */ -ExteriorLightsExtended ::= SEQUENCE { - vehicular ExteriorLights, - vruSpecific VruSpecificExteriorLights, - ... -} +EventZone::= EventHistory + ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | + (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) /** * This DF indicates a transversal position in relation to the different lanes of the road. - * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where V-ITS-S would normally not be present. + * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where Vehicle ITS-S would normally not be present. * * The following options are available: * @@ -4631,16 +4905,17 @@ GeneralizedLanePosition::= CHOICE { /** * This DF represents the Heading in a WGS84 co-ordinates system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * - * It includes the following components: + * It shall include the following components: * * @field headingValue: the heading value. * - * @field headingConfidence: the accuracy of the reported heading value with a predefined confidence level. + * @field headingConfidence: the confidence value of the heading value with a predefined confidence level. * - * @note: this DF is kept for backwards compatibility reasons only. It is reccomended to use the @ref Wgs84Angle instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84Angle instead. * @category: Kinematics Information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ Heading ::= SEQUENCE { headingValue HeadingValue, @@ -4651,7 +4926,7 @@ Heading ::= SEQUENCE { /** * This DF provides information associated to heading change indicators such as a change of direction. * - * It includes the following components: + * It shall include the following components: * * @field direction: the direction of heading change value. * @@ -4669,16 +4944,13 @@ HeadingChangeIndication ::= SEQUENCE { /** * This DF represents a frequency channel * - * It includes the following components: + * It shall include the following components: * - * @field centreFrequency: the centre frequency of the channel - * @unit: 10exp+2 Hz (where exp is exponent) + * @field centreFrequency: the centre frequency of the channel in 10^(exp+2) Hz (where exp is exponent) * - * @field channelWidth: width of the channel - * @unit: 10exp Hz (where exp is exponent) + * @field channelWidth: width of the channel in 10^exp Hz (where exp is exponent) * - * @field exponent of the power of 10 - * @unit: N/A + * @field exponent: exponent of the power of 10 used in the calculation of the components above. * * @category: Communication information * @revision: created in V2.1.1 @@ -4693,7 +4965,7 @@ InterferenceManagementChannel ::= SEQUENCE { * * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. * - * It includes the following components: + * It shall include the following components: * * @field zoneDefinition: contains the geographical definition of the zone. * @@ -4710,17 +4982,15 @@ InterferenceManagementZone ::= SEQUENCE { /** * This DF represents the geographical definition of the zone where band sharing occurs. * - * It includes the following components: + * It shall include the following components: * * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. * * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. * - * @field interferenceManagementZoneRadius: optional radius of the interference management zone in metres. - * * @field interferenceManagementZoneId: optional identification of the interference management zone. * - * @field interferenceManagementZoneShape: shape of the interference management zone. + * @field interferenceManagementZoneShape: shape of the interference management zone placed at the centre point. * * @category: Communication information * @revision: created in V2.1.1 @@ -4728,14 +4998,13 @@ InterferenceManagementZone ::= SEQUENCE { InterferenceManagementZoneDefinition::= SEQUENCE{ interferenceManagementZoneLatitude Latitude, interferenceManagementZoneLongitude Longitude, - interferenceManagementZoneRadius ProtectedZoneRadius OPTIONAL, interferenceManagementZoneId ProtectedZoneId OPTIONAL, interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, ... } /** - * This DF consists of a list of up to 16 definitions containing interference management information, per affected frequency channels. + * This DF shall contain a list of up to 16 definitions containing interference management information, per affected frequency channels. * * @category: Communication information. * @revision: created in V2.1.1 @@ -4746,7 +5015,7 @@ InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManageme /** * This DF contains interference management information for one affected frequency channel. * - * It includes the following components: + * It shall include the following components: * * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management * @@ -4770,7 +5039,7 @@ InterferenceManagementInfoPerChannel ::= SEQUENCE { } /** - * This DF consist of a list of up to 16 interference management zones. + * This DF shall contain 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. * @@ -4782,7 +5051,7 @@ InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManag /** * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.15]. * - * It includes the following components: + * It shall include the following components: * * @field region: 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 @ref Id is unique within the region. @@ -4799,7 +5068,7 @@ IntersectionReferenceId ::= SEQUENCE { } /** - * This DF consists of a list of waypoints @ref ReferencePosition. + * This DF shall contain a list of waypoints @ref ReferencePosition. * * @category: GeoReference information * @revision: Editorial update in V2.1.1 @@ -4810,13 +5079,13 @@ ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition * 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: + * It shall include the following components: * * @field protocolVersion: version of the ITS message. * * @field messageId: type of the ITS message. * - * @field stationId: the identifier of the ITS-S that generates the ITS message in question. + * @field stationId: the identifier of the ITS-S that generated the ITS message. * * @category: Communication information * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. @@ -4830,7 +5099,7 @@ ItsPduHeader ::= SEQUENCE { /** * This DF indicates a transversal position in resolution of lanes and the associated lane type. * - * It includes the following components: + * It shall include the following components: * * @field transversalPosition: the transversal position. * @@ -4846,17 +5115,17 @@ LanePositionAndType::= SEQUENCE { } /** - * This DF indicates the vehicle acceleration at lateral direction and the accuracy of the lateral acceleration. + * This DF indicates the vehicle acceleration at lateral direction and the confidence value of the lateral acceleration. * - * It includes the following components: + * It shall include the following components: * * @field lateralAccelerationValue: lateral acceleration value at a point in time. * - * @field lateralAccelerationConfidence: accuracy of the reported lateral acceleration value. + * @field lateralAccelerationConfidence: confidence value of the lateral acceleration value. * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. * @category Vehicle information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ LateralAcceleration ::= SEQUENCE { lateralAccelerationValue LateralAccelerationValue, @@ -4864,15 +5133,15 @@ LateralAcceleration ::= SEQUENCE { } /** - * This DF indicates the vehicle acceleration at longitudinal direction and the accuracy of the longitudinal acceleration. + * This DF indicates the vehicle acceleration at longitudinal direction and the confidence value of the longitudinal acceleration. * - * It includes the following components: + * It shall include the following components: * * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. - * @field longitudinalAccelerationConfidence: accuracy of the reported longitudinal acceleration value with a predefined + * @field longitudinalAccelerationConfidence: confidence value of the longitudinal acceleration value. * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. * @category: Vehicle information * @revision: V1.3.1 */ @@ -4884,11 +5153,11 @@ LongitudinalAcceleration ::= SEQUENCE { /** * This DF represents the estimated position along the longitudinal length of a particular lane. * - * It includes the following components: + * It shall include the following components: * * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. * - * @field longitudinalLanePositionConfidence: The confidence associated to the provided value. + * @field longitudinalLanePositionConfidence: The confidence value associated to the value. * * @category: Road topology information * @revision: created in V2.1.1 @@ -4899,18 +5168,48 @@ LongitudinalLanePosition ::= SEQUENCE { } /** - * 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 @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. + * This DF shall contain a list of a lower triangular positive semi-definite matrices. * - * @category: Vehicle information - * @revision: V1.3.1 + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +LowerTriangularPositiveSemidefiniteMatrices::= SEQUENCE SIZE (1..4) OF LowerTriangularPositiveSemidefiniteMatrix + +/** + * This DF represents a lower triangular positive semi-definite matrix. + * + * It shall include the following components: + * + * @field componentsIncludedIntheMatrix: the indication of which components of a @ref PerceivedObject are included in the matrix. + * This component also implicitly indicates the number n of included components which defines the size (n x n) of the full correlation matrix "A". + * + * @field matrix: the list of cells of the lower triangular positive semi-definite matrix ordered by columns and by rows. + * + * The number of columns to be included "k" is equal to the number of included components "n" indicated by componentsIncludedIntheMatrix minus 1: k = n-1. + * These components shall be included in the order or their appearance in componentsIncludedIntheMatrix. + * Each column "i" of the lowerTriangularCorrelationMatrixColumns contains k-(i-1) values. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE{ + componentsIncludedIntheMatrix MatrixIncludedComponents, + matrix LowerTriangularPositiveSemidefiniteMatrixColumns +} + +/** + * This DF represents the columns of a lower triangular positive semi-definite matrix, each column not including the main diagonal cell of the matrix. + * Given a matrix "A" of size n x n, the number of @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. + * + * @category: Sensing information + * @revision: Created in V2.1.1 */ -LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE SIZE (1..21) OF CorrelationColumn +LowerTriangularPositiveSemidefiniteMatrixColumns ::= SEQUENCE SIZE (1..13) OF CorrelationColumn /** * This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301 [i.15]. * - * It includes the following components: + * It shall include the following components: * * @field mapReference: optionally identifies the MAPEM containing the topology information. * It is absent if the MAPEM topology is known from the context. @@ -4947,16 +5246,33 @@ MapPosition ::= SEQUENCE { * @category: Road topology information * @revision: Created in V2.1.1 */ - MapReference::= CHOICE { roadsegment RoadSegmentReferenceId, intersection IntersectionReferenceId } +/** + * This DE indicates a message rate. + * + * @field mantissa: indicates the mantissa. + * + * @field exponent: indicates the exponent. + * + * The specified message rate is: mantissa*(10^exponent) + * + * @unit: Hz + * @category: Communication information + * @revision: Created in V2.1.1 + */ +MessageRateHz::= SEQUENCE { + mantissa INTEGER (1..100), + exponent INTEGER (-5..2) + } + /** * This DF provides information about a message with respect to the segmentation process at the sender. * - * It includes the following components: + * It shall include the following components: * * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. * @@ -4964,13 +5280,13 @@ MapReference::= CHOICE { */ MessageSegmentationInfo ::= SEQUENCE { - totalMsgNo CardinalNumber1B (1..255), - thisMsgNo OrdinalNumber1B (1..255) + totalMsgNo CardinalNumber3b, + thisMsgNo OrdinalNumber3b } /** - * - * This DF represents a list of @ref MitigationPerTechnologyClass. + * This DF shall contain a list of @ref MitigationPerTechnologyClass. + * * @category: Communication information * @revision: Created in V2.1.1 */ @@ -4979,20 +5295,20 @@ MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyCl /** * 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: + * It shall include the following components: * - * @field accessTechnologyClass: channel access technology to which this mitigation is applied. + * @field accessTechnologyClass: channel access technology to which this mitigation is intended to be applied. * * @field lowDutyCycle: duty cycle limit. - * @unit: 0.01% steps + * @unit: 0,01% steps * * @field powerReduction: the delta value of power to be reduced. * @unit: dB * - * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.21]. + * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.19]. * @unit: ms * - * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.22]. + * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.20]. * @unit: ms * * @note: All parameters are optional, as they may not apply to some of the technologies or @@ -5015,27 +5331,27 @@ MitigationPerTechnologyClass ::= SEQUENCE { * * The following options are available: * - * @field vehicleSubClass: the object is a road vehicle. + * @field vehicleSubClass: the object is a road vehicle and the specific subclass is specified. * - * @field vruSubClass: the object is a VRU. + * @field vruSubClass: the object is a VRU and the specific subclass is specified. * - * @field groupSubClass: the object is a VRU group or cluster. + * @field groupSubClass: the object is a VRU group or cluster and the cluster information is specified. * - * @field otherSubClass: the object is of a different types as the above. + * @field otherSubClass: the object is of a different type than the above and the specific subclass is specified. * * @category: Sensing information * @revision: Created in V2.1.1 */ ObjectClass ::= CHOICE { - vehicleSubClass VehicleSubClass, - vruSubClass VruProfileAndSubprofile, - groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), - otherSubClass OtherSubClass, + vehicleSubClass TrafficParticipantType (unknown|passengerCar..tram|agricultural), + vruSubClass VruProfileAndSubprofile, + groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), + otherSubClass OtherSubClass, ... } /** - * This DF consist of a list of object classes. + * This DF shall contain a list of object classes. * * @category: Sensing information * @revision: Created in V2.1.1 @@ -5043,13 +5359,13 @@ ObjectClass ::= CHOICE { ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence /** - * This DF represents the classification of a detected object together with a confidence indication. + * This DF represents the classification of a detected object together with a confidence level. * - * It includes the following components: + * It shall include the following components: * * @field objectClass: the class of the object. * - * @field ObjectClassConfidence: the associated confidence information. + * @field Confidence: the associated confidence level. * * @category: Sensing information * @revision: Created in V2.1.1 @@ -5060,13 +5376,13 @@ ObjectClassWithConfidence ::= SEQUENCE { } /** - * This DF represents a dimension of an object together with a confidence indication. + * This DF represents a dimension of an object together with a confidence value. * - * It includes the following components: + * It shall include the following components: * - * @field ObjectDimensionValue: the object dimension value which can be estimated as the mean of the current distribution. + * @field value: the object dimension value which can be estimated as the mean of the current distribution. * - * @field ObjectDimensionValue: the associated confidence information. + * @field confidence: the associated confidence value. * * @category: Sensing information * @revision: Created in V2.1.1 @@ -5077,8 +5393,8 @@ ObjectDimension ::= SEQUENCE { } /** - * This DF that represents a path with a set of path points. - * It may contain up to `40` @ref PathPoint. + * This DF represents a path with a set of path points. + * It shall contain up to `40` @ref 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. @@ -5089,8 +5405,8 @@ ObjectDimension ::= SEQUENCE { Path::= SEQUENCE (SIZE(0..40)) OF PathPoint /** - * This DF that represents a path history with a set of path points. - * It may contain up to `40` @ref PathPoint. + * This DF represents a path history with a set of path points. + * It shall contain up to `40` @ref 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. @@ -5099,11 +5415,11 @@ Path::= SEQUENCE (SIZE(0..40)) OF PathPoint * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead * @revision: semantics updated in V2.1.1 */ -PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint +PathHistory::= SEQUENCE (SIZE(40)) OF PathPoint /** - * This DF that represents a predicted path with a set of path points. - * It may contain up to `15` @ref PathPoint. + * This DF represents a predicted path with a set of path points. + * It shall contain up to `15` @ref 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. @@ -5114,9 +5430,9 @@ PathHistory::= SEQUENCE (SIZE(0..40)) OF PathPoint PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted /** - * This DF defines an offset waypoint position within a path. + * This DF defines an offset waypoint position within a path. * - * It includes the following components: + * It shall include the following components: * * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. * @@ -5133,24 +5449,23 @@ PathPoint ::= SEQUENCE { /** * This DF defines a predicted offset waypoint position within a path. * - * It includes the following components: + * It shall include the following components: * * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. * * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. * - * @field horizontalPositionConfidence: the accuracy of the horizontal geographical position. + * @field horizontalPositionConfidence: the confidence value associated to the horizontal geographical position. * * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. * - * @field altitudeConfidence: the accuracy of the altitude value of the geographical position. + * @field altitudeConfidence: the confidence value associated to the altitude value of the geographical position. * * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. * * @category GeoReference information * @revision: semantics updated in V2.1.1 */ - PathPointPredicted::= SEQUENCE { deltaLatitude DeltaLatitude, deltaLongitude DeltaLongitude, @@ -5164,129 +5479,52 @@ PathPointPredicted::= SEQUENCE { /** * This DF contains information about a perceived object including its kinematic state and attitude vector in a pre-defined coordinate system. * - * It includes the following components: + * It shall include the following components: * * @field objectId: optional identifier assigned to a detected object. * - * @field timeOfMeasurement: 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. + * @field timeOfMeasurement: 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. * - * @field xCoordinate: 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. - * - * @field yCoordinate: 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. - * - * @field zCoordinate: 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. - * - * @field velocityMagnitude: 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 + * @field position: the position of the geometric centre of the object´s bounding box within the pre-defined coordinate system, with the associated variance. * - * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * @field velocity: the velocity vector of the object within the pre-defined coordinate system with the associated variance. * - * @field xVelocity: velocity component of the detected object in x-direction at the time of measurement, with the associated variance. + * @field acceleration: the acceleration vector of the object within the pre-defined coordinate system with the associated variance. * - * @field yVelocity: velocity component of the detected object in y-direction at the time of measurement, with the associated variance. - * - * @field zVelocity: optional velocity component of the detected object in z-direction at the time of measurement, with the associated variance. + * @field angleZ: optional first angle of object bounding box at the time of measurement, with the associated variance. + * The angle is measured with positive values considering the object orientation turning around the z-axis using the right-hand rule, starting from the x-axis. + * This extrinsic rotation shall be applied around the centre point of the object´s bounding box before all other rotations. + + * @field angleY: optional second angle of object bounding box at the time of measurement with the associated variance. + * The angle is measured with positive values considering the object orientation turning around the y-axis using the right-hand rule, starting from the z-axis. + * This extrinsic rotation shall be applied around the centre point of the object´s bounding box after the rotation by angleZ and before the rotation by angleX. * - * @field accelerationMagnitude: 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. + * @field angleX: optional third angle of object bounding box at the time of measurement with the associated variance. + * The angle is measured with positive values considering the object orientation turning around the x-axis using the right-hand rule, starting from the z-axis. + * This extrinsic rotation shall be applied around the centre point of the object´s bounding box after all other rotations. + * + * @field zAngleVelocity: 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. * - * @field accelerationDirection: polar angle of the acceleration vector of the detected object in the X-Y plane at the time of measurement, with the associated variance. + * @field lowerTriangularCorrelationMatrices: optional set of lower triangular correlation matrices for selected components of the provided kinematic state and attitude vector. * - * @field xAcceleration: optional Acceleration of the detected object in x-direction at the time of measurement, with the associated variance. - * - * @field yAcceleration: optional Acceleration of the detected object in y-direction at the time of measurement, with the associated variance. + * @field objectDimensionZ: 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. * - * @field zAcceleration: optional Acceleration of the detected object in z-direction at the time of measurement, with the associated variance. + * @field objectDimensionY: 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. * - * @field rollAngle: 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. - * - * @field pitchAngle: 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. - * - * @field yawAngle: 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. - * - * @field rollSpeed: 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. - * - * @field pitchSpeed: 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. - * - * @field yawSpeed: 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. - * - * @field rollAcceleration: 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. - * - * @field pitchAcceleration: 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. - * - * @field yawAcceleration: 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. - * - * @field lowerTriangularCorrelationMatrixColumns: 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 (i.e. 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. - * - * @field planarObjectDimension1: 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. - * This component can only be present if the component yawAngle is present. - * - * @field planarObjectDimension2: 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. - * This component can only be present if the component yawAngle is present. - * - * @field verticalObjectDimension: optional vertical dimension of object as provided by the sensor or object model. + * @field objectDimensionX: 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. * - * @field objectRefPoint: the reference point on the perceived object. - * The point is located on the object´s face that is perpendicular to the direction of the object's @ref yawAngleValue. - * 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. - * * @field objectAge: 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. * - * @field objectConfidence: 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. + * @field objectPerceptionQuality: optional confidence associated to the object. * * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. * - * @field dynamicStatus: optional dynamic capabilities of a detected object. - * * @field classification: optional classification of the described object * * @field matchedPosition: optional map-matched position of an object. @@ -5294,41 +5532,23 @@ PathPointPredicted::= SEQUENCE { * @category Sensing information * @revision: created in V2.1.1 */ - 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 4, + 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, objectAge DeltaTimeMilliSecondPosNeg (0..1500) OPTIONAL, - objectConfidence ObjectConfidence OPTIONAL, + objectPerceptionQuality ObjectPerceptionQuality OPTIONAL, sensorIdList SequenceOfIdentifier1B OPTIONAL, - dynamicStatus ObjectDynamicStatus OPTIONAL, classification ObjectClassDescription OPTIONAL, mapPosition MapPosition OPTIONAL, ... @@ -5337,9 +5557,13 @@ PerceivedObject ::= SEQUENCE { /** * This DF represents the shape of a polygonal area or of a right prism. * - * It includes the following components: + * It shall include the following components: + * + * @field shapeReferencePoint: 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. * - * @field polygon: the polygonal area and consist of a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * @field polygon: the polygonal area represented by a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * All nodes of the polygon shall be considered relative to the shape´s reference point. * * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. * @@ -5348,17 +5572,17 @@ PerceivedObject ::= SEQUENCE { * */ PolygonalShape ::= SEQUENCE { - polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), - height StandardLength12b OPTIONAL, - ... + shapeReferencePoint CartesianPosition3d OPTIONAL, + polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), + height StandardLength12b OPTIONAL } /** - * This DF provides the horizontal position accuracy in a shape of ellipse with a + * 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 includes the following components: + * It shall include the following components: * * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point * and major axis point of the position accuracy ellipse. @@ -5368,6 +5592,7 @@ PolygonalShape ::= SEQUENCE { * * @field semiMajorOrientation: 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. * * * @category GeoReference information @@ -5376,11 +5601,37 @@ PolygonalShape ::= SEQUENCE { PosConfidenceEllipse ::= SEQUENCE { semiMajorConfidence SemiAxisLength, semiMinorConfidence SemiAxisLength, - semiMajorOrientation Wgs84AngleValue + semiMajorOrientation HeadingValue +} + +/** + * 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: + * + * @field semiMajorAxisLength: half of length of the major axis, i.e. distance between the centre point + * and major axis point of the position accuracy ellipse. + * + * @field semiMinorAxisLength: half of length of the minor axis, i.e. distance between the centre point + * and minor axis point of the position accuracy ellipse. + * + * @field semiMajorAxisOrientation: 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. + * + * @category GeoReference information + * @revision: created in V2.1.1 based on @ref PosConfidenceEllipse + */ +PositionConfidenceEllipse ::= SEQUENCE { + semiMajorAxisLength SemiAxisLength, + semiMinorAxisLength SemiAxisLength, + semiMajorAxisOrientation Wgs84AngleValue } /** - * This DF contains a list of distances @ref PosPillar that refer to the perpendicular distance between centre of vehicle front bumper + * This DF shall contain a list of distances @ref 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, @@ -5396,9 +5647,9 @@ PosConfidenceEllipse ::= SEQUENCE { PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar /** - * This DF describes a zone of protection inside which the ITSG5 communication should be restricted. + * This DF describes a zone of protection inside which the ITS communication should be restricted. * - * It includes the following components: + * It shall include the following components: * * @field protectedZoneType: type of the protected zone. * @@ -5428,7 +5679,7 @@ ProtectedCommunicationZone ::= SEQUENCE { } /** - * This DF consist of a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). + * This DF shall contain a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). * * It may provide up to 16 protected communication zones information. * @@ -5450,7 +5701,7 @@ ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicat * * 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) - * for controlling traffic lights, barriers, bollards, etc. This DF includes information like route, course, + * for controlling traffic lights, barriers, bollards, etc. This DF shall include information like route, course, * destination, priority, etc. * * The R09.x content is defined in VDV recommendation 420 [i.7]. It includes following information: @@ -5474,53 +5725,52 @@ PtActivation ::= SEQUENCE { /** * This DF describes a radial shape. 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 + * 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 * 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). * - * It includes the following components: + * It shall include the following components: * - * @field sensorPositionOffset: the optional offset opoint. + * @field shapeReferencePoint: 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. * - * @field range: the radial range of the sensor from the reference point or sensor point offset. + * @field range: the radial range of the shape from the shape´s reference point. * * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor's horizontal opening angle in positive angular direction with respect to the + * shape's horizontal opening angle in positive angular direction with respect to the * WGS84 coordinate system. * - * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor's horizontal opening angle in positive angular direction with respect to the WGS84 coordinate - * system. + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the shape's + * horizontal opening angle in positive angular direction with respect to the WGS84 coordinate system. * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's - * 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. + * @field verticalOpeningAngleStart: 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. * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the shape's * 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 using the DE CartesianAngleValue. + * located in the north-east plane of the WGS84 coordinate system. * * @category Sensing information * @revision: created in V2.1.1 */ RadialShape ::= SEQUENCE { - offsetPoint CartesianPosition3d OPTIONAL, + shapeReferencePoint CartesianPosition3d OPTIONAL, range StandardLength12b, stationaryHorizontalOpeningAngleStart Wgs84AngleValue, stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, - ... + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL } /** * This DF describes a list of radial shapes. * - * It includes the following components: + * It shall include the following components: * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). * @@ -5540,8 +5790,7 @@ RadialShapes ::= SEQUENCE { xCoordinate CartesianCoordinateSmall, yCoordinate CartesianCoordinateSmall, zCoordinate CartesianCoordinateSmall OPTIONAL, - radialShapesList RadialShapesList, - ... + radialShapesList RadialShapesList } /** @@ -5562,21 +5811,21 @@ RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF RadialShapeDetails * be provided to reflect characteristics of sensors mounted at an altitude (e.g. sensors mounted * above intersections). * - * It includes the following components: + * It shall include the following components: * * @field range: the radial range of the sensor from the reference point or sensor point offset. * - * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * stationary sensor's horizontal opening angle in positive angular direction. + * @field horizontalOpeningAngleStart: the orientation indicating the beginning of the + * shape's horizontal opening angle in positive angular direction. * - * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the stationary - * sensor's horizontal opening angle in positive angular direction. + * @field horizontalOpeningAngleEnd: The orientation indicating the end of the shape's horizontal + * opening angle in positive angular direction. * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the stationary sensor's + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the shape's * 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. + * located in the north-east plane of the WGS84 coordinate system. * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the stationary sensor's + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the shape's * 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. * @@ -5588,14 +5837,13 @@ RadialShapeDetails ::= SEQUENCE { horizontalOpeningAngleStart CartesianAngleValue, horizontalOpeningAngleEnd CartesianAngleValue, verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL, - ... + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL } /** * 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. * - * It includes the following components: + * It shall include the following components: * * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. * @@ -5604,6 +5852,7 @@ RadialShapeDetails ::= SEQUENCE { * @field semiBreadth: represents half the breadth of the rectangle. * * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. * @@ -5615,23 +5864,23 @@ RectangularShape ::= SEQUENCE { semiLength StandardLength12b, semiBreadth StandardLength12b, orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL, - ... + height StandardLength12b OPTIONAL } /** - * A position within a geographic coordinate system together with a confidence indication. + * A position within a geographic coordinate system together with a confidence ellipse. * - * It includes the following components: + * It shall include the following components: * * @field latitude: the latitude of the geographical point. * * @field longitude: the longitude of the geographical point. * - * @field positionConfidenceEllipse: the accuracy of the geographical position. + * @field positionConfidenceEllipse: the confidence ellipse associated to the geographical position. * * @field altitude: the altitude and an altitude accuracy of the geographical point. * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref ReferencePositionWithConfidence instead. * @category: GeoReference information * @revision: description updated in V2.1.1 */ @@ -5643,7 +5892,30 @@ ReferencePosition ::= SEQUENCE { } /** - * This DF consist of a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. + * A position within a geographic coordinate system together with a confidence ellipse. + * + * It shall include the following components: + * + * @field latitude: the latitude of the geographical point. + * + * @field longitude: the longitude of the geographical point. + * + * @field positionConfidenceEllipse: the confidence ellipse associated to the geographical position. + * + * @field altitude: the altitude and an altitude accuracy of the geographical point. + * + * @category: GeoReference information + * @revision: created in V2.1.1 based on @ref ReferencePosition but using @ref PositionConfidenceEllipse. + */ +ReferencePositionWithConfidence ::= SEQUENCE { + latitude Latitude, + longitude Longitude, + positionConfidenceEllipse PositionConfidenceEllipse, + altitude Altitude +} + +/** + * This DF shall contain a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. * * @category: Infrastructure information, Traffic information * @revision: V1.3.1 @@ -5653,12 +5925,12 @@ RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType /** * This DF represents a unique id for a road segment * - * It includes the following components: + * It shall include the following components: * * @field region: 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 @ref Id is unique within the region. * - * @field id: the identifier of the road segment + * @field id: the identifier of the road segment. * * @note: when the component region is present, the RoadSegmentReferenceId is guaranteed to be globally unique. * @category: GeoReference information @@ -5672,16 +5944,19 @@ RoadSegmentReferenceId ::= SEQUENCE { /** * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). * - * It includes the following components: + * It shall include the following components: * * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. * * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. - * If subjectStation is present than it indicates whether the distance between the ego ITS-S and the traffic participant inidcated in the component subjectStation is safe. + * 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. * * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. * + * @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). + * * @category: Traffic information, Kinematics information * @revision: created in V2.1.1 */ @@ -5693,7 +5968,7 @@ SafeDistanceIndication ::= SEQUENCE { } /** - * This DF represents a list of maximum `16` @ref CartesianPosition3d. + * This DF shall contain a list of DF @ref CartesianPosition3d. * * @category: GeoReference information * @revision: created in V2.1.1 @@ -5701,7 +5976,7 @@ SafeDistanceIndication ::= SEQUENCE { SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d /** - * The DF contains a list of identifiers. + * The DF contains a list of DE @ref Identifier1B. * * @category: Basic information * @revision: created in V2.1.1 @@ -5709,7 +5984,7 @@ SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPositi SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B /** - * The DF contains a list of DF SafeDistanceIndication. + * The DF contains a list of DF @ref SafeDistanceIndication. * * @category: Traffic information, Kinematics information * @revision: created in V2.1.1 @@ -5717,7 +5992,7 @@ SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..8,...)) OF SafeDistanceIndication /** - * The DF contains a list of DF TrajectoryInterceptionIndication. + * The DF shall contain a list of DF @ref TrajectoryInterceptionIndication. * * @category: Traffic information, Kinematics information * @revision: created in V2.1.1 @@ -5727,42 +6002,42 @@ SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..8,...)) OF Tra /** * This DF provides the definition of a geographical area or volume, based on different options. * - * It includes the following components: + * It is a choice of the following components: * - * @field rectangle: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. + * @field rectangular: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. * - * @field circle: definition of an area of circular shape or a right circular cylinder. + * @field circular: definition of an area of circular shape or a right circular cylinder. * - * @field polygon: definition of an area of polygonal shape or a right prism. + * @field polygonal: definition of an area of polygonal shape or a right prism. * - * @field ellipse: definition of an area of elliptical shape or a right elliptical cylinder. + * @field elliptical: definition of an area of elliptical shape or a right elliptical cylinder. * * @field radial: definition of a radial shape. * - * @field radialShapes: definition of list of radial shapes. + * @field radialList: definition of list of radial shapes. * * @category: GeoReference information * @revision: Created in V2.1.1 */ Shape::= CHOICE { - rectangle RectangularShape, - circle CircularShape, - polygon PolygonalShape, - ellipse EllipticalShape, - radial RadialShape, - radialShapes RadialShapes, + rectangular RectangularShape, + circular CircularShape, + polygonal PolygonalShape, + elliptical EllipticalShape, + radial RadialShape, + radialShapes RadialShapes, ... } /** - * This DF describes the speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). + * This DF represents the speed and associated confidence value. * - * It includes the following components: + * It shall include the following components: * * @field speedValue: the speed value. * - * @field speedConfidence: the accuracy of the reported speed value. + * @field speedConfidence: the confidence value of the speed value. * * @category: Kinematics information * @revision: V1.3.1 @@ -5772,31 +6047,14 @@ Speed ::= SEQUENCE { speedConfidence SpeedConfidence } -/** - * This DF describes the extended speed and corresponding accuracy of the speed information for a moving object (e.g. vehicle). - * - * It includes the following components: - * - * @field speedValue: the extended speed value. - * - * @field speedConfidence: the accuracy of the reported speed value. - * - * @category: Kinematics information - * @revision: V2.1.1 - */ -SpeedExtended ::= SEQUENCE { - speedValue SpeedValueExtended, - speedConfidence SpeedConfidence -} - /** * This DF provides the indication of change in stability. * - * It includes the following components: + * It shall include the following components: * * @field lossProbability: the probability of stability loss. * - * @field actionDeltaTime: accuracy of the reported speed value. + * @field actionDeltaTime: the period over which the the probability of stability loss is estimated. * * @category: Kinematics information * @revision: V2.1.1 @@ -5810,11 +6068,11 @@ StabilityChangeIndication ::= SEQUENCE { /** * This DF represents the steering wheel angle of the vehicle at certain point in time. * - * It includes the following components: + * It shall include the following components: * * @field steeringWheelAngleValue: steering wheel angle value. * - * @field steeringWheelAngleConfidence: accuracy of the reported steering wheel angle value. + * @field steeringWheelAngleConfidence: confidence value of the steering wheel angle value. * * @category: Vehicle information * @revision: Created in V2.1.1 @@ -5835,7 +6093,7 @@ Traces ::= SEQUENCE SIZE(1..7) OF Path /** * Ths DF represents the a position on a traffic island between two lanes. * - * It includes the following components: + * It shall include the following components: * * @field oneSide: represents one lane. * @@ -5853,7 +6111,7 @@ TrafficIslandPosition ::= SEQUENCE { /** * This DF provides detailed information about an attached trailer. * - * It includes the following components: + * It shall include the following components: * * @field refPointId: identifier of the reference point of the trailer. * @@ -5869,11 +6127,11 @@ TrafficIslandPosition ::= SEQUENCE { * * @field trailerWidth: optional width of the trailer. * - * @field hitchAngle: optional Value and confidence of the angle between the trailer orientation (corresponding to the x + * @field hitchAngle: optional Value and confidence value of the angle between the trailer orientation (corresponding to the x * direction of the ISO 8855 [2] coordinate system centered on the trailer) and the direction of * the segment having as end points the reference point of the trailer and the reference point of * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane - * xy, described in the local Cartesian coordinate system of the preceding reference point. The + * xy, described in the local Cartesian coordinate system of the trailer. The * angle is measured with negative values considering the trailer orientation turning clockwise * starting from the segment direction. The angle value accuracy is provided with the * confidence level of 95 %. @@ -5894,7 +6152,7 @@ TrailerData ::= SEQUENCE { /** * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. * - * It includes the following components: + * It shall include the following components: * * @field subjectStation: indicates the subject station. * @@ -5912,7 +6170,7 @@ TrajectoryInterceptionIndication ::= SEQUENCE { trajectoryInterceptionProbability TrajectoryInterceptionProbability, trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, ... - } +} /** * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. @@ -5935,17 +6193,17 @@ Ext2::=CHOICE{ Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length /** - * This DF indicates the vehicle acceleration at vertical direction and the accuracy of the vertical acceleration. + * This DF indicates the vehicle acceleration at vertical direction and the associated confidence value. * - * It includes the following components: + * It shall include the following components: * * @field verticalAccelerationValue: vertical acceleration value at a point in time. * - * @field verticalAccelerationConfidence: accuracy of the reported vertical acceleration value with a predefined confidence level. + * @field verticalAccelerationConfidence: confidence value of the vertical acceleration value with a predefined confidence level. * - * @note: this DF is kept forbackwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead * @category Vehicle information - * @revision: V1.3.1 + * @revision: Description revised in V2.1.1 */ VerticalAcceleration ::= SEQUENCE { verticalAccelerationValue VerticalAccelerationValue, @@ -5955,7 +6213,7 @@ VerticalAcceleration ::= SEQUENCE { /** * This DF provides information related to the identification of a vehicle. * - * It includes the following components: + * It shall include the following components: * * @field wMInumber: World Manufacturer Identifier (WMI) code. * @@ -5973,11 +6231,11 @@ VehicleIdentification ::= SEQUENCE { /** * This DF represents the length of vehicle and accuracy indication information. * - * It includes the following components: + * It shall include the following components: * * @field vehicleLengthValue: length of vehicle. * - * @field vehicleLengthConfidenceIndication: indication of reported length value confidence. + * @field vehicleLengthConfidenceIndication: indication of the length value confidence. * * @category: Vehicle information * @revision: V1.3.1 @@ -5987,10 +6245,101 @@ VehicleLength ::= SEQUENCE { vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication } +/** + * This DF represents the length of vehicle and accuracy indication information. + * + * It shall include the following components: + * + * @field vehicleLengthValue: length of vehicle. + * + * @field trailerPresenceInformation: information about the trailer presence. + * + * @category: Vehicle information + * @revision: created in V2.1.1 based on @ref VehicleLength but using @ref TrailerPresenceInformation + */ +VehicleLengthV2 ::= SEQUENCE { + vehicleLengthValue VehicleLengthValue, + trailerPresenceInformation TrailerPresenceInformation +} + +/** + * This DF represents a velocity vector with associated confidence value. + * + * The following options are available: + * + * @field polarVelocity: the representation of the velocity vector in a polar coordinate system. + * + * @field cartesianVelocity: the representation of the velocity vector in a cartesian coordinate system. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +Velocity3dWithConfidence::= CHOICE{ + polarVelocity VelocityPolarWithZ, + cartesianVelocity VelocityCartesian +} + +/** + * This DF represents a velocity vector in a cartesian coordinate system. + + * It shall include the following components: + * + * @field xVelocity: the x component of the velocity vector with the associated confidence value. + * + * @field yVelocity: the y component of the velocity vector with the associated confidence value. + * + * @field zVelocity: the optional z component of the velocity vector with the associated confidence value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +VelocityCartesian::= SEQUENCE { + xVelocity VelocityComponent, + yVelocity VelocityComponent, + zVelocity VelocityComponent OPTIONAL +} + +/** + * This DF represents a component of the velocity vector and the associated confidence value. + * + * It shall include the following components: + * + * @field value: the value of the component. + * + * @field confidence: the confidence value of the value. + * + * @category: Kinematics information + * @revision: V2.1.1 + */ +VelocityComponent ::= SEQUENCE { + value VelocityComponentValue, + confidence SpeedConfidence +} + +/** + * This DF represents a velocity vector in a polar coordinate system. + + * It shall include the following components: + * + * @field velocityMagnitude: magnitude of the velocity vector of the detected object in the X-Y plane with the associated confidence value. + * + * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane with the associated confidence value. + * + * @field zVelocity: the optional z component of the velocity vector with the associated confidence value. + * + * @category: Kinematics information + * @revision: Created in V2.1.1 + */ +VelocityPolarWithZ::= SEQUENCE { + velocityMagnitude Speed, + velocityDirection CartesianAngle, + zVelocity VelocityComponent OPTIONAL +} + /** * This DF provides information about a VRU cluster. * - * It includes the following components: + * It shall include the following components: * * @field clusterId: optional identifier of a VRU cluster . * @@ -5998,7 +6347,7 @@ VehicleLength ::= SEQUENCE { * * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group, i.e. the known members in the cluster + 1 (for the cluster leader) . * - * @field clusterProfiles: optionally identifies all the VRU profile types that are believed to be within the cluster. + * @field clusterProfiles: optionally identifies all the VRU profile types that are known to be within the cluster. * if this component is absent it means that the information is unavailable. * * @category: VRU information @@ -6006,15 +6355,34 @@ VehicleLength ::= SEQUENCE { */ VruClusterInformation ::= SEQUENCE { clusterId Identifier1B OPTIONAL, - clusterBoundingBoxShape Shape (WITH COMPONENTS{..., ellipse ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, + clusterBoundingBoxShape Shape (WITH COMPONENTS{..., elliptical ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, clusterCardinalitySize CardinalNumber1B, clusterProfiles VruClusterProfiles OPTIONAL, ... } +/** + * This DF represents the status of the exterior light switches of a VRU. + * This DF is an extension of the vehicular DE @ref ExteriorLights. + * + * It shall include the following components: + * + * @field vehicular: represents the status of the exterior light switches of a road vehicle. + * + * @field vruSpecific: represents the status of the exterior light switches of a VRU. + * + * @category: VRU information + * @revision: created in V2.1.1 + */ +VruExteriorLights ::= SEQUENCE { + vehicular ExteriorLights, + vruSpecific VruSpecificExteriorLights, + ... +} + /** * This DF indicates the profile of a VRU including sub-profile information - * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.20]: + * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.18]: * * @field pedestrian: VRU Profile 1 - Pedestrian. * @@ -6022,7 +6390,7 @@ VruClusterInformation ::= SEQUENCE { * * @field motorcyclist: VRU Profile 3 - Motorcyclist. * - * @field animal: VRU Profile 4 - Animals. + * @field animal: VRU Profile 4 - Animal. * * @category: VRU information * @revision: Created in V2.1.1 @@ -6030,19 +6398,20 @@ VruClusterInformation ::= SEQUENCE { VruProfileAndSubprofile ::= CHOICE { pedestrian VruSubProfilePedestrian, bicyclistAndLightVruVehicle VruSubProfileBicyclist, - motorcylist VruSubProfileMotorcyclist, + motorcyclist VruSubProfileMotorcyclist, animal VruSubProfileAnimal, ... } /** - * This DF represents an angular component along with a confidence in the WGS84 coordinate system. + * This DF represents an angular component along with a confidence value in the WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * - * It includes the following components: + * It shall include the following components: * - * @field value: the angle value which can be estimated as the mean of the current distribution. + * @field value: the angle value, which can be estimated as the mean of the current distribution. * - * @field confidence: the accuracy associated to the provided value. + * @field confidence: the confidence value associated to the angle value. * * @category: GeoReference information * @revision: Created in V2.1.1 @@ -6056,11 +6425,11 @@ Wgs84Angle ::= SEQUENCE { /** * This DF represents a yaw rate of vehicle at a point in time. * - * It includes the following components: + * It shall include the following components: * * @field yawRateValue: yaw rate value at a point in time. * - * @field yawRateConfidence: accuracy of reported yaw rate value. + * @field yawRateConfidence: confidence value associated to the yaw rate value. * * @category: Vehicle Information * @revision: V1.3.1 -- GitLab From 09ac83da71225c7bf9fd2927384522c6f2fb8de9 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Wed, 14 Sep 2022 09:49:08 +0000 Subject: [PATCH 60/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 306276 -> 332501 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 3f01ec7c9948a474ea83674e9225fa5ae221a00c..e301a2584fe74f31f0a67f73b6e23ba322f3bd25 100644 GIT binary patch delta 39260 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 E1?9J}xBvhE -- GitLab From 4c08068b76db0c7416ee2211ad630e3ab0c11313 Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Wed, 21 Sep 2022 10:54:41 +0200 Subject: [PATCH 61/91] fix fields placeholder and other comments --- ITS-Container.asn | 1 + asn2md.py | 60 ++++++++++++++++++++++++++++++++--------------- 2 files changed, 42 insertions(+), 19 deletions(-) diff --git a/ITS-Container.asn b/ITS-Container.asn index 252cce8..4ccd450 100644 --- a/ITS-Container.asn +++ b/ITS-Container.asn @@ -1,3 +1,4 @@ +--! @options: no-fields-header ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) 102894 cdd (2) major-version-3 (3) minor-version-1 (1)} DEFINITIONS AUTOMATIC TAGS ::= diff --git a/asn2md.py b/asn2md.py index dd9ab84..2203ba2 100755 --- a/asn2md.py +++ b/asn2md.py @@ -63,6 +63,8 @@ RE_OPTIONS = re.compile(r'^\s*@options[\s:]+(.+)', re.MULTILINE) extTypes = {} cpos = 0 o_args = [] +m_options = [] +f_options = [] def urlquote(s): if (sys.version_info > (3, 0)): @@ -112,6 +114,14 @@ def parseDoxyComments(content:str): ret += RE_STRIPSTAR.sub('', m.group(1)) return ret +def parseOptions(doc, opts): + def repl_options(m): + if m.group(1) is not None: + for o in m.group(1).split(','): + setattr(opts, o.strip(), True) + return '' + return RE_OPTIONS.sub(repl_options, doc) + def parseModule(mname, content): global cpos cpos = 0 @@ -139,24 +149,19 @@ def parseModule(mname, content): # parse types def repl_type (m, doc): + global m_options title = t = m.group(1) # type name f_params = {} s_unit = '' s_category = '' s_note = '' s_revision = '' - options = copy.copy(o_args) + options = copy.copy(m_options) if doc : # doc is the prepending comment. Check if not None and not Empty doc = parseDoxyComments(doc) # parse options - def repl_options(m): - nonlocal options - if m.group(1) is not None: - for o in m.group(1).split(','): - setattr(options, o.strip(), True) - return '' - doc=RE_OPTIONS.sub(repl_options, doc) + doc = parseOptions(doc, options) def repl_section (m): nonlocal title @@ -171,9 +176,12 @@ def parseModule(mname, content): ret = parseText(l) else: if len(l): + if len(f_params) == 0: + ret = '--((FIELDS))--' f_params[m.group(3)] = parseText(l, 2) + elif m.group(1) == 'brief': - if o_args.brief_as_title: + if options.brief_as_title: title = parseText(l) else: ret = parseText(l) @@ -189,29 +197,31 @@ def parseModule(mname, content): s_category = '\n    **Categories**: ' for l in m.group(1).split(','): # s_category += '[{0}](#{1}) '.format(l.strip(), urlquote(l.strip())) - s_category += l.strip() + ' ' + s_category += parseText(l).strip() + ' ' s_category += '\n' return '' doc = RE_DOXY_CATEGORY.sub(repl_category, doc) def repl_unit(m): nonlocal s_unit - s_unit = '\n    **Unit**: _' + m.group(1).strip() + '_\n' + s_unit = '\n    **Unit**: _' + parseText(m.group(1)).strip() + '_\n' return '' doc = RE_DOXY_UNIT.sub(repl_unit, doc) def repl_revision(m): nonlocal s_revision - s_revision = '\n    **Revision**: _' + m.group(1).strip() + '_\n' + s_revision = '\n    **Revision**: _' + parseText(m.group(1)).strip() + '_\n' return '' doc = RE_DOXY_REVISION.sub(repl_revision, doc) else: doc = '' + doc = [x.strip() for x in doc.split('--((FIELDS))--')] + ret = '' if t is not None: fields = '' - ret = '\n###
{1}\n'.format(t, title) + parseText(doc) + ret = '\n### {1}\n'.format(t, title) + parseText(doc[0]) # parse fields and get out fields descriptions if m.group(3) is not None: @@ -222,6 +232,7 @@ def parseModule(mname, content): if typeBody is not None: fTitle = '' field = '' + suffix = '' pos = 0 for fm in RE_FIELDS.finditer(typeBody): if fm.group(1) is not None: @@ -235,15 +246,15 @@ def parseModule(mname, content): field = f_params.pop(f) + '\n\n' if fm.group(2) is not None: fTitle = 'Fields:\n' - if len(field) or not o_args.no_auto_fields: + if len(field) or not options.no_auto_fields: t = fm.group(2).strip() if RE_BASIC_TYPES.match(t) is not None: - field = '* {0} **{1}** {2}
\n'.format(f, t, ext) + field + field = '* {0} of type **{1}** {2}
\n'.format(f, t, ext) + field else: - field = '* {0} [**{1}**]({2}#{1}) {3}
\n'.format(f, t, extTypes.get(t,''), ext) + field + field = '* {0} of type [**{1}**]({2}#{1}) {3}
\n'.format(f, t, extTypes.get(t,''), ext) + field else: fTitle = 'Values:\n' - if len(field) or not o_args.no_auto_values: + if len(field) or not options.no_auto_values: field = '* **{0}** {1}
\n'.format(f, ext) + field if len(field): field += parseText(fm.string[pos:fm.start()], 3) @@ -256,9 +267,11 @@ def parseModule(mname, content): if len(field): fields += parseInlineComments(typeBody[pos:], 3) # add all other fields defined as @params - if 'force-all-fields' in options or 'force-all-fields' in o_args: + if 'force-all-fields' in options: for f in f_params: fields += '* {}
\n{}\n\n'.format(f, f_params[f]) + if 'no-fields-header' in options: + fTitle = '' if len(fields): ret = ret.strip() + '\n\n' + fTitle + fields else: @@ -270,6 +283,12 @@ def parseModule(mname, content): for p in f_params: ret += '* `{0}` {1}\n'.format(p, f_params[p]) + try: + if len(doc[1]): + ret += doc[1] + '\n' + except: + pass + return ret + s_unit + s_category + s_revision + s_note + '```asn1\n' + RE_COMMENTS.sub('', m.group(0).strip()) +'\n```\n\n' pos = 0 @@ -282,11 +301,13 @@ def parseModule(mname, content): def parseAsn(outDir, content) : # iterate modules in the file + global m_options pos= 0 cnt = 0 + m_options = copy.copy(o_args) for m in RE_MODULE.finditer(content): ret = '# ASN.1 module {}\n OID: _{}_\n'.format(m.group(1), RE_SPACES.sub(' ', m.group(2))) - ret += parseDoxyComments(content[pos:m.start()]) + '\n' + ret += parseText(parseOptions(parseDoxyComments(content[pos:m.start()]), m_options)) + '\n' if m.group(3) is not None: ret += parseModule(m.group(1), m.group(3)) ret += '\n\n' @@ -303,6 +324,7 @@ def main(): ap.add_argument('--force-all-fields', '-f', default=False,action='store_true', help='Add all fields in the list even if empty') ap.add_argument('--no-auto-fields', '-F', default=False,action='store_true', help='Add fields only if @param or @field is defined') ap.add_argument('--no-auto-values', '-V', default=False,action='store_true', help='Do not add named values or enums') + ap.add_argument('--no-fields-header', '-H', default=False,action='store_true', help='Do not add fields and values header') ap.add_argument('modules', action='store', nargs='+', help='ASN.1 files') o_args = ap.parse_args() -- GitLab From 44bdf9262b60274b2c69bdf6e09bb4733617eb99 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Wed, 21 Sep 2022 08:55:30 +0000 Subject: [PATCH 62/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 332501 -> 334428 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index e301a2584fe74f31f0a67f73b6e23ba322f3bd25..174d53095a38207e343d39fb63b31966b4973c75 100644 GIT binary patch delta 14827 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 Date: Wed, 21 Sep 2022 13:21:10 +0200 Subject: [PATCH 63/91] add power sign support --- asn2md.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/asn2md.py b/asn2md.py index 2203ba2..2b1e4ed 100755 --- a/asn2md.py +++ b/asn2md.py @@ -41,6 +41,7 @@ RE_DOXY_C_COMMENTS = re.compile(r'^\s*/\*\*\s(.*?)\*/', re.MULTILINE | re.DOTALL RE_DOXY_C_COMMENTS_I = re.compile(r'\s*\*+') RE_STRIPSTAR = re.compile(r'^\s*\*', re.MULTILINE) +RE_POWER_SIGN = re.compile('\^(-?\w+|\(.*?\))') RE_DOXY_REF = re.compile(r'@ref\s+([\w-]+)') @@ -64,7 +65,6 @@ extTypes = {} cpos = 0 o_args = [] m_options = [] -f_options = [] def urlquote(s): if (sys.version_info > (3, 0)): @@ -89,6 +89,8 @@ def parseText(content, indent=None): content = RE_DOXY_STRIP_SINGLE_TAG.sub('', content) + content = RE_POWER_SIGN.sub('\\1', content) + return indentLines(content, indent) def parseInlineComments(content:str, indent=None): @@ -232,7 +234,6 @@ def parseModule(mname, content): if typeBody is not None: fTitle = '' field = '' - suffix = '' pos = 0 for fm in RE_FIELDS.finditer(typeBody): if fm.group(1) is not None: -- GitLab From e4a05d48ac4678b0ef2d1ad2060e026d60630676 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Wed, 21 Sep 2022 11:23:08 +0000 Subject: [PATCH 64/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 334428 -> 334598 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 174d53095a38207e343d39fb63b31966b4973c75..7042e3f70477a72fef34852dbe1b69ece2954bbb 100644 GIT binary patch delta 426 zcmcb!MWk(;$c78&d2NbI3+!~wZS+C(WW~!Olb@fj#3EXLp&C_m`g{e(lF0%uR5tfs zoXChO2Q;S_O=RQcepC^J{@Yg$qp6<0Fo|&{nsVD@#(8K$AQwzu|C3Q=dszzOF)lP& zpc%^3-{&(5PA|@93`3Iyng*6!fF=$!a`JQsc4m%t-9pCgx`j+-=0e~gGKGYYLV8hR zZtmoX{L*}e2FMcAPpx3ujYaA7j~R^9+f`OEZC6>ve9Zx(LL;@JK-)+YV&rtD*UWi* VV6%Y25V7`>*UZ~XUbDQ=0{~JznxX&z delta 235 zcmZqMCUR$s$c78&nd5ZLC*M8a3#Q92^n>a8EAuvQyx7eM=6GI)NIt#{mfT!_CAtqJ zG5vWG<4iE4H<@uBRA0&T_eP8|(-(YXDTia!(e*ALJMFT zCkJejpPnzyBGA6Jka7FkLZ&=(jyO|=^rFPv+{qL9rCAIO;!LN9tz_EG6ldBlyNYSM q>?-DBM~*m+)QSRaBhBe@Z Date: Wed, 21 Sep 2022 14:18:21 +0200 Subject: [PATCH 65/91] rename ITS-Container.asn to ETSI-ITS-CDD.asn --- ITS-Container.asn => ETSI-ITS-CDD.asn | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename ITS-Container.asn => ETSI-ITS-CDD.asn (100%) diff --git a/ITS-Container.asn b/ETSI-ITS-CDD.asn similarity index 100% rename from ITS-Container.asn rename to ETSI-ITS-CDD.asn -- GitLab From 40bfe317f14fbc9d215bfd40518f5199c2aae1e8 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Thu, 22 Sep 2022 09:28:56 +0000 Subject: [PATCH 66/91] Replace ETSI-ITS-CDD.asn --- ETSI-ITS-CDD.asn | 320 +++++++++++++++++++++++------------------------ 1 file changed, 158 insertions(+), 162 deletions(-) diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn index 4ccd450..6ee859c 100644 --- a/ETSI-ITS-CDD.asn +++ b/ETSI-ITS-CDD.asn @@ -1,4 +1,5 @@ --! @options: no-fields-header + ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) 102894 cdd (2) major-version-3 (3) minor-version-1 (1)} DEFINITIONS AUTOMATIC TAGS ::= @@ -17,7 +18,7 @@ BEGIN * - 0 - `accelerate` - if the magnitude of the horizontal velocity vector increases. * - 1 - `decelerate` - if the magnitude of the horizontal velocity vector decreases. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ AccelerationChange::= ENUMERATED { @@ -45,7 +46,7 @@ AccelerationChange::= ENUMERATED { * @note: If an acceleration value is received and its confidence value is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @unit 0,1 m/s2 - * @category: Kinematics information + * @category: Kinematic information * @revision: Description revised in V2.1.1 */ AccelerationConfidence ::= INTEGER { @@ -73,7 +74,7 @@ AccelerationConfidence ::= INTEGER { * or information is unavailable), the corresponding bit shall be set to 0. * * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. - * @category: Kinematics information + * @category: Vehicle information * @revision: V1.3.1 */ AccelerationControl ::= BIT STRING { @@ -95,9 +96,8 @@ AccelerationControl ::= BIT STRING { * - `160` for acceleration values greater than 15,9 m/s2, * - `161` when the data is unavailable. * - * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. * @unit 0,1 m/s2 - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ AccelerationMagnitudeValue ::= INTEGER { @@ -117,7 +117,7 @@ AccelerationMagnitudeValue ::= INTEGER { * * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. * @unit 0,1 m/s2 - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ AccelerationValue ::= INTEGER { @@ -389,7 +389,7 @@ AltitudeValue ::= INTEGER { * - `127` if the accuracy information is not available. * * @unit: 0,1 degrees - * @category: Kinematics information + * @category: Basic information * @revision: Created in V2.1.1 */ AngleConfidence ::= INTEGER { @@ -412,7 +412,7 @@ AngleConfidence ::= INTEGER { * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second, * - 7 - `unavailable` if the accuracy information is unavailable * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ AngularSpeedConfidence ::= ENUMERATED { @@ -422,8 +422,8 @@ AngularSpeedConfidence ::= ENUMERATED { degSec-10 (3), degSec-20 (4), degSec-50 (5), - outOfRange (7), - unavailable (8) + outOfRange (6), + unavailable (7) } /** @@ -434,14 +434,14 @@ AngularSpeedConfidence ::= ENUMERATED { * The value shall be set to: * - 0 - `degSecSquared-01` if the accuracy is equal to or less than 1 degree/second2, * - 1 - `degSecSquared-02` if the accuracy is equal to or less than 2 degrees/second2 and greater than 1 degree/second2, - * - 2 - `degSecSquared-05` if the accuracy is equal to or less than 5 degree/second2 and greater than 1 degree/second2, - * - 3 - `degSecSquared-10` if the accuracy is equal to or less than 10 degree/second2 and greater than 5 degree/second2, - * - 4 - `degSecSquared-20` if the accuracy is equal to or less than 20 degrees/second2 and greater than 10 degree/second2, + * - 2 - `degSecSquared-05` if the accuracy is equal to or less than 5 degrees/second2 and greater than 1 degree/second2, + * - 3 - `degSecSquared-10` if the accuracy is equal to or less than 10 degrees/second2 and greater than 5 degrees/second2, + * - 4 - `degSecSquared-20` if the accuracy is equal to or less than 20 degrees/second2 and greater than 10 degrees/second2, * - 5 - `degSecSquared-50` if the accuracy is equal to or less than 50 degrees/second2 and greater than 20 degrees/second2, * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second2, * - 7 - `unavailable` if the accuracy information is unavailable. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ AngularAccelerationConfidence ::= ENUMERATED { @@ -537,7 +537,7 @@ CardinalNumber3b ::= INTEGER(1..8) * The value 3600 shall not be used. * * @unit 0,1 degrees - * @category: Kinematics information + * @category: Basic information * @revision: Created in V2.1.1 */ CartesianAngleValue ::= INTEGER { @@ -552,16 +552,16 @@ CartesianAngleValue ::= INTEGER { * The value shall be set to: * - `-255` if the acceleration is equal to or less than -255 degrees/s2, * - `n` (`n > -255` and `n < 255`) if the acceleration is equal to or less than n x 1 degree/s2, - and greater than `(n-1)` x 0,01 degrees/s2, + and greater than `(n-1)` x 0,01 degree/s2, * - `255` if the acceleration is greater than 254 degrees/s2, * - `256` if the information is unavailable. * * @unit: degree/s2 (degrees per second squared) - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ CartesianAngularAccelerationComponentValue ::= INTEGER { - negativeOutofRange (-255), + negativeOutOfRange (-255), positiveOutOfRange (255), unavailable (256) } (-255..256) @@ -577,7 +577,7 @@ CartesianAngularAccelerationComponentValue ::= INTEGER { * - `256` if the information is unavailable. * * @unit: degree/s - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ CartesianAngularVelocityComponentValue ::= INTEGER { @@ -682,7 +682,7 @@ CartesianCoordinateSmall::= INTEGER { } (-3094..1001) /** - * This DF represents the value of a cartesian coordinate with a range of -327,68 metres to + 327,66 metres. + * This DF represents the value of a cartesian coordinate with a range of -327,68 metres to +327,66 metres. * * The value shall be set to: ` - `-32 768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres, @@ -699,7 +699,7 @@ CartesianCoordinate::= INTEGER{ } (-32768..32767) /** - * This DF represents the value of a cartesian coordinate with a range of -1 310,72 metres to + 1 310,70 metres. + * This DF represents the value of a cartesian coordinate with a range of -1 310,72 metres to +1 310,70 metres. * * The value shall be set to: ` - `-131072` if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres, @@ -849,7 +849,7 @@ CoordinateConfidence ::= INTEGER { * - `101` in case the correlation information is unavailable. * * @unit: the value is scaled by 100 - * @category: Sensing information + * @category: Basic information * @revision: Created in V2.1.1 */ CorrelationCellValue ::= INTEGER { @@ -1088,23 +1088,31 @@ DeltaLongitude ::= INTEGER { /** * This DE represents a difference in time with respect to a reference time. - + * + * The value shall be set to: + * - `n (n > 0 n < 10001)` to indicate a time value equal to or less than n x 0,001 s, and greater than (n-1) x 0,001 s, + * * Example: a time interval between two consecutive message transmissions. * * @unit: 0,001 s * @category: Basic information * @revision: Created in V2.1.1 from the DE TransmissionInterval in [i.2] */ -DeltaTimeMilliSecondPos ::= INTEGER (1..10000) +DeltaTimeMilliSecondPositive ::= INTEGER (1..10000) /** - * This DE represents a difference in time with respect to a reference time. + * This DE represents a signed difference in time with respect to a reference time. + * + * The value shall be set to: + * - `-2048` for time values equal to or less than -2,048 s, + * - `n (n > -2048 and n < 2047)` to indicate a time value equal to or less than n x 0,001 s, and greater than (n-1) x 0,001 s, + * - `2047` for time values greater than 2,046 s * * @unit: 0,001 s * @category: Basic information * @revision: Created in V2.1.1 */ -DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) +DeltaTimeMilliSecondSigned ::= INTEGER (-2048..2047) /** * This DE represents a difference in time with respect to a reference time. @@ -1120,7 +1128,11 @@ DeltaTimeQuarterSecond::= INTEGER { } (1..255) /** - * This DE represents a difference in time with respect to a reference time. + * This DE represents a difference in time with respect to a reference time. + * + * The value shall be set to: + * - `0` for a difference in time of 0 seconds. + * - `n (n > 0 n < 128)` to indicate a time value equal to or less than n x 0,1 s, and greater than (n-1) x 0,1 s, * * @unit: 0,1 s * @category: Basic information @@ -1133,6 +1145,10 @@ DeltaTimeTenthOfSecond::= INTEGER { /** * This DE represents a difference in time with respect to a reference time. * + * The value shall be set to: + * - `-0` for a difference in time of 0 seconds. + * - `n (n > 0 n <= 86400)` to indicate a time value equal to or less than n x 1 s, and greater than (n-1) x 1 s, + * * @unit: 1 s * @category: Basic information * @revision: Created in V2.1.1 from ValidityDuration @@ -1167,7 +1183,7 @@ Direction::= INTEGER{ * - 1 - `backwards` - to indicate it is moving backwards, * - 2 - `unavailable` - to indicate that the information is unavailable. * - * @category: Kinematics information + * @category: Kinematic information * @revision: editorial update in V2.1.1 */ DriveDirection ::= ENUMERATED { @@ -1302,7 +1318,7 @@ EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} /** - * This DE describes the status of the exterior light switches of a vehicle. + * This DE describes the status of the exterior light switches of a vehicle incl. VRU vehicles. * * The corresponding bit shall be set to 1 under the following conditions: * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on, @@ -1345,7 +1361,7 @@ ExteriorLights ::= BIT STRING { * This DE represents a timestamp based on TimestampIts modulo 65 536. * This means that generationDeltaTime = TimestampIts mod 65 536. * - * @category Time information + * @category: Basic information * @revision: Created in V2.1.1 based on ETSI TS 103 900 [i.1] */ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) @@ -1690,7 +1706,6 @@ InterferenceManagementZoneType ::= ENUMERATED { * @category: Vehicle information * @revision: Created in V2.1.1 */ - Iso3833VehicleType ::= INTEGER { passengerCar (0), saloon (1), @@ -1833,7 +1848,7 @@ LaneType::= INTEGER{ * The value 0 shall not be used. * * @unit: 0,01 metre - * @category: GeoReference information + * @category: Road topology information * @revision: Created in V2.1.1 */ LaneWidth::= INTEGER (0..1023) @@ -1912,7 +1927,7 @@ LightBarSirenInUse ::= BIT STRING { * - `n (n > 0 and n < 1 800 000 001)` x 10^-7 degree, i.e. positive values for longitudes to the east, * - `1 800 000 001` when the information is unavailable. * - * The value -1800000000 shall not be used. + * The value -1 800 000 000 shall not be used. * * @unit: 10^-7 degree * @category: GeoReference information @@ -1957,7 +1972,7 @@ LongitudinalAccelerationValue::= INTEGER { * - `32 767` if the longitudinal offset information is not available. * * @unit 0,1 metre - * @category: Road topology information + * @category: GeoReference information * @revision: Created in V2.1.1 */ LongitudinalLanePositionValue ::= INTEGER { @@ -1975,7 +1990,7 @@ LongitudinalLanePositionValue ::= INTEGER { * - `1 023` if the confidence value is unavailable. * * @unit 0,1 metre - * @category: Road topology information + * @category: GeoReference information * @revision: Created in V2.1.1 */ LongitudinalLanePositionConfidence ::= INTEGER { @@ -1983,7 +1998,6 @@ LongitudinalLanePositionConfidence ::= INTEGER { unavailable (1023) } (0..1023) - /** * This DE indicates the components of an @ref PerceivedObject that are included in the @ref LowerTriangularPositiveSemidefiniteMatrix. * @@ -1991,20 +2005,20 @@ LongitudinalLanePositionConfidence ::= INTEGER { * - 0 - `xCoordinate` - when the component xCoordinate of the component @ref CartesianPosition3dWithConfidence is included, * - 1 - `yCoordinate` - when the component yCoordinate of the component @ref CartesianPosition3dWithConfidence is included, * - 2 - `zCoordinate` - when the component zCoordinate of the component @ref CartesianPosition3dWithConfidence is included, - * - 3 - `xVelocityOrVelocityMagnitude` - when the component xVelocity or VelocityMagnitude of the component @ref VelocityPolarWithZ is included, - * - 4 - `yVelocityOrVelocityDirection` - when the component yVelocity or VelocityDirection of the component @ref VelocityPolarWithZ is included - * - 5 - `zVelocity` - when the component zVelocity of the component @ref VelocityPolarWithZ is included, + * - 3 - `xVelocityOrVelocityMagnitude` - when the component xVelocity of the component @ref VelocityCartesian or the component VelocityMagnitude of the component @ref VelocityPolarWithZ is included, + * - 4 - `yVelocityOrVelocityDirection` - when the component yVelocity of the component @ref VelocityCartesian or the component VelocityDirection of the component @ref VelocityPolarWithZ is included, + * - 5 - `zVelocity` - when the component zVelocity of the component @ref VelocityCartesian or of the component @ref VelocityPolarWithZ is included, * - 6 - `xAccelOrAccelMagnitude` - when the component xAcceleration of the component @ref AccelerationCartesian or the component AccelerationMagnitude of the component @ref AccelerationPolarWithZ is included, * - 7 - `yAccelOrAccelDirection` - when the component yAcceleration of the component @ref AccelerationCartesian or the component AccelerationDirection of the component @ref AccelerationPolarWithZ is included, * - 8 - `zAcceleration` - when the component zAcceleration of the component @ref AccelerationCartesian or of the component @ref AccelerationPolarWithZ is included, * - 9 - `zAngle` - when the component zAngle is included, * - 10 - `yAngle` - when the component yAngle is included, * - 11 - `xAngle` - when the component xAngle is included, - * - 12 - `zAngleRate` - when the component zAngleRate is included. + * - 12 - `zAngularVelocity` - when the component zAngularVelocity is included. * * Otherwise, it shall be set to 0. * - * @category Sensing information + * @category: Sensing information * @revision: Created in V2.1.1 */ MatrixIncludedComponents::= BIT STRING{ @@ -2020,7 +2034,7 @@ MatrixIncludedComponents::= BIT STRING{ zAngle (9), yAngle (10), xAngle (11), - zAngleRate (12) + zAngularVelocity (12) } (SIZE(13,...)) /** @@ -2120,7 +2134,7 @@ ObjectPerceptionQuality ::= INTEGER { * - `256` if the data is unavailable. * * @unit 0,1 m - * @category: Sensing information + * @category: Basic information * @revision: Created in V2.1.1 */ ObjectDimensionValue ::= INTEGER { @@ -2172,7 +2186,7 @@ ObjectFace ::= ENUMERATED { * This DE represents a time period to describe the opening days and hours of a Point of Interest. * (for example local commerce). * - * @category: Time information + * @category: Basic information * @revision: V1.3.1 */ OpeningDaysHours ::= UTF8String @@ -2199,27 +2213,25 @@ OrdinalNumber3b ::= INTEGER(1..8) * * The value shall be set to: * - `0` - unknown - if the subclass is unknown. - * - `1` - roadSideUnit - if the object is a roadside unit. - * - `2` - singleObject - if the object is a single object. - * - `3` - multipleObjects - if the object is a group of multiple objects. - * - `4` - bulkMaterial - if the object is a bulk material. + * - `1` - singleObject - if the object is a single object. + * - `2` - multipleObjects - if the object is a group of multiple objects. + * - `3` - bulkMaterial - if the object is a bulk material. * * @category: Sensing information * @revision: Created in V2.1.1 */ OtherSubClass ::= INTEGER { unknown (0), - roadSideUnit (1), - singleObject (2), - multipleObjects (3), - bulkMaterial (4) + singleObject (1), + multipleObjects (2), + bulkMaterial (3) } (0..255) /** * This DE represents the recorded or estimated travel time between a position and a predefined reference position. * * @unit 0,01 second - * @category GeoReference information + * @category: GeoReference information * @revision: V1.3.1 */ PathDeltaTime ::= INTEGER (1..65535, ...) @@ -2677,7 +2689,7 @@ RoadworksSubCauseCode ::= INTEGER { * @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) * - * @category: Traffic information, Kinematics information + * @category: Traffic information, Kinematic information * @revision: created in V2.1.1 */ SafeDistanceIndicator::= BOOLEAN @@ -2877,10 +2889,10 @@ SpeedLimit ::= INTEGER (1..255) * - `16 382` for speed values greater than 163,81 m/s, * - `16 383` if the speed accuracy information is not available. * - * @note: the the definition of “standstill” is out of scope of this document. + * @note: the definition of “standstill” is out of scope of this document. * * @unit: 0,01 m/s - * @category: Kinematics information + * @category: Kinematic information * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) */ SpeedValue ::= INTEGER { @@ -2899,12 +2911,12 @@ SpeedValue ::= INTEGER { * - `16 383` if the velocity information is not available. * * @unit: 0,01 m/s - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ VelocityComponentValue ::= INTEGER { negativeOutOfRange (-16383), - psotiveOutOfRange (16382), + positiveOutOfRange (16382), unavailable (16383) } (-16383..16383) @@ -2920,7 +2932,7 @@ VelocityComponentValue ::= INTEGER { * - `63`: this value indicates that the information is unavailable. * * @unit: 2% - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ StabilityLossProbability ::= INTEGER { @@ -3001,7 +3013,7 @@ StandardLength2B::= INTEGER (0..65535) * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute, * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ StationarySince ::= ENUMERATED { @@ -3350,7 +3362,7 @@ TrailerPresenceInformation ::= ENUMERATED { * - `63`: to indicate that the information is unavailable. * * @unit: 2% - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ TrajectoryInterceptionProbability ::= INTEGER { @@ -3366,7 +3378,7 @@ TrajectoryInterceptionProbability ::= INTEGER { * - `2` to indicate confidence level greater than or equal to 70 % and less than 90 %, * - `3` to indicate confidence level greater than or equal to 90%. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ TrajectoryInterceptionConfidence ::= INTEGER { @@ -3378,8 +3390,6 @@ TrajectoryInterceptionConfidence ::= INTEGER { /** * This DE represents the time interval between two consecutive message transmissions. - - * Example: a time interval between two consecutive message transmissions. * * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref DeltaTimeMilliSecondPos instead. * @unit: 0,001 s @@ -3395,7 +3405,7 @@ TransmissionInterval::= INTEGER (1..10000) * - `left` for turning to te left. * - `right`for turing to the right. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ TurningDirection::= ENUMERATED { @@ -3430,7 +3440,10 @@ TurningRadius ::= INTEGER { * @category: Basic information * @revision: V1.3.1 */ -ValidityDuration::= INTEGER (0..86400) +ValidityDuration::= INTEGER { + timeOfDetection(0), + oneSecondAfterDetection(1) +} (0..86400) /** * This DE represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.6]. @@ -3485,6 +3498,7 @@ VehicleBreakdownSubCauseCode ::= INTEGER { * - `128` indicates that the information in unavailable. * * @unit: 0,05 metre + * @category: Vehicle information * @revision: created in V2.1.1 */ VehicleHeight ::= INTEGER { @@ -3595,38 +3609,6 @@ VehicleRole ::= ENUMERATED { reserved3 (15) } -/** - * This DE describes the subclass of a vehicle. - * - * The value shall be set to: - * - `0` unknown : to indicate that the type of vehicle is unknown, - * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, - * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, - * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, - * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2, N3, - * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, - * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle), - * - `7` tram : to indicate a vehicle running on tracks along public streets, - * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine, - * - `9` agricultural : to indicate a vehicle used for agricultural purposes, - * - Values 10 to 31 are reserved for future use. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -VehicleSubClass ::= INTEGER { - unknown (0), - passengerCar (1), - bus (2), - lightTruck (3), - heavyTruck (4), - trailer (5), - specialVehicles (6), - tram (7), - emergencyVehicle (8), - agricultural (9) -} (0..31) - /** * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. @@ -4025,7 +4007,7 @@ WrongWayDrivingSubCauseCode ::= INTEGER { * If a yaw rate value is received and its confidence value is set to `outOfRange(7)`, it means that the * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. * - * @category: Traffic information + * @category: Vehicle information * @revision: Description revised in V2.1.1 */ YawRateConfidence ::= ENUMERATED { @@ -4079,11 +4061,11 @@ YawRateValue ::= INTEGER { * * It shall include the following components: * - * @field polarAcceleration: the representation of the acceleration vector in a polar coordinate system. + * @field polarAcceleration: the representation of the acceleration vector in a polar or cylindrical coordinate system. * * @field cartesianAcceleration: the representation of the acceleration vector in a cartesian coordinate system. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ Acceleration3dWithConfidence::= CHOICE { @@ -4092,18 +4074,17 @@ Acceleration3dWithConfidence::= CHOICE { } /** - * This DF represents an acceleration vector in a polar coordinate system. + * This DF represents an acceleration vector in a polar or cylindrical coordinate system. * It shall include the following components: * - * @field accelerationMagnitude: magnitude of the acceleration vector in the X-Y plane with the associated confidence value. - * Negative magnitude values indicate accelerating backwards. + * @field accelerationMagnitude: magnitude of the acceleration vector projected onto the reference plane, with the associated confidence value. * - * @field accelerationDirection: polar angle of the acceleration vector in the X-Y plane with the associated confidence value. + * @field accelerationDirection: polar angle of the acceleration vector projected onto the reference plane, with the associated confidence value. * - * @field zAcceleration: the optional z component of the acceleration vector with the associated confidence value. + * @field zAcceleration: the optional z component of the acceleration vector along the reference axis of the cylindrical coordinate system, with the associated confidence value. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ AccelerationPolarWithZ::= SEQUENCE{ @@ -4123,7 +4104,7 @@ AccelerationPolarWithZ::= SEQUENCE{ * * @field zAcceleration: the optional z component of the acceleration vector with the associated confidence value. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ AccelerationCartesian::= SEQUENCE{ @@ -4145,7 +4126,7 @@ AccelerationCartesian::= SEQUENCE{ * @revision: Created in V2.1.1 */ AccelerationComponent ::= SEQUENCE { - value AccelerationMagnitudeValue, + value AccelerationValue, confidence AccelerationConfidence } @@ -4176,7 +4157,7 @@ AccelerationChangeIndication ::= SEQUENCE { * * @field accelerationConfidence: the confidence value of the magnitude value. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ AccelerationMagnitude::= SEQUENCE { @@ -4273,7 +4254,7 @@ BasicContainer ::= SEQUENCE { * * @field confidence: The confidence value associated to the provided value. * - * @category: Kinematics information + * @category: Basic information * @revision: Created in V2.1.1 */ CartesianAngle ::= SEQUENCE { @@ -4290,7 +4271,7 @@ CartesianAngle ::= SEQUENCE { * * @field confidence: The confidence value associated to the provided value. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ CartesianAngularVelocityComponent ::= SEQUENCE { @@ -4307,7 +4288,7 @@ CartesianAngularVelocityComponent ::= SEQUENCE { * * @field confidence: The confidence value associated to the provided value. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ CartesianAngularAccelerationComponent ::= SEQUENCE { @@ -4353,7 +4334,7 @@ CartesianPosition3d::=SEQUENCE{ } /** - * This DF represents a position in a two- or three-dimensional cartesian coordinate system with an addocaited confidence level for each coordinate. + * This DF represents a position in a two- or three-dimensional cartesian coordinate system with an associated confidence level for each coordinate. * * It shall include the following components: * @@ -4611,7 +4592,7 @@ CircularShape ::= SEQUENCE { * It indicates the open/closing status of driving lanes. * For carriageways with more than 13 driving lanes, the drivingLaneStatus component shall not be present. * - * @category: GeoReference information, Road topology information + * @category: Infrastructure information, Road topology information * @revision: Description revised in V2.1.1 */ ClosedLanes ::= SEQUENCE { @@ -4804,6 +4785,32 @@ EllipticalShape ::= SEQUENCE { height StandardLength12b OPTIONAL } +/** + * This DF represents the Euler angles which describe the orientation of an object bounding box in a Cartesian coordinate system with an associated confidence level for each angle. + * + * It shall include the following components: + * + * @field zAngle: z-angle of object bounding box at the time of measurement, with the associated confidence. + * The angle is measured with positive values considering the object orientation turning around the z-axis using the right-hand rule, starting from the x-axis. + * This extrinsic rotation shall be applied around the centre point of the object bounding box before all other rotations. + * + * @field yAngle: optional y-angle of object bounding box at the time of measurement, with the associated confidence. + * The angle is measured with positive values considering the object orientation turning around the y-axis using the right-hand rule, starting from the z-axis. + * This extrinsic rotation shall be applied around the centre point of the object bounding box after the rotation by zAngle and before the rotation by xAngle. + * + * @field xAngle: optional x-angle of object bounding box at the time of measurement, with the associated confidence. + * The angle is measured with positive values considering the object orientation turning around the x-axis using the right-hand rule, starting from the z-axis. + * This extrinsic rotation shall be applied around the centre point of the object bounding box after all other rotations. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +EulerAnglesWithConfidence ::= SEQUENCE { + zAngle CartesianAngle, + yAngle CartesianAngle OPTIONAL, + xAngle CartesianAngle OPTIONAL +} + /** * * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.16]. @@ -4915,7 +4922,7 @@ GeneralizedLanePosition::= CHOICE { * @field headingConfidence: the confidence value of the heading value with a predefined confidence level. * * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84Angle instead. - * @category: Kinematics Information + * @category: Kinematic Information * @revision: Description revised in V2.1.1 */ Heading ::= SEQUENCE { @@ -4933,7 +4940,7 @@ Heading ::= SEQUENCE { * * @field actionDeltaTime: the period over which a direction change action is performed. * - * @category: Kinematics Information + * @category: Kinematic Information * @revision: created in V2.1.1 */ HeadingChangeIndication ::= SEQUENCE { @@ -5106,7 +5113,7 @@ ItsPduHeader ::= SEQUENCE { * * @field laneType: the type of the lane identified in the component transversalPosition. * - * @category GeoReference information + * @category Road topology information * @revision: Created in V2.1.1 */ LanePositionAndType::= SEQUENCE { @@ -5278,8 +5285,10 @@ MessageRateHz::= SEQUENCE { * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. * * @field thisMsgNo: indicates the position of the message within of the total set of messages. - -*/ + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ MessageSegmentationInfo ::= SEQUENCE { totalMsgNo CardinalNumber3b, thisMsgNo OrdinalNumber3b @@ -5412,8 +5421,8 @@ Path::= SEQUENCE (SIZE(0..40)) OF 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. * - * @category: GeoReference information, Vehicle information * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead + * @category: GeoReference information, Vehicle information * @revision: semantics updated in V2.1.1 */ PathHistory::= SEQUENCE (SIZE(40)) OF PathPoint @@ -5478,34 +5487,24 @@ PathPointPredicted::= SEQUENCE { } /** - * This DF contains information about a perceived object including its kinematic state and attitude vector in a pre-defined coordinate system. + * 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. * * It shall include the following components: * * @field objectId: optional identifier assigned to a detected object. * - * @field timeOfMeasurement: the time difference from a reference time to the time of the measurement of the object. + * @field measurementDeltaTime: 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. * - * @field position: the position of the geometric centre of the object´s bounding box within the pre-defined coordinate system, with the associated variance. + * @field position: the position of the geometric centre of the object´s bounding box within the pre-defined coordinate system. * - * @field velocity: the velocity vector of the object within the pre-defined coordinate system with the associated variance. + * @field velocity: the velocity vector of the object within the pre-defined coordinate system. * - * @field acceleration: the acceleration vector of the object within the pre-defined coordinate system with the associated variance. + * @field acceleration: the acceleration vector of the object within the pre-defined coordinate system. * - * @field angleZ: optional first angle of object bounding box at the time of measurement, with the associated variance. - * The angle is measured with positive values considering the object orientation turning around the z-axis using the right-hand rule, starting from the x-axis. - * This extrinsic rotation shall be applied around the centre point of the object´s bounding box before all other rotations. - - * @field angleY: optional second angle of object bounding box at the time of measurement with the associated variance. - * The angle is measured with positive values considering the object orientation turning around the y-axis using the right-hand rule, starting from the z-axis. - * This extrinsic rotation shall be applied around the centre point of the object´s bounding box after the rotation by angleZ and before the rotation by angleX. - * - * @field angleX: optional third angle of object bounding box at the time of measurement with the associated variance. - * The angle is measured with positive values considering the object orientation turning around the x-axis using the right-hand rule, starting from the z-axis. - * This extrinsic rotation shall be applied around the centre point of the object´s bounding box after all other rotations. + * @field angles: optional Euler angles of the object bounding box at the time of measurement. * - * @field zAngleVelocity: optional angular velocity of the object around the z-axis at the time of measurement, with the associated variance. + * @field zAngularVelocity: optional angular velocity of the object around the z-axis at the time of measurement. * The angular velocity is measured with positive values considering the object orientation turning around the z-axis using the right-hand rule. * * @field lowerTriangularCorrelationMatrices: optional set of lower triangular correlation matrices for selected components of the provided kinematic state and attitude vector. @@ -5535,19 +5534,17 @@ PathPointPredicted::= SEQUENCE { */ PerceivedObject ::= SEQUENCE { objectId Identifier2B OPTIONAL, - timeOfMeasurement DeltaTimeMilliSecondPosNeg, + measurementDeltaTime DeltaTimeMilliSecondSigned, position CartesianPosition3dWithConfidence, velocity Velocity3dWithConfidence OPTIONAL, acceleration Acceleration3dWithConfidence OPTIONAL, - zAngle CartesianAngle OPTIONAL, - yAngle CartesianAngle OPTIONAL, - xAngle CartesianAngle OPTIONAL, - zAngleVelocity CartesianAngularVelocityComponent OPTIONAL, + angles EulerAnglesWithConfidence OPTIONAL, + zAngularVelocity CartesianAngularVelocityComponent OPTIONAL, lowerTriangularCorrelationMatrices LowerTriangularPositiveSemidefiniteMatrices OPTIONAL, objectDimensionZ ObjectDimension OPTIONAL, objectDimensionY ObjectDimension OPTIONAL, objectDimensionX ObjectDimension OPTIONAL, - objectAge DeltaTimeMilliSecondPosNeg (0..1500) OPTIONAL, + objectAge DeltaTimeMilliSecondSigned (0..2047) OPTIONAL, objectPerceptionQuality ObjectPerceptionQuality OPTIONAL, sensorIdList SequenceOfIdentifier1B OPTIONAL, classification ObjectClassDescription OPTIONAL, @@ -5755,7 +5752,7 @@ PtActivation ::= SEQUENCE { * 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. * - * @category Sensing information + * @category GeoReference information * @revision: created in V2.1.1 */ RadialShape ::= SEQUENCE { @@ -5958,7 +5955,7 @@ RoadSegmentReferenceId ::= SEQUENCE { * @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). * - * @category: Traffic information, Kinematics information + * @category: Traffic information, Kinematic information * @revision: created in V2.1.1 */ SafeDistanceIndication ::= SEQUENCE { @@ -5987,7 +5984,7 @@ SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B /** * The DF contains a list of DF @ref SafeDistanceIndication. * - * @category: Traffic information, Kinematics information + * @category: Traffic information, Kinematic information * @revision: created in V2.1.1 */ SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..8,...)) OF SafeDistanceIndication @@ -5995,7 +5992,7 @@ SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..8,...)) OF SafeDistanceInd /** * The DF shall contain a list of DF @ref TrajectoryInterceptionIndication. * - * @category: Traffic information, Kinematics information + * @category: Traffic information, Kinematic information * @revision: created in V2.1.1 */ SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..8,...)) OF TrajectoryInterceptionIndication @@ -6020,7 +6017,6 @@ SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..8,...)) OF Tra * @category: GeoReference information * @revision: Created in V2.1.1 */ - Shape::= CHOICE { rectangular RectangularShape, circular CircularShape, @@ -6040,7 +6036,7 @@ Shape::= CHOICE { * * @field speedConfidence: the confidence value of the speed value. * - * @category: Kinematics information + * @category: Kinematic information * @revision: V1.3.1 */ Speed ::= SEQUENCE { @@ -6057,7 +6053,7 @@ Speed ::= SEQUENCE { * * @field actionDeltaTime: the period over which the the probability of stability loss is estimated. * - * @category: Kinematics information + * @category: Kinematic information * @revision: V2.1.1 */ StabilityChangeIndication ::= SEQUENCE { @@ -6176,7 +6172,7 @@ TrajectoryInterceptionIndication ::= SEQUENCE { /** * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. * - * @category: Vehicle information + * @category: Basic information * @revision: Created in V2.1.1 */ VarLengthNumber::=CHOICE{ @@ -6268,11 +6264,11 @@ VehicleLengthV2 ::= SEQUENCE { * * The following options are available: * - * @field polarVelocity: the representation of the velocity vector in a polar coordinate system. + * @field polarVelocity: the representation of the velocity vector in a polar or cylindrical coordinate system. * * @field cartesianVelocity: the representation of the velocity vector in a cartesian coordinate system. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ Velocity3dWithConfidence::= CHOICE{ @@ -6291,7 +6287,7 @@ Velocity3dWithConfidence::= CHOICE{ * * @field zVelocity: the optional z component of the velocity vector with the associated confidence value. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ VelocityCartesian::= SEQUENCE { @@ -6309,7 +6305,7 @@ VelocityCartesian::= SEQUENCE { * * @field confidence: the confidence value of the value. * - * @category: Kinematics information + * @category: Kinematic information * @revision: V2.1.1 */ VelocityComponent ::= SEQUENCE { @@ -6318,17 +6314,17 @@ VelocityComponent ::= SEQUENCE { } /** - * This DF represents a velocity vector in a polar coordinate system. - + * This DF represents a velocity vector in a polar or cylindrical coordinate system. + * * It shall include the following components: * - * @field velocityMagnitude: magnitude of the velocity vector of the detected object in the X-Y plane with the associated confidence value. + * @field velocityMagnitude: magnitude of the velocity vector on the reference plane, with the associated confidence value. * - * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane with the associated confidence value. + * @field velocityDirection: polar angle of the velocity vector on the reference plane, with the associated confidence value. * - * @field zVelocity: the optional z component of the velocity vector with the associated confidence value. + * @field zVelocity: the optional z component of the velocity vector along the reference axis of the cylindrical coordinate system, with the associated confidence value. * - * @category: Kinematics information + * @category: Kinematic information * @revision: Created in V2.1.1 */ VelocityPolarWithZ::= SEQUENCE { -- GitLab From 48d76b861fec337a372cfa9b2fbf20531818f957 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Thu, 22 Sep 2022 09:30:23 +0000 Subject: [PATCH 67/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 334598 -> 335521 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 7042e3f70477a72fef34852dbe1b69ece2954bbb..62a190cba94ae91530804ce6c301ae0f13209834 100644 GIT binary patch delta 3747 zcmcIndr(x@8J}~{xhyP?Wnp&_c^yF!mWKFDc`T#|f=L;V-XHkTdT1eRa|pG8->i5-3>s4U ztIlzgCDn1t{`HB0C#ydbl+HDw%JJHW!F4gp?X^_-Va;-7Y)UkHa@DNluj`!@n*(pJ z^P=f04S{`isgasFIA4y#V0a-GVZo1x7)X-(1?8m4qMT^|`_z#Z7;X@Z3hpcjY?E&U zqmZSXlWl>^uI9u*$({-v*!fI+lCJX%!x3 zvUDLOgunQ*jd0_8!eyQjGn^<8LX_WMteCWxIa(UBR&IAot=#bJsn?T7Z6Q8gdS+y? z=0S8*PQGJdQ4?+Rcr|;l)rV5b^Ru~7wLo)dlbdF^X$jRfQm4C>svh%Gh5v!Wvvh}5 zb?V7!_L?pTR)cD9G4;X83&MP5V)VHb-Ff=ZL&bFYnwpA7DjuU5nghAH>Urh*Rhx3; zJ)%TkCd$t~iVWPi)FmiqM;2+I;94Fcm?Kh-j@n8*ZPY=1Qj5pk>dU3m5jiv@dHF?O z0p#EXAr$$P0aJ?L%T|5NRPd#}%F-)u!|hjvl+dOehXzPBSN;{|ifPf}g$~D8SRC9< zFwZbInLyM`t48NR^q?RIvmH2k)jruNt3I9^NWXC z@tQ#GKf*)R+FS((z9|^l8yJ-|0?i^DS+x_%rZ8IMa8O=?l%4NFJHw!?1UEueKbi&S ztwdz!wx9y62^klr6L@zAN`NzW$Q*cSCo)6tcJ%UtveX@@0cAt~4%DXad}|kqgBP}= zLKeFdVG`Nxa(Zhem#0Pc_cg)wZ74N*OS!v!x|mgd7o8M{DuS{OVq>%RqT8{0lMOE; zCWwBRd-v3f=+Q8sW??0ZdR@%96D-`TUx8NMR^-Xes4K1)A%%7stAXT3O%<{ z1)jhrzAp^e*iTOj@2u2VUa2~jqKrKe%6@0S?}tWl@@VOEaq9AN?s9=SQ;3D1N8>*R zL1-g`g~s67=)ui%V)2EvF0V(;jnqm#Zcc*!4vBiDHpwfwTO``$a=N8#7!buQP;3X z+(0bQHNhW$v5_3*NJrTH;NX*;$jF*(_*QVh>4TEJJ{#{waMetVuso5EhHaaW0ivRa z0miL_u&zXW8bPClgu{{|Y=Zq3Vh2|OjvN>kVJI0J*|W*`6B4w>`1E}~`ri0re0&`X z7L+=c%XN*?WA;zQI?CFIA zKOpItFG6WNjsxz3iKr?eZ!VqZ`k<(h zq|6A4N9n%;wQeR*PL%-kUYH6@b01ad*ri6fbqclCmeY3hYCBZm1NCH;4xC3_JN7lw zxE}TX|A6OwIq(^h33G;Up4MaG_u9e-CrWT?h#nUhw_$5YpB4e=ZzstidNkDcS+MyS zu__zCFtZKA_=*)E2`}c9X@>)!p%94LgjU1YpkQF*H}RW-w#u&k3CE@CL%Ak`{51_S zhj1pC(s7N_)M$jtToMN#`~+KAkAuXd6E!W$@W@=aWx@_PT}!rvcS=rQw^!=qO$kFO zI2r2eNO-t@ld{_zGt!iS5zFLVknOD_#}IUxaVWOa9@rWpCP3c?vPTseApLRjrnXpY z*Sk!o#l9|y*4ypVB2p*&JC=FeZE~y1)S8uPtMKIGglc6m|2{IAq}UlU0=&%=VtLOR z)vh(#wIb9m07vg|>MdT3=Rjfud4~O>fsB#|!I^cinS8)I^ot@~4-@0rO(zja=u~{* z`--x&ux1H&vjX-7{(5E zke88Z^4dCOovq$PnscG*b+Qo-zd(#E<`6k-*O)wbpGZN>_6~VT=XW;#E_qh}vjY5e z9=rByvcRAo_!g^upLA(7U&!u`kcK#|I@zgD$$L=`j#O>_4&EV`bW_@mgeNzeeeh3` zG3}bdYLU1>*9pl#MkXlB63oDdM=E3z@s%0W+TdI%&IOAo*4f-TW6Ut74}RGiAHUhq Q7b0%|UyWbJvGv6M3rVgGBme*a delta 3043 zcmb7Gdr(x@8J}~`T^`G0cVSsT6pxSSg1nZuG`?a;gBB1$#Hx5N%LT41yPJIoSkZ*> z6*W|QCw$ZDq@|rn6JrIsnH;B08{1A=W5=M0#t_G-&BK{?;wyionO56#?=BBx`bY0S z=eytQeCPXq-}%na@2q>@u#Q+T@`o(=b%Ok=1(&KLqj{mMsO3>G;=r+-=Qy)8bTa-^ zO)Ob&hHjgEoD50UXG@eI!$CG}t~CdN=->mDAbIwV+C zTl?3@KPgI7y&dK1X4ew9J`2Z$zUa8Z^(LjW!IOvQg*LmMoT(-su&Dn$I4^W@e-c47 z^!dT`S#WCvH4VN_;?=&FV?xTS{fpE)7iWQG2-#HorIOISOQlH7y}T@HjmKXjw`)Se z*9nDESX_x`z~Nt`c-1`q<5^)XT2ZltR@F3Aez$ThwdXoY3JUV_93|?C%TzskB_Z_X zxEHJH$7Q;4$b0qsNT*cq)!5MSYsa-Tj-KBb8vg7`s(R{PL+I}PxERu)bg5{|)9}-s zf|0F_LQ6NR%PXJw(Le^fd z0r^1OgI+cIXrt`%IF&#ztau(}!j8SD6heDZ8~kt&%4hrcAtFS%

jR!6(6Fnj=I z2-+Vzdk~FcgDz5UJeSN~96(Ba?x~4%0Ig!E61o2 ze#PDHl51PG%Fci;D1;-UD9u(Bk+%e0oz*;MpCY*^g&PTIKKo=8rPgzlj1CD^Fgu$h zur&s3evBucHvo7SAPyTBvcR9Sake`5MiP6FjZGZ&FmxTSg)Mn_7501Bi9DPTZkjsq zjtjByn{mO!<`&{-;&o4T?9-+A_p7*>bO^V@`F%K!Sr6c9j!(upFCq2brH|O*0sIk% zy{5C4y?Ged8C3E5Y}Pu6cNpO`671}$A$-I(vp(3e(k1!*bC*7zFD-49I~1o&jxg2b z_tT+i7$v}iqbS>0Ao6T>x;@=)7(I*Uv*lrorWa4Ix+V>_gG zMy(7@z3pzWYZXBn^>HoCd<7xFzs^=$)#UkyHrER^_H1+>)XlA7p=Fpm= za3m!n4frI*CG*hxaT>f=jn{>DALzkRPm84@^?PL}2S6lkeo8B7z(W;xtK#I?pweV+ zx_MqZXouwIyoeF?27O+SUxu+B{GAxFOy8{w?(D`HmMKGD(Cy|>gpyi3f0tM;Qn^d! zNpU-SBb)xuErWi!m4`wl_mmBXbs#7O6px$wgFGND9#Z>X87&Zs;6kl;9R`$4S~EL z1AmJrd@}JnWHT#IBr}l4NP>K9C;)FJNr6))qL_K1106DL%H2S{yp}SE#IW#jz73x% zyx`kp+9kE~yD-S_#BJdsOu^LYlsU?|n!BC0NY2h~$;aDAF_WHe^;-acO(FjXhXk&8 zVuYqRLp-~XL_P~&T+NWUAH}elsbnXD^Cl7tuVoSk`(qmUErK1HB$4&cAeGug;)hai zn`2onCHu^ejAv$ZkY7&BUB(CYBJH-EnBLlmPJ!APWG+-VNIbh%M*5?pT3bC%NrAd^ zB$Mq~MiLc1(9+q-SID(_s`!-&3O*zPTYZsyn8IDHIY~+fv&nAo%tuCc^Y3I>+fCzw z_k@taZhk@jJtr~|;Z!|}XVqrmlX+~oSg2e8jya?lsy7O~mVnYF*S1y5l0WFJuLkr_X@Nl1^7Z1yJMID!WjVvE@(@d3g+58l}<48yXY2vN{R45lf5PqT1( zil028pJy~`_%mkH?NEDxJZaF#UY&$h7f6*+7p>4{*ozi}6-=V=E68|v+K%i^QMfEj zi!Ler%;3<}K&d@1vOxL|NoQAOK@d#eI3oP)n2@HP_r$@@6TH4Nw@#jvsr%u|qW#|HM+2SO*u31^h4|N7d*_>`_r)vhp> zd{=lkQR~k+JnQdpR}+&x8ve3XFte4&VAmi#!H!{X3x=j?zMwe|TOhxfWBP2I!J<7g z4RF7VSmAWEVb`?IKN4eDzo1R;`Bpi=A1VB@_k>?7-*y#b!NOQW*Z*OV10Td1`XNCu PG*62+n$^S^>XZKq4Hx?{ -- GitLab From 8ea7fb7c2db83ef74593eada1cbcc29aa2176904 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Thu, 22 Sep 2022 09:35:42 +0000 Subject: [PATCH 68/91] Replace ETSI-ITS-CDD.asn --- ETSI-ITS-CDD.asn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn index 6ee859c..0cbe225 100644 --- a/ETSI-ITS-CDD.asn +++ b/ETSI-ITS-CDD.asn @@ -5131,7 +5131,7 @@ LanePositionAndType::= SEQUENCE { * * @field lateralAccelerationConfidence: confidence value of the lateral acceleration value. * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationComponent instead. * @category Vehicle information * @revision: Description revised in V2.1.1 */ @@ -5149,7 +5149,7 @@ LateralAcceleration ::= SEQUENCE { * @field longitudinalAccelerationConfidence: confidence value of the longitudinal acceleration value. * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationComponent instead. * @category: Vehicle information * @revision: V1.3.1 */ @@ -6198,7 +6198,7 @@ Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length * * @field verticalAccelerationConfidence: confidence value of the vertical acceleration value with a predefined confidence level. * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationComponent instead * @category Vehicle information * @revision: Description revised in V2.1.1 */ -- GitLab From 67e1e4846c0df843ce805b606eb4b03eab2d8d35 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Thu, 22 Sep 2022 09:36:09 +0000 Subject: [PATCH 69/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 335521 -> 335563 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 62a190cba94ae91530804ce6c301ae0f13209834..857c9ef25103fa7b90673171cf83601e61a54512 100644 GIT binary patch delta 60 zcmZ3uSLF0wk%kt=7N!>FEi6Zbr_UE*R-HcCok?{22Vs^Y%t-tP;w*)C!TjwRUs)_Q E0kYl}6#xJL delta 109 zcmX@TS7hN{k%kt=7N!>FEi6ZbMGRB4v|=@s9g~w&b5e^EOEUBG45v?UXOh_dPnhKh XGamUr;w*)CMX~8m**@Vbi?t>IEoUZJ -- GitLab From f0446e7febf6bd40aea8a0f261c975fd63b7eb11 Mon Sep 17 00:00:00 2001 From: tijinkj <673-tijinkj@users.noreply.forge.etsi.org> Date: Thu, 22 Sep 2022 11:52:07 +0000 Subject: [PATCH 70/91] Replace ETSI-ITS-CDD.asn --- ETSI-ITS-CDD.asn | 649 ++++++++++++++++++++++++----------------------- 1 file changed, 325 insertions(+), 324 deletions(-) diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn index 0cbe225..15b89b1 100644 --- a/ETSI-ITS-CDD.asn +++ b/ETSI-ITS-CDD.asn @@ -242,11 +242,11 @@ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. * * The value shall be set to: - * - 0 - `unavailable` : in case information on the type of precipitation is unavailable, - * - 1 - `heavyRain` : in case the type of precipitation is heavy rain, - * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall, - * - 3 - `softHail` : in case the type of precipitation is soft hail. - * - 4-255 : are reserved for future usage + * - 0 - `unavailable` - in case information on the type of precipitation is unavailable, + * - 1 - `heavyRain` - in case the type of precipitation is heavy rain, + * - 2 - `heavySnowfall` - in case the type of precipitation is heavy snow fall, + * - 3 - `softHail` - in case the type of precipitation is soft hail. + * - 4-255 - are reserved for future usage * * @category: Traffic information * @revision: V1.3.1 @@ -309,22 +309,22 @@ AirHumidity ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - 0 - `alt-000-01` if the confidence value is equal to or less than 0,01 metre, - * - 1 - `alt-000-02` if the confidence value is equal to or less than 0,02 metre and greater than 0,01 metre, - * - 2 - `alt-000-05` if the confidence value is equal to or less than 0,05 metre and greater than 0,02 metre, - * - 3 - `alt-000-10` if the confidence value is equal to or less than 0,1 metre and greater than 0,05 metre, - * - 4 - `alt-000-20` if the confidence value is equal to or less than 0,2 metre and greater than 0,1 metre, - * - 5 - `alt-000-50` if the confidence value is equal to or less than 0,5 metre and greater than 0,2 metre, - * - 6 - `alt-001-00` if the confidence value is equal to or less than 1 metre and greater than 0,5 metre, - * - 7 - `alt-002-00` if the confidence value is equal to or less than 2 metres and greater than 1 metre, - * - 8 - `alt-005-00` if the confidence value is equal to or less than 5 metres and greater than 2 metres, - * - 9 - `alt-010-00` if the confidence value is equal to or less than 10 metres and greater than 5 metres, - * - 10 - `alt-020-00` if the confidence value is equal to or less than 20 metres and greater than 10 metres, - * - 11 - `alt-050-00` if the confidence value is equal to or less than 50 metres and greater than 20 metres, - * - 12 - `alt-100-00` if the confidence value is equal to or less than 100 metres and greater than 50 metres, - * - 13 - `alt-200-00` if the confidence value is equal to or less than 200 metres and greater than 100 metres, - * - 14 - `outOfRange` if the confidence value is out of range, i.e. greater than 200 metres, - * - 15 - `unavailable` if the confidence value is unavailable + * - 0 - `alt-000-01` - if the confidence value is equal to or less than 0,01 metre, + * - 1 - `alt-000-02` - if the confidence value is equal to or less than 0,02 metre and greater than 0,01 metre, + * - 2 - `alt-000-05` - if the confidence value is equal to or less than 0,05 metre and greater than 0,02 metre, + * - 3 - `alt-000-10` - if the confidence value is equal to or less than 0,1 metre and greater than 0,05 metre, + * - 4 - `alt-000-20` - if the confidence value is equal to or less than 0,2 metre and greater than 0,1 metre, + * - 5 - `alt-000-50` - if the confidence value is equal to or less than 0,5 metre and greater than 0,2 metre, + * - 6 - `alt-001-00` - if the confidence value is equal to or less than 1 metre and greater than 0,5 metre, + * - 7 - `alt-002-00` - if the confidence value is equal to or less than 2 metres and greater than 1 metre, + * - 8 - `alt-005-00` - if the confidence value is equal to or less than 5 metres and greater than 2 metres, + * - 9 - `alt-010-00` - if the confidence value is equal to or less than 10 metres and greater than 5 metres, + * - 10 - `alt-020-00` - if the confidence value is equal to or less than 20 metres and greater than 10 metres, + * - 11 - `alt-050-00` - if the confidence value is equal to or less than 50 metres and greater than 20 metres, + * - 12 - `alt-100-00` - if the confidence value is equal to or less than 100 metres and greater than 50 metres, + * - 13 - `alt-200-00` - if the confidence value is equal to or less than 200 metres and greater than 100 metres, + * - 14 - `outOfRange` - if the confidence value is out of range, i.e. greater than 200 metres, + * - 15 - `unavailable` - if the confidence value is unavailable. * * @note: The fact that an altitude value is received with confidence value set to `unavailable(15)` can be caused * by several reasons, such as: @@ -403,14 +403,14 @@ AngleConfidence ::= INTEGER { * For correlation computation, maximum interval levels can be assumed. * * The value shall be set to: - * - 0 - `degSec-01` if the accuracy is equal to or less than 1 degree/second, - * - 1 - `degSec-02` if the accuracy is equal to or less than 2 degrees/second and greater than 1 degree/second, - * - 2 - `degSec-05` if the accuracy is equal to or less than 5 degrees/second and greater than 2 degrees/second, - * - 3 - `degSec-10` if the accuracy is equal to or less than 10 degrees/second and greater than 5 degrees/second, - * - 4 - `degSec-20` if the accuracy is equal to or less than 20 degrees/second and greater than 10 degrees/second, - * - 5 - `degSec-50` if the accuracy is equal to or less than 50 degrees/second and greater than 20 degrees/second, - * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second, - * - 7 - `unavailable` if the accuracy information is unavailable + * - 0 - `degSec-01` - if the accuracy is equal to or less than 1 degree/second, + * - 1 - `degSec-02` - if the accuracy is equal to or less than 2 degrees/second and greater than 1 degree/second, + * - 2 - `degSec-05` - if the accuracy is equal to or less than 5 degrees/second and greater than 2 degrees/second, + * - 3 - `degSec-10` - if the accuracy is equal to or less than 10 degrees/second and greater than 5 degrees/second, + * - 4 - `degSec-20` - if the accuracy is equal to or less than 20 degrees/second and greater than 10 degrees/second, + * - 5 - `degSec-50` - if the accuracy is equal to or less than 50 degrees/second and greater than 20 degrees/second, + * - 6 - `outOfRange` - if the accuracy is out of range, i.e. greater than 50 degrees/second, + * - 7 - `unavailable` - if the accuracy information is unavailable. * * @category: Kinematic information * @revision: Created in V2.1.1 @@ -432,14 +432,14 @@ AngularSpeedConfidence ::= ENUMERATED { * For correlation computation, maximum interval levels shall be assumed. * * The value shall be set to: - * - 0 - `degSecSquared-01` if the accuracy is equal to or less than 1 degree/second2, - * - 1 - `degSecSquared-02` if the accuracy is equal to or less than 2 degrees/second2 and greater than 1 degree/second2, - * - 2 - `degSecSquared-05` if the accuracy is equal to or less than 5 degrees/second2 and greater than 1 degree/second2, - * - 3 - `degSecSquared-10` if the accuracy is equal to or less than 10 degrees/second2 and greater than 5 degrees/second2, - * - 4 - `degSecSquared-20` if the accuracy is equal to or less than 20 degrees/second2 and greater than 10 degrees/second2, - * - 5 - `degSecSquared-50` if the accuracy is equal to or less than 50 degrees/second2 and greater than 20 degrees/second2, - * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second2, - * - 7 - `unavailable` if the accuracy information is unavailable. + * - 0 - `degSecSquared-01` - if the accuracy is equal to or less than 1 degree/second2, + * - 1 - `degSecSquared-02` - if the accuracy is equal to or less than 2 degrees/second2 and greater than 1 degree/second2, + * - 2 - `degSecSquared-05` - if the accuracy is equal to or less than 5 degrees/second2 and greater than 1 degree/second2, + * - 3 - `degSecSquared-10` - if the accuracy is equal to or less than 10 degrees/second2 and greater than 5 degrees/second2, + * - 4 - `degSecSquared-20` - if the accuracy is equal to or less than 20 degrees/second2 and greater than 10 degrees/second2, + * - 5 - `degSecSquared-50` - if the accuracy is equal to or less than 50 degrees/second2 and greater than 20 degrees/second2, + * - 6 - `outOfRange` - if the accuracy is out of range, i.e. greater than 50 degrees/second2, + * - 7 - `unavailable` - if the accuracy information is unavailable. * * @category: Kinematic information * @revision: Created in V2.1.1 @@ -685,7 +685,7 @@ CartesianCoordinateSmall::= INTEGER { * This DF represents the value of a cartesian coordinate with a range of -327,68 metres to +327,66 metres. * * The value shall be set to: - ` - `-32 768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres, + * - `-32 768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres, * - `n (n > -32 768 and n < 32 767)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `32 767` if the longitudinal offset is out of range, i.e. greater than + 327,66 metres. * @@ -702,7 +702,7 @@ CartesianCoordinate::= INTEGER{ * This DF represents the value of a cartesian coordinate with a range of -1 310,72 metres to +1 310,70 metres. * * The value shall be set to: - ` - `-131072` if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres, + * - `-131072` if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres, * - `n (n > 131 072 and n < 131 071)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `131 071` if the longitudinal offset is out of range, i.e. greater than + 1 310,70 metres. * @@ -882,14 +882,14 @@ CurvatureCalculationMode ::= ENUMERATED { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - 0 - `onePerMeter-0-00002` if the confidence value is less than or equal to 0,00002 m-1, - * - 1 - `onePerMeter-0-0001` if the confidence value is less than or equal to 0,0001 m-1 and greater than 0,00002 m-1, - * - 2 - `onePerMeter-0-0005` if the confidence value is less than or equal to 0,0005 m-1 and greater than 0,0001 m-1, - * - 3 - `onePerMeter-0-002` if the confidence value is less than or equal to 0,002 m-1 and greater than 0,0005 m-1, - * - 4 - `nePerMeter-0-01` if the confidence value is less than or equal to 0,01 m-1 and greater than 0,002 m-1, - * - 5 - `nePerMeter-0-1` if the confidence value is less than or equal to 0,1 m-1 and greater than 0,01 m-1, - * - 6 - `outOfRange` if the confidence value is out of range, i.e. greater than 0,1 m-1, - * - 7 - `unavailable` if the confidence value is not available. + * - 0 - `onePerMeter-0-00002` - if the confidence value is less than or equal to 0,00002 m-1, + * - 1 - `onePerMeter-0-0001` - if the confidence value is less than or equal to 0,0001 m-1 and greater than 0,00002 m-1, + * - 2 - `onePerMeter-0-0005` - if the confidence value is less than or equal to 0,0005 m-1 and greater than 0,0001 m-1, + * - 3 - `onePerMeter-0-002` - if the confidence value is less than or equal to 0,002 m-1 and greater than 0,0005 m-1, + * - 4 - `nePerMeter-0-01` - if the confidence value is less than or equal to 0,01 m-1 and greater than 0,002 m-1, + * - 5 - `nePerMeter-0-1` - if the confidence value is less than or equal to 0,1 m-1 and greater than 0,01 m-1, + * - 6 - `outOfRange` - if the confidence value is out of range, i.e. greater than 0,1 m-1, + * - 7 - `unavailable` - if the confidence value is not available. * * @note: The fact that a curvature value is received with confidence value set to `unavailable(7)` can be caused by * several reasons, such as: @@ -1886,7 +1886,7 @@ Latitude ::= INTEGER { * - `161` when the data is unavailable. * * @note: the empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead. * * @unit: 0,1 m/s2 * @category: Vehicle information @@ -1950,7 +1950,7 @@ Longitude ::= INTEGER { * - `161` when the data is unavailable. * * This acceleration is along the tangent plane of the road surface and does not include gravity components. - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead. * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * @unit: 0,1 m/s2 @@ -2288,12 +2288,12 @@ PosCentMass ::= INTEGER { * This DE indicates the positioning technology being used to estimate a geographical position. * * The value shall be set to: - * - 0 `noPositioningSolution` : no positioning solution used, - * - 1 `sGNSS` : Global Navigation Satellite System used, - * - 2 `dGNSS` : Differential GNSS used, - * - 3 `sGNSSplusDR` : GNSS and dead reckoning used, - * - 4 `dGNSSplusDR` : Differential GNSS and dead reckoning used, - * - 5 `dR` : dead reckoning used. + * - 0 `noPositioningSolution` - no positioning solution used, + * - 1 `sGNSS` - Global Navigation Satellite System used, + * - 2 `dGNSS` - Differential GNSS used, + * - 3 `sGNSSplusDR` - GNSS and dead reckoning used, + * - 4 `dGNSSplusDR` - Differential GNSS and dead reckoning used, + * - 5 `dR` - dead reckoning used. * * @category: GeoReference information * @revision: V1.3.1 @@ -2413,12 +2413,12 @@ PosPillar ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on post crash event is unavailable, - * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, - * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, - * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, - * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle. - * - 5-255 : are reserved for future usage. + * - 0 `unavailable` - in case further detailed information on post crash event is unavailable, + * - 1 `accidentWithoutECallTriggered` - in case no eCall has been triggered for an accident, + * - 2 `accidentWithECallManuallyTriggered` - in case eCall has been manually triggered and transmitted to eCall back end, + * - 3 `accidentWithECallAutomaticallyTriggered` - in case eCall has been automatically triggered and transmitted to eCall back end, + * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` - in case eCall has been triggered but cellular network is not accessible from triggering vehicle. + * - 5-255 - are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2519,12 +2519,12 @@ PtActivationType ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . * * The value shall be set to: - * - 0 `unavailable` : in case no further detailed information on the railway level crossing status is available, - * - 1 `doNotCrossAbnormalSituation` : in case when something wrong is detected by equation or sensors of the railway level crossing, + * - 0 `unavailable` - in case no further detailed information on the railway level crossing status is available, + * - 1 `doNotCrossAbnormalSituation` - in case when something wrong is detected by equation or sensors of the railway level crossing, including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), - * - 2 `closed` : in case the crossing is closed (barriers down), - * - 3 `unguarded` : in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), - * - 4 `nominal` : in case the barriers are up and lights are off. + * - 2 `closed` - in case the crossing is closed (barriers down), + * - 3 `unguarded` - in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), + * - 4 `nominal` - in case the barriers are up and lights are off. * - 5-255: reserved for future usage. * * @category: Traffic information @@ -2542,14 +2542,14 @@ RailwayLevelCrossingSubCauseCode ::= INTEGER { * This DE describes a distance of relevance for information indicated in a message. * * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m, - * - 1 `lessThan100m` : for distances below 100 m, - * - 2 `lessThan200m` : for distances below 200 m, - * - 3 `lessThan500m` : for distances below 300 m, - * - 4 `lessThan1000m` : for distances below 1 000 m, - * - 5 `lessThan5km` : for distances below 5 000 m, - * - 6 `lessThan10km` : for distances below 10 000 m, - * - 7 `over10km` : for distances over 10 000 m. + * - 0 `lessThan50m` - for distances below 50 m, + * - 1 `lessThan100m` - for distances below 100 m, + * - 2 `lessThan200m` - for distances below 200 m, + * - 3 `lessThan500m` - for distances below 300 m, + * - 4 `lessThan1000m` - for distances below 1 000 m, + * - 5 `lessThan5km` - for distances below 5 000 m, + * - 6 `lessThan10km` - for distances below 10 000 m, + * - 7 `over10km` - for distances over 10 000 m. * * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref StandardLength3b instead. * @@ -2571,10 +2571,10 @@ RelevanceDistance ::= ENUMERATED { * This DE indicates a traffic direction that is relevant to information indicated in a message. * * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions, - * - 1 `upstreamTraffic` : for upstream traffic, - * - 2 `downstreamTraffic` : for downstream traffic, - * - 3 `oppositeTraffic` : for traffic in the opposite direction. + * - 0 `allTrafficDirections` - for all traffic directions, + * - 1 `upstreamTraffic` - for upstream traffic, + * - 2 `downstreamTraffic` - for downstream traffic, + * - 3 `oppositeTraffic` - for traffic in the opposite direction. * * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. * @@ -2598,8 +2598,8 @@ RelevanceTrafficDirection ::= ENUMERATED { * ITS-S after receiving request from other ITS-Ss. * * The value shall be set to: - * - 0 `request` : for a request message, - * - 1 `response` : for a response message. + * - 0 `request` - for a request message, + * - 1 `response` - for a response message. * * @category Communication information * @revision: Editorial update in V2.1.1 @@ -2613,12 +2613,12 @@ RequestResponseIndication ::= ENUMERATED { * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, - * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, - * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, - * - 3 `policeActivityOngoing` : in case police activity is ongoing, - * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, - * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, + * - 0 `unavailable` - in case further detailed information on rescue and recovery work is unavailable, + * - 1 `emergencyVehicles` - in case rescue work is ongoing by emergency vehicles, + * - 2 `rescueHelicopterLanding` - in case rescue helicopter is landing, + * - 3 `policeActivityOngoing` - in case police activity is ongoing, + * - 4 `medicalEmergencyOngoing` - in case medical emergency recovery is ongoing, + * - 5 `childAbductionInProgress`- in case a child kidnapping alarm is activated and rescue work is ongoing, * - 6-255: reserved for future usage. * * @category: Traffic information @@ -2638,10 +2638,10 @@ RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { * This DE indicates the type of a road segment. * * The value shall be set to: - * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions, - * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions, - * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions, - * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. + * - 0 `urban-NoStructuralSeparationToOppositeLanes` - for an urban road with no structural separation between lanes carrying traffic in opposite directions, + * - 1 `urban-WithStructuralSeparationToOppositeLanes` - for an urban road with structural separation between lanes carrying traffic in opposite directions, + * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` - for an non urban road with no structural separation between lanes carrying traffic in opposite directions, + * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` - for an non urban road with structural separation between lanes carrying traffic in opposite directions. * * @category: Road Topology Information * @revision: Editorial update in V2.1.1 @@ -2657,14 +2657,14 @@ RoadType ::= ENUMERATED { * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, - * - 1 `majorRoadworks` : in case a major roadworks is ongoing, - * - 2 `roadMarkingWork` : in case a road marking work is ongoing, - * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, - * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, - * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, - * - 6 `winterService` : in case winter service work is ongoing. - * - 7-255 : are reserved for future usage. + * - 0 `unavailable` - in case further detailed information on roadworks is unavailable, + * - 1 `majorRoadworks` - in case a major roadworks is ongoing, + * - 2 `roadMarkingWork` - in case a road marking work is ongoing, + * - 3 `slowMovingRoadMaintenance` - in case slow moving road maintenance work is ongoing, + * - 4 `shortTermStationaryRoadworks`- in case a short term stationary roadwork is ongoing, + * - 5 `streetCleaning` - in case a vehicle street cleaning work is ongoing, + * - 6 `winterService` - in case winter service work is ongoing. + * - 7-255 - are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2687,7 +2687,7 @@ RoadworksSubCauseCode ::= INTEGER { * - `TRUE` otherwise. * * @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) + * and their respective thresholds, Minimum Safe Lateral Distance (MSLaD), Minimum Safe Longitudinal Distance (MSLoD), and Minimum Safe Vertical Distance (MSVD). * * @category: Traffic information, Kinematic information * @revision: created in V2.1.1 @@ -2705,7 +2705,7 @@ SafeDistanceIndicator::= BOOLEAN * * The value 0 shall not be used. * - * @note: The fact that a position coordinate value is received with confidence value set to 'unavailable(4095)' + * @note: The fact that a position coordinate value is received with confidence value set to 'unavailable(4095)'. * can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or @@ -2729,21 +2729,21 @@ SemiAxisLength ::= INTEGER{ * This DE indicates the type of sensor. * * The value shall be set to: - * - `0` undefined : in case the sensor type is undefined. - * - `1` radar : in case the sensor is a radar, - * - `2` lidar : in case the sensor is a lidar, - * - `3` monovideo : in case the sensor is mono video, - * - `4` stereovision : in case the sensor is stereo vision, - * - `5` nightvision : in case the sensor is night vision, - * - `6` ultrasonic : in case the sensor is ultrasonic, - * - `7` pmd : in case the sensor is photonic mixing device, - * - `8` inductionLoop : in case the sensor is an induction loop, - * - `9` sphericalCamera : in case the sensor is a spherical camera, - * - `10` uwb : in case the sensor is ultra wide band, - * - `11` acoustic : in case the sensor is acoustic, - * - `12` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion, - * - `13` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. - * - 14-31 : are reserved for future usage. + * - `0` undefined - in case the sensor type is undefined. + * - `1` radar - in case the sensor is a radar, + * - `2` lidar - in case the sensor is a lidar, + * - `3` monovideo - in case the sensor is mono video, + * - `4` stereovision - in case the sensor is stereo vision, + * - `5` nightvision - in case the sensor is night vision, + * - `6` ultrasonic - in case the sensor is ultrasonic, + * - `7` pmd - in case the sensor is photonic mixing device, + * - `8` inductionLoop - in case the sensor is an induction loop, + * - `9` sphericalCamera - in case the sensor is a spherical camera, + * - `10` uwb - in case the sensor is ultra wide band, + * - `11` acoustic - in case the sensor is acoustic, + * - `12` localAggregation - in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion, + * - `13` itsAggregation - in case the information is provided by a system that aggregates information from other received ITS messages. + * - 14-31 - are reserved for future usage. * * @category: Sensing Information * @revision: created in V2.1.1 @@ -2777,11 +2777,11 @@ SequenceNumber ::= INTEGER (0..65535) * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, - * - 1 `stopSignViolation` : in case a stop sign violation is detected, - * - 2 `trafficLightViolation` : in case a traffic light violation is detected, - * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected. - * - 4-255 : are reserved for future usage. + * - 0 `unavailable` - in case further detailed information on signal violation event is unavailable, + * - 1 `stopSignViolation` - in case a stop sign violation is detected, + * - 2 `trafficLightViolation` - in case a traffic light violation is detected, + * - 3 `turningRegulationViolation`- in case a turning regulation violation is detected. + * - 4-255 - are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2797,17 +2797,17 @@ SignalViolationSubCauseCode ::= INTEGER { * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is + * - 0 `unavailable` - in case further detailed information on slow vehicle driving event is * unavailable, - * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, - * - 2 `vehiclesSlowingToLookAtAccident`: in case vehicle is temporally slowing down to look at accident, spot, etc., - * - 3 `abnormalLoad` : in case an abnormal loaded vehicle is driving slowly on the road, - * - 4 `abnormalWideLoad` : in case an abnormal wide load vehicle is driving slowly on the road, - * - 5 `convoy` : in case of slow driving convoy on the road, - * - 6 `snowplough` : in case of slow driving snow plough on the road, - * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, - * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road. - * - 9-255 : are reserved for future usage. + * - 1 `maintenanceVehicle` - in case of a slow driving maintenance vehicle on the road, + * - 2 `vehiclesSlowingToLookAtAccident`- in case vehicle is temporally slowing down to look at accident, spot, etc., + * - 3 `abnormalLoad` - in case an abnormal loaded vehicle is driving slowly on the road, + * - 4 `abnormalWideLoad` - in case an abnormal wide load vehicle is driving slowly on the road, + * - 5 `convoy` - in case of slow driving convoy on the road, + * - 6 `snowplough` - in case of slow driving snow plough on the road, + * - 7 `deicing` - in case of slow driving de-icing vehicle on the road, + * - 8 `saltingVehicles` - in case of slow driving salting vehicle on the road. + * - 9-255 - are reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -2828,10 +2828,10 @@ SlowVehicleSubCauseCode ::= INTEGER { * The DE indicates if a vehicle is carrying goods in the special transport conditions. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load, - * - 1 `excessWidth` : the vehicle is carrying goods in excess of width, - * - 2 `excessLength` : the vehicle is carrying goods in excess of length, - * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. + * - 0 `heavyLoad` - the vehicle is carrying goods with heavy load, + * - 1 `excessWidth` - the vehicle is carrying goods in excess of width, + * - 2 `excessLength` - the vehicle is carrying goods in excess of length, + * - 3 `excessHeight` - the vehicle is carrying goods in excess of height. * * Otherwise, the corresponding bit shall be set to 0. * @category Vehicle information @@ -2954,14 +2954,14 @@ StandardLength12b::= INTEGER (0..4095) * The DE represents length as a measure of distance between points. * * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m, - * - 1 `lessThan100m` : for distances below 100 m, - * - 2 `lessThan200m` : for distances below 200 m, - * - 3 `lessThan500m` : for distances below 300 m, - * - 4 `lessThan1000m` : for distances below 1 000 m, - * - 5 `lessThan5km` : for distances below 5 000 m, - * - 6 `lessThan10km` : for distances below 10 000 m, - * - 7 `over10km` : for distances over 10 000 m. + * - 0 `lessThan50m` - for distances below 50 m, + * - 1 `lessThan100m` - for distances below 100 m, + * - 2 `lessThan200m` - for distances below 200 m, + * - 3 `lessThan500m` - for distances below 300 m, + * - 4 `lessThan1000m` - for distances below 1 000 m, + * - 5 `lessThan5km` - for distances below 5 000 m, + * - 6 `lessThan10km` - for distances below 10 000 m, + * - 7 `over10km` - for distances over 10 000 m. * * @category: GeoReference information * @revision: Created in V2.1.1 from RelevanceDistance @@ -3008,10 +3008,10 @@ StandardLength2B::= INTEGER (0..65535) * This DE indicates the duration in minutes since which something is stationary. * * The value shall be set to: - * - 0 `lessThan1Minute` : for being stationary since less than 1 minute, - * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more than 1 minute, - * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute, - * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. + * - 0 `lessThan1Minute` - for being stationary since less than 1 minute, + * - 1 `lessThan2Minutes` - for being stationary since less than 2 minute and for equal to or more than 1 minute, + * - 2 `lessThan15Minutes` - for being stationary since less than 15 minutes and for equal to or more than 1 minute, + * - 3 `equalOrGreater15Minutes` - for being stationary since equal to or more than 15 minutes. * * @category: Kinematic information * @revision: Created in V2.1.1 @@ -3027,13 +3027,13 @@ StationarySince ::= ENUMERATED { * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, - * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, - * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, - * - 3 `postCrash` : in case stationary vehicle is caused by collision, - * - 4 `publicTransportStop` : in case public transport vehicle is stationary at bus stop, - * - 5 `carryingDangerousGoods`: in case the stationary vehicle is carrying dangerous goods, - * - 6 `vehicleOnFire` : in case of vehicle on fire. + * - 0 `unavailable` - in case further detailed information on stationary vehicle is unavailable, + * - 1 `humanProblem` - in case stationary vehicle is due to health problem of driver or passenger, + * - 2 `vehicleBreakdown` - in case stationary vehicle is due to vehicle break down, + * - 3 `postCrash` - in case stationary vehicle is caused by collision, + * - 4 `publicTransportStop` - in case public transport vehicle is stationary at bus stop, + * - 5 `carryingDangerousGoods`- in case the stationary vehicle is carrying dangerous goods, + * - 6 `vehicleOnFire` - in case of vehicle on fire. * - 7-255 reserved for future usage. * * @category: Traffic information @@ -3073,27 +3073,27 @@ StationID ::= INTEGER(0..4294967295) * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. * * The value shall be set to: - * - 0 `unknown` : information about the ITS-S context is not provided, - * - 1 `pedestrian` : ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1), - * - 2 `cyclist` : ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), - * - 3 `moped` : ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + * - 0 `unknown` - information about the ITS-S context is not provided, + * - 1 `pedestrian` - ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1), + * - 2 `cyclist` - ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), + * - 3 `moped` - ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L1, L2 (VRU Profile 3), - * - 4 `motorcycles` : ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + * - 4 `motorcycles` - ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L3, L4, L5, L6, L7 (VRU Profile 3), - * - 5 `passengerCar` : ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, - * - 6 `bus` : ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, - * - 7 `lightTruck` : ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, - * - 8 `heavyTruck` : ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, - * - 9 `trailer` : ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in + * - 5 `passengerCar` - ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, + * - 6 `bus` - ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, + * - 7 `lightTruck` - ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, + * - 8 `heavyTruck` - ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, + * - 9 `trailer` - ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, - * - 10 `specialVehicles` : ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram` : ITS-S mounted on a vehicle which runs on tracks along public streets, - * - 12 `lightVruVehicle` : ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2), - * - 13 `animal` : ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), - * - 14 : reserved for future usage, - * - 15 `roadSideUnit` : ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + * - 10 `specialVehicles` - ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram` - ITS-S mounted on a vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle` - ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2), + * - 13 `animal` - ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), + * - 14 - reserved for future usage, + * - 15 `roadSideUnit` - ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), - * - 16-255 : are reserved for future usage. + * - 16-255 - are reserved for future usage. * * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrafficParticipantType instead. * @category: Communication information. @@ -3170,7 +3170,7 @@ SteeringWheelAngleValue ::= INTEGER { /** * This DE indicates the generic sub cause of a detected event. * - * @note: The sub cause code value assignment varies based on value of @ref CauseCode + * @note: The sub cause code value assignment varies based on value of @ref CauseCode. * * @category: Traffic information * @revision: Description revised in V2.1.1 (this is the generic sub cause type) @@ -3217,15 +3217,15 @@ TimestampIts ::= INTEGER (0..4398046511103) * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, - * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, - * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, - * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, - * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, - * - 5 `trafficStationary` : in case traffic is stationary, - * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, - * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, - * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, + * - 0 `unavailable` - in case further detailed information on traffic jam is unavailable, + * - 1 `increasedVolumeOfTraffic` - in case detected jam volume is increased, + * - 2 `trafficJamSlowlyIncreasing` - in case detected traffic jam volume is increasing slowly, + * - 3 `trafficJamIncreasing` - in case traffic jam volume is increasing, + * - 4 `trafficJamStronglyIncreasing`- in case traffic jam volume is strongly increasing, + * - 5 `trafficStationary` - in case traffic is stationary, + * - 6 `trafficJamSlightlyDecreasing`- in case traffic jam volume is decreasing slowly, + * - 7 `trafficJamDecreasing` - in case traffic jam volume is decreasing, + * - 8 `trafficJamStronglyDecreasing`- in case traffic jam volume is decreasing rapidly, * - 9-255: reserved for future usage. * * @category: Traffic information @@ -3247,10 +3247,10 @@ TrafficConditionSubCauseCode ::= INTEGER { * This DE indicates a traffic direction that is relevant to information indicated in a message. * * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions, - * - 1 `upstreamTraffic` : for upstream traffic, - * - 2 `downstreamTraffic` : for downstream traffic, - * - 3 `oppositeTraffic` : for traffic in the opposite direction. + * - 0 `allTrafficDirections` - for all traffic directions, + * - 1 `upstreamTraffic` - for upstream traffic, + * - 2 `downstreamTraffic` - for downstream traffic, + * - 3 `oppositeTraffic` - for traffic in the opposite direction. * * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. * @@ -3271,24 +3271,24 @@ TrafficDirection ::= ENUMERATED { * This DE represents the type of a traffic participant. * * The value shall be set to: - * - 0 `unknown` : information about traffic participant is not provided, - * - 1 `pedestrian` : human being not using a mechanical device for their trip (VRU profile 1), - * - 2 `cyclist` : non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), - * - 3 `moped` : Ilight motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L1, L2 (VRU Profile 3), - * - 4 `motorcycles` : motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L3, L4, L5, L6, L7 (VRU Profile 3), - * - 5 `passengerCar` : small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, - * - 6 `bus` : large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, - * - 7 `lightTruck` : light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, - * - 8 `heavyTruck` : Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, - * - 9 `trailer` : unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, - * - 10 `specialVehicles` : vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram` : vehicle which runs on tracks along public streets, - * - 12 `lightVruVehicle` : human being traveling on light vehicle, incl. possible use of roller skates or skateboards (VRU profile 2), - * - 13 `animal` : animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), - * - 14 `agricultural` : agricultural and forestry vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class T, - * - 15 `roadSideUnit` : infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + * - 0 `unknown` - information about traffic participant is not provided, + * - 1 `pedestrian` - human being not using a mechanical device for their trip (VRU profile 1), + * - 2 `cyclist` - non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), + * - 3 `moped` - light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L1, L2 (VRU Profile 3), + * - 4 `motorcycles` - motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L3, L4, L5, L6, L7 (VRU Profile 3), + * - 5 `passengerCar` - small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, + * - 6 `bus` - large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, + * - 7 `lightTruck` - light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, + * - 8 `heavyTruck` - Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, + * - 9 `trailer` - unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, + * - 10 `specialVehicles` - vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram` - vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle` - human being traveling on light vehicle, incl. possible use of roller skates or skateboards (VRU profile 2), + * - 13 `animal` - animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), + * - 14 `agricultural` - agricultural and forestry vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class T, + * - 15 `roadSideUnit` - infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), - * - 16-255 : are reserved for future usage. + * - 16-255 - are reserved for future usage. * * @category: Communication information. * @revision: Created in V2.1.1 based on StationType @@ -3316,10 +3316,10 @@ TrafficParticipantType ::= INTEGER { * This DE indicates traffic rules that apply to vehicles at a certain position. * * The value shall be set to: - * - `0` if overtaking is prohibited for all vehicles, - * - `1` if overtaking is prohibited for trucks, - * - `2` if vehicles should pass to the right lane, - * - `3` if vehicles should pass to the left lane. + * - `0` - if overtaking is prohibited for all vehicles, + * - `1` - if overtaking is prohibited for trucks, + * - `2` - if vehicles should pass to the right lane, + * - `3` - if vehicles should pass to the left lane. * * @category: Infrastructure information, Traffic information * @revision: Editorial update in V2.1.1 @@ -3335,11 +3335,11 @@ TrafficRule ::= ENUMERATED { * This DE provides information about the presence of a trailer. * * The value shall be set to: - * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value. - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. - * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. - * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * - 0 `noTrailerPresent` - to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. + * - 1 `trailerPresentWithKnownLength` - to indicate that a trailer has been detected as present and the length is included in the vehicle length value. + * - 2 `trailerPresentWithUnknownLength` - to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. + * - 3 `trailerPresenceIsUnknown` - to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. + * - 4 `unavailable` - to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer * nor the detection of trailer presence/absence is possible. * * @category: Vehicle information @@ -3373,10 +3373,10 @@ TrajectoryInterceptionProbability ::= INTEGER { * This DE defines the confidence level of the trajectoryInterceptionProbability. * * The value shall be set to: - * - `0` to indicate confidence level less than 50 %, - * - `1` to indicate confidence level greater than or equal to 50 % and less than 70 %, - * - `2` to indicate confidence level greater than or equal to 70 % and less than 90 %, - * - `3` to indicate confidence level greater than or equal to 90%. + * - `0` - to indicate confidence level less than 50 %, + * - `1` - to indicate confidence level greater than or equal to 50 % and less than 70 %, + * - `2` - to indicate confidence level greater than or equal to 70 % and less than 90 %, + * - `3` - to indicate confidence level greater than or equal to 90%. * * @category: Kinematic information * @revision: Created in V2.1.1 @@ -3417,9 +3417,9 @@ TurningDirection::= ENUMERATED { * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. * * The value shall be set to: - * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 metre, and greater than (n-1) x 0,4 metre, - * - `254` indicates that the turning radius is greater than 253 x 0,4 metre = 101.2 metres, - * - `255` indicates that the information is unavailable. + * - `n (n > 0 and n < 254)` to indicate the applicable value is equal to or less than n x 0,4 metre, and greater than (n-1) x 0,4 metre, + * - `254` to indicate that the turning radius is greater than 253 x 0,4 metre = 101.2 metres, + * - `255` to indicate that the information is unavailable. * * For vehicle with tracker, the turning radius applies to the vehicle only. * @@ -3457,18 +3457,18 @@ VDS ::= IA5String (SIZE(6)) * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, - * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, - * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, - * - 3 `engineProblem` : in case vehicle break down is caused by an engine problem, - * - 4 `transmissionProblem` : in case vehicle break down is caused by transmission problem, - * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, - * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, - * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, - * - 8 `tyrePuncture` : in case vehicle break down is caused by tyre puncture, - * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, - * - 10 `vehicleOnFire` : in case the vehicle is on fire. - * - 11-255 : are reserved for future usage. + * - 0 `unavailable` - in case further detailed information on cause of vehicle break down is unavailable, + * - 1 `lackOfFuel` - in case vehicle break down is due to lack of fuel, + * - 2 `lackOfBatteryPower` - in case vehicle break down is caused by lack of battery power, + * - 3 `engineProblem` - in case vehicle break down is caused by an engine problem, + * - 4 `transmissionProblem` - in case vehicle break down is caused by transmission problem, + * - 5 `engineCoolingProblem`- in case vehicle break down is caused by an engine cooling problem, + * - 6 `brakingSystemProblem`- in case vehicle break down is caused by a braking system problem, + * - 7 `steeringProblem` - in case vehicle break down is caused by a steering problem, + * - 8 `tyrePuncture` - in case vehicle break down is caused by tyre puncture, + * - 9 `tyrePressureProblem` - in case low tyre pressure in detected, + * - 10 `vehicleOnFire` - in case the vehicle is on fire. + * - 11-255 - are reserved for future usage. * * @category: Traffic information @@ -3510,11 +3510,11 @@ VehicleHeight ::= INTEGER { * This DE provides information about the presence of a trailer. * * The value shall be set to: - * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present, - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value, - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value, - * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible, - * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer, + * - 0 `noTrailerPresent` - to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present, + * - 1 `trailerPresentWithKnownLength` - to indicate that a trailer has been detected as present and the length is included in the vehicle length value, + * - 2 `trailerPresentWithUnknownLength` - to indicate that a trailer has been detected as present and the length is not included in the vehicle length value, + * - 3 `trailerPresenceIsUnknown` - to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible, + * - 4 `unavailable` - to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer, * nor the detection of trailer presence/absence is possible. * * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrailerPresenceInformation instead. @@ -3570,22 +3570,22 @@ VehicleMass ::= INTEGER { * This DE indicates the role played by a vehicle at a point in time. * * The value shall be set to: - * - 0 `default` : to indicate the default vehicle role as indicated by the vehicle type, - * - 1 `publicTransport` : to indicate that the vehicle is used to operate public transport service, - * - 2 `specialTransport` : to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, - * - 3 `dangerousGoods` : to indicate that the vehicle is used for dangerous goods transportation, - * - 4 `roadWork` : to indicate that the vehicle is used to realize roadwork or road maintenance mission, - * - 5 `rescue` : to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, - * - 6 `emergency` : to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, - * - 7 `safetyCar` : to indicate that the vehicle is used for public safety, e.g. patrol, - * - 8 `agriculture` : to indicate that the vehicle is used for agriculture, e.g. farm tractor, - * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, - * - 10 `military` : to indicate that the vehicle is used for military purpose, - * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, - * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service. - * - 13 `reserved` : is reserved for future usage. - * - 14 `reserved` : is reserved for future usage. - * - 15 `reserved` : is reserved for future usage. + * - 0 `default` - to indicate the default vehicle role as indicated by the vehicle type, + * - 1 `publicTransport` - to indicate that the vehicle is used to operate public transport service, + * - 2 `specialTransport` - to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, + * - 3 `dangerousGoods` - to indicate that the vehicle is used for dangerous goods transportation, + * - 4 `roadWork` - to indicate that the vehicle is used to realize roadwork or road maintenance mission, + * - 5 `rescue` - to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, + * - 6 `emergency` - to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, + * - 7 `safetyCar` - to indicate that the vehicle is used for public safety, e.g. patrol, + * - 8 `agriculture` - to indicate that the vehicle is used for agriculture, e.g. farm tractor, + * - 9 `commercial` - to indicate that the vehicle is used for transportation of commercial goods, + * - 10 `military` - to indicate that the vehicle is used for military purpose, + * - 11 `roadOperator` - to indicate that the vehicle is used in road operator missions, + * - 12 `taxi` - to indicate that the vehicle is used to provide an authorized taxi service. + * - 13 `reserved` - is reserved for future usage. + * - 14 `reserved` - is reserved for future usage. + * - 15 `reserved` - is reserved for future usage. * * @category: Vehicle Information * @revision: Description updated in V2.1.1 (removed reference to CEN/TS 16157-3) @@ -3655,10 +3655,10 @@ VerticalAccelerationValue ::= INTEGER { * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU, - * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member, - * - 2 `motorcyclist` : indicates that the VRU cluster contains at least one motorcycle VRU member, - * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. + * - 0 `pedestrian` - indicates that the VRU cluster contains at least one pedestrian VRU, + * - 1 `bicycle` - indicates that the VRU cluster contains at least one bicycle VRU member, + * - 2 `motorcyclist`- indicates that the VRU cluster contains at least one motorcycle VRU member, + * - 3 `animal` - indicates that the VRU cluster contains at least one animal VRU member. * * Otherwise, the corresponding bit shall be set to 0. * @@ -3676,16 +3676,16 @@ VruClusterProfiles ::= BIT STRING { * This DE represents the possible usage conditions of the VRU device. * - The value shall be set to: - * - 0 `unavailable` : to indicate that the usage conditions are unavailable, - * - 1 `other (1)` : to indicate that the VRU device is in a state not defined below, - * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device, - * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use, - * - 4 `typing (4)` : to indicate that the human is texting or performaing any other manual input activity, - * - 5 `calling (5)` : to indicate that the VRU device is currently receiving a call, - * - 6 `playingGames (6)` : to indicate that the human is playing games, - * - 7 `reading (7)` : to indicate that the human is reading on the VRU device, - * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static. - * - value 9 to 255 : are reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` - to indicate that the usage conditions are unavailable, + * - 1 `other (1)` - to indicate that the VRU device is in a state not defined below, + * - 2 `idle (2)` - to indicate that the human is currently not interacting with the device, + * - 3 `listeningToAudio` - to indicate that any audio source other than calling is in use, + * - 4 `typing (4)` - to indicate that the human is texting or performaing any other manual input activity, + * - 5 `calling (5)` - to indicate that the VRU device is currently receiving a call, + * - 6 `playingGames (6)` - to indicate that the human is playing games, + * - 7 `reading (7)` - to indicate that the human is reading on the VRU device, + * - 8 `viewing (8)` - to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static. + * - value 9 to 255 - are reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3707,13 +3707,13 @@ VruDeviceUsage ::= ENUMERATED { * This DE represents the possible VRU environment conditions. * * - The value shall be set to: - * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, - * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing, - * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk), - * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk, - * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane, - * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. - * - value 5 to 255 : are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` - to indicate that the information on the type of environment is unavailable, + * - 1 `intersectionCrossing` - to indicate that the VRU is on an intersection or crossing, + * - 2 `zebraCrossing` - to indicate that the VRU is on a zebra crossing (crosswalk), + * - 3 `sidewalk` - to indicate that the VRU is on a sidewalk, + * - 4 `onVehicleRoad` - to indicate that the VRU is on a traffic lane, + * - 5 `protectedGeographicArea`- to indicate that the VRU is in a protected area. + * - value 5 to 255 - are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3732,14 +3732,14 @@ VruEnvironment ::= ENUMERATED { * This DE indicates the status of the possible human control over a VRU vehicle. * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable, - * - 1 `braking` : to indicate that the VRU is braking, - * - 2 `hardBraking` : to indicate that the VRU is braking hard, - * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling, - * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking, - * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard, - * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. - * - 7 to 255 : are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` - to indicate that the information is unavailable, + * - 1 `braking` - to indicate that the VRU is braking, + * - 2 `hardBraking` - to indicate that the VRU is braking hard, + * - 3 `stopPedaling` - to indicate that the VRU stopped pedaling, + * - 4 `brakingAndStopPedaling` - to indicate that the VRU stopped pedaling an is braking, + * - 5 `hardBrakingAndStopPedaling` - to indicate that the VRU stopped pedaling an is braking hard, + * - 6 `noReaction` - to indicate that the VRU is not changing its behavior. + * - 7 to 255 - are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3759,11 +3759,11 @@ VruMovementControl ::= ENUMERATED { * This DE indicates the profile of a pedestrian. * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable, - * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies, - * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker, - * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. - * - value 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` - to indicate that the information on is unavailable, + * - 1 `ordinary-pedestrian` - to indicate a pedestrian to which no more-specific profile applies, + * - 2 `road-worker` - to indicate a pedestrian with the role of a road worker, + * - 3 `first-responder` - to indicate a pedestrian with the role of a first responder. + * - value 4 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3780,16 +3780,16 @@ VruSubProfilePedestrian ::= ENUMERATED { * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable, - * - 1 `bicyclist ` : to indicate a cycle and bicyclist, - * - 2 `wheelchair-user` : to indicate a wheelchair and its user, - * - 3 `horse-and-rider` : to indicate a horse and rider, - * - 4 `rollerskater` : to indicate a rolleskater and skater, - * - 5 `e-scooter` : to indicate an e-scooter and rider, - * - 6 `personal-transporter` : to indicate a personal-transporter and rider, - * - 7 `pedelec` : to indicate a pedelec and rider, - * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. - * - 9 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` - to indicate that the information is unavailable, + * - 1 `bicyclist ` - to indicate a cycle and bicyclist, + * - 2 `wheelchair-user` - to indicate a wheelchair and its user, + * - 3 `horse-and-rider` - to indicate a horse and rider, + * - 4 `rollerskater` - to indicate a rolleskater and skater, + * - 5 `e-scooter` - to indicate an e-scooter and rider, + * - 6 `personal-transporter` - to indicate a personal-transporter and rider, + * - 7 `pedelec` - to indicate a pedelec and rider, + * - 8 `speed-pedelec` - to indicate a speed-pedelec and rider. + * - 9 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3811,12 +3811,12 @@ VruSubProfileBicyclist ::= ENUMERATED { * This DE indicates the profile of a motorcyclist and corresponding vehicle. * * The value shall be set to: - * - 0 `unavailable ` : to indicate that the information is unavailable, - * - 1 `moped` : to indicate a moped and rider, - * - 2 `motorcycle` : to indicate a motorcycle and rider, - * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider, - * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. - * - 5 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable ` - to indicate that the information is unavailable, + * - 1 `moped` - to indicate a moped and rider, + * - 2 `motorcycle` - to indicate a motorcycle and rider, + * - 3 `motorcycle-and-sidecar-right` - to indicate a motorcycle with sidecar on the right and rider, + * - 4 `motorcycle-and-sidecar-left` - to indicate a motorcycle with sidecar on the left and rider. + * - 5 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3834,11 +3834,11 @@ VruSubProfileMotorcyclist ::= ENUMERATED { * This DE indicates the profile of an animal * * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable, - * - 1 `wild-animal` : to indicate a animal living in the wildness, - * - 2 `farm-animal` : to indicate an animal beloning to a farm, - * - 3 `service-animal` : to indicate an animal that supports a human being. - * - 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` - to indicate that the information is unavailable, + * - 1 `wild-animal` - to indicate a animal living in the wildness, + * - 2 `farm-animal` - to indicate an animal beloning to a farm, + * - 3 `service-animal` - to indicate an animal that supports a human being. + * - 4 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3855,11 +3855,11 @@ VruSubProfileAnimal ::= ENUMERATED { * This DE indicates the approximate size of a VRU including the VRU vehicle used. * * The value shall be set to: - * - 0 `unavailable` : to indicate that there is no matched size class or due to privacy reasons in profile 1, - * - 1 `low` : to indicate that the VRU size class is low depending on the VRU profile, - * - 2 `medium` : to indicate that the VRU size class is medium depending on the VRU profile, - * - 3 `high` : to indicate that the VRU size class is high depending on the VRU profile. - * - 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * - 0 `unavailable` - to indicate that there is no matched size class or due to privacy reasons in profile 1, + * - 1 `low` - to indicate that the VRU size class is low depending on the VRU profile, + * - 2 `medium` - to indicate that the VRU size class is medium depending on the VRU profile, + * - 3 `high` - to indicate that the VRU size class is high depending on the VRU profile. + * - 4 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information * @revision: Created in V2.1.1 @@ -3878,13 +3878,13 @@ VruSizeClass ::= ENUMERATED { * The value of each bit indicates the state of the switch, which commands the corresponding light. * The bit corresponding to a specific light shall be set to 1, when the corresponding switch is turned on, either manually by the driver or VRU * or automatically by a vehicle or VRU system: - * - 0 `unavailable` : indicates no information available, - * - 1 `backFlashLight ` : indicates the status of the back flash light, - * - 2 `helmetLight` : indicates the status of the helmet light, - * - 3 `armLight` : indicates the status of the arm light, - * - 4 `legLight` : indicates the status of the leg light, - * - 5 `wheelLight` : indicates the status of the wheel light. - * - Bits 6 to 8 : are reserved for future use. + * - 0 `unavailable` - indicates no information available, + * - 1 `backFlashLight ` - indicates the status of the back flash light, + * - 2 `helmetLight` - indicates the status of the helmet light, + * - 3 `armLight` - indicates the status of the arm light, + * - 4 `legLight` - indicates the status of the leg light, + * - 5 `wheelLight` - indicates the status of the wheel light. + * - Bits 6 to 8 - are reserved for future use. * The bit values do not indicate if the corresponding lamps are alight or not. * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. * @@ -3968,10 +3968,10 @@ WMInumber ::= IA5String (SIZE(1..3)) * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . * * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on wrong way driving event is unavailable, - * - 1 `wrongLane` : in case vehicle is driving on a lane for which it has no authorization to use, - * - 2 `wrongDirection` : in case vehicle is driving in a direction that it is not allowed, - * - 3-255 : reserved for future usage. + * - 0 `unavailable` - in case further detailed information on wrong way driving event is unavailable, + * - 1 `wrongLane` - in case vehicle is driving on a lane for which it has no authorization to use, + * - 2 `wrongDirection` - in case vehicle is driving in a direction that it is not allowed, + * - 3-255 - reserved for future usage. * * @category: Traffic information * @revision: V1.3.1 @@ -5421,7 +5421,7 @@ Path::= SEQUENCE (SIZE(0..40)) OF 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. * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead. * @category: GeoReference information, Vehicle information * @revision: semantics updated in V2.1.1 */ @@ -6198,7 +6198,7 @@ Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length * * @field verticalAccelerationConfidence: confidence value of the vertical acceleration value with a predefined confidence level. * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationComponent instead + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationComponent instead. * @category Vehicle information * @revision: Description revised in V2.1.1 */ @@ -6234,6 +6234,7 @@ VehicleIdentification ::= SEQUENCE { * * @field vehicleLengthConfidenceIndication: indication of the length value confidence. * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref VehicleLengthV2 instead. * @category: Vehicle information * @revision: V1.3.1 */ @@ -6252,7 +6253,7 @@ VehicleLength ::= SEQUENCE { * @field trailerPresenceInformation: information about the trailer presence. * * @category: Vehicle information - * @revision: created in V2.1.1 based on @ref VehicleLength but using @ref TrailerPresenceInformation + * @revision: created in V2.1.1 based on @ref VehicleLength but using @ref TrailerPresenceInformation. */ VehicleLengthV2 ::= SEQUENCE { vehicleLengthValue VehicleLengthValue, -- GitLab From 6b2702938f4360517753c36711eab94e986482ea Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Thu, 22 Sep 2022 11:52:33 +0000 Subject: [PATCH 71/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 335563 -> 335852 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 857c9ef25103fa7b90673171cf83601e61a54512..a10f14fa0eb358bd586bd3d8cf9167c57053fbcf 100644 GIT binary patch delta 3782 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 -- GitLab From 65955d90fbba94fe3d52538104e079de76e728e6 Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Fri, 23 Sep 2022 09:40:31 +0200 Subject: [PATCH 72/91] final version for approval --- ITS-Container.asn => ETSI-ITS-CDD.asn | 12882 ++++++++++++------------ asn2md.py | 111 +- 2 files changed, 6496 insertions(+), 6497 deletions(-) rename ITS-Container.asn => ETSI-ITS-CDD.asn (87%) diff --git a/ITS-Container.asn b/ETSI-ITS-CDD.asn similarity index 87% rename from ITS-Container.asn rename to ETSI-ITS-CDD.asn index 252cce8..8105819 100755 --- a/ITS-Container.asn +++ b/ETSI-ITS-CDD.asn @@ -1,6442 +1,6440 @@ -ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) 102894 cdd (2) major-version-3 (3) minor-version-1 (1)} - -DEFINITIONS AUTOMATIC TAGS ::= - -BEGIN - ------------------------------------------- --- Specification of CDD Data Elements: ------------------------------------------- - - -/** - * This DE indicates a change of acceleration. - * - * The value shall be set to: - * - 0 - `accelerate` - if the magnitude of the horizontal velocity vector increases. - * - 1 - `decelerate` - if the magnitude of the horizontal velocity vector decreases. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AccelerationChange::= ENUMERATED { - accelerate (0), - decelerate (1) -} - -/** - * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy of an acceleration value with a default confidence level of 95%. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n (n > 0 and n < 101)` if the confidence value is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `101` if the confidence value is out of range i.e. greater than 10 m/s2, - * - `102` if the confidence value is unavailable. - * - * The value 0 shall not be used. - * - * @note: The fact that an acceleration value is received with confidence value set to 'unavailable(102)' can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the acceleration value may be valid and used by the application. - * - * @note: If an acceleration value is received and its confidence value is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * - * @unit 0,1 m/s2 - * @category: Kinematics information - * @revision: Description revised in V2.1.1 - */ -AccelerationConfidence ::= INTEGER { - outOfRange (101), - unavailable (102) -} (0..102) - -/** - * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. - * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle - * acceleration control system is engaged or not. Currently, this DE includes the information of the - * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise - * control system, cruise control system and speed limiter system. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `brakePedalEngaged` - Driver is stepping on the brake pedal, - * - 1 - `gasPedalEngaged` - Driver is stepping on the gas pedal, - * - 2 - `emergencyBrakeEngaged` - emergency brake system is engaged, - * - 3 - `collisionWarningEngaged`- collision warning system is engaged, - * - 4 - `accEngaged` - ACC is engaged, - * - 5 - `cruiseControlEngaged` - cruise control is engaged, - * - 6 - `speedLimiterEngaged` - speed limiter is engaged. - * - * Otherwise (for example when the corresponding system is not available due to non equipped system - * or information is unavailable), the corresponding bit shall be set to 0. - * - * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. - * @category: Kinematics information - * @revision: V1.3.1 - */ -AccelerationControl ::= BIT STRING { - brakePedalEngaged (0), - gasPedalEngaged (1), - emergencyBrakeEngaged (2), - collisionWarningEngaged (3), - accEngaged (4), - cruiseControlEngaged (5), - speedLimiterEngaged (6) -} (SIZE(7)) - -/** - * This DE represents the magnitude of the acceleration vector in a defined coordinate system. - * - * The value shall be set to: - * - `0` to indicate no acceleration, - * - `n (n > 0 and n < 160)` to indicate acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration values greater than 15,9 m/s2, - * - `161` when the data is unavailable. - * - * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. - * @unit 0,1 m/s2 - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AccelerationMagnitudeValue ::= INTEGER { - positiveOutOfRange (160), - unavailable (161) -} (0.. 161) - -/** - * This DE represents the value of an acceleration component in a defined coordinate system. - * - * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s2, - * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration values greater than 15,9 m/s2, - * - `161` when the data is unavailable. - * - * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. - * @unit 0,1 m/s2 - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AccelerationValue ::= INTEGER { - negativeOutOfRange (-160), - positiveOutOfRange (160), - unavailable (161) -} (-160 .. 161) - - -/** - * This DE indicates an access technology. - * - * The value shall be set to: - * - `0`: in case of any access technology class, - * - `1`: in case of ITS-G5 access technology class, - * - `2`: in case of LTE-V2X access technology class, - * - `3`: in case of NR-V2X access technology class. - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -AccessTechnologyClass ::= ENUMERATED { - any (0), - itsg5Class (1), - ltev2xClass (2), - nrv2xClass (3), - ... -} - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case the information on the sub cause of the accident is unavailable, - * - 1 - `multiVehicleAccident` - in case more than two vehicles are involved in accident, - * - 2 - `heavyAccident` - in case the airbag of the vehicle involved in the accident is triggered, - * the accident requires important rescue and/or recovery work, - * - 3 - `accidentInvolvingLorry` - in case the accident involves a lorry, - * - 4 - `accidentInvolvingBus` - in case the accident involves a bus, - * - 5 - `accidentInvolvingHazardousMaterials`- in case the accident involves hazardous material, - * - 6 - `accidentOnOppositeLane` - in case the accident happens on opposite lanes, - * - 7 - `unsecuredAccident` - in case the accident is not secured, - * - 8 - `assistanceRequested` - in case rescue and assistance are requested, - * - 9-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AccidentSubCauseCode ::= INTEGER { - unavailable (0), - multiVehicleAccident (1), - heavyAccident (2), - accidentInvolvingLorry (3), - accidentInvolvingBus (4), - accidentInvolvingHazardousMaterials (5), - accidentOnOppositeLane (6), - unsecuredAccident (7), - assistanceRequested (8) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailable, - * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road, - * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road, - * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road, - * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road, - * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road, - * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road, - * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road, - * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard, - * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface, - * - 10 - `roadsSalted` - when the low road adhesion is due to salted road, - * - 11-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { - unavailable (0), - heavyFrostOnRoad (1), - fuelOnRoad (2), - mudOnRoad (3), - snowOnRoad (4), - iceOnRoad (5), - blackIceOnRoad (6), - oilOnRoad (7), - looseChippings (8), - instantBlackIce (9), - roadsSalted (10) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable, - * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind, - * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail, - * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane, - * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm, - * - 5 - `tornado` - in case the type of extreme weather condition is tornado, - * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. - * - 7-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { - unavailable (0), - strongWinds (1), - damagingHail (2), - hurricane (3), - thunderstorm (4), - tornado (5), - blizzard (6) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. - * - * The value shall be set to: - * - 0 - `unavailable` : in case information on the type of precipitation is unavailable, - * - 1 - `heavyRain` : in case the type of precipitation is heavy rain, - * - 2 - `heavySnowfall` : in case the type of precipitation is heavy snow fall, - * - 3 - `softHail` : in case the type of precipitation is soft hail. - * - 4-255 : are reserved for future usage - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { - unavailable (0), - heavyRain (1), - heavySnowfall (2), - softHail (3) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable, - * - 1 - `fog` - in case the cause of low visibility is fog, - * - 2 - `smoke` - in case the cause of low visibility is smoke, - * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall, - * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain, - * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail, - * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare, - * - 7 - `sandstorms` - in case the cause of low visibility is sand storm, - * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. - * - 9-255 - are reserved for future usage - * - * @category: Traffic information - * @revision: V1.3.1 - */ -AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { - unavailable (0), - fog (1), - smoke (2), - heavySnowfall (3), - heavyRain (4), - heavyHail (5), - lowSunGlare (6), - sandstorms (7), - swarmsOfInsects (8) -} (0..255) - -/** - * This DE represents the air humidity in tenths of percent. - * - * The value shall be set to: - * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0,1 percent and greater than (n-1) x 0,1 percent. - * - `1001` indicates that the air humidity is unavailable. - * - * @category: Basic information - * @unit: 0,1 % - * @revision: created in V2.1.1 - */ -AirHumidity ::= INTEGER { - oneHundredPercent (1000), - unavailable (1001) -} (1..1001) - -/** - * This DE indicates the altitude confidence value which represents the estimated absolute accuracy of an altitude value of a geographical point with a default confidence level of 95%. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - 0 - `alt-000-01` if the confidence value is equal to or less than 0,01 metre, - * - 1 - `alt-000-02` if the confidence value is equal to or less than 0,02 metre and greater than 0,01 metre, - * - 2 - `alt-000-05` if the confidence value is equal to or less than 0,05 metre and greater than 0,02 metre, - * - 3 - `alt-000-10` if the confidence value is equal to or less than 0,1 metre and greater than 0,05 metre, - * - 4 - `alt-000-20` if the confidence value is equal to or less than 0,2 metre and greater than 0,1 metre, - * - 5 - `alt-000-50` if the confidence value is equal to or less than 0,5 metre and greater than 0,2 metre, - * - 6 - `alt-001-00` if the confidence value is equal to or less than 1 metre and greater than 0,5 metre, - * - 7 - `alt-002-00` if the confidence value is equal to or less than 2 metres and greater than 1 metre, - * - 8 - `alt-005-00` if the confidence value is equal to or less than 5 metres and greater than 2 metres, - * - 9 - `alt-010-00` if the confidence value is equal to or less than 10 metres and greater than 5 metres, - * - 10 - `alt-020-00` if the confidence value is equal to or less than 20 metres and greater than 10 metres, - * - 11 - `alt-050-00` if the confidence value is equal to or less than 50 metres and greater than 20 metres, - * - 12 - `alt-100-00` if the confidence value is equal to or less than 100 metres and greater than 50 metres, - * - 13 - `alt-200-00` if the confidence value is equal to or less than 200 metres and greater than 100 metres, - * - 14 - `outOfRange` if the confidence value is out of range, i.e. greater than 200 metres, - * - 15 - `unavailable` if the confidence value is unavailable - * - * @note: The fact that an altitude value is received with confidence value set to `unavailable(15)` can be caused - * by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the altitude value may be valid and used by the application. - * - * @note: If an altitude value is received and its confidence value is set to `outOfRange(14)`, it means that the - * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * - * @category: GeoReference information - * @revision: Description revised in V2.1.1 - */ -AltitudeConfidence ::= ENUMERATED { - alt-000-01 (0), - alt-000-02 (1), - alt-000-05 (2), - alt-000-10 (3), - alt-000-20 (4), - alt-000-50 (5), - alt-001-00 (6), - alt-002-00 (7), - alt-005-00 (8), - alt-010-00 (9), - alt-020-00 (10), - alt-050-00 (11), - alt-100-00 (12), - alt-200-00 (13), - outOfRange (14), - unavailable (15) -} - -/** - * This DE represents the altitude value in a WGS84 coordinate system. - * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `-100 000` if the altitude is equal to or less than -1 000 m, - * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0,01 metre and greater than (n-1) x 0,01 metre, - * - `800 000` if the altitude greater than 7 999,99 m, - * - `800 001` if the information is not available. - * - * @note: the range of this DE does not use the full binary encoding range, but all reasonable values are covered. In order to cover all possible altitude ranges a larger encoding would be necessary. - * @unit: 0,01 metre - * @category: GeoReference information - * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) - */ -AltitudeValue ::= INTEGER { - negativeOutOfRange (-100000), - postiveOutOfRange (800000), - unavailable (800001) -} (-100000..800001) - -/** - * This DE indicates the angle confidence value which represents the estimated absolute accuracy of an angle value with a default confidence level of 95 %. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees, - * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees, - * - `127` if the accuracy information is not available. - * - * @unit: 0,1 degrees - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE indicates the angular speed confidence value which represents the estimated absolute accuracy of an angular speed value with a default confidence level of 95%. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * For correlation computation, maximum interval levels can be assumed. - * - * The value shall be set to: - * - 0 - `degSec-01` if the accuracy is equal to or less than 1 degree/second, - * - 1 - `degSec-02` if the accuracy is equal to or less than 2 degrees/second and greater than 1 degree/second, - * - 2 - `degSec-05` if the accuracy is equal to or less than 5 degrees/second and greater than 2 degrees/second, - * - 3 - `degSec-10` if the accuracy is equal to or less than 10 degrees/second and greater than 5 degrees/second, - * - 4 - `degSec-20` if the accuracy is equal to or less than 20 degrees/second and greater than 10 degrees/second, - * - 5 - `degSec-50` if the accuracy is equal to or less than 50 degrees/second and greater than 20 degrees/second, - * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second, - * - 7 - `unavailable` if the accuracy information is unavailable - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngularSpeedConfidence ::= ENUMERATED { - degSec-01 (0), - degSec-02 (1), - degSec-05 (2), - degSec-10 (3), - degSec-20 (4), - degSec-50 (5), - outOfRange (7), - unavailable (8) -} - -/** - * This DE indicates the angular acceleration confidence value which represents the estimated accuracy of an angular acceleration value with a default confidence level of 95%. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * For correlation computation, maximum interval levels shall be assumed. - * - * The value shall be set to: - * - 0 - `degSecSquared-01` if the accuracy is equal to or less than 1 degree/second2, - * - 1 - `degSecSquared-02` if the accuracy is equal to or less than 2 degrees/second2 and greater than 1 degree/second2, - * - 2 - `degSecSquared-05` if the accuracy is equal to or less than 5 degree/second2 and greater than 1 degree/second2, - * - 3 - `degSecSquared-10` if the accuracy is equal to or less than 10 degree/second2 and greater than 5 degree/second2, - * - 4 - `degSecSquared-20` if the accuracy is equal to or less than 20 degrees/second2 and greater than 10 degree/second2, - * - 5 - `degSecSquared-50` if the accuracy is equal to or less than 50 degrees/second2 and greater than 20 degrees/second2, - * - 6 - `outOfRange` if the accuracy is out of range, i.e. greater than 50 degrees/second2, - * - 7 - `unavailable` if the accuracy information is unavailable. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -AngularAccelerationConfidence ::= ENUMERATED { - degSecSquared-01 (0), - degSecSquared-02 (1), - degSecSquared-05 (2), - degSecSquared-10 (3), - degSecSquared-20 (4), - degSecSquared-50 (5), - outOfRange (6), - unavailable (7) -} - -/** - * This DE indicates the number of axles of a passing train. - * - * The value shall be set to: - * - `n(n > 2 and n < 1001)` indicates that the train has n x axles, - * - `1001`indicates that the number of axles is out of range, - * - `1002` the information is unavailable. - * - * - * @unit: Number of axles - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -AxlesCount ::= INTEGER{ - outOfRange (1001), - unavailable (1002) -} (2..1002) - -/** - * This DE represents the measured uncompensated atmospheric pressure. - * - * The value shall be set to: - * - `2999` indicates that the applicable value is less than 29990 Pa, - * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, - * - `12001` indicates that the values is greater than 120000 Pa, - * - `12002` indicates that the information is not available. - * - * @category: Basic information - * @unit: 10 Pascal - * @revision: Created in V2.1.1 -*/ -BarometricPressure ::= INTEGER{ - outOfRangelower (2999), - outOfRangeUpper (12001), - unavailable (12002) -} (2999..12002) - - -/** - * This DE indicates the cardinal number of bogies of a train. - * - * The value shall be set to: - * - `n (n > 1 and n < 100)` indicates that the train has n x bogies, - * - `100`indicates that the number of bogies is out of range, - * - `101` the information is unavailable. - * - * @unit: Number of bogies - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -BogiesCount ::= INTEGER{ - outOfRange (100), - unavailable (101) -} (2..101) - -/** - * The DE represents a cardinal number that counts the size of a set. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CardinalNumber1B ::= INTEGER(0..255) - -/** - * The DE represents a cardinal number that counts the size of a set. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CardinalNumber3b ::= INTEGER(1..8) - -/** - * This DE represents an angle value described in a local Cartesian coordinate system, per default counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, - * - `36001` if the accuracy information is not available. - * - * The value 3600 shall not be used. - * - * @unit 0,1 degrees - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngleValue ::= INTEGER { - valueNotUsed (3600), - unavailable (3601) -} (0..3601) - -/** - * This DE represents an angular acceleration value described in a local Cartesian coordinate system, per default counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `-255` if the acceleration is equal to or less than -255 degrees/s2, - * - `n` (`n > -255` and `n < 255`) if the acceleration is equal to or less than n x 1 degree/s2, - and greater than `(n-1)` x 0,01 degrees/s2, - * - `255` if the acceleration is greater than 254 degrees/s2, - * - `256` if the information is unavailable. - * - * @unit: degree/s2 (degrees per second squared) - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngularAccelerationComponentValue ::= INTEGER { - negativeOutofRange (-255), - positiveOutOfRange (255), - unavailable (256) -} (-255..256) - -/** - * This DE represents an angular velocity component described in a local Cartesian coordinate system, per default counted positive in - * a right-hand local coordinate system from the abscissa. - * - * The value shall be set to: - * - `-255` if the velocity is equal to or less than -255 degrees/s, - * - `n` (`n > -255` and `n < 255`) if the velocity is equal to or less than n x 1 degree/s, and greater than (n-1) x 1 degree/s, - * - `255` if the velocity is greater than 254 degrees/s, - * - `256` if the information is unavailable. - * - * @unit: degree/s - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -CartesianAngularVelocityComponentValue ::= INTEGER { - negativeOutofRange (-255), - positiveOutOfRange (255), - unavailable (256) -} (-255..256) - -/** - *The DE represents the value of the cause code of an event. - * - * The value shall be set to: - * - 0 - reserved for future use, - * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, - * - 2 - `accident` - in case the type of event is a road accident, - * - 3 - `roadworks` - in case the type of event is roadwork, - * - 4 - reserved for future usage, - * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any - * blocking of a road, partial or total, which has not been adequately - * secured and signposted, - * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, - * - 7 - `aquaplaning` - danger of aquaplaning on the road, - * - 8 - reserved for future usage, - * - 9 - `hazardousLocation-SurfaceCondition` - in case the type of event is abnormal road surface condition, - * - 10 - `hazardousLocation-ObstacleOnTheRoad` - in case the type of event is obstacle on the road, - * - 11 - `hazardousLocation-AnimalOnTheRoad` - in case the type of event is animal on the road, - * - 12 - `humanPresenceOnTheRoad` - in case the type of event is human presence on the road, - * - 13 - reserved for future usage, - * - 14 - `wrongWayDriving` - in case the type of the event is vehicle driving in wrong way, - * - 15 - `rescueAndRecoveryWorkInProgress` - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, - * - 16 - reserved for future usage, - * - 17 - `adverseWeatherCondition-ExtremeWeatherCondition`- in case the type of event is extreme weather condition, - * - 18 - `adverseWeatherCondition-Visibility` - in case the type of event is low visibility, - * - 19 - `adverseWeatherCondition-Precipitation` - in case the type of event is precipitation, - * - 20 - `violence` - in case the the type of event is human violence on or near the road, - * - 21-25 - reserved for future usage, - * - 26 - `slowVehicle` - in case the type of event is slow vehicle driving on the road, - * - 27 - `dangerousEndOfQueue` - in case the type of event is dangerous end of vehicle queue, - * - 28-90 - are reserved for future usage, - * - 91 - `vehicleBreakdown` - in case the type of event is break down vehicle on the road, - * - 92 - `postCrash` - in case the type of event is a detected crash, - * - 93 - `humanProblem` - in case the type of event is human health problem in vehicles involved in traffic, - * - 94 - `stationaryVehicle` - in case the type of event is stationary vehicle, - * - 95 - `emergencyVehicleApproaching` - in case the type of event is approaching vehicle operating emergency mission, - * - 96 - `hazardousLocation-DangerousCurve` - in case the type of event is dangerous curve, - * - 97 - `collisionRisk` - in case the type of event is a collision risk, - * - 98 - `signalViolation` - in case the type of event is signal violation, - * - 99 - `dangerousSituation` - in case the type of event is dangerous situation in which autonomous safety system in vehicle - * is activated, - * - 100 - `railwayLevelCrossing` - in case the type of event is a railway level crossing. - * - 101-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -CauseCodeType ::= INTEGER { - trafficCondition (1), - accident (2), - roadworks (3), - impassability (5), - adverseWeatherCondition-Adhesion (6), - aquaplaning (7), - hazardousLocation-SurfaceCondition (9), - hazardousLocation-ObstacleOnTheRoad (10), - hazardousLocation-AnimalOnTheRoad (11), - humanPresenceOnTheRoad (12), - wrongWayDriving (14), - rescueAndRecoveryWorkInProgress (15), - adverseWeatherCondition-ExtremeWeatherCondition (17), - adverseWeatherCondition-Visibility (18), - adverseWeatherCondition-Precipitation (19), - violence (20), - slowVehicle (26), - dangerousEndOfQueue (27), - vehicleBreakdown (91), - postCrash (92), - humanProblem (93), - stationaryVehicle (94), - emergencyVehicleApproaching (95), - hazardousLocation-DangerousCurve (96), - collisionRisk (97), - signalViolation (98), - dangerousSituation (99), - railwayLevelCrossing (100) -} (0..255) - -/** - * This DF represents the value of a cartesian coordinate with a range of -30,94 metres to +10,00 metres. - * - * The value shall be set to: - * - `3094` if the longitudinal offset is out of range, i.e. less than or equal to -30,94 metres, - * - `n (n > -3 094 and n < 1 001)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `1001` if the longitudinal offset is out of range, i.e. greater than 10 metres. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateSmall::= INTEGER { - negativeOutOfRange (-3094), - positiveOutOfRange (1001) -} (-3094..1001) - -/** - * This DF represents the value of a cartesian coordinate with a range of -327,68 metres to + 327,66 metres. - * - * The value shall be set to: - ` - `-32 768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres, - * - `n (n > -32 768 and n < 32 767)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `32 767` if the longitudinal offset is out of range, i.e. greater than + 327,66 metres. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinate::= INTEGER{ - negativeOutOfRange (-32768), - positiveOutOfRange (32767) -} (-32768..32767) - -/** - * This DF represents the value of a cartesian coordinate with a range of -1 310,72 metres to + 1 310,70 metres. - * - * The value shall be set to: - ` - `-131072` if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres, - * - `n (n > 131 072 and n < 131 071)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `131 071` if the longitudinal offset is out of range, i.e. greater than + 1 310,70 metres. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateLarge::= INTEGER{ - negativeOutOfRange (-131072), - positiveOutOfRange (131071) -} (-131072..131071) - -/** - * This DE represents the ID of a CEN DSRC tolling zone. - * - * @category: Communication information - * @revision: V1.3.1 - * @note: this DE is deprecated and shall not be used anymore. - */ -CenDsrcTollingZoneID::= ProtectedZoneId - -/** - * This DE indicates the reason why a cluster leader intends to break up the cluster. - * - * The value shall be set to: - * - 0 - `notProvided` - if the information is not provided, - * - 1 - `clusteringPurposeCompleted` - if the cluster purpose has been completed, - * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box, - * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster, - * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps, - * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. - * - 6 to 15 - are reserved for future use. - * - * @category: Cluster information - * @revision: Created in V2.1.1 -*/ -ClusterBreakupReason ::= ENUMERATED { - notProvided (0), - clusteringPurposeCompleted (1), - leaderMovedOutOfClusterBoundingBox (2), - joiningAnotherCluster (3), - enteringLowRiskAreaBasedOnMaps (4), - receptionOfCpmContainingCluster (5), - max(15) -} - -/** - * This DE indicates the reason why a cluster participant is leaving the cluster. - * - * The value shall be set to: - * - 0 - `notProvided ` - if the information is not provided, - * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore, - * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbanded by the leader, - * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box, - * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of a defined range, - * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster, - * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure, - * - 7 - `failedJoin` - if the participant failed to join the cluster, - * - 8 - `safetyCondition` - if a safety condition applies. - * - 9 to 15 - are reserved for future use - * - * @category: Cluster information - * @revision: Created in V2.1.1 - */ -ClusterLeaveReason ::= ENUMERATED { - notProvided (0), - clusterLeaderLost (1), - clusterDisbandedByLeader (2), - outOfClusterBoundingBox (3), - outOfClusterSpeedRange (4), - joiningAnotherCluster (5), - cancelledJoin (6), - failedJoin (7), - safetyCondition (8), - max(15) -} - -/** - * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of collision risk is unavailable, - * - 1 - `longitudinalCollisionRisk`- in case the type of detected collision risk is longitudinal collision risk, - * e.g. forward collision or face to face collision, - * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, - * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, - * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users - * e.g. pedestrians or bicycles. - * - 5-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -CollisionRiskSubCauseCode ::= INTEGER { - unavailable (0), - longitudinalCollisionRisk (1), - crossingCollisionRisk (2), - lateralCollisionRisk (3), - vulnerableRoadUser (4) -}(0..255) - -/** - * This DE represents a confidence level in percentage. - * - * The value shall be set to: - * - `n (n > 0 and n < 101)` : for the confidence level in %, - * - `101` : in case the confidence level is not available. - * - * @unit Percent - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -ConfidenceLevel ::= INTEGER { - unavailable (101) -} (1..101) - -/** - * This DE indicates the coordinate confidence value which represents the estimated absolute accuracy of a position coordinate with a default confidence level of 95%. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n` (`n > 0` and `n < 4095`) if the confidence value is is equal to or less than n x 0,01 metre, and greater than (n-1) x 0,01 metre, - * - `4095` if the confidence value is greater than 40,94 metres, - * - `4096` if the confidence value is not available. - * - * @unit 0,01 m - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -CoordinateConfidence ::= INTEGER { - outOfRange (4095), - unavailable (4096) -} (1..4096) - -/** - * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. - * - * The value shall be set to: - * - `-100` in case of full negative correlation, - * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100, - * - `0` in case of no correlation, - * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100, - * - `100` in case of full positive correlation, - * - `101` in case the correlation information is unavailable. - * - * @unit: the value is scaled by 100 - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -CorrelationCellValue ::= INTEGER { - full-negative-correlation (-100), - no-correlation (0), - full-positive-correlation (100), - unavailable (101) -} (-100..101) - -/** - * The DE describes whether the yaw rate is used to calculate the curvature for a curvature value. - * - * The value shall be set to: - * - 0 - `yawRateUsed` - if the yaw rate is used, - * - 1 - `yawRateNotUsed` - if the yaw rate is not used, - * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -CurvatureCalculationMode ::= ENUMERATED { - yawRateUsed (0), - yawRateNotUsed (1), - unavailable (2), - ... -} - -/** - * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy range of a curvature value with a confidence level of 95%. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - 0 - `onePerMeter-0-00002` if the confidence value is less than or equal to 0,00002 m-1, - * - 1 - `onePerMeter-0-0001` if the confidence value is less than or equal to 0,0001 m-1 and greater than 0,00002 m-1, - * - 2 - `onePerMeter-0-0005` if the confidence value is less than or equal to 0,0005 m-1 and greater than 0,0001 m-1, - * - 3 - `onePerMeter-0-002` if the confidence value is less than or equal to 0,002 m-1 and greater than 0,0005 m-1, - * - 4 - `nePerMeter-0-01` if the confidence value is less than or equal to 0,01 m-1 and greater than 0,002 m-1, - * - 5 - `nePerMeter-0-1` if the confidence value is less than or equal to 0,1 m-1 and greater than 0,01 m-1, - * - 6 - `outOfRange` if the confidence value is out of range, i.e. greater than 0,1 m-1, - * - 7 - `unavailable` if the confidence value is not available. - * - * @note: The fact that a curvature value is received with confidence value set to `unavailable(7)` can be caused by - * several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the curvature value may be valid and used by the application. - * - * @note: If a curvature value is received and its confidence value is set to 'outOfRange(6)', it means that the curvature value is not valid - * and therefore cannot be trusted. Such value is not useful for the application. - * - * @category: Vehicle information - * @revision: Description revised in V2.1.1 -*/ -CurvatureConfidence ::= ENUMERATED { - onePerMeter-0-00002 (0), - onePerMeter-0-0001 (1), - onePerMeter-0-0005 (2), - onePerMeter-0-002 (3), - onePerMeter-0-01 (4), - onePerMeter-0-1 (5), - outOfRange (6), - unavailable (7) -} - -/** - * This DE describes vehicle turning curve with the following information: - * ``` - * Value = 1 / Radius * 10000 - * ``` - * wherein radius is the vehicle turning curve radius in metres. - * - * Positive values indicate a turning curve to the left hand side of the driver. - * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. - * - * The value shall be set to: - * - `-1023` for values smaller than -1023, - * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1), - * - `0` when the vehicle is moving straight, - * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1), - * - `1022`, for values greater than 1021, - * - `1023`, if the information is not available. - * - * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. - * - * @unit: 1 over 10 000 metres - * @category: Vehicle information - * @revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) - */ -CurvatureValue ::= INTEGER { - outOfRangeNegative (-1023), - straight (0), - outOfRangePositive (1022), - unavailable (1023) -} (-1023..1023) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, - * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, - * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, - * - 3 - `queueAroundBend` - in case the dangerous end of queue is detected around the road bend, - * - 4 - `queueInTunnel` - in case queue is detected in tunnel, - * - 5-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DangerousEndOfQueueSubCauseCode ::= INTEGER { - unavailable (0), - suddenEndOfQueue (1), - queueOverHill (2), - queueAroundBend (3), - queueInTunnel (4) -} (0..255) - -/** - * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. - * The value is assigned according to `class` and `division` definitions of dangerous goods as specified in part II, - * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.3]. - * - * - * @category Vehicle information - * @revision: V1.3.1 - */ -DangerousGoodsBasic::= ENUMERATED { - explosives1 (0), - explosives2 (1), - explosives3 (2), - explosives4 (3), - explosives5 (4), - explosives6 (5), - flammableGases (6), - nonFlammableGases (7), - toxicGases (8), - flammableLiquids (9), - flammableSolids (10), - substancesLiableToSpontaneousCombustion (11), - substancesEmittingFlammableGasesUponContactWithWater (12), - oxidizingSubstances (13), - organicPeroxides (14), - toxicSubstances (15), - infectiousSubstances (16), - radioactiveMaterial (17), - corrosiveSubstances (18), - miscellaneousDangerousSubstances (19) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousSituation` - * - * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, - * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, - * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, - * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, - * - 4 - `absEngaged` - in case Anti-lock Braking System (ABS) is engaged, - * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, - * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, - * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, - * - 8-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DangerousSituationSubCauseCode ::= INTEGER { - unavailable (0), - emergencyElectronicBrakeEngaged (1), - preCrashSystemEngaged (2), - espEngaged (3), - absEngaged (4), - ebEngaged (5), - brakeWarningEngaged (6), - collisionRiskWarningEngaged (7) -} (0..255) - -/** - * This DE represents an offset altitude with regards to a defined altitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `-12 700` for values equal to or lower than -127 metres, - * - `n` (`n > -12 700` and `n <= 0) for altitude offset n x 0,01 metre below the reference position, - * - `0` for no altitudinal offset, - * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 metre above the reference position, - * - `12 799` for values equal to or greater than 127,99 metres, - * - `12 800` when the information is unavailable. - * - * @unit: 0,01 metre - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaAltitude ::= INTEGER { - negativeOutOfRange (-12700), - positiveOutOfRange (12799), - unavailable (12800) -} (-12700..12800) - -/** - * This DE represents an offset latitude with regards to a defined latitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, - * - `0` for no latitudinal offset, - * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the north from the reference position, - * - `131 072` when the information is unavailable. - * - * @unit: 10^-7 degree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLatitude ::= INTEGER { - unavailable (131072) -} (-131071..131072) - -/** - * This DE represents an offset longitude with regards to a defined longitude value. - * It may be used to describe a geographical point with regards to a specific reference geographical position. - * - * The value shall be set to: - * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, - * - `0` for no longitudinal offset, - * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the east from the reference position, - * - `131 072` when the information is unavailable. - * - * @unit: 10^-7 degree - * @category: GeoReference information - * @revision: editorial update in V2.1.1 - */ -DeltaLongitude ::= INTEGER { - unavailable (131072) -} (-131071..131072) - -/** - * This DE represents a difference in time with respect to a reference time. - - * Example: a time interval between two consecutive message transmissions. - * - * @unit: 0,001 s - * @category: Basic information - * @revision: Created in V2.1.1 from the DE TransmissionInterval in [i.2] - */ -DeltaTimeMilliSecondPos ::= INTEGER (1..10000) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 0,001 s - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeMilliSecondPosNeg ::= INTEGER (-1500..1500) - -/** - * This DE represents a difference in time with respect to a reference time. - * It can be interpreted as the first 8 bits of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, - * multiply by 256 (i.e. append a `00` byte) - * - * @unit: 256 * 0,001 s - * @category: Basic information - * @revision: Created in V2.1.1 - */ -DeltaTimeQuarterSecond::= INTEGER { - unavailable (255) -} (1..255) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 0,1 s - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -DeltaTimeTenthOfSecond::= INTEGER { - unavailable (127) -} (0..127) - -/** - * This DE represents a difference in time with respect to a reference time. - * - * @unit: 1 s - * @category: Basic information - * @revision: Created in V2.1.1 from ValidityDuration -*/ -DeltaTimeSecond ::= INTEGER (0..86400) - -/** - * This DE indicates a direction with respect to a defined reference direction. - * Example: a reference direction may be implicitly defined by the definition of a geographical zone. - * - * The value shall be set to: - * - 0 - `sameDirection` - to indicate the same direction as the reference direction, - * - 1 - `oppositeDirection` - to indicate opposite direction as the reference direction, - * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction, - * - 3 - `unavailable` - to indicate that the information is unavailable. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -Direction::= INTEGER{ - sameDirection (0), - oppositeDirection (1), - bothDirections (2), - unavailable (3) - } (0..3) - -/** - * This DE indicates in which direction something is moving. - * - * The value shall be set to: - * - 0 - `forward` - to indicate it is moving forward, - * - 1 - `backwards` - to indicate it is moving backwards, - * - 2 - `unavailable` - to indicate that the information is unavailable. - * - * @category: Kinematics information - * @revision: editorial update in V2.1.1 - */ -DriveDirection ::= ENUMERATED { - forward (0), - backward (1), - unavailable (2) -} - -/** - * This DE indicates whether a driving lane is open to traffic. - * - * A lane is counted from inside border of the road excluding the hard shoulder. The size of the bit string shall - * correspond to the total number of the driving lanes in the carriageway. - * - * The numbering is matched to @ref LanePosition. - * The bit `0` is used to indicate the innermost lane, bit `1` is used to indicate the second lane from inside border. - * - * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. - * - * @note: hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) - -/** - * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. - * If that is the case, the value is *TRUE*, otherwise *FALSE*. - * - * @category: Vehicle information - * @revision: editorial update in V2.1.1 - */ -EmbarkationStatus ::= BOOLEAN - -/** - * This DE indicates the right of priority requested or assumed by an operating emergency vehicle. - * The right-of-priority bit shall be set to `1` if the corresponding right is requested. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way, - * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. - * - * @category: Traffic information - * @revision: description revised in V2.1.1 - */ -EmergencyPriority ::= BIT STRING { - requestForRightOfWay (0), - requestForFreeCrossingAtATrafficLight (1) -} (SIZE(2)) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event - * is unavailable, - * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, - * - 2 - `prioritizedVehicleApproaching` - in case a prioritized vehicle is approaching, - * - 3-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -EmergencyVehicleApproachingSubCauseCode ::= INTEGER { - unavailable (0), - emergencyVehicleApproaching (1), - prioritizedVehicleApproaching (2) -} (0..255) - -/** - * This DE indicated the type of energy being used and stored in vehicle. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle, - * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle, - * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle, - * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle, - * - 4 - `diesel` - when diesel is being used and stored in vehicle, - * - 5 - `gasoline` - when gasoline is being used and stored in vehicle, - * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. - * - * - Otherwise, the corresponding bit shall be set to `0`. - * - * @category: Vehicle information - * @revision: editorial revision in V2.1.1 - */ -EnergyStorageType ::= BIT STRING { - hydrogenStorage (0), - electricEnergyStorage (1), - liquidPropaneGas (2), - compressedNaturalGas (3), - diesel (4), - gasoline (5), - ammonia (6) -}(SIZE(7)) - -/** - * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } - -/** - * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} - -/** - * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} - -/** - * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. - * - * - * @category: Vehicle information - * @revision: V2.1.1 - */ -EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} - -/** - * This DE describes the status of the exterior light switches of a vehicle. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on, - * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on, - * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on, - * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on, - * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on, - * - 5 - `reverseLightOn` - when the reverse light switch is on, - * - 6 - `fogLightOn` - when the tail fog light switch is on, - * - 7 - `parkingLightsOn` - when the parking light switch is on. - * - * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, - * either manually by the driver or automatically by a vehicle system. The bit value does not indicate - * if the corresponding lamps are alight or not. - * - * If a vehicle is not equipped with a certain light or if the light switch status information is not available, - * the corresponding bit shall be set to `0`. - * - * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not - * alternate with the blinking interval. - * - * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. - * - * @category Vehicle information - * @revision: Description revised in V2.1.1 - */ -ExteriorLights ::= BIT STRING { - lowBeamHeadlightsOn (0), - highBeamHeadlightsOn (1), - leftTurnSignalOn (2), - rightTurnSignalOn (3), - daytimeRunningLightsOn (4), - reverseLightOn (5), - fogLightOn (6), - parkingLightsOn (7) -} (SIZE(8)) - -/** - * This DE represents a timestamp based on TimestampIts modulo 65 536. - * This means that generationDeltaTime = TimestampIts mod 65 536. - * - * @category Time information - * @revision: Created in V2.1.1 based on ETSI TS 103 900 [i.1] -*/ -GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) - -/** - * This DE indicates the current status of a hard shoulder: whether it is available for special usage - * (e.g. for stopping or for driving) or closed for all vehicles. - * - * The value shall be set to: - * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations, - * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case, - * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 - */ -HardShoulderStatus ::= ENUMERATED { - availableForStopping (0), - closed (1), - availableForDriving (2) -} - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, - * - 1 - `wildAnimals` - in case wild animals are detected on the road, - * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, - * - 3 - `smallAnimals` - in case small size animals are detected on the road, - * - 4 - `largeAnimals` - in case large size animals are detected on the road. - * - 5-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - wildAnimals (1), - herdOfAnimals (2), - smallAnimals (3), - largeAnimals (4) -} (0..255) - -/** - * This DE represents the sub cause code of the @ref CauseCode `hazardousLocation-DangerousCurve`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, - * - 1 - `dangerousLeftTurnCurve` - in case the dangerous curve is a left turn curve, - * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, - * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, - * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, - * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves starting with a right turn curve. - * - 6-255 - are reserved for future usage. - * - * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass - * and vehicle speed driving on the curve. This definition is out of scope of the present document. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { - unavailable (0), - dangerousLeftTurnCurve (1), - dangerousRightTurnCurve (2), - multipleCurvesStartingWithUnknownTurningDirection (3), - multipleCurvesStartingWithLeftTurn (4), - multipleCurvesStartingWithRightTurn (5) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the detected obstacle is unavailable, - * - 1 - `shedLoad` - in case detected obstacle is large amount of obstacles (shedload), - * - 2 - `partsOfVehicles`- in case detected obstacles are parts of vehicles, - * - 3 - `partsOfTyres` - in case the detected obstacles are parts of tyres, - * - 4 - `bigObjects` - in case the detected obstacles are big objects, - * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, - * - 6 - `hubCaps` - in case the detected obstacles are hub caps, - * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles. - * - 8-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - shedLoad (1), - partsOfVehicles (2), - partsOfTyres (3), - bigObjects (4), - fallenTrees (5), - hubCaps (6), - waitingVehicles (7) -} (0..255) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. - * -The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the road surface condition is unavailable, - * - 1 - `rockfalls` - in case rock falls are detected on the road surface, - * - 2 - `earthquakeDamage`- in case the road surface is damaged by earthquake, - * - 3 - `sewerCollapse` - in case of sewer collapse on the road surface, - * - 4 - `subsidence` - in case road surface is damaged by subsidence, - * - 5 - `snowDrifts` - in case road surface is damaged due to snow drift, - * - 6 - `stormDamage` - in case road surface is damaged by strong storm, - * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, - * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, - * - 9 - `fallingIce` - in case road surface damage is due to falling ice, - * - 10 - `fire` - in case there is fire on or near to the road surface. - * - 11-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { - unavailable (0), - rockfalls (1), - earthquakeDamage (2), - sewerCollapse (3), - subsidence (4), - snowDrifts (5), - stormDamage (6), - burstPipe (7), - volcanoEruption (8), - fallingIce (9), - fire (10) -} (0..255) - -/** - * This DE indicates the heading confidence value which represents the estimated absolute accuracy of a heading value with a confidence level of 95 %. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, - * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, - * - `127` if the confidence value information is not available. - * - * @note: The fact that a value is received with confidence value set to `unavailable(127)` can be caused by several reasons, - * such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the heading value may be valid and used by the application. - * - * @note: If a heading value is received and its confidence value is set to `outOfRange(126)`, it means that the - * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. - * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84AngleConfidence instead. - * - * @unit: 0,1 degree - * @category: GeoReference information - * @revision: Description revised in V2.1.1 - */ -HeadingConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. - * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. - * - * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84AngleValue instead. - * - * Unit: 0,1 degree - * Categories: GeoReference information - * @revision: Description revised in V2.1.1 (usage of value 3600 specified) -*/ -HeadingValue ::= INTEGER { - wgs84North (0), - wgs84East (900), - wgs84South (1800), - wgs84West (2700), - doNotUse (3600), - unavailable (3601) -} (0..3601) - -/** - * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle - * rear to front). - * - * The value shall be set to: - * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `99` if the height is out of range, i.e. equal to or greater than 0,98 m, - * - `100` if the height information is not available. - * - * @unit 0,01 metre - * @category Vehicle information - * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) - */ -HeightLonCarr ::= INTEGER { - outOfRange(99), - unavailable(100) -} (1..100) - -/** - * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, - * - 1 - `childrenOnRoadway` - in case children are detected on the road, - * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, - * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road. - * - 4-255 - are reserved for future usage. - * - * @category: Traffic information - * @revision: editorial revision in V2.1.1 - */ -HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { - unavailable (0), - childrenOnRoadway (1), - cyclistOnRoadway (2), - motorcyclistOnRoadway (3) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". - * - * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, - * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, - * - 2 - `heartProblem` - in case human problem is due to heart problem. - * - 3-255 - reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -HumanProblemSubCauseCode ::= INTEGER { - unavailable (0), - glycemiaProblem (1), - heartProblem (2) -} (0..255) - -/** - * This DE is a general identifier. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -Identifier1B ::= INTEGER (0..255) - -/** - * This DE is a general identifier. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -Identifier2B ::= INTEGER (0..65535) - -/** - * This DE represents the quality level of provided information. - * - * The value shall be set to: - * - `0` if the information is unavailable, - * - `1` if the quality level is lowest, - * - `n (n > 1 and n < 7)` if the quality level is n, - * - `7` if the quality level is highest. - * - * @note: Definition of quality level is out of scope of the present document. - * @category: Basic information - * @revision: Editorial update in V2.1.1 - */ -InformationQuality ::= INTEGER (0..7) - -/** - * This DE defines the type of an interference management zone, so that an ITS-S can - * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). - * It is an extension of the type @ref ProtectedZoneType. - * - * The value shall be set to: - * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14], - * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14], - * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling, - * - 3 - `urbanRail` - as specified in ETSI TS 103 724 [i.13], clause 7, - * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.13], clause 7, - * - 5 - `fixedLinks` - as specified in ETSI TS 103 724 [i.13], clause 7. - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -InterferenceManagementZoneType ::= ENUMERATED { - permanentCenDsrcTolling (0), - temporaryCenDsrcTolling (1), - unavailable (2), - urbanRail (3), - satelliteStation (4), - fixedLinks (5), - ... -} - -/** - * This DE represents the vehicle type according to ISO 3833 [3]. - * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. - * - * The value shall be set to: - * - 0 - `passengerCar` - term No 3.1.1 - * - 1 - `saloon` - term No 3.1.1.1 (sedan) - * - 2 - `convertibleSaloon` - term No 3.1.1.2 - * - 3 - `pullmanSaloon` - term No 3.1.1.3 - * - 4 - `stationWagon` - term No 3.1.1.4 - * - 5 - `truckStationWagon` - term No 3.1.1.4.1 - * - 6 - `coupe` - term No 3.1.1.5 (coupe) - * - 7 - `convertible` - term No 3.1.1.6 (open tourer, roadstar, spider) - * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 - * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 - * - 10 - `specialPassengerCar` - term No 3.1.1.9 - * - 11 - `bus` - term No 3.1.2 - * - 12 - `minibus` - term No 3.1.2.1 - * - 13 - `urbanBus` - term No 3.1.2.2 - * - 14 - `interurbanCoach` - term No 3.1.2.3 - * - 15 - `longDistanceCoach` - term No 3.1.2.4 - * - 16 - `articulatedBus` - term No 3.1.2.5 - * - 17 - `trolleyBus ` - term No 3.1.2.6 - * - 18 - `specialBus` - term No 3.1.2.7 - * - 19 - `commercialVehicle ` - term No 3.1.3 - * - 20 - `specialCommercialVehicle` - term No 3.1.3.1 - * - 21 - `specialVehicle ` - term No 3.1.4 - * - 22 - `trailingTowingVehicle ` - term No 3.1.5 (draw-bar tractor) - * - 23 - `semiTrailerTowingVehicle` - term No 3.1.6 (fifth wheel tractor) - * - 24 - `trailer` - term No 3.2.1 - * - 25 - `busTrailer` - term No 3.2.1.1 - * - 26 - `generalPurposeTrailer` - term No 3.2.1.2 - * - 27 - `caravan` - term No 3.2.1.3 - * - 28 - `specialTrailer` - term No 3.2.1.4 - * - 29 - `semiTrailer` - term No 3.2.2 - * - 30 - `busSemiTrailer ` - term No 3.2.2.1 - * - 31 - `generalPurposeSemiTrailer` - term No 3.2.2.2 - * - 32 - `specialSemiTrailer` - term No 3.2.2.3 - * - 33 - `roadTrain` - term No 3.3.1 - * - 34 - `passengerRoadTrain ` - term No 3.3.2 - * - 35 - `articulatedRoadTrain` - term No 3.3.3 - * - 36 - `doubleRoadTrain` - term No 3.3.4 - * - 37 - `compositeRoadTrain` - term No 3.3.5 - * - 38 - `specialRoadTrain` - term No 3.3.6 - * - 39 - `moped` - term No 3.4 - * - 40 - `motorCycle` - term No 3.5 - * - 41-255 - reserved for future use - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ - -Iso3833VehicleType ::= INTEGER { - passengerCar (0), - saloon (1), - convertibleSaloon (2), - pullmanSaloon (3), - stationWagon (4), - truckStationWagon (5), - coupe (6), - convertible (7), - multipurposePassengerCar (8), - forwardControlPassengerCar (9), - specialPassengerCar (10), - bus (11), - minibus (12), - urbanBus (13), - interurbanCoach (14), - longDistanceCoach (15), - articulatedBus (16), - trolleyBus (17), - specialBus (18), - commercialVehicle (19), - specialCommercialVehicle (20), - specialVehicle (21), - trailingTowingVehicle (22), - semiTrailerTowingVehicle (23), - trailer (24), - busTrailer (25), - generalPurposeTrailer (26), - caravan (27), - specialTrailer (28), - semiTrailer (29), - busSemiTrailer (30), - generalPurposeSemiTrailer (31), - specialSemiTrailer (32), - roadTrain (33), - passengerRoadTrain (34), - articulatedRoadTrain (35), - doubleRoadTrain (36), - compositeRoadTrain (37), - specialRoadTrain (38), - moped (39), - motorCycle (40) - } (0..255) - -/** - * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. - * - * For right-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road, - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane, - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction, - * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). - * - * For left-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road, - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane, - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction, - * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). - - * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. - * - * If the carriageway allows only traffic in one direction (e.g. in case of dual or multiple carriageway roads), the position is counted from the physical border of the carriageway. - * If the carriageway allows traffic in both directions and there is no physical delimitation between traffic directions (e.g. on a single carrriageway road), - * the position is counted from the legal (i.e. optical) separation between traffic directions (horizontal marking). - - * @category: Road topology information - * @revision: Description revised in V2.1.1 -*/ -LanePosition ::= INTEGER { - offTheRoad (-1), - innerHardShoulder (0), - outerHardShoulder (14) -} (-1..14) - -/** - * This DE represents the type of a lane. - * - * The value shall be set to: - * - 0 - `traffic` - Lane dedicated to the movement of vehicles, - * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning, - * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow, - * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it, - * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it, - * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic, - * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic, - * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc., - * - 8 - `bus` - Lane dedicated to movement of buses providing public transport, - * - 9 - `taxi` - Lane dedicated to movement of taxis, - * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane, - * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll, - * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths, - * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles, - * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median, - separating the two directional carriageways of the highway, - * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings, - * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys, - * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes, - * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder, - * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between - the road surface edge and the boundary of a road, - * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. - * - values 21 to 30 reserved for future use. - * - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -LaneType::= INTEGER{ - traffic (0), - through (1), - reversible (2), - acceleration (3), - deceleration (4), - leftHandTurning (5), - rightHandTurning (6), - dedicatedVehicle (7), - bus (8), - taxi (9), - hov (10), - hot (11), - pedestrian (12), - cycleLane (13), - median (14), - striping (15), - trackedVehicle (16), - parking (17), - emergency (18), - verge (19), - minimumRiskManoeuvre (20), - unknown (31) -}(0..31) - -/** - * This DE represents the width of a lane measured at a defined position. - * - * The value shall be set to: - * - `n (n >= 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `1022` if the lane width is out of range, i.e. greater than 10,21 m, - * - `1023` if the lane width information is not available. - * - * The value 0 shall not be used. - * - * @unit: 0,01 metre - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -LaneWidth::= INTEGER (0..1023) - -/** - * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or - * in south hemisphere. - * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n (n >= -900 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, - * - `0` is used for the latitude of the equator, - * - `n (n > 0 and n < 900 000 001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator, - * - `900 000 001` when the information is unavailable. - * - * @unit: 10^-7 degree - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -Latitude ::= INTEGER { - unavailable(900000001) -} (-900000000..900000001) - -/** - * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. - * - * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s2, - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation - * with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation - with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration values greater than 15,9 m/s2, - * - `161` when the data is unavailable. - * - * @note: the empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead - * - * @unit: 0,1 m/s2 - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). - */ -LateralAccelerationValue ::= INTEGER { - negativeOutOfRange (-160), - positiveOutOfRange (160), - unavailable (161) -} (-160 .. 161) - -/** - * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. - * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lightBarActivated` - when the light bar is activated, - * - 1 - `sirenActivated` - when the siren is activated. - * - * Otherwise, it shall be set to 0. - * - * @category Vehicle information - * @revision: Editorial update in V2.1.1 - */ -LightBarSirenInUse ::= BIT STRING { - lightBarActivated (0), - sirenActivated (1) -} (SIZE(2)) - -/** - * This DE represents the absolute geographical longitude in a WGS84 coordinate system, providing a range of 180 degrees - * to the east or to the west of the prime meridian. - * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n (n > -1 800 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for longitudes to the west, - * - `0` to indicate the prime meridian, - * - `n (n > 0 and n < 1 800 000 001)` x 10^-7 degree, i.e. positive values for longitudes to the east, - * - `1 800 000 001` when the information is unavailable. - * - * The value -1800000000 shall not be used. - * - * @unit: 10^-7 degree - * @category: GeoReference information - * @revision: Description revised in V2.1.1 - */ -Longitude ::= INTEGER { - valueNotUsed (-1800000000), - unavailable (1800000001) -} (-1800000000..1800000001) - - /** - * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. - * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. - * - * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s2, - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2 - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration values greater than 15,9 m/s2, - * - `161` when the data is unavailable. - * - * This acceleration is along the tangent plane of the road surface and does not include gravity components. - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead - * - * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. - * @unit: 0,1 m/s2 - * @category: Vehicle information - * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). T - */ -LongitudinalAccelerationValue::= INTEGER { - negativeOutOfRange (-160), - positiveOutOfRange (160), - unavailable (161) -} (-160 .. 161) - -/** - * This DE represents the longitudinal offset of a map-matched position along a matched lane, beginning from the lane's starting point. - * - * The value shall be set to: - * - `n (n >= 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, - * - `32 766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m, - * - `32 767` if the longitudinal offset information is not available. - * - * @unit 0,1 metre - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -LongitudinalLanePositionValue ::= INTEGER { - outOfRange(32766), - unavailable(32767) -}(0..32767) - -/** - * This DE indicates the longitudinal lane position confidence value which represents the estimated accuracy of longitudinal lane position measurement with a default confidence level of 95%. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n (n > 0 and n < 1 022)` if the confidence value is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, - * - `1 022` if the confidence value is out of range i.e. greater than 102,1 m, - * - `1 023` if the confidence value is unavailable. - * - * @unit 0,1 metre - * @category: Road topology information - * @revision: Created in V2.1.1 -*/ -LongitudinalLanePositionConfidence ::= INTEGER { - outOfRange (1022), - unavailable (1023) -} (0..1023) - - -/** - * This DE indicates the components of an @ref PerceivedObject that are included in the @ref LowerTriangularPositiveSemidefiniteMatrix. - * - * The corresponding bit shall be set to 1 if the component is included: - * - 0 - `xCoordinate` - when the component xCoordinate of the component @ref CartesianPosition3dWithConfidence is included, - * - 1 - `yCoordinate` - when the component yCoordinate of the component @ref CartesianPosition3dWithConfidence is included, - * - 2 - `zCoordinate` - when the component zCoordinate of the component @ref CartesianPosition3dWithConfidence is included, - * - 3 - `xVelocityOrVelocityMagnitude` - when the component xVelocity or VelocityMagnitude of the component @ref VelocityPolarWithZ is included, - * - 4 - `yVelocityOrVelocityDirection` - when the component yVelocity or VelocityDirection of the component @ref VelocityPolarWithZ is included - * - 5 - `zVelocity` - when the component zVelocity of the component @ref VelocityPolarWithZ is included, - * - 6 - `xAccelOrAccelMagnitude` - when the component xAcceleration of the component @ref AccelerationCartesian or the component AccelerationMagnitude of the component @ref AccelerationPolarWithZ is included, - * - 7 - `yAccelOrAccelDirection` - when the component yAcceleration of the component @ref AccelerationCartesian or the component AccelerationDirection of the component @ref AccelerationPolarWithZ is included, - * - 8 - `zAcceleration` - when the component zAcceleration of the component @ref AccelerationCartesian or of the component @ref AccelerationPolarWithZ is included, - * - 9 - `zAngle` - when the component zAngle is included, - * - 10 - `yAngle` - when the component yAngle is included, - * - 11 - `xAngle` - when the component xAngle is included, - * - 12 - `zAngleRate` - when the component zAngleRate is included. - * - * Otherwise, it shall be set to 0. - * - * @category Sensing information - * @revision: Created in V2.1.1 - */ -MatrixIncludedComponents::= BIT STRING{ - xPosition (0), - yPosition (1), - zPosition (2), - xVelocityOrVelocityMagnitude (3), - yVelocityOrVelocityDirection (4), - zSpeed (5), - xAccelOrAccelMagnitude (6), - yAccelOrAccelDirection (7), - zAcceleration (8), - zAngle (9), - yAngle (10), - xAngle (11), - zAngleRate (12) -} (SIZE(13,...)) - -/** - * This DE represents the type of facility layer message. - * - * The value shall be set to: - * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.2], - * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.1], - * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.9], - * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.15], - * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.15], - * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.15], - * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.11], - * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.10], - * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.15], - * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.15], - * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.9], - * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.17], - * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.15], - * - 14 - `cpm` - reserved for Collective Perception Message (CPM), - * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], - * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], - * - 17 - `dsm` - reserved for Diagnosis, logging and Status Message, - * - 18 - `pcim` - reserved for Parking Control Infrastructure Message, - * - 19 - `pcvm` - reserved for Parking Control Vehicle Message, - * - 20 - `mcm` - reserved for Manoeuvre Coordination Message, - * - 21 - `pam` - reserved for Parking Availability Message, - * - 22-255 - reserved for future usage. - * - * @category: Communication information - * @revision: Created in V2.1.1 from @ref ItsPduHeader. - */ -MessageId::= INTEGER { - denm (1), - cam (2), - poi (3), - spatem (4), - mapem (5), - ivim (6), - ev-rsr (7), - tistpgtransaction (8), - srem (9), - ssem (10), - evcsn (11), - saem (12), - rtcmem (13), - cpm (14), - imzm (15), - vam (16), - dsm (17), - pcim (18), - pcvm (19), - mcm (20), - pam (21) -} (0..255) - -/** - * This DE represents the number of occupants in a vehicle. - * - * The value shall be set to: - * - `n (n >= 0 and n < 126)` for the number n of occupants, - * - `126` for values equal to or higher than 125, - * - `127` if information is not available. - * - * @unit: 1 person - * @category: Vehicle information - * @revision: Editorial update in V2.1.1 - */ -NumberOfOccupants ::= INTEGER { - outOfRange (126), - unavailable (127) -} (0 .. 127) - -/** - * This DE represents a single-value indication about the overall information quality of a perceived object. - * - * The value shall be set to: - * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed, - * - `n (n > 0 and n < 15)` : for the applicable confidence value, - * -`15` : if there is full confidence in the detected Object. - * - * @unit n/a - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectPerceptionQuality ::= INTEGER { - noConfidence (0), - fullConfidence (15) -} (0..15) - -/** - * This DE represents a single dimension of an object. - * - * The value shall be set to: - * - `n (n > 0 and n < 255)` if the accuracy is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, - * - `255` if the accuracy is out of range i.e. greater than 25,4 m, - * - `256` if the data is unavailable. - * - * @unit 0,1 m - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimensionValue ::= INTEGER { - outOfRange (255), - unavailable (256) -}(1..256) - -/** - * This DE indicates the object dimension confidence value which represents the estimated absolute accuracy of an object dimension value with a default confidence level of 95%. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n (n > 0 and n < 31)` if the confidence value is equal to or less than n x 0,1 metre, and more than (n-1) x 0,1 metre, - * - `31` if the confidence value is out of range i.e. greater than 3,0 m, - * - `32` if the confidence value is unavailable. - * - * @unit 0,1 m - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimensionConfidence ::= INTEGER { - outOfRange (31), - unavailable (32) -} (1..32) - -/** - * This DE indicates the face or part of a face of a solid object. - * - * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: - * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object, - * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object, - * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. - * - * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. - * - * @category: Basic information - * @revision: V2.1.1 -*/ -ObjectFace ::= ENUMERATED { - front (0), - sideLeftFront (1), - sideLeftBack (2), - sideRightFront (3), - sideRightBack (4), - back (5) -} - -/** - * This DE represents a time period to describe the opening days and hours of a Point of Interest. - * (for example local commerce). - * - * @category: Time information - * @revision: V1.3.1 - */ -OpeningDaysHours ::= UTF8String - -/** - * The DE represents an ordinal number that indicates the position of an element in a set. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -OrdinalNumber1B ::= INTEGER(0..255) - - -/** - * The DE represents an ordinal number that indicates the position of an element in a set. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -OrdinalNumber3b ::= INTEGER(1..8) - -/** - * This DE indicates the subclass of a detected object for @ref ObjectClass "otherSubclass". - * - * The value shall be set to: - * - `0` - unknown - if the subclass is unknown. - * - `1` - roadSideUnit - if the object is a roadside unit. - * - `2` - singleObject - if the object is a single object. - * - `3` - multipleObjects - if the object is a group of multiple objects. - * - `4` - bulkMaterial - if the object is a bulk material. - * - * @category: Sensing information - * @revision: Created in V2.1.1 - */ -OtherSubClass ::= INTEGER { - unknown (0), - roadSideUnit (1), - singleObject (2), - multipleObjects (3), - bulkMaterial (4) -} (0..255) - -/** - * This DE represents the recorded or estimated travel time between a position and a predefined reference position. - * - * @unit 0,01 second - * @category GeoReference information - * @revision: V1.3.1 - */ -PathDeltaTime ::= INTEGER (1..65535, ...) - -/** - * This DE denotes the ability of an ITS-S to provide up-to-date information. - * A performance class value is used to describe age of data. The exact values are out of scope of the present document. - * - * The value shall be set to: - * - `0` if the performance class is unknown, - * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.5], - * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.5], - * - Values in the range `3 to 7` are reserved for future use. - * - * @category: Vehicle information - * @revision: Editorial update in V2.1.1 - */ -PerformanceClass ::= INTEGER { - unavailable (0), - performanceClassA (1), - performanceClassB (2) -} (0..7) - -/** - * This DE represents a telephone number - * - * @category: Basic information - * @revision: V1.3.1 - */ -PhoneNumber ::= NumericString (SIZE(1..16)) - -/** - * This DE indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of - * the vehicle bounding box of the empty load vehicle. - * - * The value shall be set to: - * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 metre and 6,2 metres, - * - `62` for values equal to or higher than `6.1 metres`, - * - `63` if the information is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. - * - * @unit 0,1 metre - * @category Vehicle information - * @revision: description revised in V2.1.1 (the meaning of 62 has changed slightly) - */ -PosCentMass ::= INTEGER { - tenCentimetres (1), - outOfRange (62), - unavailable (63) -} (1..63) - -/** - * This DE indicates the positioning technology being used to estimate a geographical position. - * - * The value shall be set to: - * - 0 `noPositioningSolution` : no positioning solution used, - * - 1 `sGNSS` : Global Navigation Satellite System used, - * - 2 `dGNSS` : Differential GNSS used, - * - 3 `sGNSSplusDR` : GNSS and dead reckoning used, - * - 4 `dGNSSplusDR` : Differential GNSS and dead reckoning used, - * - 5 `dR` : dead reckoning used. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -PositioningSolutionType ::= ENUMERATED { - noPositioningSolution (0), - sGNSS (1), - dGNSS (2), - sGNSSplusDR (3), - dGNSSplusDR (4), - dR (5), - ... -} - -/** - * This DE indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. - * - * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear - * of the vehicle. - * The left side seat of a row refers to the left hand side seen from vehicle rear to front. - * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, - * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. - * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, - * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. - * - * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. - * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. - * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. - * Otherwise, the value of seat occupation bit shall be set according to the following conditions: - * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. - * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row - * shall be set to `1`. - * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. - * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row - * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PositionOfOccupants ::= BIT STRING { - row1LeftOccupied (0), - row1RightOccupied (1), - row1MidOccupied (2), - row1NotDetectable (3), - row1NotPresent (4), - row2LeftOccupied (5), - row2RightOccupied (6), - row2MidOccupied (7), - row2NotDetectable (8), - row2NotPresent (9), - row3LeftOccupied (10), - row3RightOccupied (11), - row3MidOccupied (12), - row3NotDetectable (13), - row3NotPresent (14), - row4LeftOccupied (15), - row4RightOccupied (16), - row4MidOccupied (17), - row4NotDetectable (18), - row4NotPresent (19) -} (SIZE(20)) - -/** - * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 0,1 metre. - * - * The value shall be set to: - * - `n (n > 0 and n < 19)` for any aplicable value between 0,1 metre and 1,9 metres, - * - `19` for values equal to or higher than 1.8 metres, - * - `20` if the information is unavailable. - * - * @category: Vehicle information - * @unit 0,1 metre - * @revision: description revised in V2.1.1 (the meaning of 19 has changed slightly) - */ -PosFrontAx ::= INTEGER { - outOfRange (19), - unavailable(20) -} (1..20) - -/** - * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. - * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 metre and 1,26 metres, - * - `126` for values equal to or higher than 1.25 metres, - * - `127` if the information is unavailable. - * - * @unit 0,01 metre - * @category Vehicle information - * @revision: description revised in V2.1.1 (the meaning of 126 has changed slightly) - */ -PosLonCarr ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the - * middle point of the front line of the vehicle bounding box. - * - * The value shall be set to: - * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 metre and 2,9 metres, - * - `29` for values equal to or greater than 2.8 metres, - * - `30` if the information is unavailable. - * - * @unit 0,1 metre - * @category Vehicle information - * @revision: description revised in V2.1.1 (the meaning of 29 has changed slightly) - */ -PosPillar ::= INTEGER { - outOfRange (29), - unavailable (30) -} (1..30) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on post crash event is unavailable, - * - 1 `accidentWithoutECallTriggered` : in case no eCall has been triggered for an accident, - * - 2 `accidentWithECallManuallyTriggered` : in case eCall has been manually triggered and transmitted to eCall back end, - * - 3 `accidentWithECallAutomaticallyTriggered` : in case eCall has been automatically triggered and transmitted to eCall back end, - * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` : in case eCall has been triggered but cellular network is not accessible from triggering vehicle. - * - 5-255 : are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -PostCrashSubCauseCode ::= INTEGER { - unavailable (0), - accidentWithoutECallTriggered (1), - accidentWithECallManuallyTriggered (2), - accidentWithECallAutomaticallyTriggered (3), - accidentWithECallTriggeredWithoutAccessToCellularNetwork (4) -} (0..255) - -/** -* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square metre. -* -* The following values are specified: -* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0,1 mm/h and greater than (n-1) x 0,1 mm/h, -* - `2000` if the amount of rain falling is greater than 199.9 mm/h, -* - `2001` if the information is not available. -* -* @unit: 0,1 mm/h -* @category: Basic Information -* @revision: created in V2.1.1 -*/ -PrecipitationIntensity ::= INTEGER { - outOfRange (2000), - unavailable (2001) -} (1..2001) - -/** - * This DE represents the indentifier of a protected communication zone. - * - * - * @category: Infrastructure information, Communication information - * @revision: Revision in V2.1.1 (changed name from ProtectedZoneID to ProtectedZoneId) - */ -ProtectedZoneId ::= INTEGER (0.. 134217727) - -/** - * This DE represents the radius of a protected communication zone. - * - * - * @unit: metre - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedZoneRadius ::= INTEGER (1..255,...) - -/** - * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do - * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). - * - * The protected zone type is defined in ETSI TS 102 792 [i.14]. - * - * - * @category: Communication information - * @revision: V1.3.1 - */ -ProtectedZoneType::= ENUMERATED { - permanentCenDsrcTolling (0), - ..., - temporaryCenDsrcTolling (1) -} - -/** - * This DE is used for various tasks in the public transportation environment, especially for controlling traffic - * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). - * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation - * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the - * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to - * traffic congestion. Other usage of the DE is the provision of information like the public transport line number - * or the schedule delay of a public transport vehicle. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivationData ::= OCTET STRING (SIZE(1..20)) - -/** - * This DE indicates a certain coding type of the PtActivationData data. - * - * The folowing value are specified: - * - `0` undefinedCodingType : undefined coding type, - * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.7], - * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.7]. - * - values 3 to 255 : reserved for alternative and future use. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivationType ::= INTEGER { - undefinedCodingType (0), - r09-16CodingType (1), - vdv-50149CodingType (2) -} (0..255) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . - * - * The value shall be set to: - * - 0 `unavailable` : in case no further detailed information on the railway level crossing status is available, - * - 1 `doNotCrossAbnormalSituation` : in case when something wrong is detected by equation or sensors of the railway level crossing, - including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), - * - 2 `closed` : in case the crossing is closed (barriers down), - * - 3 `unguarded` : in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), - * - 4 `nominal` : in case the barriers are up and lights are off. - * - 5-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RailwayLevelCrossingSubCauseCode ::= INTEGER { - unavailable (0), - doNotCrossAbnormalSituation (1), - closed (2), - unguarded (3), - nominal (4) -} (0..255) - -/** - * This DE describes a distance of relevance for information indicated in a message. - * - * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m, - * - 1 `lessThan100m` : for distances below 100 m, - * - 2 `lessThan200m` : for distances below 200 m, - * - 3 `lessThan500m` : for distances below 300 m, - * - 4 `lessThan1000m` : for distances below 1 000 m, - * - 5 `lessThan5km` : for distances below 5 000 m, - * - 6 `lessThan10km` : for distances below 10 000 m, - * - 7 `over10km` : for distances over 10 000 m. - * - * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref StandardLength3b instead. - * - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -RelevanceDistance ::= ENUMERATED { - lessThan50m(0), - lessThan100m(1), - lessThan200m(2), - lessThan500m(3), - lessThan1000m(4), - lessThan5km(5), - lessThan10km(6), - over10km(7) -} - -/** - * This DE indicates a traffic direction that is relevant to information indicated in a message. - * - * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions, - * - 1 `upstreamTraffic` : for upstream traffic, - * - 2 `downstreamTraffic` : for downstream traffic, - * - 3 `oppositeTraffic` : for traffic in the opposite direction. - * - * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. - * - * @note: Upstream traffic corresponds to the incoming traffic towards the event position, - * and downstream traffic to the departing traffic away from the event position. - * - * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrafficDirection instead. - * - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -RelevanceTrafficDirection ::= ENUMERATED { - allTrafficDirections(0), - upstreamTraffic(1), - downstreamTraffic(2), - oppositeTraffic(3) -} - -/** - * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from - * ITS-S after receiving request from other ITS-Ss. - * - * The value shall be set to: - * - 0 `request` : for a request message, - * - 1 `response` : for a response message. - * - * @category Communication information - * @revision: Editorial update in V2.1.1 - */ -RequestResponseIndication ::= ENUMERATED { - request (0), - response (1) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on rescue and recovery work is unavailable, - * - 1 `emergencyVehicles` : in case rescue work is ongoing by emergency vehicles, - * - 2 `rescueHelicopterLanding` : in case rescue helicopter is landing, - * - 3 `policeActivityOngoing` : in case police activity is ongoing, - * - 4 `medicalEmergencyOngoing` : in case medical emergency recovery is ongoing, - * - 5 `childAbductionInProgress`: in case a child kidnapping alarm is activated and rescue work is ongoing, - * - 6-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { - unavailable (0), - emergencyVehicles (1), - rescueHelicopterLanding (2), - policeActivityOngoing (3), - medicalEmergencyOngoing (4), - childAbductionInProgress (5) -} (0..255) - - -/** - * This DE indicates the type of a road segment. - * - * The value shall be set to: - * - 0 `urban-NoStructuralSeparationToOppositeLanes` : for an urban road with no structural separation between lanes carrying traffic in opposite directions, - * - 1 `urban-WithStructuralSeparationToOppositeLanes` : for an urban road with structural separation between lanes carrying traffic in opposite directions, - * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` : for an non urban road with no structural separation between lanes carrying traffic in opposite directions, - * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` : for an non urban road with structural separation between lanes carrying traffic in opposite directions. - * - * @category: Road Topology Information - * @revision: Editorial update in V2.1.1 - */ -RoadType ::= ENUMERATED { - urban-NoStructuralSeparationToOppositeLanes (0), - urban-WithStructuralSeparationToOppositeLanes (1), - nonUrban-NoStructuralSeparationToOppositeLanes (2), - nonUrban-WithStructuralSeparationToOppositeLanes (3) -} - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. - * -The value shall be set to: - * - 0 `unavailable` : in case further detailed information on roadworks is unavailable, - * - 1 `majorRoadworks` : in case a major roadworks is ongoing, - * - 2 `roadMarkingWork` : in case a road marking work is ongoing, - * - 3 `slowMovingRoadMaintenance` : in case slow moving road maintenance work is ongoing, - * - 4 `shortTermStationaryRoadworks`: in case a short term stationary roadwork is ongoing, - * - 5 `streetCleaning` : in case a vehicle street cleaning work is ongoing, - * - 6 `winterService` : in case winter service work is ongoing. - * - 7-255 : are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -RoadworksSubCauseCode ::= INTEGER { - unavailable (0), - majorRoadworks (1), - roadMarkingWork (2), - slowMovingRoadMaintenance (3), - shortTermStationaryRoadworks (4), - streetCleaning (5), - winterService (6) -} (0..255) - -/** - * This DE indicates if a distance is safe. - * - * The value shall be set to: - * - `FALSE` if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} is simultaneously satisfied with confidence level of 90 % or more, - * - `TRUE` otherwise. - * - * @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) - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SafeDistanceIndicator::= BOOLEAN - -/** - * This DE indicates the horizontal position confidence value which represents the estimated absolute position accuracy, in one of the axis direction as defined in a shape of ellipse with a - * confidence level of 95 %. - * - * The value shall be set to: - * - `n (n > 0 and n < 4 094)` if the accuracy is equal to or less than n * 0,01 metre, - * - `4 094` if the accuracy is out of range, i.e. greater than 4,093 m, - * - `4 095` if the accuracy information is unavailable. - * - * The value 0 shall not be used. - * - * @note: The fact that a position coordinate value is received with confidence value set to 'unavailable(4095)' - * can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the position coordinate value may be valid and used by the application. - * If a position coordinate value is received and its confidence value is set to 'outOfRange(4094)', it means that - * the position coordinate value is not valid and therefore cannot be trusted. Such value is not useful - * for the application. - - * @unit 0,01 metre - * @category: GeoReference Information - * @revision: Description revised in V2.1.1 - */ -SemiAxisLength ::= INTEGER{ - doNotUse (0), - outOfRange (4094), - unavailable (4095) -} (0..4095) - -/** - * This DE indicates the type of sensor. - * - * The value shall be set to: - * - `0` undefined : in case the sensor type is undefined. - * - `1` radar : in case the sensor is a radar, - * - `2` lidar : in case the sensor is a lidar, - * - `3` monovideo : in case the sensor is mono video, - * - `4` stereovision : in case the sensor is stereo vision, - * - `5` nightvision : in case the sensor is night vision, - * - `6` ultrasonic : in case the sensor is ultrasonic, - * - `7` pmd : in case the sensor is photonic mixing device, - * - `8` inductionLoop : in case the sensor is an induction loop, - * - `9` sphericalCamera : in case the sensor is a spherical camera, - * - `10` uwb : in case the sensor is ultra wide band, - * - `11` acoustic : in case the sensor is acoustic, - * - `12` localAggregation : in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion, - * - `13` itsAggregation : in case the information is provided by a system that aggregates information from other received ITS messages. - * - 14-31 : are reserved for future usage. - * - * @category: Sensing Information - * @revision: created in V2.1.1 -*/ -SensorType ::= INTEGER { - undefined (0), - radar (1), - lidar (2), - monovideo (3), - stereovision (4), - nightvision (5), - ultrasonic (6), - pmd (7), - inductionLoop (8), - sphericalCamera (9), - uwb (10), - acoustic (11), - localAggregation (12), - itsAggregation (13) -} (0..31) - -/** - * This DE represents a sequence number. - * - * @category: Basic information - * @revision: V1.3.1 - */ -SequenceNumber ::= INTEGER (0..65535) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on signal violation event is unavailable, - * - 1 `stopSignViolation` : in case a stop sign violation is detected, - * - 2 `trafficLightViolation` : in case a traffic light violation is detected, - * - 3 `turningRegulationViolation`: in case a turning regulation violation is detected. - * - 4-255 : are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -SignalViolationSubCauseCode ::= INTEGER { - unavailable (0), - stopSignViolation (1), - trafficLightViolation (2), - turningRegulationViolation (3) -} (0..255) - -/** - * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on slow vehicle driving event is - * unavailable, - * - 1 `maintenanceVehicle` : in case of a slow driving maintenance vehicle on the road, - * - 2 `vehiclesSlowingToLookAtAccident`: in case vehicle is temporally slowing down to look at accident, spot, etc., - * - 3 `abnormalLoad` : in case an abnormal loaded vehicle is driving slowly on the road, - * - 4 `abnormalWideLoad` : in case an abnormal wide load vehicle is driving slowly on the road, - * - 5 `convoy` : in case of slow driving convoy on the road, - * - 6 `snowplough` : in case of slow driving snow plough on the road, - * - 7 `deicing` : in case of slow driving de-icing vehicle on the road, - * - 8 `saltingVehicles` : in case of slow driving salting vehicle on the road. - * - 9-255 : are reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -SlowVehicleSubCauseCode ::= INTEGER { - unavailable (0), - maintenanceVehicle (1), - vehiclesSlowingToLookAtAccident (2), - abnormalLoad (3), - abnormalWideLoad (4), - convoy (5), - snowplough (6), - deicing (7), - saltingVehicles (8) -} (0..255) - -/** - * The DE indicates if a vehicle is carrying goods in the special transport conditions. - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `heavyLoad` : the vehicle is carrying goods with heavy load, - * - 1 `excessWidth` : the vehicle is carrying goods in excess of width, - * - 2 `excessLength` : the vehicle is carrying goods in excess of length, - * - 3 `excessHeight` : the vehicle is carrying goods in excess of height. - * - * Otherwise, the corresponding bit shall be set to 0. - * @category Vehicle information - * @revision: Description revised in V2.1.1 - */ -SpecialTransportType ::= BIT STRING { - heavyLoad (0), - excessWidth (1), - excessLength (2), - excessHeight (3) -} (SIZE(4)) - -/** - * This DE indicates the speed confidence value which represents the estimated absolute accuracy of a speed value with a default confidence level of 95%. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n * 0,01 m/s. - * - `126` if the confidence value is out of range, i.e. greater than 1,25 m/s, - * - `127` if the confidence value information is not available. - * - * @note: The fact that a speed value is received with confidence value set to `unavailable(127)` can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the speed value may be valid and used by the application. - * - * @note: If a speed value is received and its confidence value is set to `outOfRange(126)`, it means that the speed value is not valid - * and therefore cannot be trusted. Such is not useful for the application. - * - * @unit: 0,01 m/s - * @category: Vehicle information - * @revision: Description revised in V2.1.1 - */ -SpeedConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents a speed limitation applied to a geographical position, a road section or a geographical region. - * - * @unit: km/h - * @category: Infrastructure information, Traffic information - * @revision: V1.3.1 - */ -SpeedLimit ::= INTEGER (1..255) - -/** - * This DE represents a speed value, i.e. the magnitude of the velocity-vector. - * - * The value shall be set to: - * - `0` in a standstill situation. - * - `n (n > 0 and n < 16 382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s, - * - `16 382` for speed values greater than 163,81 m/s, - * - `16 383` if the speed accuracy information is not available. - * - * @note: the the definition of “standstill” is out of scope of this document. - * - * @unit: 0,01 m/s - * @category: Kinematics information - * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) -*/ -SpeedValue ::= INTEGER { - standstill (0), - outOfRange (16382), - unavailable (16383) -} (0..16383) - -/** - * This DE represents the value of a velocity component in a defined coordinate system. - * - * The value shall be set to: - * - `-16 383` if the velocity is equal to or smaller than -163,83 m/s, - * - `n (n > -16 383 and n < 16 382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s, - * - `16 382` for velocity values equal to or greater than 163,81 m/s, - * - `16 383` if the velocity information is not available. - * - * @unit: 0,01 m/s - * @category: Kinematics information - * @revision: Created in V2.1.1 -*/ -VelocityComponentValue ::= INTEGER { - negativeOutOfRange (-16383), - psotiveOutOfRange (16382), - unavailable (16383) -} (-16383..16383) - - -/** - * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. - * - * The value shall be set to: - * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable", - * - `n (n > 0 and n < 50)` to indicate the actual stability level, - * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability", - * - the values between 51 and 62 are reserved for future use, - * - `63`: this value indicates that the information is unavailable. - * - * @unit: 2% - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -StabilityLossProbability ::= INTEGER { - stable (0), - totalLossOfStability (50), - unavailable (63) -} (0..63) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object or shape. - * - * @unit: 0,1 metre - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength12b::= INTEGER (0..4095) - -/** - * The DE represents length as a measure of distance between points. - * - * The value shall be set to: - * - 0 `lessThan50m` : for distances below 50 m, - * - 1 `lessThan100m` : for distances below 100 m, - * - 2 `lessThan200m` : for distances below 200 m, - * - 3 `lessThan500m` : for distances below 300 m, - * - 4 `lessThan1000m` : for distances below 1 000 m, - * - 5 `lessThan5km` : for distances below 5 000 m, - * - 6 `lessThan10km` : for distances below 10 000 m, - * - 7 `over10km` : for distances over 10 000 m. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 from RelevanceDistance - */ -StandardLength3b ::= ENUMERATED { - lessThan50m (0), - lessThan100m (1), - lessThan200m (2), - lessThan500m (3), - lessThan1000m (4), - lessThan5km (5), - lessThan10km (6), - over10km (7) -} - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0,1 metre - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength9b::= INTEGER (0..511) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0,1 metre - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength1B::= INTEGER (0..255) - -/** - * The DE represents length as a measure of distance between points or as a dimension of an object. - * - * @unit: 0,1 metre - * @category: Basic information - * @revision: Created in V2.1.1 - */ -StandardLength2B::= INTEGER (0..65535) - -/** - * This DE indicates the duration in minutes since which something is stationary. - * - * The value shall be set to: - * - 0 `lessThan1Minute` : for being stationary since less than 1 minute, - * - 1 `lessThan2Minutes` : for being stationary since less than 2 minute and for equal to or more than 1 minute, - * - 2 `lessThan15Minutes` : for being stationary since less than 15 minutes and for equal to or more than 1 minute, - * - 3 `equalOrGreater15Minutes` : for being stationary since equal to or more than 15 minutes. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -StationarySince ::= ENUMERATED { - lessThan1Minute (0), - lessThan2Minutes (1), - lessThan15Minutes (2), - equalOrGreater15Minutes (3) -} - -/** - * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on stationary vehicle is unavailable, - * - 1 `humanProblem` : in case stationary vehicle is due to health problem of driver or passenger, - * - 2 `vehicleBreakdown` : in case stationary vehicle is due to vehicle break down, - * - 3 `postCrash` : in case stationary vehicle is caused by collision, - * - 4 `publicTransportStop` : in case public transport vehicle is stationary at bus stop, - * - 5 `carryingDangerousGoods`: in case the stationary vehicle is carrying dangerous goods, - * - 6 `vehicleOnFire` : in case of vehicle on fire. - * - 7-255 reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -StationaryVehicleSubCauseCode ::= INTEGER { - unavailable (0), - humanProblem (1), - vehicleBreakdown (2), - postCrash (3), - publicTransportStop (4), - carryingDangerousGoods (5), - vehicleOnFire (6) -} (0..255) - -/** - * This DE represents the identifier of an ITS-S. - * The ITS-S ID may be a pseudonym. It may change over space and/or over time. - * - * @category: Basic information - * @revision: Created in V2.1.1 based on @ref StationID - */ -StationId ::= INTEGER(0..4294967295) - -/** - * This DE represents the identifier of an ITS-S. - * The ITS-S ID may be a pseudonym. It may change over space and/or over time. - * - * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref StationId instead. - * @category: Basic information - * @revision: V1.3.1 - */ -StationID ::= INTEGER(0..4294967295) - -/** - * This DE represents the type of technical context the ITS-S is integrated in. - * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. - * - * The value shall be set to: - * - 0 `unknown` : information about the ITS-S context is not provided, - * - 1 `pedestrian` : ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1), - * - 2 `cyclist` : ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), - * - 3 `moped` : ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] - class L1, L2 (VRU Profile 3), - * - 4 `motorcycles` : ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] - class L3, L4, L5, L6, L7 (VRU Profile 3), - * - 5 `passengerCar` : ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, - * - 6 `bus` : ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, - * - 7 `lightTruck` : ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, - * - 8 `heavyTruck` : ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, - * - 9 `trailer` : ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in - UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, - * - 10 `specialVehicles` : ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram` : ITS-S mounted on a vehicle which runs on tracks along public streets, - * - 12 `lightVruVehicle` : ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2), - * - 13 `animal` : ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), - * - 14 : reserved for future usage, - * - 15 `roadSideUnit` : ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, - on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), - * - 16-255 : are reserved for future usage. - * - * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrafficParticipantType instead. - * @category: Communication information. - * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) - */ -StationType ::= INTEGER { - unknown (0), - pedestrian (1), - cyclist (2), - moped (3), - motorcycle (4), - passengerCar (5), - bus (6), - lightTruck (7), - heavyTruck (8), - trailer (9), - specialVehicle (10), - tram (11), - lightVruVehicle (12), - animal (13), - roadSideUnit (15) -} (0..255) - -/** - * This DE indicates the steering wheel angle confidence value which represents the estimated absolute accuracy for a steering wheel angle value with a confidence level of 95 %. - * - * The value shall be set to: - * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n x 1,5 degrees, - * - `126` if the confidence value is out of range, i.e. greater than 187,5 degrees, - * - `127` if the confidence value is not available. - * - * @note: The fact that a steering wheel angle value is received with confidence value set to 'unavailable(127)' - * can be caused by several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the steering wheel angle value may be valid and used by the application. - * - * If a steering wheel angle value is received and its confidence value is set to 'outOfRange(126)', - * it means that the steering wheel angle value is not valid and therefore cannot be trusted. - * Such value is not useful for the application. - * - * @unit: 1,5 degree - * @category: Vehicle Information - * @revision: Description revised in V2.1.1 -*/ -SteeringWheelAngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE represents the steering wheel angle of the vehicle at certain point in time. - * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. - * - * The value shall be set to: - * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right, - * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, - turning clockwise (i.e. to the right), - * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, - turning counter-clockwise (i.e. to the left), - * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left, - * - `512` if information is not available. - * - * @unit: 1,5 degree - * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). - */ -SteeringWheelAngleValue ::= INTEGER { - negativeOutOfRange (-511), - positiveOutOfRange (511), - unavailable (512) -} (-511..512) - -/** - * This DE indicates the generic sub cause of a detected event. - * - * @note: The sub cause code value assignment varies based on value of @ref CauseCode - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 (this is the generic sub cause type) - */ -SubCauseCodeType ::= INTEGER (0..255) - -/** - * This DE indicates a temperature value. - - * The value shall be set to: - * - `-60` for temperature equal to or less than -60 degrees C, - * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C, - * - `67` for temperature equal to or greater than 67 degrees C. - * - * @unit: degrees Celsius - * @category: Basic information - * @revision: Editorial update in V2.1.1 - */ -Temperature ::= INTEGER { - equalOrSmallerThanMinus60Deg (-60), - equalOrGreaterThan67Deg(67)} (-60..67) - -/** - * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. - * The ITS epoch is `00:00:00.000 UTC, 1 January 2004`. - * "Elapsed" means that the true number of milliseconds is continuously counted without interruption, - * i.e. it is not altered by leap seconds, which occur in UTC. - * - * @note: International Atomic Time (TAI) is the time reference coordinate on the basis of the readings of atomic clocks, - * operated in accordance with the definition of the second, the unit of time of the International System of Units. - * TAI is a continuous time scale. UTC has discontinuities, as it is occasionally adjusted by leap seconds. - * As of 1 January, 2022, TimestampIts is 5 seconds ahead of UTC, because since the ITS epoch on 1 January 2004 00:00:00.000 UTC, - * further 5 leap seconds have been inserted in UTC. - * - * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, - * which includes one leap second insertion since the ITS epoch. - * @unit: 0,001 s - * @category: Basic information - * @revision: Description revised in in V2.1.1 - */ -TimestampIts ::= INTEGER (0..4398046511103) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on traffic jam is unavailable, - * - 1 `increasedVolumeOfTraffic` : in case detected jam volume is increased, - * - 2 `trafficJamSlowlyIncreasing` : in case detected traffic jam volume is increasing slowly, - * - 3 `trafficJamIncreasing` : in case traffic jam volume is increasing, - * - 4 `trafficJamStronglyIncreasing`: in case traffic jam volume is strongly increasing, - * - 5 `trafficStationary` : in case traffic is stationary, - * - 6 `trafficJamSlightlyDecreasing`: in case traffic jam volume is decreasing slowly, - * - 7 `trafficJamDecreasing` : in case traffic jam volume is decreasing, - * - 8 `trafficJamStronglyDecreasing`: in case traffic jam volume is decreasing rapidly, - * - 9-255: reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -TrafficConditionSubCauseCode ::= INTEGER { - unavailable (0), - increasedVolumeOfTraffic (1), - trafficJamSlowlyIncreasing (2), - trafficJamIncreasing (3), - trafficJamStronglyIncreasing (4), - trafficStationary (5), - trafficJamSlightlyDecreasing (6), - trafficJamDecreasing (7), - trafficJamStronglyDecreasing (8) -} (0..255) - -/** - * This DE indicates a traffic direction that is relevant to information indicated in a message. - * - * The value shall be set to: - * - 0 `allTrafficDirections` : for all traffic directions, - * - 1 `upstreamTraffic` : for upstream traffic, - * - 2 `downstreamTraffic` : for downstream traffic, - * - 3 `oppositeTraffic` : for traffic in the opposite direction. - * - * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. - * - * @note: Upstream traffic corresponds to the incoming traffic towards the event position, - * and downstream traffic to the departing traffic away from the event position. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 from RelevanceTrafficDirection - */ -TrafficDirection ::= ENUMERATED { - allTrafficDirections (0), - upstreamTraffic (1), - downstreamTraffic (2), - oppositeTraffic (3) -} - -/** - * This DE represents the type of a traffic participant. - * - * The value shall be set to: - * - 0 `unknown` : information about traffic participant is not provided, - * - 1 `pedestrian` : human being not using a mechanical device for their trip (VRU profile 1), - * - 2 `cyclist` : non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), - * - 3 `moped` : Ilight motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L1, L2 (VRU Profile 3), - * - 4 `motorcycles` : motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L3, L4, L5, L6, L7 (VRU Profile 3), - * - 5 `passengerCar` : small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, - * - 6 `bus` : large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, - * - 7 `lightTruck` : light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, - * - 8 `heavyTruck` : Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, - * - 9 `trailer` : unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, - * - 10 `specialVehicles` : vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram` : vehicle which runs on tracks along public streets, - * - 12 `lightVruVehicle` : human being traveling on light vehicle, incl. possible use of roller skates or skateboards (VRU profile 2), - * - 13 `animal` : animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), - * - 14 `agricultural` : agricultural and forestry vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class T, - * - 15 `roadSideUnit` : infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, - on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), - * - 16-255 : are reserved for future usage. - * - * @category: Communication information. - * @revision: Created in V2.1.1 based on StationType - */ -TrafficParticipantType ::= INTEGER { - unknown (0), - pedestrian (1), - cyclist (2), - moped (3), - motorcycle (4), - passengerCar (5), - bus (6), - lightTruck (7), - heavyTruck (8), - trailer (9), - specialVehicle (10), - tram (11), - lightVruVehicle (12), - animal (13), - agricultural (14), - roadSideUnit (15) -} (0..255) - -/** - * This DE indicates traffic rules that apply to vehicles at a certain position. - * - * The value shall be set to: - * - `0` if overtaking is prohibited for all vehicles, - * - `1` if overtaking is prohibited for trucks, - * - `2` if vehicles should pass to the right lane, - * - `3` if vehicles should pass to the left lane. - * - * @category: Infrastructure information, Traffic information - * @revision: Editorial update in V2.1.1 - */ -TrafficRule ::= ENUMERATED { - noPassing (0), - noPassingForTrucks (1), - passToRight (2), - passToLeft (3), - ...} - -/** - * This DE provides information about the presence of a trailer. - * - * The value shall be set to: - * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value. - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. - * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. - * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer - * nor the detection of trailer presence/absence is possible. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 based on VehicleLengthConfidenceIndication -*/ -TrailerPresenceInformation ::= ENUMERATED { - noTrailerPresent (0), - trailerPresentWithKnownLength (1), - trailerPresentWithUnknownLength (2), - trailerPresenceIsUnknown (3), - unavailable (4) -} - -/** - * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. - * - * The value shall be set to: - * - `n (n >= 0 and n <= 50)` to indicate the actual probability, - * - the values between 51 and 62 are reserved, - * - `63`: to indicate that the information is unavailable. - * - * @unit: 2% - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionProbability ::= INTEGER { - unavailable (63) -} (0..63) - -/** - * This DE defines the confidence level of the trajectoryInterceptionProbability. - * - * The value shall be set to: - * - `0` to indicate confidence level less than 50 %, - * - `1` to indicate confidence level greater than or equal to 50 % and less than 70 %, - * - `2` to indicate confidence level greater than or equal to 70 % and less than 90 %, - * - `3` to indicate confidence level greater than or equal to 90%. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionConfidence ::= INTEGER { - lessthan50percent (0), - between50and70Percent (1), - between70and90Percent (2), - above90Percent (3) -} (0..3) - -/** - * This DE represents the time interval between two consecutive message transmissions. - - * Example: a time interval between two consecutive message transmissions. - * - * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref DeltaTimeMilliSecondPos instead. - * @unit: 0,001 s - * @category: Basic information - * @revision: V1.3.1 - */ -TransmissionInterval::= INTEGER (1..10000) - -/** - * This DE provides the turning direction. - * - * The value shall be set to: - * - `left` for turning to te left. - * - `right`for turing to the right. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -TurningDirection::= ENUMERATED { - left, - right -} - -/** - * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. - * - * The value shall be set to: - * - `n (n > 0 and n < 254)` indicates the applicable value is equal to or less than n x 0,4 metre, and greater than (n-1) x 0,4 metre, - * - `254` indicates that the turning radius is greater than 253 x 0,4 metre = 101.2 metres, - * - `255` indicates that the information is unavailable. - * - * For vehicle with tracker, the turning radius applies to the vehicle only. - * - * @category: Vehicle information - * @unit 0,4 metre - * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) - */ -TurningRadius ::= INTEGER { - outOfRange (254), - unavailable (255) -} (1..255) - -/** - * This DE represents the duration of a traffic event validity. - * - * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref DeltaTimeSecond instead. - * @unit: 1 s - * @category: Basic information - * @revision: V1.3.1 -*/ -ValidityDuration::= INTEGER (0..86400) - -/** - * This DE represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.6]. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VDS ::= IA5String (SIZE(6)) - -/** - * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on cause of vehicle break down is unavailable, - * - 1 `lackOfFuel` : in case vehicle break down is due to lack of fuel, - * - 2 `lackOfBatteryPower` : in case vehicle break down is caused by lack of battery power, - * - 3 `engineProblem` : in case vehicle break down is caused by an engine problem, - * - 4 `transmissionProblem` : in case vehicle break down is caused by transmission problem, - * - 5 `engineCoolingProblem`: in case vehicle break down is caused by an engine cooling problem, - * - 6 `brakingSystemProblem`: in case vehicle break down is caused by a braking system problem, - * - 7 `steeringProblem` : in case vehicle break down is caused by a steering problem, - * - 8 `tyrePuncture` : in case vehicle break down is caused by tyre puncture, - * - 9 `tyrePressureProblem` : in case low tyre pressure in detected, - * - 10 `vehicleOnFire` : in case the vehicle is on fire. - * - 11-255 : are reserved for future usage. - * - * @category: Traffic information - - */ -VehicleBreakdownSubCauseCode ::= INTEGER { - unavailable (0), - lackOfFuel (1), - lackOfBatteryPower (2), - engineProblem (3), - transmissionProblem (4), - engineCoolingProblem (5), - brakingSystemProblem (6), - steeringProblem (7), - tyrePuncture (8), - tyrePressureProblem (9), - vehicleOnFire (10) -} (0..255) - -/** - * This DE represents the height of the vehicle, measured from the ground to the highest point, excluding any antennas. - * In case vehicles are equipped with adjustable ride heights, camper shells, and any other - * equipment which may result in varying height, the largest possible height shall be used. - * - * The value shall be set to: - * - `n (n >0 and n < 127)` indicates the applicable value is equal to or less than n x 0,05 metre, and greater than (n-1) x 0,05 metre, - * - `127` indicates that the vehicle width is greater than 6,3 metres, - * - `128` indicates that the information in unavailable. - * - * @unit: 0,05 metre - * @revision: created in V2.1.1 -*/ -VehicleHeight ::= INTEGER { - outOfRange (126), - unavailable (127) -}(1..128) - -/** - * This DE provides information about the presence of a trailer. - * - * The value shall be set to: - * - 0 `noTrailerPresent` : to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present, - * - 1 `trailerPresentWithKnownLength` : to indicate that a trailer has been detected as present and the length is included in the vehicle length value, - * - 2 `trailerPresentWithUnknownLength` : to indicate that a trailer has been detected as present and the length is not included in the vehicle length value, - * - 3 `trailerPresenceIsUnknown` : to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible, - * - 4 `unavailable` : to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer, - * nor the detection of trailer presence/absence is possible. - * - * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrailerPresenceInformation instead. - * @category: Vehicle information - * @revision: Description revised in V2.1.1 -*/ -VehicleLengthConfidenceIndication ::= ENUMERATED { - noTrailerPresent (0), - trailerPresentWithKnownLength (1), - trailerPresentWithUnknownLength (2), - trailerPresenceIsUnknown (3), - unavailable (4) -} - -/** - * This DE represents the length of a vehicle. - * - * The value shall be set to: - * - `n (n > 0 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, - * - `1 022` to indicate that the vehicle length is greater than 102.1 metres, - * - `1 023` to indicate that the information in unavailable. - * - * - * @unit: 0,1 metre - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). - */ -VehicleLengthValue ::= INTEGER { - outOfRange(1022), - unavailable(1023) -} (1..1023) - -/** - * This DE represents the mass of an empty loaded vehicle. - * - * The value shall be set to: - * - `n (n > 0 and n < 1023)` to indicate that the applicable value is equal to or less than n x 10^5 gramm, and greater than (n-1) x 10^5 gramm, - * - `1 023` indicates that the vehicle mass is greater than 102 200 000 g, - * - `1 024` indicates the vehicle mass information is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. - * - * @unit: 10^5 gramm - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). -*/ -VehicleMass ::= INTEGER { - outOfRange (1023), - unavailable(1024) -} (1..1024) - -/** - * This DE indicates the role played by a vehicle at a point in time. - * - * The value shall be set to: - * - 0 `default` : to indicate the default vehicle role as indicated by the vehicle type, - * - 1 `publicTransport` : to indicate that the vehicle is used to operate public transport service, - * - 2 `specialTransport` : to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, - * - 3 `dangerousGoods` : to indicate that the vehicle is used for dangerous goods transportation, - * - 4 `roadWork` : to indicate that the vehicle is used to realize roadwork or road maintenance mission, - * - 5 `rescue` : to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, - * - 6 `emergency` : to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, - * - 7 `safetyCar` : to indicate that the vehicle is used for public safety, e.g. patrol, - * - 8 `agriculture` : to indicate that the vehicle is used for agriculture, e.g. farm tractor, - * - 9 `commercial` : to indicate that the vehicle is used for transportation of commercial goods, - * - 10 `military` : to indicate that the vehicle is used for military purpose, - * - 11 `roadOperator` : to indicate that the vehicle is used in road operator missions, - * - 12 `taxi` : to indicate that the vehicle is used to provide an authorized taxi service. - * - 13 `reserved` : is reserved for future usage. - * - 14 `reserved` : is reserved for future usage. - * - 15 `reserved` : is reserved for future usage. - * - * @category: Vehicle Information - * @revision: Description updated in V2.1.1 (removed reference to CEN/TS 16157-3) - */ -VehicleRole ::= ENUMERATED { - default (0), - publicTransport (1), - specialTransport(2), - dangerousGoods (3), - roadWork (4), - rescue (5), - emergency (6), - safetyCar (7), - agriculture (8), - commercial (9), - military (10), - roadOperator (11), - taxi (12), - reserved1 (13), - reserved2 (14), - reserved3 (15) -} - -/** - * This DE describes the subclass of a vehicle. - * - * The value shall be set to: - * - `0` unknown : to indicate that the type of vehicle is unknown, - * - `1` passengerCar : to indicate a small passenger car as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, - * - `2` bus : to indicate a large passenger vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, - * - `3` lightTruck : to indicate a light goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, - * - `4` heavyTruck : to indicate a heavy goods vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2, N3, - * - `5` trailer : to indicate an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, - * - `6` specialVehicles : to indicate a vehicle which has a special purpose other than the above (e.g. moving road works vehicle), - * - `7` tram : to indicate a vehicle running on tracks along public streets, - * - `8` emergencyVehicle : to indicate a vehicle used in an emergency situation such as an ambulance, police car or fire engine, - * - `9` agricultural : to indicate a vehicle used for agricultural purposes, - * - Values 10 to 31 are reserved for future use. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -VehicleSubClass ::= INTEGER { - unknown (0), - passengerCar (1), - bus (2), - lightTruck (3), - heavyTruck (4), - trailer (5), - specialVehicles (6), - tram (7), - emergencyVehicle (8), - agricultural (9) -} (0..31) - -/** - * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. - - * The value shall be set to: - * - `n (n >0 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, - * - `61`indicates that the vehicle width is greater than 6,0 metres, - * - `62`indicates that the information in unavailable. - * - * @unit: 0,1 metre - * @category: Vehicle information - * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). - */ -VehicleWidth ::= INTEGER { - outOfRange (61), - unavailable (62) -} (1..62) - -/** - * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. - * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. - * - * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s2, - * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration values greater than 15,9 m/s2, - * - `161` when the data is unavailable. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. - * - * @category: Vehicle information - * @unit: 0,1 m/s2 - * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly). - * -*/ -VerticalAccelerationValue ::= INTEGER { - negativeOutOfRange (-160), - positiveOutOfRange (160), - unavailable (161) -} (-160 .. 161) - -/** - * This DE Identifies all the VRU profile types within a cluster. - * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). - * - * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `pedestrian` : indicates that the VRU cluster contains at least one pedestrian VRU, - * - 1 `bicycle` : indicates that the VRU cluster contains at least one bicycle VRU member, - * - 2 `motorcyclist` : indicates that the VRU cluster contains at least one motorcycle VRU member, - * - 3 `animal` : indicates that the VRU cluster contains at least one animal VRU member. - * - * Otherwise, the corresponding bit shall be set to 0. - * - * @category: VRU information - * @revision: Created in V2.1.1 -*/ -VruClusterProfiles ::= BIT STRING { - pedestrian (0), - bicyclist (1), - motorcyclist (2), - animal (3) -} (SIZE(4)) - -/** - * This DE represents the possible usage conditions of the VRU device. - - * - The value shall be set to: - * - 0 `unavailable` : to indicate that the usage conditions are unavailable, - * - 1 `other (1)` : to indicate that the VRU device is in a state not defined below, - * - 2 `idle (2)` : to indicate that the human is currently not interacting with the device, - * - 3 `listeningToAudio` : to indicate that any audio source other than calling is in use, - * - 4 `typing (4)` : to indicate that the human is texting or performaing any other manual input activity, - * - 5 `calling (5)` : to indicate that the VRU device is currently receiving a call, - * - 6 `playingGames (6)` : to indicate that the human is playing games, - * - 7 `reading (7)` : to indicate that the human is reading on the VRU device, - * - 8 `viewing (8)` : to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static. - * - value 9 to 255 : are reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruDeviceUsage ::= ENUMERATED { - unavailable (0), - other (1), - idle (2), - listeningToAudio (3), - typing (4), - calling (5), - playingGames (6), - reading (7), - viewing (8), - max (255) -} - -/** - * This DE represents the possible VRU environment conditions. - * - * - The value shall be set to: - * - 0 `unavailable` : to indicate that the information on the type of environment is unavailable, - * - 1 `intersectionCrossing` : to indicate that the VRU is on an intersection or crossing, - * - 2 `zebraCrossing` : to indicate that the VRU is on a zebra crossing (crosswalk), - * - 3 `sidewalk` : to indicate that the VRU is on a sidewalk, - * - 4 `onVehicleRoad` : to indicate that the VRU is on a traffic lane, - * - 5 `protectedGeographicArea`: to indicate that the VRU is in a protected area. - * - value 5 to 255 : are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruEnvironment ::= ENUMERATED { - unavailable (0), - intersectionCrossing (1), - zebraCrossing (2), - sidewalk (3), - onVehicleRoad (4), - protectedGeographicArea (5), - max (255) -} - -/** - * This DE indicates the status of the possible human control over a VRU vehicle. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable, - * - 1 `braking` : to indicate that the VRU is braking, - * - 2 `hardBraking` : to indicate that the VRU is braking hard, - * - 3 `stopPedaling` : to indicate that the VRU stopped pedaling, - * - 4 `brakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking, - * - 5 `hardBrakingAndStopPedaling` : to indicate that the VRU stopped pedaling an is braking hard, - * - 6 `noReaction` : to indicate that the VRU is not changing its behavior. - * - 7 to 255 : are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruMovementControl ::= ENUMERATED { - unavailable (0), - braking (1), - hardBraking (2), - stopPedaling (3), - brakingAndStopPedaling (4), - hardBrakingAndStopPedaling (5), - noReaction (6), - max (255) -} - -/** - * This DE indicates the profile of a pedestrian. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information on is unavailable, - * - 1 `ordinary-pedestrian` : to indicate a pedestrian to which no more-specific profile applies, - * - 2 `road-worker` : to indicate a pedestrian with the role of a road worker, - * - 3 `first-responder` : to indicate a pedestrian with the role of a first responder. - * - value 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfilePedestrian ::= ENUMERATED { - unavailable (0), - ordinary-pedestrian (1), - road-worker (2), - first-responder (3), - max (15) -} - -/** - * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable, - * - 1 `bicyclist ` : to indicate a cycle and bicyclist, - * - 2 `wheelchair-user` : to indicate a wheelchair and its user, - * - 3 `horse-and-rider` : to indicate a horse and rider, - * - 4 `rollerskater` : to indicate a rolleskater and skater, - * - 5 `e-scooter` : to indicate an e-scooter and rider, - * - 6 `personal-transporter` : to indicate a personal-transporter and rider, - * - 7 `pedelec` : to indicate a pedelec and rider, - * - 8 `speed-pedelec` : to indicate a speed-pedelec and rider. - * - 9 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileBicyclist ::= ENUMERATED { - unavailable (0), - bicyclist (1), - wheelchair-user (2), - horse-and-rider (3), - rollerskater (4), - e-scooter (5), - personal-transporter (6), - pedelec (7), - speed-pedelec (8), - max (15) -} - -/** - * This DE indicates the profile of a motorcyclist and corresponding vehicle. - * - * The value shall be set to: - * - 0 `unavailable ` : to indicate that the information is unavailable, - * - 1 `moped` : to indicate a moped and rider, - * - 2 `motorcycle` : to indicate a motorcycle and rider, - * - 3 `motorcycle-and-sidecar-right` : to indicate a motorcycle with sidecar on the right and rider, - * - 4 `motorcycle-and-sidecar-left` : to indicate a motorcycle with sidecar on the left and rider. - * - 5 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileMotorcyclist ::= ENUMERATED { - unavailable (0), - moped (1), - motorcycle (2), - motorcycle-and-sidecar-right (3), - motorcycle-and-sidecar-left (4), - max (15) -} - -/** - * This DE indicates the profile of an animal - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that the information is unavailable, - * - 1 `wild-animal` : to indicate a animal living in the wildness, - * - 2 `farm-animal` : to indicate an animal beloning to a farm, - * - 3 `service-animal` : to indicate an animal that supports a human being. - * - 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSubProfileAnimal ::= ENUMERATED { - unavailable (0), - wild-animal (1), - farm-animal (2), - service-animal (3), - max (15) -} - -/** - * This DE indicates the approximate size of a VRU including the VRU vehicle used. - * - * The value shall be set to: - * - 0 `unavailable` : to indicate that there is no matched size class or due to privacy reasons in profile 1, - * - 1 `low` : to indicate that the VRU size class is low depending on the VRU profile, - * - 2 `medium` : to indicate that the VRU size class is medium depending on the VRU profile, - * - 3 `high` : to indicate that the VRU size class is high depending on the VRU profile. - * - 4 to 15 : are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSizeClass ::= ENUMERATED { - unavailable (0), - low (1), - medium (2), - high (3), - max (15) -} - -/** - * This DE describes the status of the exterior light switches of a VRU. - * - * The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light shall be set to 1, when the corresponding switch is turned on, either manually by the driver or VRU - * or automatically by a vehicle or VRU system: - * - 0 `unavailable` : indicates no information available, - * - 1 `backFlashLight ` : indicates the status of the back flash light, - * - 2 `helmetLight` : indicates the status of the helmet light, - * - 3 `armLight` : indicates the status of the arm light, - * - 4 `legLight` : indicates the status of the leg light, - * - 5 `wheelLight` : indicates the status of the wheel light. - * - Bits 6 to 8 : are reserved for future use. - * The bit values do not indicate if the corresponding lamps are alight or not. - * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruSpecificExteriorLights ::= BIT STRING { - unavailable (0), - backFlashLight (1), - helmetLight (2), - armLight (3), - legLight (4), - wheelLight (5) -} (SIZE(8)) - -/** - * This DE indicates the perpendicular distance between front and rear axle of the wheel base of vehicle. - * - * The value shall be set to: - * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, - * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres, - * - `127` indicates that the information is unavailable. - * - * @unit 0,1 metre - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -WheelBaseVehicle ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - -/** - * This DE indicates the angle confidence value which represents the estimated accuracy of an angle value with a default confidence level of 95 %. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `n (n >=1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, - * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, - * - `127` if the confidence value is not available. - * - * - * @unit 0,1 degrees - * @category: GeoReference Information - * @revision: Created in V2.1.1 -*/ -Wgs84AngleConfidence ::= INTEGER { - outOfRange (126), - unavailable (127) -} (1..127) - - -/** - * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. - * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. - * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. - * - * @unit 0,1 degrees - * @category: GeoReference Information - * @revision: Created in V2.1.1 -*/ -Wgs84AngleValue ::= INTEGER { - wgs84North (0), - wgs84East (900), - wgs84South (1800), - wgs84West (2700), - doNotUse (3600), - unavailable (3601) -} (0..3601) - -/** - * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.6]. - * - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -WMInumber ::= IA5String (SIZE(1..3)) - -/** - * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . - * - * The value shall be set to: - * - 0 `unavailable` : in case further detailed information on wrong way driving event is unavailable, - * - 1 `wrongLane` : in case vehicle is driving on a lane for which it has no authorization to use, - * - 2 `wrongDirection` : in case vehicle is driving in a direction that it is not allowed, - * - 3-255 : reserved for future usage. - * - * @category: Traffic information - * @revision: V1.3.1 - */ -WrongWayDrivingSubCauseCode ::= INTEGER { - unavailable (0), - wrongLane (1), - wrongDirection (2) -} (0..255) - -/** - * This DE indicates the yaw rate confidence value which represents the estimated accuracy for a yaw rate value with a default confidence level of 95%. - * If required, the confidence level can be defined by the corresponding standards applying this DE. - * - * The value shall be set to: - * - `0` if the confidence value is equal to or less than 0,01 degree/second, - * - `1` if the confidence value is equal to or less than 0,05 degrees/second or greater than 0,01 degree/second, - * - `2` if the confidence value is equal to or less than 0,1 degree/second or greater than 0,05 degree/second, - * - `3` if the confidence value is equal to or less than 1 degree/second or greater than 0,1 degree/second, - * - `4` if the confidence value is equal to or less than 5 degrees/second or greater than 1 degrees/second, - * - `5` if the confidence value is equal to or less than 10 degrees/second or greater than 5 degrees/second, - * - `6` if the confidence value is equal to or less than 100 degrees/second or greater than 10 degrees/second, - * - `7` if the confidence value is out of range, i.e. greater than 100 degrees/second, - * - `8` if the confidence value is unavailable. - * - * NOTE: The fact that a yaw rate value is received with confidence value set to `unavailable(8)` can be caused by - * several reasons, such as: - * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, - * - the sensor cannot calculate the accuracy due to lack of variables, or - * - there has been a vehicle bus (e.g. CAN bus) error. - * In all 3 cases above, the yaw rate value may be valid and used by the application. - * - * If a yaw rate value is received and its confidence value is set to `outOfRange(7)`, it means that the - * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. - * - * @category: Traffic information - * @revision: Description revised in V2.1.1 - */ -YawRateConfidence ::= ENUMERATED { - degSec-000-01 (0), - degSec-000-05 (1), - degSec-000-10 (2), - degSec-001-00 (3), - degSec-005-00 (4), - degSec-010-00 (5), - degSec-100-00 (6), - outOfRange (7), - unavailable (8) -} - -/** - * This DE represents the vehicle rotation around z-axis of the coordinate system centred on the centre of mass of the empty-loaded - * vehicle. The leading sign denotes the direction of rotation. - * - * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. - * - * The value shall be set to: - * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right, - * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s, - * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, - and greater than (n-1) x 0,01 degrees/s, - * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left, - * - `32 767` to indicate that the information is not available. - * - * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. - * The reading instant should be the same as for the vehicle acceleration. - * - * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. - * - * @unit: 0,01 degree per second. - * @category: Vehicle Information - * @revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). -*/ -YawRateValue ::= INTEGER { - negativeOutOfRange (-32766), - positiveOutOfRange (32766), - unavailable (32767) -} (-32766..32767) - ----------------------------------------- --- Specification of CDD Data Frames: ----------------------------------------- - -/** - * This DF represents an acceleration vector with associated confidence value. - * - * It shall include the following components: - * - * @field polarAcceleration: the representation of the acceleration vector in a polar coordinate system. - * - * @field cartesianAcceleration: the representation of the acceleration vector in a cartesian coordinate system. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -Acceleration3dWithConfidence::= CHOICE { - polarAcceleration AccelerationPolarWithZ, - cartesianAcceleration AccelerationCartesian -} - -/** - * This DF represents an acceleration vector in a polar coordinate system. - - * It shall include the following components: - * - * @field accelerationMagnitude: magnitude of the acceleration vector in the X-Y plane with the associated confidence value. - * Negative magnitude values indicate accelerating backwards. - * - * @field accelerationDirection: polar angle of the acceleration vector in the X-Y plane with the associated confidence value. - * - * @field zAcceleration: the optional z component of the acceleration vector with the associated confidence value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -AccelerationPolarWithZ::= SEQUENCE{ - accelerationMagnitude AccelerationMagnitude, - accelerationDirection CartesianAngle, - zAcceleration AccelerationComponent OPTIONAL -} - -/** - * This DF represents a acceleration vector in a cartesian coordinate system. - - * It shall include the following components: - * - * @field xAcceleration: the x component of the acceleration vector with the associated confidence value. - * - * @field yAcceleration: the y component of the acceleration vector with the associated confidence value. - * - * @field zAcceleration: the optional z component of the acceleration vector with the associated confidence value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -AccelerationCartesian::= SEQUENCE{ - xAcceleration AccelerationComponent, - yAcceleration AccelerationComponent, - zAcceleration AccelerationComponent OPTIONAL -} - -/** - * This DF represents an acceleration component along with a confidence value. - * - * It shall include the following components: - * - * @field value: the value of the acceleration component which can be estimated as the mean of the current distribution. - * - * @field confidence: the confidence value associated to the provided value. - * - * @category: Kinematic Information - * @revision: Created in V2.1.1 - */ -AccelerationComponent ::= SEQUENCE { - value AccelerationMagnitudeValue, - confidence AccelerationConfidence -} - -/** - * This DF represents information associated to changes in acceleration. - * - * It shall include the following components: - * - * @field accelOrDecel: the indication of an acceleration change. - * - * @field actionDeltaTime: the period over which the acceleration change action is performed. - * - * @category: Kinematic Information - * @revision: Created in V2.1.1 - */ -AccelerationChangeIndication ::= SEQUENCE { - accelOrDecel AccelerationChange, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents the magnitude of the acceleration vector and associated confidence value. - * - * It shall include the following components: - * - * @field accelerationMagnitudeValue: the magnitude of the acceleration vector. - * - * @field accelerationConfidence: the confidence value of the magnitude value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -AccelerationMagnitude::= SEQUENCE { - accelerationMagnitudeValue AccelerationMagnitudeValue, - accelerationConfidence AccelerationConfidence -} - -/** - * This DF represents an identifier used to describe a protocol action taken by an ITS-S. - * - * It shall include the following components: - * - * @field originatingStationId: Id of the ITS-S that takes the action. - * - * @field sequenceNumber: a sequence number. - * - * @category: Communication information - * @revision: Created in V2.1.1 based on @ref ActionID. - */ -ActionId ::= SEQUENCE { - originatingStationId StationId, - sequenceNumber SequenceNumber -} - -/** - * This DF represents an identifier used to describe a protocol action taken by an ITS-S. - * - * It shall include the following components: - * - * @field originatingStationId: Id of the ITS-S that takes the action. - * - * @field sequenceNumber: a sequence number. - * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref ActionId instead. - * @category: Communication information - * @revision: V1.3.1 - */ -ActionID ::= SEQUENCE { - originatingStationId StationID, - sequenceNumber SequenceNumber -} - -/** - * This DF shall contain a list of @ref ActionId. - - * @category: Communication Information - * @revision: Created in V2.1.1 based on ReferenceDenms from DENM Release 1 -*/ -ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionId - -/** - * This DF provides the altitude and confidence level of an altitude information in a WGS84 coordinate system. - * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. - * - * It shall include the following components: - * - * @field altitudeValue: altitude of a geographical point. - * - * @field altitudeConfidence: confidence level of the altitudeValue. - * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref AltitudeWithConfidence instead. - * @category: GeoReference information - * @revision: Description revised in V2.1.1 - */ -Altitude ::= SEQUENCE { - altitudeValue AltitudeValue, - altitudeConfidence AltitudeConfidence -} - -/** - * This DE represents a general container for usage in various types of messages. - * - * It shall include the following components: - * - * @field stationType: the type of technical context in which the ITS-S that has generated the message is integrated in. - * - * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. - * - * @category: Basic information - * @revision: Created in V2.1.1 -*/ -BasicContainer ::= SEQUENCE { - stationType TrafficParticipantType, - referencePosition ReferencePositionWithConfidence, - ... -} - -/** - * This DF represents a general Data Frame to describe an angle component along with a confidence value in a cartesian coordinate system. - * - * It shall include the following components: - * - * @field value: The angle value which can be estimated as the mean of the current distribution. - * - * @field confidence: The confidence value associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngle ::= SEQUENCE { - value CartesianAngleValue, - confidence AngleConfidence -} - -/** - * This DF represents an angular velocity component along with a confidence value in a cartesian coordinate system. - * - * It shall include the following components: - * - * @field value: The angular velocity component. - * - * @field confidence: The confidence value associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngularVelocityComponent ::= SEQUENCE { - value CartesianAngularVelocityComponentValue, - confidence AngularSpeedConfidence -} - -/** - * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence value in a cartesian coordinate system. - * - * It shall include the following components: - * - * @field value: The angular acceleration component value. - * - * @field confidence: The confidence value associated to the provided value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -CartesianAngularAccelerationComponent ::= SEQUENCE { - value CartesianAngularAccelerationComponentValue, - confidence AngularAccelerationConfidence -} - -/** - * This DF represents a coordinate along with a confidence value in a cartesian reference system. - * - * It shall include the following components: - * - * @field value: the coordinate value, which can be estimated as the mean of the current distribution. - * - * @field confidence: the coordinate confidence value associated to the provided value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -CartesianCoordinateWithConfidence ::= SEQUENCE { - value CartesianCoordinateLarge, - confidence CoordinateConfidence -} - -/** - * This DF represents a position in a two- or three-dimensional cartesian coordinate system. - * - * It shall include the following components: - * - * @field xCoordinate: the X coordinate value. - * - * @field yCoordinate: the Y coordinate value. - * - * @field zCoordinate: the optional Z coordinate value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -CartesianPosition3d::=SEQUENCE{ - xCoordinate CartesianCoordinate, - yCoordinate CartesianCoordinate, - zCoordinate CartesianCoordinate OPTIONAL -} - -/** - * This DF represents a position in a two- or three-dimensional cartesian coordinate system with an addocaited confidence level for each coordinate. - * - * It shall include the following components: - * - * @field xCoordinate: the X coordinate value with the associated confidence level. - * - * @field yCoordinate: the Y coordinate value with the associated confidence level. - * - * @field zCoordinate: the optional Z coordinate value with the associated confidence level. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -CartesianPosition3dWithConfidence::= SEQUENCE{ - xCoordinate CartesianCoordinateWithConfidence, - yCoordinate CartesianCoordinateWithConfidence, - zCoordinate CartesianCoordinateWithConfidence OPTIONAL -} - -/** - * This DF is a representation of the cause code value of a traffic event. - * - * It shall include the following components: - * - * @field causeCode: the main cause of a detected event. - * - * @field subCauseCode: the subordinate cause of a detected event. - * - * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may - * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. - * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref CauseCodeV2 instead. - * - * @category: Traffic information - * @revision: Editorial update in V2.1.1 - */ -CauseCode ::= SEQUENCE { - causeCode CauseCodeType, - subCauseCode SubCauseCodeType, - ... -} - -/** - * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. - * - * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. - * @category: Traffic information - * @revision: Created in V2.1.1 - */ -CauseCodeChoice::= CHOICE { - reserved0 SubCauseCodeType, - trafficCondition1 TrafficConditionSubCauseCode, - accident2 AccidentSubCauseCode, - roadworks3 RoadworksSubCauseCode, - reserved4 SubCauseCodeType, - impassability5 SubCauseCodeType, - adverseWeatherCondition-Adhesion6 AdverseWeatherCondition-AdhesionSubCauseCode, - aquaplaning7 SubCauseCodeType, - reserved8 SubCauseCodeType, - hazardousLocation-SurfaceCondition9 HazardousLocation-SurfaceConditionSubCauseCode, - hazardousLocation-ObstacleOnTheRoad10 HazardousLocation-ObstacleOnTheRoadSubCauseCode, - hazardousLocation-AnimalOnTheRoad11 HazardousLocation-AnimalOnTheRoadSubCauseCode, - humanPresenceOnTheRoad12 HumanPresenceOnTheRoadSubCauseCode, - reserved13 SubCauseCodeType, - wrongWayDriving14 WrongWayDrivingSubCauseCode, - rescueAndRecoveryWorkInProgress15 RescueAndRecoveryWorkInProgressSubCauseCode, - reserved16 SubCauseCodeType, - adverseWeatherCondition-ExtremeWeatherCondition17 AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, - adverseWeatherCondition-Visibility18 AdverseWeatherCondition-VisibilitySubCauseCode, - adverseWeatherCondition-Precipitation19 AdverseWeatherCondition-PrecipitationSubCauseCode, - violence20 SubCauseCodeType, - reserved21 SubCauseCodeType, - reserved22 SubCauseCodeType, - reserved23 SubCauseCodeType, - reserved24 SubCauseCodeType, - reserved25 SubCauseCodeType, - slowVehicle26 SlowVehicleSubCauseCode, - dangerousEndOfQueue27 DangerousEndOfQueueSubCauseCode, - reserved28 SubCauseCodeType, - reserved29 SubCauseCodeType, - reserved30 SubCauseCodeType, - reserved31 SubCauseCodeType, - reserved32 SubCauseCodeType, - reserved33 SubCauseCodeType, - reserved34 SubCauseCodeType, - reserved35 SubCauseCodeType, - reserved36 SubCauseCodeType, - reserved37 SubCauseCodeType, - reserved38 SubCauseCodeType, - reserved39 SubCauseCodeType, - reserved40 SubCauseCodeType, - reserved41 SubCauseCodeType, - reserved42 SubCauseCodeType, - reserved43 SubCauseCodeType, - reserved44 SubCauseCodeType, - reserved45 SubCauseCodeType, - reserved46 SubCauseCodeType, - reserved47 SubCauseCodeType, - reserved48 SubCauseCodeType, - reserved49 SubCauseCodeType, - reserved50 SubCauseCodeType, - reserved51 SubCauseCodeType, - reserved52 SubCauseCodeType, - reserved53 SubCauseCodeType, - reserved54 SubCauseCodeType, - reserved55 SubCauseCodeType, - reserved56 SubCauseCodeType, - reserved57 SubCauseCodeType, - reserved58 SubCauseCodeType, - reserved59 SubCauseCodeType, - reserved60 SubCauseCodeType, - reserved61 SubCauseCodeType, - reserved62 SubCauseCodeType, - reserved63 SubCauseCodeType, - reserved64 SubCauseCodeType, - reserved65 SubCauseCodeType, - reserved66 SubCauseCodeType, - reserved67 SubCauseCodeType, - reserved68 SubCauseCodeType, - reserved69 SubCauseCodeType, - reserved70 SubCauseCodeType, - reserved71 SubCauseCodeType, - reserved72 SubCauseCodeType, - reserved73 SubCauseCodeType, - reserved74 SubCauseCodeType, - reserved75 SubCauseCodeType, - reserved76 SubCauseCodeType, - reserved77 SubCauseCodeType, - reserved78 SubCauseCodeType, - reserved79 SubCauseCodeType, - reserved80 SubCauseCodeType, - reserved81 SubCauseCodeType, - reserved82 SubCauseCodeType, - reserved83 SubCauseCodeType, - reserved84 SubCauseCodeType, - reserved85 SubCauseCodeType, - reserved86 SubCauseCodeType, - reserved87 SubCauseCodeType, - reserved88 SubCauseCodeType, - reserved89 SubCauseCodeType, - reserved90 SubCauseCodeType, - vehicleBreakdown91 VehicleBreakdownSubCauseCode, - postCrash92 PostCrashSubCauseCode, - humanProblem93 HumanProblemSubCauseCode, - stationaryVehicle94 StationaryVehicleSubCauseCode, - emergencyVehicleApproaching95 EmergencyVehicleApproachingSubCauseCode, - hazardousLocation-DangerousCurve96 HazardousLocation-DangerousCurveSubCauseCode, - collisionRisk97 CollisionRiskSubCauseCode, - signalViolation98 SignalViolationSubCauseCode, - dangerousSituation99 DangerousSituationSubCauseCode, - railwayLevelCrossing100 RailwayLevelCrossingSubCauseCode, - reserved101 SubCauseCodeType, - reserved102 SubCauseCodeType, - reserved103 SubCauseCodeType, - reserved104 SubCauseCodeType, - reserved105 SubCauseCodeType, - reserved106 SubCauseCodeType, - reserved107 SubCauseCodeType, - reserved108 SubCauseCodeType, - reserved109 SubCauseCodeType, - reserved110 SubCauseCodeType, - reserved111 SubCauseCodeType, - reserved112 SubCauseCodeType, - reserved113 SubCauseCodeType, - reserved114 SubCauseCodeType, - reserved115 SubCauseCodeType, - reserved116 SubCauseCodeType, - reserved117 SubCauseCodeType, - reserved118 SubCauseCodeType, - reserved119 SubCauseCodeType, - reserved120 SubCauseCodeType, - reserved121 SubCauseCodeType, - reserved122 SubCauseCodeType, - reserved123 SubCauseCodeType, - reserved124 SubCauseCodeType, - reserved125 SubCauseCodeType, - reserved126 SubCauseCodeType, - reserved127 SubCauseCodeType, - reserved128 SubCauseCodeType - } - -/** - * This DF is an alternative representation of the cause code value of a traffic event. - * - * It shall include the following components: - * - * @field ccAndScc: the main cause of a detected event. Each entry is of a different type and represents the sub cause code. - * - * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may - * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. - * - * @category: Traffic information - * @revision: Created in V2.1.1 - */ -CauseCodeV2 ::= SEQUENCE { - ccAndScc CauseCodeChoice, - ... -} - -/** - * The DF describes the position of a CEN DSRC road side equipment. - * - * It shall include the following components: - * - * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. - * - * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. - * - * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. - * - * @category: Infrastructure information, Communication information - * @revision: revised in V2.1.1 (cenDsrcTollingZoneId is directly of type ProtectedZoneId) - */ -CenDsrcTollingZone ::= SEQUENCE { - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - cenDsrcTollingZoneId ProtectedZoneId OPTIONAL, - ... -} - -/** - * - * This DF represents the shape of a circular area or a right cylinder that is centred on the shape´s reference point. - * - * It shall include the following components: - * - * @field shapeReferencePoint: optional reference point that represents the centre of the circle, relative to an externally specified reference position. - * If this component is absent, the externally specified reference position represents the shape´s reference point. - * - * @field radius: the radius of the circular area. - * - * @field height: the optional height, present if the shape is a right cylinder extending in the positive z-axis. - * - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ -CircularShape ::= SEQUENCE { - shapeReferencePoint CartesianPosition3d OPTIONAL, - radius StandardLength12b, - height StandardLength12b OPTIONAL -} - -/** - * This DF indicates the opening/closure status of the lanes of a carriageway. - * - * It shall include the following components: - * - * @field innerhardShoulderStatus: this information is optional and shall be included if an inner hard shoulder is present and the information is known. - * It indicates the open/closing status of inner hard shoulder lanes. - * - * @field outerhardShoulderStatus: this information is optional and shall be included if an outer hard shoulder is present and the information is known. - * It indicates the open/closing status of outer hard shoulder lanes. - * - * @field drivingLaneStatus: this information is optional and shall be included if the information is known. - * It indicates the open/closing status of driving lanes. - * For carriageways with more than 13 driving lanes, the drivingLaneStatus component shall not be present. - * - * @category: GeoReference information, Road topology information - * @revision: Description revised in V2.1.1 - */ -ClosedLanes ::= SEQUENCE { - innerhardShoulderStatus HardShoulderStatus OPTIONAL, - outerhardShoulderStatus HardShoulderStatus OPTIONAL, - drivingLaneStatus DrivingLaneStatus OPTIONAL, - ... -} - -/** - * This DF provides information about the breakup of a cluster. - * - * It shall include the following components: - * - * @field clusterBreakupReason: indicates the reason for breakup. - * - * @field breakupTime: indicates the time of breakup. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterBreakupInfo ::= SEQUENCE { - clusterBreakupReason ClusterBreakupReason, - breakupTime DeltaTimeQuarterSecond, - ... -} - -/** - * This DF provides information about the joining of a cluster. - * - * It shall include the following components: - * - * @field clusterId: indicates the identifier of the cluster. - * - * @field joinTime: indicates the time of joining. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterJoinInfo ::= SEQUENCE { - clusterId Identifier1B, - joinTime DeltaTimeQuarterSecond, - ... -} - -/** - * The DF provides information about the leaving of a cluster. - * - * It shall include the following components: - * - * @field clusterId: indicates the cluster. - * - * @field clusterLeaveReason: indicates the reason for leaving. - * - * @category: Cluster Information - * @revision: Created in V2.1.1 - */ -ClusterLeaveInfo ::= SEQUENCE { - clusterId Identifier1B, - clusterLeaveReason ClusterLeaveReason, - ... -} - -/** - * This DF represents a column of a lower triangular positive semi-definite matrix and consists of a list of correlation cell values ordered by rows. - * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. - * Each column "i" of the lower triangular matrix then contains k-(i-1) values (ordered by rows from 1 to n-1), where "i" refers to the column number count - * starting at 1 from the left. - * - * @category: Sensing Information - * @revision: Created in V2.1.1 -*/ -CorrelationColumn ::= SEQUENCE SIZE (1..13,...) OF CorrelationCellValue - -/** - * This DF represents the curvature of the vehicle trajectory and the associated confidence value. - * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. - * - * It shall include the following components: - * - * @field curvatureValue: Detected curvature of the vehicle trajectory. - * - * @field curvatureConfidence: along with a confidence value of the curvature value with a predefined confidence level. - * - * @category: Vehicle information - * @revision: Description revised in V2.1.1 - */ -Curvature ::= SEQUENCE { - curvatureValue CurvatureValue, - curvatureConfidence CurvatureConfidence -} - -/** - * This DF provides a description of dangerous goods being carried by a heavy vehicle. - * - * It shall include the following components: - * - * @field dangerousGoodsType: Type of dangerous goods. - * - * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in - * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.4], - * - * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. - * If yes, the value shall be set to TRUE, - * - * @field tunnelsRestricted: whether the heavy vehicle carrying dangerous goods is restricted to enter tunnels. - * If yes, the value shall be set to TRUE, - * - * @field limitedQuantity: whether the carried dangerous goods are packed with limited quantity. - * If yes, the value shall be set to TRUE, - * - * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency - * service should deal with an incident. This component is optional; it shall be present if the information is available. - * - * @field phoneNumber: contact phone number of assistance service in case of incident or accident. - * This component is optional, it shall be present if the information is available. - * - * @field companyName: name of company that manages the transportation of the dangerous goods. - * This component is optional; it shall be present if the information is available. - * - * @category Vehicle information - * @revision: V1.3.1 - */ -DangerousGoodsExtended ::= SEQUENCE { - dangerousGoodsType DangerousGoodsBasic, - unNumber INTEGER (0..9999), - elevatedTemperature BOOLEAN, - tunnelsRestricted BOOLEAN, - limitedQuantity BOOLEAN, - emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, - phoneNumber PhoneNumber OPTIONAL, - companyName UTF8String (SIZE (1..24)) OPTIONAL, - ... -} - -/** - * This DF defines a geographical point position as a 3 dimensional offset position to a geographical reference point. - * - * It shall include the following components: - * - * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. - * - * @field deltaLongitude: A delta longitude offset with regards to the longitude value of the reference position. - * - * @field deltaAltitude: A delta altitude offset with regards to the altitude value of the reference position. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -DeltaReferencePosition ::= SEQUENCE { - deltaLatitude DeltaLatitude, - deltaLongitude DeltaLongitude, - deltaAltitude DeltaAltitude -} - -/** - * This DF represents a portion of digital map. It shall contain a list of waypoints @ref ReferencePosition. - * - * @category: GeoReference information - * @revision: V1.3.1 - */ -DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition - -/** - * - * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on the shape´s reference point. - * - * It shall include the following components: - * - * @field shapeReferencePoint: optional reference point which represents the centre of the ellipse, relative to an externally specified reference position. - * If this component is absent, the externally specified reference position represents the shape´s reference point. - * - * @field semiMajorAxisLength: half length of the major axis of the ellipse. - * - * @field semiMinorAxisLength: half length of the minor axis of the ellipse. - * - * @field orientation: the optional orientation of the major axis of the ellipse in the WGS84 coordinate system. - * - * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ - -EllipticalShape ::= SEQUENCE { - shapeReferencePoint CartesianPosition3d OPTIONAL, - semiMajorAxisLength StandardLength12b, - semiMinorAxisLength StandardLength12b, - orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL -} - -/** - * - * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.16]. - * The following options are available: - * - * @field euVehicleCategoryL: indicates a vehicle in the L category. - * - * @field euVehicleCategoryM: indicates a vehicle in the M category. - * - * @field euVehicleCategoryN: indicates a vehicle in the N category. - * - * @field euVehicleCategoryO: indicates a vehicle in the O category. - * - * @field euVehicleCategoryT: indicates a vehicle in the T category. - * - * @field euVehicleCategoryG: indicates a vehicle in the G category. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -EuVehicleCategoryCode ::= CHOICE { - euVehicleCategoryL EuVehicleCategoryL, - euVehicleCategoryM EuVehicleCategoryM, - euVehicleCategoryN EuVehicleCategoryN, - euVehicleCategoryO EuVehicleCategoryO, - euVehicleCategoryT NULL, - euVehicleCategoryG NULL - } - -/** - * The DF shall contain a list of @ref EventPoint. - * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. - * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. - * - * @category: GeoReference information, Traffic information - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref EventZone instead. - * @revision: Generalized the semantics in V2.1.1 - */ -EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint - -/** - * This DF provides information related to an event at a defined position. - * - * It shall include the following components: - * - * @field eventPosition: offset position of a detected event point to a defined position. - * - * @field eventDeltaTime: optional time travelled by the detecting ITS-S since the previous detected event point. - * - * @field informationQuality: Information quality of the detection for this event point. - * - * @category: GeoReference information, Traffic information - * @revision: generalized the semantics in V2.1.1 - */ -EventPoint ::= SEQUENCE { - eventPosition DeltaReferencePosition, - eventDeltaTime PathDeltaTime OPTIONAL, - informationQuality InformationQuality -} - -/** - * The DF shall contain a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime - * or do not contain the COMPONENT eventDeltaTime. - * - * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. - * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. - * - * @category: GeoReference information, Traffic information - * @revision: created in V2.1.1 based on EventHistory - */ -EventZone::= EventHistory - ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | - (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) - -/** - * This DF indicates a transversal position in relation to the different lanes of the road. - * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where Vehicle ITS-S would normally not be present. - * - * The following options are available: - * - * @field trafficLanePosition: a position on a traffic lane. - * - * @field nonTrafficLanePosition: a position on a lane which is not a traffic lane. - * - * @field trafficIslandPosition: a position on a traffic island - * - * @field mapPosition: a position on a lane identified in a MAPEM. - * - * @category: Road Topology information - * @revision: created in V2.1.1 - */ -GeneralizedLanePosition::= CHOICE { - trafficLanePosition LanePosition, - nonTrafficLanePosition LanePositionAndType, - trafficIslandPosition TrafficIslandPosition, - mapPosition MapPosition, - ... -} - -/** - * This DF represents the Heading in a WGS84 co-ordinates system. - * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. - * - * It shall include the following components: - * - * @field headingValue: the heading value. - * - * @field headingConfidence: the confidence value of the heading value with a predefined confidence level. - * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84Angle instead. - * @category: Kinematics Information - * @revision: Description revised in V2.1.1 - */ -Heading ::= SEQUENCE { - headingValue HeadingValue, - headingConfidence HeadingConfidence -} - - -/** - * This DF provides information associated to heading change indicators such as a change of direction. - * - * It shall include the following components: - * - * @field direction: the direction of heading change value. - * - * @field actionDeltaTime: the period over which a direction change action is performed. - * - * @category: Kinematics Information - * @revision: created in V2.1.1 - */ -HeadingChangeIndication ::= SEQUENCE { - direction TurningDirection, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents a frequency channel - * - * It shall include the following components: - * - * @field centreFrequency: the centre frequency of the channel in 10^(exp+2) Hz (where exp is exponent) - * - * @field channelWidth: width of the channel in 10^exp Hz (where exp is exponent) - * - * @field exponent: exponent of the power of 10 used in the calculation of the components above. - * - * @category: Communication information - * @revision: created in V2.1.1 -*/ -InterferenceManagementChannel ::= SEQUENCE { - centreFrequency INTEGER (1 .. 99999), - channelWidth INTEGER (0 .. 9999), - exponent INTEGER (0 .. 15) -} - -/** - * - * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. - * - * It shall include the following components: - * - * @field zoneDefinition: contains the geographical definition of the zone. - * - * @field managementInfo: contains interference management information applicable in the zone defined in the component zoneDefinition. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZone ::= SEQUENCE { - zoneDefinition InterferenceManagementZoneDefinition, - managementInfo InterferenceManagementInfo -} - -/** - * This DF represents the geographical definition of the zone where band sharing occurs. - * - * It shall include the following components: - * - * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. - * - * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. - * - * @field interferenceManagementZoneId: optional identification of the interference management zone. - * - * @field interferenceManagementZoneShape: shape of the interference management zone placed at the centre point. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZoneDefinition::= SEQUENCE{ - interferenceManagementZoneLatitude Latitude, - interferenceManagementZoneLongitude Longitude, - interferenceManagementZoneId ProtectedZoneId OPTIONAL, - interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, - ... -} - -/** - * This DF shall contain a list of up to 16 definitions containing interference management information, per affected frequency channels. - * - * @category: Communication information. - * @revision: created in V2.1.1 - */ -InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel - - -/** - * This DF contains interference management information for one affected frequency channel. - * - * It shall include the following components: - * - * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management - * - * @field interferenceManagementZoneType: type of the interference management zone. - * - * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. - * In the case where no mitigation should be applied by the ITS-S, this is indicated by the field interferenceManagementMitigationType being absent. - * - * @field expiryTime: 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 - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementInfoPerChannel ::= SEQUENCE { - interferenceManagementChannel InterferenceManagementChannel, - interferenceManagementZoneType InterferenceManagementZoneType, - interferenceManagementMitigationType MitigationForTechnologies OPTIONAL, - expiryTime TimestampIts OPTIONAL, - ... -} - -/** - * This DF shall contain 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. - * - * @category: Communication information - * @revision: created in V2.1.1 - */ -InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone - -/** - * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.15]. - * - * It shall include the following components: - * - * @field region: 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 @ref Id is unique within the region. - * - * @field id: the identifier of the intersection - * - * @note: when the component region is present, the IntersectionReferenceId is guaranteed to be globally unique. - * @category: Road topology information - * @revision: created in V2.1.1 - */ -IntersectionReferenceId ::= SEQUENCE { - region Identifier2B OPTIONAL, - id Identifier2B -} - -/** - * This DF shall contain a list of waypoints @ref ReferencePosition. - * - * @category: GeoReference information - * @revision: Editorial update in V2.1.1 - */ -ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition - -/** - * 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 shall include the following components: - * - * @field protocolVersion: version of the ITS message. - * - * @field messageId: type of the ITS message. - * - * @field stationId: the identifier of the ITS-S that generated the ITS message. - * - * @category: Communication information - * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. - */ -ItsPduHeader ::= SEQUENCE { - protocolVersion OrdinalNumber1B, - messageId MessageId, - stationId StationId -} - -/** - * This DF indicates a transversal position in resolution of lanes and the associated lane type. - * - * It shall include the following components: - * - * @field transversalPosition: the transversal position. - * - * @field laneType: the type of the lane identified in the component transversalPosition. - * - * @category GeoReference information - * @revision: Created in V2.1.1 - */ -LanePositionAndType::= SEQUENCE { - transversalPosition LanePosition, - laneType LaneType, - ... -} - -/** - * This DF indicates the vehicle acceleration at lateral direction and the confidence value of the lateral acceleration. - * - * It shall include the following components: - * - * @field lateralAccelerationValue: lateral acceleration value at a point in time. - * - * @field lateralAccelerationConfidence: confidence value of the lateral acceleration value. - * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. - * @category Vehicle information - * @revision: Description revised in V2.1.1 - */ -LateralAcceleration ::= SEQUENCE { - lateralAccelerationValue LateralAccelerationValue, - lateralAccelerationConfidence AccelerationConfidence -} - -/** - * This DF indicates the vehicle acceleration at longitudinal direction and the confidence value of the longitudinal acceleration. - * - * It shall include the following components: - * - * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. - - * @field longitudinalAccelerationConfidence: confidence value of the longitudinal acceleration value. - * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead. - * @category: Vehicle information - * @revision: V1.3.1 - */ -LongitudinalAcceleration ::= SEQUENCE { - longitudinalAccelerationValue LongitudinalAccelerationValue, - longitudinalAccelerationConfidence AccelerationConfidence -} - -/** - * This DF represents the estimated position along the longitudinal length of a particular lane. - * - * It shall include the following components: - * - * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. - * - * @field longitudinalLanePositionConfidence: The confidence value associated to the value. - * - * @category: Road topology information - * @revision: created in V2.1.1 - */ -LongitudinalLanePosition ::= SEQUENCE { - longitudinalLanePositionValue LongitudinalLanePositionValue, - longitudinalLanePositionConfidence LongitudinalLanePositionConfidence -} - -/** - * This DF shall contain a list of a lower triangular positive semi-definite matrices. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -LowerTriangularPositiveSemidefiniteMatrices::= SEQUENCE SIZE (1..4) OF LowerTriangularPositiveSemidefiniteMatrix - -/** - * This DF represents a lower triangular positive semi-definite matrix. - * - * It shall include the following components: - * - * @field componentsIncludedIntheMatrix: the indication of which components of a @ref PerceivedObject are included in the matrix. - * This component also implicitly indicates the number n of included components which defines the size (n x n) of the full correlation matrix "A". - * - * @field matrix: the list of cells of the lower triangular positive semi-definite matrix ordered by columns and by rows. - * - * The number of columns to be included "k" is equal to the number of included components "n" indicated by componentsIncludedIntheMatrix minus 1: k = n-1. - * These components shall be included in the order or their appearance in componentsIncludedIntheMatrix. - * Each column "i" of the lowerTriangularCorrelationMatrixColumns contains k-(i-1) values. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE{ - componentsIncludedIntheMatrix MatrixIncludedComponents, - matrix LowerTriangularPositiveSemidefiniteMatrixColumns -} - -/** - * This DF represents the columns of a lower triangular positive semi-definite matrix, each column not including the main diagonal cell of the matrix. - * Given a matrix "A" of size n x n, the number of @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -LowerTriangularPositiveSemidefiniteMatrixColumns ::= SEQUENCE SIZE (1..13) OF CorrelationColumn - -/** - * This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301 [i.15]. - * - * It shall include the following components: - * - * @field mapReference: optionally identifies the MAPEM containing the topology information. - * It is absent if the MAPEM topology is known from the context. - * - * @field laneId: optionally identifies the lane in the road segment or intersection topology on which the position is located. - * - * @field connectionId: optionally identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the - * conflict area of an intersection which connects e.g an ingress with an egress lane. - * - * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. - * - * @category: Road topology information - * @revision: Created in V2.1.1 - */ -MapPosition ::= SEQUENCE { - mapReference MapReference OPTIONAL, - laneId Identifier1B OPTIONAL, - connectionId Identifier1B OPTIONAL, - longitudinalLanePosition LongitudinalLanePosition OPTIONAL, - ... -} - ((WITH COMPONENTS {..., laneId PRESENT, connectionId ABSENT }) | - (WITH COMPONENTS {..., laneId ABSENT, connectionId PRESENT })) - -/** - * This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301 [i.15]. - * - * The following options are provided: - * - * @field roadsegment: option that identifies the description of a road segment contained in a MAPEM. - * - * @field intersection: option that identifies the description of an intersection contained in a MAPEM. - * - * @category: Road topology information - * @revision: Created in V2.1.1 - */ -MapReference::= CHOICE { - roadsegment RoadSegmentReferenceId, - intersection IntersectionReferenceId - } - -/** - * This DE indicates a message rate. - * - * @field mantissa: indicates the mantissa. - * - * @field exponent: indicates the exponent. - * - * The specified message rate is: mantissa*(10^exponent) - * - * @unit: Hz - * @category: Communication information - * @revision: Created in V2.1.1 - */ -MessageRateHz::= SEQUENCE { - mantissa INTEGER (1..100), - exponent INTEGER (-5..2) - } - -/** - * This DF provides information about a message with respect to the segmentation process at the sender. - * - * It shall include the following components: - * - * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. - * - * @field thisMsgNo: indicates the position of the message within of the total set of messages. - -*/ -MessageSegmentationInfo ::= SEQUENCE { - totalMsgNo CardinalNumber3b, - thisMsgNo OrdinalNumber3b - } - -/** - * This DF shall contain a list of @ref MitigationPerTechnologyClass. - * - * @category: Communication information - * @revision: Created in V2.1.1 -*/ -MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF 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 shall include the following components: - * - * @field accessTechnologyClass: channel access technology to which this mitigation is intended to be applied. - * - * @field lowDutyCycle: duty cycle limit. - * @unit: 0,01% steps - * - * @field powerReduction: the delta value of power to be reduced. - * @unit: dB - * - * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.19]. - * @unit: ms - * - * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.20]. - * @unit: ms - * - * @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. - * - * @category: Communication information - * @revision: Created in V2.1.1 - */ -MitigationPerTechnologyClass ::= SEQUENCE { - accessTechnologyClass AccessTechnologyClass, - lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, - powerReduction INTEGER (0 .. 30) OPTIONAL, - dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, - dmcTonLimit INTEGER (0 .. 20) OPTIONAL, - ... -} - -/** - * This DF indicates both the class and associated subclass that best describes an object. - * - * The following options are available: - * - * @field vehicleSubClass: the object is a road vehicle and the specific subclass is specified. - * - * @field vruSubClass: the object is a VRU and the specific subclass is specified. - * - * @field groupSubClass: the object is a VRU group or cluster and the cluster information is specified. - * - * @field otherSubClass: the object is of a different type than the above and the specific subclass is specified. - * - * @category: Sensing information - * @revision: Created in V2.1.1 - */ -ObjectClass ::= CHOICE { - vehicleSubClass TrafficParticipantType (unknown|passengerCar..tram|agricultural), - vruSubClass VruProfileAndSubprofile, - groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), - otherSubClass OtherSubClass, - ... -} - -/** - * This DF shall contain a list of object classes. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence - -/** - * This DF represents the classification of a detected object together with a confidence level. - * - * It shall include the following components: - * - * @field objectClass: the class of the object. - * - * @field Confidence: the associated confidence level. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectClassWithConfidence ::= SEQUENCE { - objectClass ObjectClass, - confidence ConfidenceLevel -} - -/** - * This DF represents a dimension of an object together with a confidence value. - * - * It shall include the following components: - * - * @field value: the object dimension value which can be estimated as the mean of the current distribution. - * - * @field confidence: the associated confidence value. - * - * @category: Sensing information - * @revision: Created in V2.1.1 -*/ -ObjectDimension ::= SEQUENCE { - value ObjectDimensionValue, - confidence ObjectDimensionConfidence -} - -/** - * This DF represents a path with a set of path points. - * It shall contain up to `40` @ref 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. - * - * @category: GeoReference information, Vehicle information - * @revision: created in V2.1.1 based on PathHistory - */ -Path::= SEQUENCE (SIZE(0..40)) OF PathPoint - -/** - * This DF represents a path history with a set of path points. - * It shall contain up to `40` @ref 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. - * - * @category: GeoReference information, Vehicle information - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead - * @revision: semantics updated in V2.1.1 - */ -PathHistory::= SEQUENCE (SIZE(40)) OF PathPoint - -/** - * This DF represents a predicted path with a set of path points. - * It shall contain up to `15` @ref 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. - * - * @category: GeoReference information - * @revision: created in V2.1.1 based on PathHistory - */ -PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted - -/** - * This DF defines an offset waypoint position within a path. - * - * It shall include the following components: - * - * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. - * - * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. - * - * @category GeoReference information - * @revision: semantics updated in V2.1.1 - */ -PathPoint ::= SEQUENCE { - pathPosition DeltaReferencePosition, - pathDeltaTime PathDeltaTime OPTIONAL -} - -/** - * This DF defines a predicted offset waypoint position within a path. - * - * It shall include the following components: - * - * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. - * - * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. - * - * @field horizontalPositionConfidence: the confidence value associated to the horizontal geographical position. - * - * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. - * - * @field altitudeConfidence: the confidence value associated to the altitude value of the geographical position. - * - * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. - * - * @category GeoReference information - * @revision: semantics updated in V2.1.1 - */ -PathPointPredicted::= SEQUENCE { - deltaLatitude DeltaLatitude, - deltaLongitude DeltaLongitude, - horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, - deltaAltitude DeltaAltitude DEFAULT unavailable, - altitudeConfidence AltitudeConfidence DEFAULT unavailable, - pathDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF contains information about a perceived object including its kinematic state and attitude vector in a pre-defined coordinate system. - * - * It shall include the following components: - * - * @field objectId: optional identifier assigned to a detected object. - * - * @field timeOfMeasurement: 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. - * - * @field position: the position of the geometric centre of the object´s bounding box within the pre-defined coordinate system, with the associated variance. - * - * @field velocity: the velocity vector of the object within the pre-defined coordinate system with the associated variance. - * - * @field acceleration: the acceleration vector of the object within the pre-defined coordinate system with the associated variance. - * - * @field angleZ: optional first angle of object bounding box at the time of measurement, with the associated variance. - * The angle is measured with positive values considering the object orientation turning around the z-axis using the right-hand rule, starting from the x-axis. - * This extrinsic rotation shall be applied around the centre point of the object´s bounding box before all other rotations. - - * @field angleY: optional second angle of object bounding box at the time of measurement with the associated variance. - * The angle is measured with positive values considering the object orientation turning around the y-axis using the right-hand rule, starting from the z-axis. - * This extrinsic rotation shall be applied around the centre point of the object´s bounding box after the rotation by angleZ and before the rotation by angleX. - * - * @field angleX: optional third angle of object bounding box at the time of measurement with the associated variance. - * The angle is measured with positive values considering the object orientation turning around the x-axis using the right-hand rule, starting from the z-axis. - * This extrinsic rotation shall be applied around the centre point of the object´s bounding box after all other rotations. - * - * @field zAngleVelocity: 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. - * - * @field lowerTriangularCorrelationMatrices: optional set of lower triangular correlation matrices for selected components of the provided kinematic state and attitude vector. - * - * @field objectDimensionZ: 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. - * - * @field objectDimensionY: 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. - * - * @field objectDimensionX: 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. - * - * @field objectAge: 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. - * - * @field objectPerceptionQuality: optional confidence associated to the object. - * - * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. - * - * @field classification: optional classification of the described object - * - * @field matchedPosition: optional map-matched position of an object. - * - * @category Sensing information - * @revision: created in V2.1.1 - */ -PerceivedObject ::= SEQUENCE { - objectId Identifier2B OPTIONAL, - timeOfMeasurement DeltaTimeMilliSecondPosNeg, - 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, - objectAge DeltaTimeMilliSecondPosNeg (0..1500) OPTIONAL, - objectPerceptionQuality ObjectPerceptionQuality OPTIONAL, - sensorIdList SequenceOfIdentifier1B OPTIONAL, - classification ObjectClassDescription OPTIONAL, - mapPosition MapPosition OPTIONAL, - ... -} - -/** - * This DF represents the shape of a polygonal area or of a right prism. - * - * It shall include the following components: - * - * @field shapeReferencePoint: 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. - * - * @field polygon: the polygonal area represented by a list of minimum `3` to maximum `16` @ref CartesianPosition3d. - * All nodes of the polygon shall be considered relative to the shape´s reference point. - * - * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. - * - * @category GeoReference information - * @revision: created in V2.1.1 - * - */ -PolygonalShape ::= SEQUENCE { - shapeReferencePoint CartesianPosition3d OPTIONAL, - polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), - height StandardLength12b OPTIONAL -} - -/** - * 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: - * - * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point - * and major axis point of the position accuracy ellipse. - * - * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point - * and minor axis point of the position accuracy ellipse. - * - * @field semiMajorOrientation: 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. - * - * - * @category GeoReference information - * @revision: V1.3.1 - */ -PosConfidenceEllipse ::= SEQUENCE { - semiMajorConfidence SemiAxisLength, - semiMinorConfidence SemiAxisLength, - semiMajorOrientation HeadingValue -} - -/** - * 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: - * - * @field semiMajorAxisLength: half of length of the major axis, i.e. distance between the centre point - * and major axis point of the position accuracy ellipse. - * - * @field semiMinorAxisLength: half of length of the minor axis, i.e. distance between the centre point - * and minor axis point of the position accuracy ellipse. - * - * @field semiMajorAxisOrientation: 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. - * - * @category GeoReference information - * @revision: created in V2.1.1 based on @ref PosConfidenceEllipse - */ -PositionConfidenceEllipse ::= SEQUENCE { - semiMajorAxisLength SemiAxisLength, - semiMinorAxisLength SemiAxisLength, - semiMajorAxisOrientation Wgs84AngleValue -} - -/** - * This DF shall contain a list of distances @ref 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. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar - -/** - * This DF describes a zone of protection inside which the ITS communication should be restricted. - * - * It shall include the following components: - * - * @field protectedZoneType: type of the protected zone. - * - * @field expiryTime: optional time at which the validity of the protected communication zone will expire. - * - * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. - * - * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. - * - * @field protectedZoneRadius: optional radius of the protected communication zone in metres. - * - * @field protectedZoneId: the optional ID of the protected communication zone. - * - * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. - * - * @category: Infrastructure information, Communication information - * @revision: revised in V2.1.1 (changed protectedZoneID to protectedZoneId) - */ -ProtectedCommunicationZone ::= SEQUENCE { - protectedZoneType ProtectedZoneType, - expiryTime TimestampIts OPTIONAL, - protectedZoneLatitude Latitude, - protectedZoneLongitude Longitude, - protectedZoneRadius ProtectedZoneRadius OPTIONAL, - protectedZoneId ProtectedZoneId OPTIONAL, - ... -} - -/** - * This DF shall contain a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). - * - * It may provide up to 16 protected communication zones information. - * - * @category: Infrastructure information, Communication information - * @revision: V1.3.1 - */ -ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone - -/** - * 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). - * - * @field ptActivationType: type of activation. - * - * @field ptActicationData: data of activation. - * - * 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) - * for controlling traffic lights, barriers, bollards, etc. This DF shall include information like route, course, - * destination, priority, etc. - * - * The R09.x content is defined in VDV recommendation 420 [i.7]. It includes following information: - * - 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. - * @category: Vehicle information - * @revision: V1.3.1 - */ -PtActivation ::= SEQUENCE { - ptActivationType PtActivationType, - ptActivationData PtActivationData -} - -/** - * This DF describes a radial shape. The triangular or cone-shaped volume is - * 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 - * 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). - * - * It shall include the following components: - * - * @field shapeReferencePoint: 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. - * - * @field range: the radial range of the shape from the shape´s reference point. - * - * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the - * shape's horizontal opening angle in positive angular direction with respect to the - * WGS84 coordinate system. - * - * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the shape's - * horizontal opening angle in positive angular direction with respect to the WGS84 coordinate system. - * - * @field verticalOpeningAngleStart: 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. - * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the shape's - * 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. - * - * @category Sensing information - * @revision: created in V2.1.1 -*/ -RadialShape ::= SEQUENCE { - shapeReferencePoint CartesianPosition3d OPTIONAL, - range StandardLength12b, - stationaryHorizontalOpeningAngleStart Wgs84AngleValue, - stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, - verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL -} - - -/** - * This DF describes a list of radial shapes. - * - * It shall include the following components: - - * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). - * - * @field xCoordinate: the x-coordinate of the offset point. - * - * @field yCoordinate: the y-coordinate of the offset point. - * - * @field zCoordinate: the optional z-coordinate of the offset point. - * - * @field radialShapesList: the list of radial shape details. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ -RadialShapes ::= SEQUENCE { - refPointId Identifier1B, - xCoordinate CartesianCoordinateSmall, - yCoordinate CartesianCoordinateSmall, - zCoordinate CartesianCoordinateSmall OPTIONAL, - radialShapesList RadialShapesList -} - -/** - * The DF contains a list of @ref RadialShapeDetails. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ - -RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF 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). - * - * It shall include the following components: - * - * @field range: the radial range of the sensor from the reference point or sensor point offset. - * - * @field horizontalOpeningAngleStart: the orientation indicating the beginning of the - * shape's horizontal opening angle in positive angular direction. - * - * @field horizontalOpeningAngleEnd: The orientation indicating the end of the shape's horizontal - * opening angle in positive angular direction. - * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the shape's - * 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. - * - * @field verticalOpeningAngleEnd: optional orientation indicating the end of the shape's - * 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. - * - * @category: Georeference information - * @revision: created in V2.1.1 - */ -RadialShapeDetails ::= SEQUENCE { - range StandardLength12b, - horizontalOpeningAngleStart CartesianAngleValue, - horizontalOpeningAngleEnd CartesianAngleValue, - verticalOpeningAngleStart CartesianAngleValue OPTIONAL, - verticalOpeningAngleEnd CartesianAngleValue OPTIONAL -} - -/** - * 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. - * - * It shall include the following components: - * - * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. - * - * @field semiLength: represents half the length of the rectangle. - * - * @field semiBreadth: represents half the breadth of the rectangle. - * - * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. - * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. - * - * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. - * - * @category GeoReference information - * @revision: created in V2.1.1 - */ -RectangularShape ::= SEQUENCE { - centerPoint CartesianPosition3d OPTIONAL, - semiLength StandardLength12b, - semiBreadth StandardLength12b, - orientation Wgs84AngleValue OPTIONAL, - height StandardLength12b OPTIONAL -} - -/** - * A position within a geographic coordinate system together with a confidence ellipse. - * - * It shall include the following components: - * - * @field latitude: the latitude of the geographical point. - * - * @field longitude: the longitude of the geographical point. - * - * @field positionConfidenceEllipse: the confidence ellipse associated to the geographical position. - * - * @field altitude: the altitude and an altitude accuracy of the geographical point. - * - * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref ReferencePositionWithConfidence instead. - * @category: GeoReference information - * @revision: description updated in V2.1.1 - */ -ReferencePosition ::= SEQUENCE { - latitude Latitude, - longitude Longitude, - positionConfidenceEllipse PosConfidenceEllipse, - altitude Altitude -} - -/** - * A position within a geographic coordinate system together with a confidence ellipse. - * - * It shall include the following components: - * - * @field latitude: the latitude of the geographical point. - * - * @field longitude: the longitude of the geographical point. - * - * @field positionConfidenceEllipse: the confidence ellipse associated to the geographical position. - * - * @field altitude: the altitude and an altitude accuracy of the geographical point. - * - * @category: GeoReference information - * @revision: created in V2.1.1 based on @ref ReferencePosition but using @ref PositionConfidenceEllipse. - */ -ReferencePositionWithConfidence ::= SEQUENCE { - latitude Latitude, - longitude Longitude, - positionConfidenceEllipse PositionConfidenceEllipse, - altitude Altitude -} - -/** - * This DF shall contain a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. - * - * @category: Infrastructure information, Traffic information - * @revision: V1.3.1 - */ -RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType - -/** - * This DF represents a unique id for a road segment - * - * It shall include the following components: - * - * @field region: 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 @ref Id is unique within the region. - * - * @field id: the identifier of the road segment. - * - * @note: when the component region is present, the RoadSegmentReferenceId is guaranteed to be globally unique. - * @category: GeoReference information - * @revision: created in V2.1.1 - */ -RoadSegmentReferenceId ::= SEQUENCE { - region Identifier2B OPTIONAL, - id Identifier2B -} - -/** - * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). - * - * It shall include the following components: - * - * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. - * - * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. - * 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. - * - * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed - * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. - * - * @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). - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 - */ -SafeDistanceIndication ::= SEQUENCE { - subjectStation StationId OPTIONAL, - safeDistanceIndicator SafeDistanceIndicator, - timeToCollision DeltaTimeTenthOfSecond OPTIONAL, - ... -} - -/** - * This DF shall contain a list of DF @ref CartesianPosition3d. - * - * @category: GeoReference information - * @revision: created in V2.1.1 - */ -SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d - -/** - * The DF contains a list of DE @ref Identifier1B. - * - * @category: Basic information - * @revision: created in V2.1.1 -*/ -SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B - -/** - * The DF contains a list of DF @ref SafeDistanceIndication. - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..8,...)) OF SafeDistanceIndication - -/** - * The DF shall contain a list of DF @ref TrajectoryInterceptionIndication. - * - * @category: Traffic information, Kinematics information - * @revision: created in V2.1.1 -*/ -SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..8,...)) OF TrajectoryInterceptionIndication - -/** - * This DF provides the definition of a geographical area or volume, based on different options. - * - * It is a choice of the following components: - * - * @field rectangular: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. - * - * @field circular: definition of an area of circular shape or a right circular cylinder. - * - * @field polygonal: definition of an area of polygonal shape or a right prism. - * - * @field elliptical: definition of an area of elliptical shape or a right elliptical cylinder. - * - * @field radial: definition of a radial shape. - * - * @field radialList: definition of list of radial shapes. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 - */ - -Shape::= CHOICE { - rectangular RectangularShape, - circular CircularShape, - polygonal PolygonalShape, - elliptical EllipticalShape, - radial RadialShape, - radialShapes RadialShapes, - ... -} - -/** - * This DF represents the speed and associated confidence value. - * - * It shall include the following components: - * - * @field speedValue: the speed value. - * - * @field speedConfidence: the confidence value of the speed value. - * - * @category: Kinematics information - * @revision: V1.3.1 - */ -Speed ::= SEQUENCE { - speedValue SpeedValue, - speedConfidence SpeedConfidence -} - -/** - * This DF provides the indication of change in stability. - * - * It shall include the following components: - * - * @field lossProbability: the probability of stability loss. - * - * @field actionDeltaTime: the period over which the the probability of stability loss is estimated. - * - * @category: Kinematics information - * @revision: V2.1.1 - */ -StabilityChangeIndication ::= SEQUENCE { - lossProbability StabilityLossProbability, - actionDeltaTime DeltaTimeTenthOfSecond, - ... -} - -/** - * This DF represents the steering wheel angle of the vehicle at certain point in time. - * - * It shall include the following components: - * - * @field steeringWheelAngleValue: steering wheel angle value. - * - * @field steeringWheelAngleConfidence: confidence value of the steering wheel angle value. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -SteeringWheelAngle ::= SEQUENCE { - steeringWheelAngleValue SteeringWheelAngleValue, - steeringWheelAngleConfidence SteeringWheelAngleConfidence -} - -/** - * This DF represents one or more paths using @ref PathHistory. - * - * @category: GeoReference information - * @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory - */ -Traces ::= SEQUENCE SIZE(1..7) OF Path - -/** - * Ths DF represents the a position on a traffic island between two lanes. - * - * It shall include the following components: - * - * @field oneSide: represents one lane. - * - * @field otherSide: represents the other lane. - * - * @category: Road Topology information - * @revision: Created in V2.1.1 - */ -TrafficIslandPosition ::= SEQUENCE { - oneSide LanePositionAndType, - otherSide LanePositionAndType, - ... -} - -/** - * This DF provides detailed information about an attached trailer. - * - * It shall include the following components: - * - * @field refPointId: identifier of the reference point of the trailer. - * - * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the - * vehicle Reference Point. - * - * @field frontOverhang: optional length of the trailer overhang in the positive x direction (according to ISO 8855) from the - * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer - * is not overhanging to the front with respect to the trailer reference point. - * - * @field rearOverhang: optional length of the trailer overhang in the negative x direction (according to ISO 8855) from the - * trailer Reference Point indicated by the refPointID. - * - * @field trailerWidth: optional width of the trailer. - * - * @field hitchAngle: optional Value and confidence value of the angle between the trailer orientation (corresponding to the x - * direction of the ISO 8855 [2] coordinate system centered on the trailer) and the direction of - * the segment having as end points the reference point of the trailer and the reference point of - * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane - * xy, described in the local Cartesian coordinate system of the trailer. The - * angle is measured with negative values considering the trailer orientation turning clockwise - * starting from the segment direction. The angle value accuracy is provided with the - * confidence level of 95 %. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 -*/ -TrailerData ::= SEQUENCE { - refPointId Identifier1B, - hitchPointOffset StandardLength1B, - frontOverhang StandardLength1B OPTIONAL, - rearOverhang StandardLength1B OPTIONAL, - trailerWidth VehicleWidth OPTIONAL, - hitchAngle CartesianAngle, - ... -} - -/** - * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. - * - * It shall include the following components: - * - * @field subjectStation: indicates the subject station. - * - * @field trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory - * with the trajectory of the station indicated in the component subjectStation. - * - * @field trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory - * with the trajectory of the station indicated in the component subjectStation. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -TrajectoryInterceptionIndication ::= SEQUENCE { - subjectStation StationId OPTIONAL, - trajectoryInterceptionProbability TrajectoryInterceptionProbability, - trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, - ... -} - -/** - * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. - * - * @category: Vehicle information - * @revision: Created in V2.1.1 - */ -VarLengthNumber::=CHOICE{ - content [0] INTEGER(0..127), -- one octet length - extension [1] Ext1 - } -Ext1::=CHOICE{ - content [0] INTEGER(128..16511), -- two octets length - extension [1] Ext2 -} -Ext2::=CHOICE{ - content [0] INTEGER(16512..2113663), -- three octets length - extension [1] Ext3 - } -Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length - -/** - * This DF indicates the vehicle acceleration at vertical direction and the associated confidence value. - * - * It shall include the following components: - * - * @field verticalAccelerationValue: vertical acceleration value at a point in time. - * - * @field verticalAccelerationConfidence: confidence value of the vertical acceleration value with a predefined confidence level. - * - * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Acceleration1d instead - * @category Vehicle information - * @revision: Description revised in V2.1.1 - */ -VerticalAcceleration ::= SEQUENCE { - verticalAccelerationValue VerticalAccelerationValue, - verticalAccelerationConfidence AccelerationConfidence -} - -/** - * This DF provides information related to the identification of a vehicle. - * - * It shall include the following components: - * - * @field wMInumber: World Manufacturer Identifier (WMI) code. - * - * @field vDS: Vehicle Descriptor Section (VDS). - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VehicleIdentification ::= SEQUENCE { - wMInumber WMInumber OPTIONAL, - vDS VDS OPTIONAL, - ... -} - -/** - * This DF represents the length of vehicle and accuracy indication information. - * - * It shall include the following components: - * - * @field vehicleLengthValue: length of vehicle. - * - * @field vehicleLengthConfidenceIndication: indication of the length value confidence. - * - * @category: Vehicle information - * @revision: V1.3.1 - */ -VehicleLength ::= SEQUENCE { - vehicleLengthValue VehicleLengthValue, - vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication -} - -/** - * This DF represents the length of vehicle and accuracy indication information. - * - * It shall include the following components: - * - * @field vehicleLengthValue: length of vehicle. - * - * @field trailerPresenceInformation: information about the trailer presence. - * - * @category: Vehicle information - * @revision: created in V2.1.1 based on @ref VehicleLength but using @ref TrailerPresenceInformation - */ -VehicleLengthV2 ::= SEQUENCE { - vehicleLengthValue VehicleLengthValue, - trailerPresenceInformation TrailerPresenceInformation -} - -/** - * This DF represents a velocity vector with associated confidence value. - * - * The following options are available: - * - * @field polarVelocity: the representation of the velocity vector in a polar coordinate system. - * - * @field cartesianVelocity: the representation of the velocity vector in a cartesian coordinate system. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -Velocity3dWithConfidence::= CHOICE{ - polarVelocity VelocityPolarWithZ, - cartesianVelocity VelocityCartesian -} - -/** - * This DF represents a velocity vector in a cartesian coordinate system. - - * It shall include the following components: - * - * @field xVelocity: the x component of the velocity vector with the associated confidence value. - * - * @field yVelocity: the y component of the velocity vector with the associated confidence value. - * - * @field zVelocity: the optional z component of the velocity vector with the associated confidence value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -VelocityCartesian::= SEQUENCE { - xVelocity VelocityComponent, - yVelocity VelocityComponent, - zVelocity VelocityComponent OPTIONAL -} - -/** - * This DF represents a component of the velocity vector and the associated confidence value. - * - * It shall include the following components: - * - * @field value: the value of the component. - * - * @field confidence: the confidence value of the value. - * - * @category: Kinematics information - * @revision: V2.1.1 - */ -VelocityComponent ::= SEQUENCE { - value VelocityComponentValue, - confidence SpeedConfidence -} - -/** - * This DF represents a velocity vector in a polar coordinate system. - - * It shall include the following components: - * - * @field velocityMagnitude: magnitude of the velocity vector of the detected object in the X-Y plane with the associated confidence value. - * - * @field velocityDirection: polar angle of the velocity vector of the detected object in the X-Y plane with the associated confidence value. - * - * @field zVelocity: the optional z component of the velocity vector with the associated confidence value. - * - * @category: Kinematics information - * @revision: Created in V2.1.1 - */ -VelocityPolarWithZ::= SEQUENCE { - velocityMagnitude Speed, - velocityDirection CartesianAngle, - zVelocity VelocityComponent OPTIONAL -} - -/** - * This DF provides information about a VRU cluster. - * - * It shall include the following components: - * - * @field clusterId: optional identifier of a VRU cluster . - * - * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. - * - * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group, i.e. the known members in the cluster + 1 (for the cluster leader) . - * - * @field clusterProfiles: optionally identifies all the VRU profile types that are known to be within the cluster. - * if this component is absent it means that the information is unavailable. - * - * @category: VRU information - * @revision: Created in V2.1.1 -*/ -VruClusterInformation ::= SEQUENCE { - clusterId Identifier1B OPTIONAL, - clusterBoundingBoxShape Shape (WITH COMPONENTS{..., elliptical ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, - clusterCardinalitySize CardinalNumber1B, - clusterProfiles VruClusterProfiles OPTIONAL, - ... -} - -/** - * This DF represents the status of the exterior light switches of a VRU. - * This DF is an extension of the vehicular DE @ref ExteriorLights. - * - * It shall include the following components: - * - * @field vehicular: represents the status of the exterior light switches of a road vehicle. - * - * @field vruSpecific: represents the status of the exterior light switches of a VRU. - * - * @category: VRU information - * @revision: created in V2.1.1 - */ -VruExteriorLights ::= SEQUENCE { - vehicular ExteriorLights, - vruSpecific VruSpecificExteriorLights, - ... -} - -/** - * This DF indicates the profile of a VRU including sub-profile information - * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.18]: - * - * @field pedestrian: VRU Profile 1 - Pedestrian. - * - * @field bicyclistAndLightVruVehicle: VRU Profile 2 - Bicyclist. - * - * @field motorcyclist: VRU Profile 3 - Motorcyclist. - * - * @field animal: VRU Profile 4 - Animal. - * - * @category: VRU information - * @revision: Created in V2.1.1 - */ -VruProfileAndSubprofile ::= CHOICE { - pedestrian VruSubProfilePedestrian, - bicyclistAndLightVruVehicle VruSubProfileBicyclist, - motorcyclist VruSubProfileMotorcyclist, - animal VruSubProfileAnimal, - ... -} - -/** - * This DF represents an angular component along with a confidence value in the WGS84 coordinate system. - * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. - * - * It shall include the following components: - * - * @field value: the angle value, which can be estimated as the mean of the current distribution. - * - * @field confidence: the confidence value associated to the angle value. - * - * @category: GeoReference information - * @revision: Created in V2.1.1 -*/ -Wgs84Angle ::= SEQUENCE { - value Wgs84AngleValue, - confidence Wgs84AngleConfidence -} - - -/** - * This DF represents a yaw rate of vehicle at a point in time. - * - * It shall include the following components: - * - * @field yawRateValue: yaw rate value at a point in time. - * - * @field yawRateConfidence: confidence value associated to the yaw rate value. - * - * @category: Vehicle Information - * @revision: V1.3.1 - */ -YawRate::= SEQUENCE { - yawRateValue YawRateValue, - yawRateConfidence YawRateConfidence -} - -END +--! @options: no-fields-header + +ETSI-ITS-CDD {itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) 102894 cdd (2) major-version-3 (3) minor-version-1 (1)} + +DEFINITIONS AUTOMATIC TAGS ::= + +BEGIN + +------------------------------------------ +-- Specification of CDD Data Elements: +------------------------------------------ + + +/** + * This DE indicates a change of acceleration. + * + * The value shall be set to: + * - 0 - `accelerate` - if the magnitude of the horizontal velocity vector increases. + * - 1 - `decelerate` - if the magnitude of the horizontal velocity vector decreases. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 +*/ +AccelerationChange::= ENUMERATED { + accelerate (0), + decelerate (1) +} + +/** + * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy of an acceleration value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` if the confidence value is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `101` if the confidence value is out of range i.e. greater than 10 m/s2, + * - `102` if the confidence value is unavailable. + * + * The value 0 shall not be used. + * + * @note: The fact that an acceleration value is received with confidence value set to 'unavailable(102)' can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the acceleration value may be valid and used by the application. + * + * @note: If an acceleration value is received and its confidence value is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @unit 0,1 m/s2 + * @category: Kinematic information + * @revision: Description revised in V2.1.1 + */ +AccelerationConfidence ::= INTEGER { + outOfRange (101), + unavailable (102) +} (0..102) + +/** + * This DE indicates the current controlling mechanism for longitudinal movement of the vehicle. + * The data may be provided via the in-vehicle network. It indicates whether a specific in-vehicle + * acceleration control system is engaged or not. Currently, this DE includes the information of the + * vehicle brake pedal, gas pedal, emergency brake system, collision warning system, adaptive cruise + * control system, cruise control system and speed limiter system. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `brakePedalEngaged` - Driver is stepping on the brake pedal, + * - 1 - `gasPedalEngaged` - Driver is stepping on the gas pedal, + * - 2 - `emergencyBrakeEngaged` - emergency brake system is engaged, + * - 3 - `collisionWarningEngaged`- collision warning system is engaged, + * - 4 - `accEngaged` - ACC is engaged, + * - 5 - `cruiseControlEngaged` - cruise control is engaged, + * - 6 - `speedLimiterEngaged` - speed limiter is engaged. + * + * Otherwise (for example when the corresponding system is not available due to non equipped system + * or information is unavailable), the corresponding bit shall be set to 0. + * + * @note: The system engagement condition is OEM specific and therefore out of scope of the present document. + * @category: Vehicle information + * @revision: V1.3.1 + */ +AccelerationControl ::= BIT STRING { + brakePedalEngaged (0), + gasPedalEngaged (1), + emergencyBrakeEngaged (2), + collisionWarningEngaged (3), + accEngaged (4), + cruiseControlEngaged (5), + speedLimiterEngaged (6) +} (SIZE(7)) + +/** + * This DE represents the magnitude of the acceleration vector in a defined coordinate system. + * + * The value shall be set to: + * - `0` to indicate no acceleration, + * - `n (n > 0 and n < 160)` to indicate acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, + * - `161` when the data is unavailable. + * + * @unit 0,1 m/s2 + * @category: Kinematic information + * @revision: Created in V2.1.1 +*/ +AccelerationMagnitudeValue ::= INTEGER { + positiveOutOfRange (160), + unavailable (161) +} (0.. 161) + +/** + * This DE represents the value of an acceleration component in a defined coordinate system. + * + * The value shall be set to: + * - `-160` for acceleration values equal to or less than -16 m/s2, + * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, + * - `161` when the data is unavailable. + * + * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. + * @unit 0,1 m/s2 + * @category: Kinematic information + * @revision: Created in V2.1.1 +*/ +AccelerationValue ::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) +} (-160 .. 161) + + +/** + * This DE indicates an access technology. + * + * The value shall be set to: + * - `0`: in case of any access technology class, + * - `1`: in case of ITS-G5 access technology class, + * - `2`: in case of LTE-V2X access technology class, + * - `3`: in case of NR-V2X access technology class. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +AccessTechnologyClass ::= ENUMERATED { + any (0), + itsg5Class (1), + ltev2xClass (2), + nrv2xClass (3), + ... +} + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case the information on the sub cause of the accident is unavailable, + * - 1 - `multiVehicleAccident` - in case more than two vehicles are involved in accident, + * - 2 - `heavyAccident` - in case the airbag of the vehicle involved in the accident is triggered, + * the accident requires important rescue and/or recovery work, + * - 3 - `accidentInvolvingLorry` - in case the accident involves a lorry, + * - 4 - `accidentInvolvingBus` - in case the accident involves a bus, + * - 5 - `accidentInvolvingHazardousMaterials`- in case the accident involves hazardous material, + * - 6 - `accidentOnOppositeLane` - in case the accident happens on opposite lanes, + * - 7 - `unsecuredAccident` - in case the accident is not secured, + * - 8 - `assistanceRequested` - in case rescue and assistance are requested, + * - 9-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AccidentSubCauseCode ::= INTEGER { + unavailable (0), + multiVehicleAccident (1), + heavyAccident (2), + accidentInvolvingLorry (3), + accidentInvolvingBus (4), + accidentInvolvingHazardousMaterials (5), + accidentOnOppositeLane (6), + unsecuredAccident (7), + assistanceRequested (8) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailable, + * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road, + * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road, + * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road, + * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road, + * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road, + * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road, + * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road, + * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard, + * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface, + * - 10 - `roadsSalted` - when the low road adhesion is due to salted road, + * - 11-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { + unavailable (0), + heavyFrostOnRoad (1), + fuelOnRoad (2), + mudOnRoad (3), + snowOnRoad (4), + iceOnRoad (5), + blackIceOnRoad (6), + oilOnRoad (7), + looseChippings (8), + instantBlackIce (9), + roadsSalted (10) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable, + * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind, + * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail, + * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane, + * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm, + * - 5 - `tornado` - in case the type of extreme weather condition is tornado, + * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. + * - 7-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { + unavailable (0), + strongWinds (1), + damagingHail (2), + hurricane (3), + thunderstorm (4), + tornado (5), + blizzard (6) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of precipitation is unavailable, + * - 1 - `heavyRain` - in case the type of precipitation is heavy rain, + * - 2 - `heavySnowfall` - in case the type of precipitation is heavy snow fall, + * - 3 - `softHail` - in case the type of precipitation is soft hail. + * - 4-255 - are reserved for future usage + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { + unavailable (0), + heavyRain (1), + heavySnowfall (2), + softHail (3) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable, + * - 1 - `fog` - in case the cause of low visibility is fog, + * - 2 - `smoke` - in case the cause of low visibility is smoke, + * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall, + * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain, + * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail, + * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare, + * - 7 - `sandstorms` - in case the cause of low visibility is sand storm, + * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. + * - 9-255 - are reserved for future usage + * + * @category: Traffic information + * @revision: V1.3.1 + */ +AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { + unavailable (0), + fog (1), + smoke (2), + heavySnowfall (3), + heavyRain (4), + heavyHail (5), + lowSunGlare (6), + sandstorms (7), + swarmsOfInsects (8) +} (0..255) + +/** + * This DE represents the air humidity in tenths of percent. + * + * The value shall be set to: + * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0,1 percent and greater than (n-1) x 0,1 percent. + * - `1001` indicates that the air humidity is unavailable. + * + * @category: Basic information + * @unit: 0,1 % + * @revision: created in V2.1.1 + */ +AirHumidity ::= INTEGER { + oneHundredPercent (1000), + unavailable (1001) +} (1..1001) + +/** + * This DE indicates the altitude confidence value which represents the estimated absolute accuracy of an altitude value of a geographical point with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - 0 - `alt-000-01` - if the confidence value is equal to or less than 0,01 metre, + * - 1 - `alt-000-02` - if the confidence value is equal to or less than 0,02 metre and greater than 0,01 metre, + * - 2 - `alt-000-05` - if the confidence value is equal to or less than 0,05 metre and greater than 0,02 metre, + * - 3 - `alt-000-10` - if the confidence value is equal to or less than 0,1 metre and greater than 0,05 metre, + * - 4 - `alt-000-20` - if the confidence value is equal to or less than 0,2 metre and greater than 0,1 metre, + * - 5 - `alt-000-50` - if the confidence value is equal to or less than 0,5 metre and greater than 0,2 metre, + * - 6 - `alt-001-00` - if the confidence value is equal to or less than 1 metre and greater than 0,5 metre, + * - 7 - `alt-002-00` - if the confidence value is equal to or less than 2 metres and greater than 1 metre, + * - 8 - `alt-005-00` - if the confidence value is equal to or less than 5 metres and greater than 2 metres, + * - 9 - `alt-010-00` - if the confidence value is equal to or less than 10 metres and greater than 5 metres, + * - 10 - `alt-020-00` - if the confidence value is equal to or less than 20 metres and greater than 10 metres, + * - 11 - `alt-050-00` - if the confidence value is equal to or less than 50 metres and greater than 20 metres, + * - 12 - `alt-100-00` - if the confidence value is equal to or less than 100 metres and greater than 50 metres, + * - 13 - `alt-200-00` - if the confidence value is equal to or less than 200 metres and greater than 100 metres, + * - 14 - `outOfRange` - if the confidence value is out of range, i.e. greater than 200 metres, + * - 15 - `unavailable` - if the confidence value is unavailable. + * + * @note: The fact that an altitude value is received with confidence value set to `unavailable(15)` can be caused + * by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the altitude value may be valid and used by the application. + * + * @note: If an altitude value is received and its confidence value is set to `outOfRange(14)`, it means that the + * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +AltitudeConfidence ::= ENUMERATED { + alt-000-01 (0), + alt-000-02 (1), + alt-000-05 (2), + alt-000-10 (3), + alt-000-20 (4), + alt-000-50 (5), + alt-001-00 (6), + alt-002-00 (7), + alt-005-00 (8), + alt-010-00 (9), + alt-020-00 (10), + alt-050-00 (11), + alt-100-00 (12), + alt-200-00 (13), + outOfRange (14), + unavailable (15) +} + +/** + * This DE represents the altitude value in a WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `-100 000` if the altitude is equal to or less than -1 000 m, + * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0,01 metre and greater than (n-1) x 0,01 metre, + * - `800 000` if the altitude greater than 7 999,99 m, + * - `800 001` if the information is not available. + * + * @note: the range of this DE does not use the full binary encoding range, but all reasonable values are covered. In order to cover all possible altitude ranges a larger encoding would be necessary. + * @unit: 0,01 metre + * @category: GeoReference information + * @revision: Description revised in V2.1.1 (definition of 800 000 has slightly changed) + */ +AltitudeValue ::= INTEGER { + negativeOutOfRange (-100000), + postiveOutOfRange (800000), + unavailable (800001) +} (-100000..800001) + +/** + * This DE indicates the angle confidence value which represents the estimated absolute accuracy of an angle value with a default confidence level of 95 %. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees, + * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees, + * - `127` if the accuracy information is not available. + * + * @unit: 0,1 degrees + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +AngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE indicates the angular speed confidence value which represents the estimated absolute accuracy of an angular speed value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * For correlation computation, maximum interval levels can be assumed. + * + * The value shall be set to: + * - 0 - `degSec-01` - if the accuracy is equal to or less than 1 degree/second, + * - 1 - `degSec-02` - if the accuracy is equal to or less than 2 degrees/second and greater than 1 degree/second, + * - 2 - `degSec-05` - if the accuracy is equal to or less than 5 degrees/second and greater than 2 degrees/second, + * - 3 - `degSec-10` - if the accuracy is equal to or less than 10 degrees/second and greater than 5 degrees/second, + * - 4 - `degSec-20` - if the accuracy is equal to or less than 20 degrees/second and greater than 10 degrees/second, + * - 5 - `degSec-50` - if the accuracy is equal to or less than 50 degrees/second and greater than 20 degrees/second, + * - 6 - `outOfRange` - if the accuracy is out of range, i.e. greater than 50 degrees/second, + * - 7 - `unavailable` - if the accuracy information is unavailable. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 +*/ +AngularSpeedConfidence ::= ENUMERATED { + degSec-01 (0), + degSec-02 (1), + degSec-05 (2), + degSec-10 (3), + degSec-20 (4), + degSec-50 (5), + outOfRange (6), + unavailable (7) +} + +/** + * This DE indicates the angular acceleration confidence value which represents the estimated accuracy of an angular acceleration value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * For correlation computation, maximum interval levels shall be assumed. + * + * The value shall be set to: + * - 0 - `degSecSquared-01` - if the accuracy is equal to or less than 1 degree/second2, + * - 1 - `degSecSquared-02` - if the accuracy is equal to or less than 2 degrees/second2 and greater than 1 degree/second2, + * - 2 - `degSecSquared-05` - if the accuracy is equal to or less than 5 degrees/second2 and greater than 1 degree/second2, + * - 3 - `degSecSquared-10` - if the accuracy is equal to or less than 10 degrees/second2 and greater than 5 degrees/second2, + * - 4 - `degSecSquared-20` - if the accuracy is equal to or less than 20 degrees/second2 and greater than 10 degrees/second2, + * - 5 - `degSecSquared-50` - if the accuracy is equal to or less than 50 degrees/second2 and greater than 20 degrees/second2, + * - 6 - `outOfRange` - if the accuracy is out of range, i.e. greater than 50 degrees/second2, + * - 7 - `unavailable` - if the accuracy information is unavailable. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 +*/ +AngularAccelerationConfidence ::= ENUMERATED { + degSecSquared-01 (0), + degSecSquared-02 (1), + degSecSquared-05 (2), + degSecSquared-10 (3), + degSecSquared-20 (4), + degSecSquared-50 (5), + outOfRange (6), + unavailable (7) +} + +/** + * This DE indicates the number of axles of a passing train. + * + * The value shall be set to: + * - `n(n > 2 and n < 1001)` indicates that the train has n x axles, + * - `1001`indicates that the number of axles is out of range, + * - `1002` the information is unavailable. + * + * + * @unit: Number of axles + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +AxlesCount ::= INTEGER{ + outOfRange (1001), + unavailable (1002) +} (2..1002) + +/** + * This DE represents the measured uncompensated atmospheric pressure. + * + * The value shall be set to: + * - `2999` indicates that the applicable value is less than 29990 Pa, + * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, + * - `12001` indicates that the values is greater than 120000 Pa, + * - `12002` indicates that the information is not available. + * + * @category: Basic information + * @unit: 10 Pascal + * @revision: Created in V2.1.1 +*/ +BarometricPressure ::= INTEGER{ + outOfRangelower (2999), + outOfRangeUpper (12001), + unavailable (12002) +} (2999..12002) + + +/** + * This DE indicates the cardinal number of bogies of a train. + * + * The value shall be set to: + * - `n (n > 1 and n < 100)` indicates that the train has n x bogies, + * - `100`indicates that the number of bogies is out of range, + * - `101` the information is unavailable. + * + * @unit: Number of bogies + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +BogiesCount ::= INTEGER{ + outOfRange (100), + unavailable (101) +} (2..101) + +/** + * The DE represents a cardinal number that counts the size of a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CardinalNumber1B ::= INTEGER(0..255) + +/** + * The DE represents a cardinal number that counts the size of a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CardinalNumber3b ::= INTEGER(1..8) + +/** + * This DE represents an angle value described in a local Cartesian coordinate system, per default counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + * - `36001` if the accuracy information is not available. + * + * The value 3600 shall not be used. + * + * @unit 0,1 degrees + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianAngleValue ::= INTEGER { + valueNotUsed (3600), + unavailable (3601) +} (0..3601) + +/** + * This DE represents an angular acceleration value described in a local Cartesian coordinate system, per default counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `-255` if the acceleration is equal to or less than -255 degrees/s2, + * - `n` (`n > -255` and `n < 255`) if the acceleration is equal to or less than n x 1 degree/s2, + and greater than `(n-1)` x 0,01 degree/s2, + * - `255` if the acceleration is greater than 254 degrees/s2, + * - `256` if the information is unavailable. + * + * @unit: degree/s2 (degrees per second squared) + * @category: Kinematic information + * @revision: Created in V2.1.1 +*/ +CartesianAngularAccelerationComponentValue ::= INTEGER { + negativeOutOfRange (-255), + positiveOutOfRange (255), + unavailable (256) +} (-255..256) + +/** + * This DE represents an angular velocity component described in a local Cartesian coordinate system, per default counted positive in + * a right-hand local coordinate system from the abscissa. + * + * The value shall be set to: + * - `-255` if the velocity is equal to or less than -255 degrees/s, + * - `n` (`n > -255` and `n < 255`) if the velocity is equal to or less than n x 1 degree/s, and greater than (n-1) x 1 degree/s, + * - `255` if the velocity is greater than 254 degrees/s, + * - `256` if the information is unavailable. + * + * @unit: degree/s + * @category: Kinematic information + * @revision: Created in V2.1.1 +*/ +CartesianAngularVelocityComponentValue ::= INTEGER { + negativeOutofRange (-255), + positiveOutOfRange (255), + unavailable (256) +} (-255..256) + +/** + *The DE represents the value of the cause code of an event. + * + * The value shall be set to: + * - 0 - reserved for future use, + * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, + * - 2 - `accident` - in case the type of event is a road accident, + * - 3 - `roadworks` - in case the type of event is roadwork, + * - 4 - reserved for future usage, + * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any + * blocking of a road, partial or total, which has not been adequately + * secured and signposted, + * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, + * - 7 - `aquaplaning` - danger of aquaplaning on the road, + * - 8 - reserved for future usage, + * - 9 - `hazardousLocation-SurfaceCondition` - in case the type of event is abnormal road surface condition, + * - 10 - `hazardousLocation-ObstacleOnTheRoad` - in case the type of event is obstacle on the road, + * - 11 - `hazardousLocation-AnimalOnTheRoad` - in case the type of event is animal on the road, + * - 12 - `humanPresenceOnTheRoad` - in case the type of event is human presence on the road, + * - 13 - reserved for future usage, + * - 14 - `wrongWayDriving` - in case the type of the event is vehicle driving in wrong way, + * - 15 - `rescueAndRecoveryWorkInProgress` - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, + * - 16 - reserved for future usage, + * - 17 - `adverseWeatherCondition-ExtremeWeatherCondition`- in case the type of event is extreme weather condition, + * - 18 - `adverseWeatherCondition-Visibility` - in case the type of event is low visibility, + * - 19 - `adverseWeatherCondition-Precipitation` - in case the type of event is precipitation, + * - 20 - `violence` - in case the the type of event is human violence on or near the road, + * - 21-25 - reserved for future usage, + * - 26 - `slowVehicle` - in case the type of event is slow vehicle driving on the road, + * - 27 - `dangerousEndOfQueue` - in case the type of event is dangerous end of vehicle queue, + * - 28-90 - are reserved for future usage, + * - 91 - `vehicleBreakdown` - in case the type of event is break down vehicle on the road, + * - 92 - `postCrash` - in case the type of event is a detected crash, + * - 93 - `humanProblem` - in case the type of event is human health problem in vehicles involved in traffic, + * - 94 - `stationaryVehicle` - in case the type of event is stationary vehicle, + * - 95 - `emergencyVehicleApproaching` - in case the type of event is approaching vehicle operating emergency mission, + * - 96 - `hazardousLocation-DangerousCurve` - in case the type of event is dangerous curve, + * - 97 - `collisionRisk` - in case the type of event is a collision risk, + * - 98 - `signalViolation` - in case the type of event is signal violation, + * - 99 - `dangerousSituation` - in case the type of event is dangerous situation in which autonomous safety system in vehicle + * is activated, + * - 100 - `railwayLevelCrossing` - in case the type of event is a railway level crossing. + * - 101-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +CauseCodeType ::= INTEGER { + trafficCondition (1), + accident (2), + roadworks (3), + impassability (5), + adverseWeatherCondition-Adhesion (6), + aquaplaning (7), + hazardousLocation-SurfaceCondition (9), + hazardousLocation-ObstacleOnTheRoad (10), + hazardousLocation-AnimalOnTheRoad (11), + humanPresenceOnTheRoad (12), + wrongWayDriving (14), + rescueAndRecoveryWorkInProgress (15), + adverseWeatherCondition-ExtremeWeatherCondition (17), + adverseWeatherCondition-Visibility (18), + adverseWeatherCondition-Precipitation (19), + violence (20), + slowVehicle (26), + dangerousEndOfQueue (27), + vehicleBreakdown (91), + postCrash (92), + humanProblem (93), + stationaryVehicle (94), + emergencyVehicleApproaching (95), + hazardousLocation-DangerousCurve (96), + collisionRisk (97), + signalViolation (98), + dangerousSituation (99), + railwayLevelCrossing (100) +} (0..255) + +/** + * This DF represents the value of a cartesian coordinate with a range of -30,94 metres to +10,00 metres. + * + * The value shall be set to: + * - `3094` if the longitudinal offset is out of range, i.e. less than or equal to -30,94 metres, + * - `n (n > -3 094 and n < 1 001)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `1001` if the longitudinal offset is out of range, i.e. greater than 10 metres. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateSmall::= INTEGER { + negativeOutOfRange (-3094), + positiveOutOfRange (1001) +} (-3094..1001) + +/** + * This DF represents the value of a cartesian coordinate with a range of -327,68 metres to +327,66 metres. + * + * The value shall be set to: + * - `-32 768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres, + * - `n (n > -32 768 and n < 32 767)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `32 767` if the longitudinal offset is out of range, i.e. greater than + 327,66 metres. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinate::= INTEGER{ + negativeOutOfRange (-32768), + positiveOutOfRange (32767) +} (-32768..32767) + +/** + * This DF represents the value of a cartesian coordinate with a range of -1 310,72 metres to +1 310,70 metres. + * + * The value shall be set to: + * - `-131072` if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres, + * - `n (n > 131 072 and n < 131 071)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `131 071` if the longitudinal offset is out of range, i.e. greater than + 1 310,70 metres. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateLarge::= INTEGER{ + negativeOutOfRange (-131072), + positiveOutOfRange (131071) +} (-131072..131071) + +/** + * This DE represents the ID of a CEN DSRC tolling zone. + * + * @category: Communication information + * @revision: V1.3.1 + * @note: this DE is deprecated and shall not be used anymore. + */ +CenDsrcTollingZoneID::= ProtectedZoneId + +/** + * This DE indicates the reason why a cluster leader intends to break up the cluster. + * + * The value shall be set to: + * - 0 - `notProvided` - if the information is not provided, + * - 1 - `clusteringPurposeCompleted` - if the cluster purpose has been completed, + * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box, + * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster, + * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps, + * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. + * - 6 to 15 - are reserved for future use. + * + * @category: Cluster information + * @revision: Created in V2.1.1 +*/ +ClusterBreakupReason ::= ENUMERATED { + notProvided (0), + clusteringPurposeCompleted (1), + leaderMovedOutOfClusterBoundingBox (2), + joiningAnotherCluster (3), + enteringLowRiskAreaBasedOnMaps (4), + receptionOfCpmContainingCluster (5), + max(15) +} + +/** + * This DE indicates the reason why a cluster participant is leaving the cluster. + * + * The value shall be set to: + * - 0 - `notProvided ` - if the information is not provided, + * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore, + * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbanded by the leader, + * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box, + * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of a defined range, + * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster, + * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure, + * - 7 - `failedJoin` - if the participant failed to join the cluster, + * - 8 - `safetyCondition` - if a safety condition applies. + * - 9 to 15 - are reserved for future use + * + * @category: Cluster information + * @revision: Created in V2.1.1 + */ +ClusterLeaveReason ::= ENUMERATED { + notProvided (0), + clusterLeaderLost (1), + clusterDisbandedByLeader (2), + outOfClusterBoundingBox (3), + outOfClusterSpeedRange (4), + joiningAnotherCluster (5), + cancelledJoin (6), + failedJoin (7), + safetyCondition (8), + max(15) +} + +/** + * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of collision risk is unavailable, + * - 1 - `longitudinalCollisionRisk`- in case the type of detected collision risk is longitudinal collision risk, + * e.g. forward collision or face to face collision, + * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, + * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, + * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users + * e.g. pedestrians or bicycles. + * - 5-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +CollisionRiskSubCauseCode ::= INTEGER { + unavailable (0), + longitudinalCollisionRisk (1), + crossingCollisionRisk (2), + lateralCollisionRisk (3), + vulnerableRoadUser (4) +}(0..255) + +/** + * This DE represents a confidence level in percentage. + * + * The value shall be set to: + * - `n (n > 0 and n < 101)` : for the confidence level in %, + * - `101` : in case the confidence level is not available. + * + * @unit Percent + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +ConfidenceLevel ::= INTEGER { + unavailable (101) +} (1..101) + +/** + * This DE indicates the coordinate confidence value which represents the estimated absolute accuracy of a position coordinate with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n` (`n > 0` and `n < 4095`) if the confidence value is is equal to or less than n x 0,01 metre, and greater than (n-1) x 0,01 metre, + * - `4095` if the confidence value is greater than 40,94 metres, + * - `4096` if the confidence value is not available. + * + * @unit 0,01 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CoordinateConfidence ::= INTEGER { + outOfRange (4095), + unavailable (4096) +} (1..4096) + +/** + * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. + * + * The value shall be set to: + * - `-100` in case of full negative correlation, + * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100, + * - `0` in case of no correlation, + * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100, + * - `100` in case of full positive correlation, + * - `101` in case the correlation information is unavailable. + * + * @unit: the value is scaled by 100 + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +CorrelationCellValue ::= INTEGER { + full-negative-correlation (-100), + no-correlation (0), + full-positive-correlation (100), + unavailable (101) +} (-100..101) + +/** + * The DE describes whether the yaw rate is used to calculate the curvature for a curvature value. + * + * The value shall be set to: + * - 0 - `yawRateUsed` - if the yaw rate is used, + * - 1 - `yawRateNotUsed` - if the yaw rate is not used, + * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +CurvatureCalculationMode ::= ENUMERATED { + yawRateUsed (0), + yawRateNotUsed (1), + unavailable (2), + ... +} + +/** + * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy range of a curvature value with a confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - 0 - `onePerMeter-0-00002` - if the confidence value is less than or equal to 0,00002 m-1, + * - 1 - `onePerMeter-0-0001` - if the confidence value is less than or equal to 0,0001 m-1 and greater than 0,00002 m-1, + * - 2 - `onePerMeter-0-0005` - if the confidence value is less than or equal to 0,0005 m-1 and greater than 0,0001 m-1, + * - 3 - `onePerMeter-0-002` - if the confidence value is less than or equal to 0,002 m-1 and greater than 0,0005 m-1, + * - 4 - `nePerMeter-0-01` - if the confidence value is less than or equal to 0,01 m-1 and greater than 0,002 m-1, + * - 5 - `nePerMeter-0-1` - if the confidence value is less than or equal to 0,1 m-1 and greater than 0,01 m-1, + * - 6 - `outOfRange` - if the confidence value is out of range, i.e. greater than 0,1 m-1, + * - 7 - `unavailable` - if the confidence value is not available. + * + * @note: The fact that a curvature value is received with confidence value set to `unavailable(7)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the curvature value may be valid and used by the application. + * + * @note: If a curvature value is received and its confidence value is set to 'outOfRange(6)', it means that the curvature value is not valid + * and therefore cannot be trusted. Such value is not useful for the application. + * + * @category: Vehicle information + * @revision: Description revised in V2.1.1 +*/ +CurvatureConfidence ::= ENUMERATED { + onePerMeter-0-00002 (0), + onePerMeter-0-0001 (1), + onePerMeter-0-0005 (2), + onePerMeter-0-002 (3), + onePerMeter-0-01 (4), + onePerMeter-0-1 (5), + outOfRange (6), + unavailable (7) +} + +/** + * This DE describes vehicle turning curve with the following information: + * ``` + * Value = 1 / Radius * 10000 + * ``` + * wherein radius is the vehicle turning curve radius in metres. + * + * Positive values indicate a turning curve to the left hand side of the driver. + * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. + * + * The value shall be set to: + * - `-1023` for values smaller than -1023, + * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1), + * - `0` when the vehicle is moving straight, + * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1), + * - `1022`, for values greater than 1021, + * - `1023`, if the information is not available. + * + * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. + * + * @unit: 1 over 10 000 metres + * @category: Vehicle information + * @revision: description revised in V2.1.1 (the definition of value 1022 has changed slightly) + */ +CurvatureValue ::= INTEGER { + outOfRangeNegative (-1023), + straight (0), + outOfRangePositive (1022), + unavailable (1023) +} (-1023..1023) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, + * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, + * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, + * - 3 - `queueAroundBend` - in case the dangerous end of queue is detected around the road bend, + * - 4 - `queueInTunnel` - in case queue is detected in tunnel, + * - 5-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DangerousEndOfQueueSubCauseCode ::= INTEGER { + unavailable (0), + suddenEndOfQueue (1), + queueOverHill (2), + queueAroundBend (3), + queueInTunnel (4) +} (0..255) + +/** + * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. + * The value is assigned according to `class` and `division` definitions of dangerous goods as specified in part II, + * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.3]. + * + * + * @category Vehicle information + * @revision: V1.3.1 + */ +DangerousGoodsBasic::= ENUMERATED { + explosives1 (0), + explosives2 (1), + explosives3 (2), + explosives4 (3), + explosives5 (4), + explosives6 (5), + flammableGases (6), + nonFlammableGases (7), + toxicGases (8), + flammableLiquids (9), + flammableSolids (10), + substancesLiableToSpontaneousCombustion (11), + substancesEmittingFlammableGasesUponContactWithWater (12), + oxidizingSubstances (13), + organicPeroxides (14), + toxicSubstances (15), + infectiousSubstances (16), + radioactiveMaterial (17), + corrosiveSubstances (18), + miscellaneousDangerousSubstances (19) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousSituation` + * + * The value shall be set to: + * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, + * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, + * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, + * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, + * - 4 - `absEngaged` - in case Anti-lock Braking System (ABS) is engaged, + * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, + * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, + * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, + * - 8-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DangerousSituationSubCauseCode ::= INTEGER { + unavailable (0), + emergencyElectronicBrakeEngaged (1), + preCrashSystemEngaged (2), + espEngaged (3), + absEngaged (4), + ebEngaged (5), + brakeWarningEngaged (6), + collisionRiskWarningEngaged (7) +} (0..255) + +/** + * This DE represents an offset altitude with regards to a defined altitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `-12 700` for values equal to or lower than -127 metres, + * - `n` (`n > -12 700` and `n <= 0) for altitude offset n x 0,01 metre below the reference position, + * - `0` for no altitudinal offset, + * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 metre above the reference position, + * - `12 799` for values equal to or greater than 127,99 metres, + * - `12 800` when the information is unavailable. + * + * @unit: 0,01 metre + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaAltitude ::= INTEGER { + negativeOutOfRange (-12700), + positiveOutOfRange (12799), + unavailable (12800) +} (-12700..12800) + +/** + * This DE represents an offset latitude with regards to a defined latitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, + * - `0` for no latitudinal offset, + * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the north from the reference position, + * - `131 072` when the information is unavailable. + * + * @unit: 10^-7 degree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLatitude ::= INTEGER { + unavailable (131072) +} (-131071..131072) + +/** + * This DE represents an offset longitude with regards to a defined longitude value. + * It may be used to describe a geographical point with regards to a specific reference geographical position. + * + * The value shall be set to: + * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, + * - `0` for no longitudinal offset, + * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the east from the reference position, + * - `131 072` when the information is unavailable. + * + * @unit: 10^-7 degree + * @category: GeoReference information + * @revision: editorial update in V2.1.1 + */ +DeltaLongitude ::= INTEGER { + unavailable (131072) +} (-131071..131072) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * The value shall be set to: + * - `n (n > 0 n < 10001)` to indicate a time value equal to or less than n x 0,001 s, and greater than (n-1) x 0,001 s, + * + * Example: a time interval between two consecutive message transmissions. + * + * @unit: 0,001 s + * @category: Basic information + * @revision: Created in V2.1.1 from the DE TransmissionInterval in [i.2] + */ +DeltaTimeMilliSecondPositive ::= INTEGER (1..10000) + +/** + * This DE represents a signed difference in time with respect to a reference time. + * + * The value shall be set to: + * - `-2048` for time values equal to or less than -2,048 s, + * - `n (n > -2048 and n < 2047)` to indicate a time value equal to or less than n x 0,001 s, and greater than (n-1) x 0,001 s, + * - `2047` for time values greater than 2,046 s + * + * @unit: 0,001 s + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeMilliSecondSigned ::= INTEGER (-2048..2047) + +/** + * This DE represents a difference in time with respect to a reference time. + * It can be interpreted as the first 8 bits of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, + * multiply by 256 (i.e. append a `00` byte) + * + * @unit: 256 * 0,001 s + * @category: Basic information + * @revision: Created in V2.1.1 + */ +DeltaTimeQuarterSecond::= INTEGER { + unavailable (255) +} (1..255) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * The value shall be set to: + * - `0` for a difference in time of 0 seconds. + * - `n (n > 0 n < 128)` to indicate a time value equal to or less than n x 0,1 s, and greater than (n-1) x 0,1 s, + * + * @unit: 0,1 s + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +DeltaTimeTenthOfSecond::= INTEGER { + unavailable (127) +} (0..127) + +/** + * This DE represents a difference in time with respect to a reference time. + * + * The value shall be set to: + * - `-0` for a difference in time of 0 seconds. + * - `n (n > 0 n <= 86400)` to indicate a time value equal to or less than n x 1 s, and greater than (n-1) x 1 s, + * + * @unit: 1 s + * @category: Basic information + * @revision: Created in V2.1.1 from ValidityDuration +*/ +DeltaTimeSecond ::= INTEGER (0..86400) + +/** + * This DE indicates a direction with respect to a defined reference direction. + * Example: a reference direction may be implicitly defined by the definition of a geographical zone. + * + * The value shall be set to: + * - 0 - `sameDirection` - to indicate the same direction as the reference direction, + * - 1 - `oppositeDirection` - to indicate opposite direction as the reference direction, + * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction, + * - 3 - `unavailable` - to indicate that the information is unavailable. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +Direction::= INTEGER{ + sameDirection (0), + oppositeDirection (1), + bothDirections (2), + unavailable (3) + } (0..3) + +/** + * This DE indicates in which direction something is moving. + * + * The value shall be set to: + * - 0 - `forward` - to indicate it is moving forward, + * - 1 - `backwards` - to indicate it is moving backwards, + * - 2 - `unavailable` - to indicate that the information is unavailable. + * + * @category: Kinematic information + * @revision: editorial update in V2.1.1 + */ +DriveDirection ::= ENUMERATED { + forward (0), + backward (1), + unavailable (2) +} + +/** + * This DE indicates whether a driving lane is open to traffic. + * + * A lane is counted from inside border of the road excluding the hard shoulder. The size of the bit string shall + * correspond to the total number of the driving lanes in the carriageway. + * + * The numbering is matched to @ref LanePosition. + * The bit `0` is used to indicate the innermost lane, bit `1` is used to indicate the second lane from inside border. + * + * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. + * + * @note: hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +DrivingLaneStatus ::= BIT STRING (SIZE (1..13)) + +/** + * This DE indicates whether a vehicle (e.g. public transport vehicle, truck) is under the embarkation process. + * If that is the case, the value is *TRUE*, otherwise *FALSE*. + * + * @category: Vehicle information + * @revision: editorial update in V2.1.1 + */ +EmbarkationStatus ::= BOOLEAN + +/** + * This DE indicates the right of priority requested or assumed by an operating emergency vehicle. + * The right-of-priority bit shall be set to `1` if the corresponding right is requested. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way, + * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. + * + * @category: Traffic information + * @revision: description revised in V2.1.1 + */ +EmergencyPriority ::= BIT STRING { + requestForRightOfWay (0), + requestForFreeCrossingAtATrafficLight (1) +} (SIZE(2)) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event + * is unavailable, + * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, + * - 2 - `prioritizedVehicleApproaching` - in case a prioritized vehicle is approaching, + * - 3-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +EmergencyVehicleApproachingSubCauseCode ::= INTEGER { + unavailable (0), + emergencyVehicleApproaching (1), + prioritizedVehicleApproaching (2) +} (0..255) + +/** + * This DE indicated the type of energy being used and stored in vehicle. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle, + * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle, + * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle, + * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle, + * - 4 - `diesel` - when diesel is being used and stored in vehicle, + * - 5 - `gasoline` - when gasoline is being used and stored in vehicle, + * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. + * + * - Otherwise, the corresponding bit shall be set to `0`. + * + * @category: Vehicle information + * @revision: editorial revision in V2.1.1 + */ +EnergyStorageType ::= BIT STRING { + hydrogenStorage (0), + electricEnergyStorage (1), + liquidPropaneGas (2), + compressedNaturalGas (3), + diesel (4), + gasoline (5), + ammonia (6) +}(SIZE(7)) + +/** + * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } + +/** + * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} + +/** + * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} + +/** + * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. + * + * + * @category: Vehicle information + * @revision: V2.1.1 + */ +EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} + +/** + * This DE describes the status of the exterior light switches of a vehicle incl. VRU vehicles. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on, + * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on, + * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on, + * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on, + * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on, + * - 5 - `reverseLightOn` - when the reverse light switch is on, + * - 6 - `fogLightOn` - when the tail fog light switch is on, + * - 7 - `parkingLightsOn` - when the parking light switch is on. + * + * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, + * either manually by the driver or automatically by a vehicle system. The bit value does not indicate + * if the corresponding lamps are alight or not. + * + * If a vehicle is not equipped with a certain light or if the light switch status information is not available, + * the corresponding bit shall be set to `0`. + * + * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not + * alternate with the blinking interval. + * + * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. + * + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +ExteriorLights ::= BIT STRING { + lowBeamHeadlightsOn (0), + highBeamHeadlightsOn (1), + leftTurnSignalOn (2), + rightTurnSignalOn (3), + daytimeRunningLightsOn (4), + reverseLightOn (5), + fogLightOn (6), + parkingLightsOn (7) +} (SIZE(8)) + +/** + * This DE represents a timestamp based on TimestampIts modulo 65 536. + * This means that generationDeltaTime = TimestampIts mod 65 536. + * + * @category: Basic information + * @revision: Created in V2.1.1 based on ETSI TS 103 900 [i.1] +*/ +GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) + +/** + * This DE indicates the current status of a hard shoulder: whether it is available for special usage + * (e.g. for stopping or for driving) or closed for all vehicles. + * + * The value shall be set to: + * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations, + * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case, + * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 + */ +HardShoulderStatus ::= ENUMERATED { + availableForStopping (0), + closed (1), + availableForDriving (2) +} + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, + * - 1 - `wildAnimals` - in case wild animals are detected on the road, + * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, + * - 3 - `smallAnimals` - in case small size animals are detected on the road, + * - 4 - `largeAnimals` - in case large size animals are detected on the road. + * - 5-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + wildAnimals (1), + herdOfAnimals (2), + smallAnimals (3), + largeAnimals (4) +} (0..255) + +/** + * This DE represents the sub cause code of the @ref CauseCode `hazardousLocation-DangerousCurve`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, + * - 1 - `dangerousLeftTurnCurve` - in case the dangerous curve is a left turn curve, + * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, + * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, + * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, + * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves starting with a right turn curve. + * - 6-255 - are reserved for future usage. + * + * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass + * and vehicle speed driving on the curve. This definition is out of scope of the present document. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { + unavailable (0), + dangerousLeftTurnCurve (1), + dangerousRightTurnCurve (2), + multipleCurvesStartingWithUnknownTurningDirection (3), + multipleCurvesStartingWithLeftTurn (4), + multipleCurvesStartingWithRightTurn (5) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the detected obstacle is unavailable, + * - 1 - `shedLoad` - in case detected obstacle is large amount of obstacles (shedload), + * - 2 - `partsOfVehicles`- in case detected obstacles are parts of vehicles, + * - 3 - `partsOfTyres` - in case the detected obstacles are parts of tyres, + * - 4 - `bigObjects` - in case the detected obstacles are big objects, + * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, + * - 6 - `hubCaps` - in case the detected obstacles are hub caps, + * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles. + * - 8-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + shedLoad (1), + partsOfVehicles (2), + partsOfTyres (3), + bigObjects (4), + fallenTrees (5), + hubCaps (6), + waitingVehicles (7) +} (0..255) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. + * +The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on the road surface condition is unavailable, + * - 1 - `rockfalls` - in case rock falls are detected on the road surface, + * - 2 - `earthquakeDamage`- in case the road surface is damaged by earthquake, + * - 3 - `sewerCollapse` - in case of sewer collapse on the road surface, + * - 4 - `subsidence` - in case road surface is damaged by subsidence, + * - 5 - `snowDrifts` - in case road surface is damaged due to snow drift, + * - 6 - `stormDamage` - in case road surface is damaged by strong storm, + * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, + * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, + * - 9 - `fallingIce` - in case road surface damage is due to falling ice, + * - 10 - `fire` - in case there is fire on or near to the road surface. + * - 11-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { + unavailable (0), + rockfalls (1), + earthquakeDamage (2), + sewerCollapse (3), + subsidence (4), + snowDrifts (5), + stormDamage (6), + burstPipe (7), + volcanoEruption (8), + fallingIce (9), + fire (10) +} (0..255) + +/** + * This DE indicates the heading confidence value which represents the estimated absolute accuracy of a heading value with a confidence level of 95 %. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, + * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, + * - `127` if the confidence value information is not available. + * + * @note: The fact that a value is received with confidence value set to `unavailable(127)` can be caused by several reasons, + * such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the heading value may be valid and used by the application. + * + * @note: If a heading value is received and its confidence value is set to `outOfRange(126)`, it means that the + * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84AngleConfidence instead. + * + * @unit: 0,1 degree + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +HeadingConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the orientation of the horizontal velocity vector with regards to the WGS84 north. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84AngleValue instead. + * + * Unit: 0,1 degree + * Categories: GeoReference information + * @revision: Description revised in V2.1.1 (usage of value 3600 specified) +*/ +HeadingValue ::= INTEGER { + wgs84North (0), + wgs84East (900), + wgs84South (1800), + wgs84West (2700), + doNotUse (3600), + unavailable (3601) +} (0..3601) + +/** + * This DE represents the height of the left or right longitude carrier of vehicle from base to top (left or right carrier seen from vehicle + * rear to front). + * + * The value shall be set to: + * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `99` if the height is out of range, i.e. equal to or greater than 0,98 m, + * - `100` if the height information is not available. + * + * @unit 0,01 metre + * @category Vehicle information + * @revision: Description revised in V2.1.1 (the definition of 99 has changed slightly) + */ +HeightLonCarr ::= INTEGER { + outOfRange(99), + unavailable(100) +} (1..100) + +/** + * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, + * - 1 - `childrenOnRoadway` - in case children are detected on the road, + * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, + * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road. + * - 4-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: editorial revision in V2.1.1 + */ +HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { + unavailable (0), + childrenOnRoadway (1), + cyclistOnRoadway (2), + motorcyclistOnRoadway (3) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". + * + * The value shall be set to: + * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, + * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, + * - 2 - `heartProblem` - in case human problem is due to heart problem. + * - 3-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +HumanProblemSubCauseCode ::= INTEGER { + unavailable (0), + glycemiaProblem (1), + heartProblem (2) +} (0..255) + +/** + * This DE is a general identifier. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +Identifier1B ::= INTEGER (0..255) + +/** + * This DE is a general identifier. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +Identifier2B ::= INTEGER (0..65535) + +/** + * This DE represents the quality level of provided information. + * + * The value shall be set to: + * - `0` if the information is unavailable, + * - `1` if the quality level is lowest, + * - `n (n > 1 and n < 7)` if the quality level is n, + * - `7` if the quality level is highest. + * + * @note: Definition of quality level is out of scope of the present document. + * @category: Basic information + * @revision: Editorial update in V2.1.1 + */ +InformationQuality ::= INTEGER (0..7) + +/** + * This DE defines the type of an interference management zone, so that an ITS-S can + * assert the actions to do while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * It is an extension of the type @ref ProtectedZoneType. + * + * The value shall be set to: + * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14], + * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14], + * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling, + * - 3 - `urbanRail` - as specified in ETSI TS 103 724 [i.13], clause 7, + * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.13], clause 7, + * - 5 - `fixedLinks` - as specified in ETSI TS 103 724 [i.13], clause 7. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +InterferenceManagementZoneType ::= ENUMERATED { + permanentCenDsrcTolling (0), + temporaryCenDsrcTolling (1), + unavailable (2), + urbanRail (3), + satelliteStation (4), + fixedLinks (5), + ... +} + +/** + * This DE represents the vehicle type according to ISO 3833 [3]. + * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. + * + * The value shall be set to: + * - 0 - `passengerCar` - term No 3.1.1 + * - 1 - `saloon` - term No 3.1.1.1 (sedan) + * - 2 - `convertibleSaloon` - term No 3.1.1.2 + * - 3 - `pullmanSaloon` - term No 3.1.1.3 + * - 4 - `stationWagon` - term No 3.1.1.4 + * - 5 - `truckStationWagon` - term No 3.1.1.4.1 + * - 6 - `coupe` - term No 3.1.1.5 (coupe) + * - 7 - `convertible` - term No 3.1.1.6 (open tourer, roadstar, spider) + * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 + * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 + * - 10 - `specialPassengerCar` - term No 3.1.1.9 + * - 11 - `bus` - term No 3.1.2 + * - 12 - `minibus` - term No 3.1.2.1 + * - 13 - `urbanBus` - term No 3.1.2.2 + * - 14 - `interurbanCoach` - term No 3.1.2.3 + * - 15 - `longDistanceCoach` - term No 3.1.2.4 + * - 16 - `articulatedBus` - term No 3.1.2.5 + * - 17 - `trolleyBus ` - term No 3.1.2.6 + * - 18 - `specialBus` - term No 3.1.2.7 + * - 19 - `commercialVehicle ` - term No 3.1.3 + * - 20 - `specialCommercialVehicle` - term No 3.1.3.1 + * - 21 - `specialVehicle ` - term No 3.1.4 + * - 22 - `trailingTowingVehicle ` - term No 3.1.5 (draw-bar tractor) + * - 23 - `semiTrailerTowingVehicle` - term No 3.1.6 (fifth wheel tractor) + * - 24 - `trailer` - term No 3.2.1 + * - 25 - `busTrailer` - term No 3.2.1.1 + * - 26 - `generalPurposeTrailer` - term No 3.2.1.2 + * - 27 - `caravan` - term No 3.2.1.3 + * - 28 - `specialTrailer` - term No 3.2.1.4 + * - 29 - `semiTrailer` - term No 3.2.2 + * - 30 - `busSemiTrailer ` - term No 3.2.2.1 + * - 31 - `generalPurposeSemiTrailer` - term No 3.2.2.2 + * - 32 - `specialSemiTrailer` - term No 3.2.2.3 + * - 33 - `roadTrain` - term No 3.3.1 + * - 34 - `passengerRoadTrain ` - term No 3.3.2 + * - 35 - `articulatedRoadTrain` - term No 3.3.3 + * - 36 - `doubleRoadTrain` - term No 3.3.4 + * - 37 - `compositeRoadTrain` - term No 3.3.5 + * - 38 - `specialRoadTrain` - term No 3.3.6 + * - 39 - `moped` - term No 3.4 + * - 40 - `motorCycle` - term No 3.5 + * - 41-255 - reserved for future use + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +Iso3833VehicleType ::= INTEGER { + passengerCar (0), + saloon (1), + convertibleSaloon (2), + pullmanSaloon (3), + stationWagon (4), + truckStationWagon (5), + coupe (6), + convertible (7), + multipurposePassengerCar (8), + forwardControlPassengerCar (9), + specialPassengerCar (10), + bus (11), + minibus (12), + urbanBus (13), + interurbanCoach (14), + longDistanceCoach (15), + articulatedBus (16), + trolleyBus (17), + specialBus (18), + commercialVehicle (19), + specialCommercialVehicle (20), + specialVehicle (21), + trailingTowingVehicle (22), + semiTrailerTowingVehicle (23), + trailer (24), + busTrailer (25), + generalPurposeTrailer (26), + caravan (27), + specialTrailer (28), + semiTrailer (29), + busSemiTrailer (30), + generalPurposeSemiTrailer (31), + specialSemiTrailer (32), + roadTrain (33), + passengerRoadTrain (34), + articulatedRoadTrain (35), + doubleRoadTrain (36), + compositeRoadTrain (37), + specialRoadTrain (38), + moped (39), + motorCycle (40) + } (0..255) + +/** + * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. + * + * For right-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road, + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane, + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction, + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). + * + * For left-hand traffic roads, the value shall be set to: + * - `-1` if the position is off, i.e. besides the road, + * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane, + * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction, + * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). + + * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. + * + * If the carriageway allows only traffic in one direction (e.g. in case of dual or multiple carriageway roads), the position is counted from the physical border of the carriageway. + * If the carriageway allows traffic in both directions and there is no physical delimitation between traffic directions (e.g. on a single carrriageway road), + * the position is counted from the legal (i.e. optical) separation between traffic directions (horizontal marking). + + * @category: Road topology information + * @revision: Description revised in V2.1.1 +*/ +LanePosition ::= INTEGER { + offTheRoad (-1), + innerHardShoulder (0), + outerHardShoulder (14) +} (-1..14) + +/** + * This DE represents the type of a lane. + * + * The value shall be set to: + * - 0 - `traffic` - Lane dedicated to the movement of vehicles, + * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning, + * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow, + * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it, + * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it, + * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic, + * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic, + * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc., + * - 8 - `bus` - Lane dedicated to movement of buses providing public transport, + * - 9 - `taxi` - Lane dedicated to movement of taxis, + * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane, + * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll, + * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths, + * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles, + * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median, + separating the two directional carriageways of the highway, + * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings, + * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys, + * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes, + * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder, + * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between + the road surface edge and the boundary of a road, + * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. + * - values 21 to 30 reserved for future use. + * + * @category: Road topology information + * @revision: Created in V2.1.1 +*/ +LaneType::= INTEGER{ + traffic (0), + through (1), + reversible (2), + acceleration (3), + deceleration (4), + leftHandTurning (5), + rightHandTurning (6), + dedicatedVehicle (7), + bus (8), + taxi (9), + hov (10), + hot (11), + pedestrian (12), + cycleLane (13), + median (14), + striping (15), + trackedVehicle (16), + parking (17), + emergency (18), + verge (19), + minimumRiskManoeuvre (20), + unknown (31) +}(0..31) + +/** + * This DE represents the width of a lane measured at a defined position. + * + * The value shall be set to: + * - `n (n >= 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `1022` if the lane width is out of range, i.e. greater than 10,21 m, + * - `1023` if the lane width information is not available. + * + * The value 0 shall not be used. + * + * @unit: 0,01 metre + * @category: Road topology information + * @revision: Created in V2.1.1 + */ +LaneWidth::= INTEGER (0..1023) + +/** + * This DE represents the absolute geographical latitude in a WGS84 coordinate system, providing a range of 90 degrees in north or + * in south hemisphere. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n >= -900 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, + * - `0` is used for the latitude of the equator, + * - `n (n > 0 and n < 900 000 001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator, + * - `900 000 001` when the information is unavailable. + * + * @unit: 10^-7 degree + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +Latitude ::= INTEGER { + unavailable(900000001) +} (-900000000..900000001) + +/** + * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * + * The value shall be set to: + * - `-160` for acceleration values equal to or less than -16 m/s2, + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation + * with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation + with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, + * - `161` when the data is unavailable. + * + * @note: the empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead. + * + * @unit: 0,1 m/s2 + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). + */ +LateralAccelerationValue ::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) +} (-160 .. 161) + +/** + * This DE indicates the status of light bar and any sort of audible alarm system besides the horn. + * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 - `lightBarActivated` - when the light bar is activated, + * - 1 - `sirenActivated` - when the siren is activated. + * + * Otherwise, it shall be set to 0. + * + * @category Vehicle information + * @revision: Editorial update in V2.1.1 + */ +LightBarSirenInUse ::= BIT STRING { + lightBarActivated (0), + sirenActivated (1) +} (SIZE(2)) + +/** + * This DE represents the absolute geographical longitude in a WGS84 coordinate system, providing a range of 180 degrees + * to the east or to the west of the prime meridian. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n > -1 800 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for longitudes to the west, + * - `0` to indicate the prime meridian, + * - `n (n > 0 and n < 1 800 000 001)` x 10^-7 degree, i.e. positive values for longitudes to the east, + * - `1 800 000 001` when the information is unavailable. + * + * The value -1 800 000 000 shall not be used. + * + * @unit: 10^-7 degree + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +Longitude ::= INTEGER { + valueNotUsed (-1800000000), + unavailable (1800000001) +} (-1800000000..1800000001) + + /** + * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. + * + * The value shall be set to: + * - `-160` for acceleration values equal to or less than -16 m/s2, + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2 + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, + * - `161` when the data is unavailable. + * + * This acceleration is along the tangent plane of the road surface and does not include gravity components. + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * @unit: 0,1 m/s2 + * @category: Vehicle information + * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). T + */ +LongitudinalAccelerationValue::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) +} (-160 .. 161) + +/** + * This DE represents the longitudinal offset of a map-matched position along a matched lane, beginning from the lane's starting point. + * + * The value shall be set to: + * - `n (n >= 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `32 766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m, + * - `32 767` if the longitudinal offset information is not available. + * + * @unit 0,1 metre + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +LongitudinalLanePositionValue ::= INTEGER { + outOfRange(32766), + unavailable(32767) +}(0..32767) + +/** + * This DE indicates the longitudinal lane position confidence value which represents the estimated accuracy of longitudinal lane position measurement with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n > 0 and n < 1 022)` if the confidence value is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, + * - `1 022` if the confidence value is out of range i.e. greater than 102,1 m, + * - `1 023` if the confidence value is unavailable. + * + * @unit 0,1 metre + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +LongitudinalLanePositionConfidence ::= INTEGER { + outOfRange (1022), + unavailable (1023) +} (0..1023) + +/** + * This DE indicates the components of an @ref PerceivedObject that are included in the @ref LowerTriangularPositiveSemidefiniteMatrix. + * + * The corresponding bit shall be set to 1 if the component is included: + * - 0 - `xCoordinate` - when the component xCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 1 - `yCoordinate` - when the component yCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 2 - `zCoordinate` - when the component zCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 3 - `xVelocityOrVelocityMagnitude` - when the component xVelocity of the component @ref VelocityCartesian or the component VelocityMagnitude of the component @ref VelocityPolarWithZ is included, + * - 4 - `yVelocityOrVelocityDirection` - when the component yVelocity of the component @ref VelocityCartesian or the component VelocityDirection of the component @ref VelocityPolarWithZ is included, + * - 5 - `zVelocity` - when the component zVelocity of the component @ref VelocityCartesian or of the component @ref VelocityPolarWithZ is included, + * - 6 - `xAccelOrAccelMagnitude` - when the component xAcceleration of the component @ref AccelerationCartesian or the component AccelerationMagnitude of the component @ref AccelerationPolarWithZ is included, + * - 7 - `yAccelOrAccelDirection` - when the component yAcceleration of the component @ref AccelerationCartesian or the component AccelerationDirection of the component @ref AccelerationPolarWithZ is included, + * - 8 - `zAcceleration` - when the component zAcceleration of the component @ref AccelerationCartesian or of the component @ref AccelerationPolarWithZ is included, + * - 9 - `zAngle` - when the component zAngle is included, + * - 10 - `yAngle` - when the component yAngle is included, + * - 11 - `xAngle` - when the component xAngle is included, + * - 12 - `zAngularVelocity` - when the component zAngularVelocity is included. + * + * Otherwise, it shall be set to 0. + * + * @category: Sensing information + * @revision: Created in V2.1.1 + */ +MatrixIncludedComponents::= BIT STRING{ + xPosition (0), + yPosition (1), + zPosition (2), + xVelocityOrVelocityMagnitude (3), + yVelocityOrVelocityDirection (4), + zSpeed (5), + xAccelOrAccelMagnitude (6), + yAccelOrAccelDirection (7), + zAcceleration (8), + zAngle (9), + yAngle (10), + xAngle (11), + zAngularVelocity (12) +} (SIZE(13,...)) + +/** + * This DE represents the type of facility layer message. + * + * The value shall be set to: + * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.2], + * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.1], + * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.9], + * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.15], + * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.15], + * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.15], + * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.11], + * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.10], + * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.15], + * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.15], + * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.9], + * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.17], + * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.15], + * - 14 - `cpm` - reserved for Collective Perception Message (CPM), + * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], + * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], + * - 17 - `dsm` - reserved for Diagnosis, logging and Status Message, + * - 18 - `pcim` - reserved for Parking Control Infrastructure Message, + * - 19 - `pcvm` - reserved for Parking Control Vehicle Message, + * - 20 - `mcm` - reserved for Manoeuvre Coordination Message, + * - 21 - `pam` - reserved for Parking Availability Message, + * - 22-255 - reserved for future usage. + * + * @category: Communication information + * @revision: Created in V2.1.1 from @ref ItsPduHeader. + */ +MessageId::= INTEGER { + denm (1), + cam (2), + poi (3), + spatem (4), + mapem (5), + ivim (6), + ev-rsr (7), + tistpgtransaction (8), + srem (9), + ssem (10), + evcsn (11), + saem (12), + rtcmem (13), + cpm (14), + imzm (15), + vam (16), + dsm (17), + pcim (18), + pcvm (19), + mcm (20), + pam (21) +} (0..255) + +/** + * This DE represents the number of occupants in a vehicle. + * + * The value shall be set to: + * - `n (n >= 0 and n < 126)` for the number n of occupants, + * - `126` for values equal to or higher than 125, + * - `127` if information is not available. + * + * @unit: 1 person + * @category: Vehicle information + * @revision: Editorial update in V2.1.1 + */ +NumberOfOccupants ::= INTEGER { + outOfRange (126), + unavailable (127) +} (0 .. 127) + +/** + * This DE represents a single-value indication about the overall information quality of a perceived object. + * + * The value shall be set to: + * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed, + * - `n (n > 0 and n < 15)` : for the applicable confidence value, + * -`15` : if there is full confidence in the detected Object. + * + * @unit n/a + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectPerceptionQuality ::= INTEGER { + noConfidence (0), + fullConfidence (15) +} (0..15) + +/** + * This DE represents a single dimension of an object. + * + * The value shall be set to: + * - `n (n > 0 and n < 255)` if the accuracy is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, + * - `255` if the accuracy is out of range i.e. greater than 25,4 m, + * - `256` if the data is unavailable. + * + * @unit 0,1 m + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +ObjectDimensionValue ::= INTEGER { + outOfRange (255), + unavailable (256) +}(1..256) + +/** + * This DE indicates the object dimension confidence value which represents the estimated absolute accuracy of an object dimension value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n > 0 and n < 31)` if the confidence value is equal to or less than n x 0,1 metre, and more than (n-1) x 0,1 metre, + * - `31` if the confidence value is out of range i.e. greater than 3,0 m, + * - `32` if the confidence value is unavailable. + * + * @unit 0,1 m + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimensionConfidence ::= INTEGER { + outOfRange (31), + unavailable (32) +} (1..32) + +/** + * This DE indicates the face or part of a face of a solid object. + * + * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: + * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object, + * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object, + * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. + * + * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. + * + * @category: Basic information + * @revision: V2.1.1 +*/ +ObjectFace ::= ENUMERATED { + front (0), + sideLeftFront (1), + sideLeftBack (2), + sideRightFront (3), + sideRightBack (4), + back (5) +} + +/** + * This DE represents a time period to describe the opening days and hours of a Point of Interest. + * (for example local commerce). + * + * @category: Basic information + * @revision: V1.3.1 + */ +OpeningDaysHours ::= UTF8String + +/** + * The DE represents an ordinal number that indicates the position of an element in a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +OrdinalNumber1B ::= INTEGER(0..255) + + +/** + * The DE represents an ordinal number that indicates the position of an element in a set. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +OrdinalNumber3b ::= INTEGER(1..8) + +/** + * This DE indicates the subclass of a detected object for @ref ObjectClass "otherSubclass". + * + * The value shall be set to: + * - `0` - unknown - if the subclass is unknown. + * - `1` - singleObject - if the object is a single object. + * - `2` - multipleObjects - if the object is a group of multiple objects. + * - `3` - bulkMaterial - if the object is a bulk material. + * + * @category: Sensing information + * @revision: Created in V2.1.1 + */ +OtherSubClass ::= INTEGER { + unknown (0), + singleObject (1), + multipleObjects (2), + bulkMaterial (3) +} (0..255) + +/** + * This DE represents the recorded or estimated travel time between a position and a predefined reference position. + * + * @unit 0,01 second + * @category: GeoReference information + * @revision: V1.3.1 + */ +PathDeltaTime ::= INTEGER (1..65535, ...) + +/** + * This DE denotes the ability of an ITS-S to provide up-to-date information. + * A performance class value is used to describe age of data. The exact values are out of scope of the present document. + * + * The value shall be set to: + * - `0` if the performance class is unknown, + * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.5], + * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.5], + * - Values in the range `3 to 7` are reserved for future use. + * + * @category: Vehicle information + * @revision: Editorial update in V2.1.1 + */ +PerformanceClass ::= INTEGER { + unavailable (0), + performanceClassA (1), + performanceClassB (2) +} (0..7) + +/** + * This DE represents a telephone number + * + * @category: Basic information + * @revision: V1.3.1 + */ +PhoneNumber ::= NumericString (SIZE(1..16)) + +/** + * This DE indicates the perpendicular distance from the centre of mass of an empty load vehicle to the front line of + * the vehicle bounding box of the empty load vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 metre and 6,2 metres, + * - `62` for values equal to or higher than `6.1 metres`, + * - `63` if the information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * + * @unit 0,1 metre + * @category Vehicle information + * @revision: description revised in V2.1.1 (the meaning of 62 has changed slightly) + */ +PosCentMass ::= INTEGER { + tenCentimetres (1), + outOfRange (62), + unavailable (63) +} (1..63) + +/** + * This DE indicates the positioning technology being used to estimate a geographical position. + * + * The value shall be set to: + * - 0 `noPositioningSolution` - no positioning solution used, + * - 1 `sGNSS` - Global Navigation Satellite System used, + * - 2 `dGNSS` - Differential GNSS used, + * - 3 `sGNSSplusDR` - GNSS and dead reckoning used, + * - 4 `dGNSSplusDR` - Differential GNSS and dead reckoning used, + * - 5 `dR` - dead reckoning used. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +PositioningSolutionType ::= ENUMERATED { + noPositioningSolution (0), + sGNSS (1), + dGNSS (2), + sGNSSplusDR (3), + dGNSSplusDR (4), + dR (5), + ... +} + +/** + * This DE indicates whether a passenger seat is occupied or whether the occupation status is detectable or not. + * + * The number of row in vehicle seats layout is counted in rows from the driver row backwards from front to the rear + * of the vehicle. + * The left side seat of a row refers to the left hand side seen from vehicle rear to front. + * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, + * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. + * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, + * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. + * + * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. + * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. + * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. + * Otherwise, the value of seat occupation bit shall be set according to the following conditions: + * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. + * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row + * shall be set to `1`. + * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. + * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row + * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PositionOfOccupants ::= BIT STRING { + row1LeftOccupied (0), + row1RightOccupied (1), + row1MidOccupied (2), + row1NotDetectable (3), + row1NotPresent (4), + row2LeftOccupied (5), + row2RightOccupied (6), + row2MidOccupied (7), + row2NotDetectable (8), + row2NotPresent (9), + row3LeftOccupied (10), + row3RightOccupied (11), + row3MidOccupied (12), + row3NotDetectable (13), + row3NotPresent (14), + row4LeftOccupied (15), + row4RightOccupied (16), + row4MidOccupied (17), + row4NotDetectable (18), + row4NotPresent (19) +} (SIZE(20)) + +/** + * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 0,1 metre. + * + * The value shall be set to: + * - `n (n > 0 and n < 19)` for any aplicable value between 0,1 metre and 1,9 metres, + * - `19` for values equal to or higher than 1.8 metres, + * - `20` if the information is unavailable. + * + * @category: Vehicle information + * @unit 0,1 metre + * @revision: description revised in V2.1.1 (the meaning of 19 has changed slightly) + */ +PosFrontAx ::= INTEGER { + outOfRange (19), + unavailable(20) +} (1..20) + +/** + * This DE represents the distance from the centre of vehicle front bumper to the right or left longitudinal carrier of vehicle. + * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 metre and 1,26 metres, + * - `126` for values equal to or higher than 1.25 metres, + * - `127` if the information is unavailable. + * + * @unit 0,01 metre + * @category Vehicle information + * @revision: description revised in V2.1.1 (the meaning of 126 has changed slightly) + */ +PosLonCarr ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the perpendicular inter-distance of neighbouring pillar axis of vehicle starting from the + * middle point of the front line of the vehicle bounding box. + * + * The value shall be set to: + * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 metre and 2,9 metres, + * - `29` for values equal to or greater than 2.8 metres, + * - `30` if the information is unavailable. + * + * @unit 0,1 metre + * @category Vehicle information + * @revision: description revised in V2.1.1 (the meaning of 29 has changed slightly) + */ +PosPillar ::= INTEGER { + outOfRange (29), + unavailable (30) +} (1..30) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . + * + * The value shall be set to: + * - 0 `unavailable` - in case further detailed information on post crash event is unavailable, + * - 1 `accidentWithoutECallTriggered` - in case no eCall has been triggered for an accident, + * - 2 `accidentWithECallManuallyTriggered` - in case eCall has been manually triggered and transmitted to eCall back end, + * - 3 `accidentWithECallAutomaticallyTriggered` - in case eCall has been automatically triggered and transmitted to eCall back end, + * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` - in case eCall has been triggered but cellular network is not accessible from triggering vehicle. + * - 5-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +PostCrashSubCauseCode ::= INTEGER { + unavailable (0), + accidentWithoutECallTriggered (1), + accidentWithECallManuallyTriggered (2), + accidentWithECallAutomaticallyTriggered (3), + accidentWithECallTriggeredWithoutAccessToCellularNetwork (4) +} (0..255) + +/** +* This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square metre. +* +* The following values are specified: +* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0,1 mm/h and greater than (n-1) x 0,1 mm/h, +* - `2000` if the amount of rain falling is greater than 199.9 mm/h, +* - `2001` if the information is not available. +* +* @unit: 0,1 mm/h +* @category: Basic Information +* @revision: created in V2.1.1 +*/ +PrecipitationIntensity ::= INTEGER { + outOfRange (2000), + unavailable (2001) +} (1..2001) + +/** + * This DE represents the indentifier of a protected communication zone. + * + * + * @category: Infrastructure information, Communication information + * @revision: Revision in V2.1.1 (changed name from ProtectedZoneID to ProtectedZoneId) + */ +ProtectedZoneId ::= INTEGER (0.. 134217727) + +/** + * This DE represents the radius of a protected communication zone. + * + * + * @unit: metre + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedZoneRadius ::= INTEGER (1..255,...) + +/** + * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do + * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). + * + * The protected zone type is defined in ETSI TS 102 792 [i.14]. + * + * + * @category: Communication information + * @revision: V1.3.1 + */ +ProtectedZoneType::= ENUMERATED { + permanentCenDsrcTolling (0), + ..., + temporaryCenDsrcTolling (1) +} + +/** + * This DE is used for various tasks in the public transportation environment, especially for controlling traffic + * signal systems to prioritize and speed up public transportation in urban area (e.g. intersection "_bottlenecks_"). + * The traffic lights may be controlled by an approaching bus or tram automatically. This permits "_In Time_" activation + * of the green phase, will enable the individual traffic to clear a potential traffic jam in advance. Thereby the + * approaching bus or tram may pass an intersection with activated green light without slowing down the speed due to + * traffic congestion. Other usage of the DE is the provision of information like the public transport line number + * or the schedule delay of a public transport vehicle. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivationData ::= OCTET STRING (SIZE(1..20)) + +/** + * This DE indicates a certain coding type of the PtActivationData data. + * + * The folowing value are specified: + * - `0` undefinedCodingType : undefined coding type, + * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.7], + * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.7]. + * - values 3 to 255 : reserved for alternative and future use. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivationType ::= INTEGER { + undefinedCodingType (0), + r09-16CodingType (1), + vdv-50149CodingType (2) +} (0..255) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . + * + * The value shall be set to: + * - 0 `unavailable` - in case no further detailed information on the railway level crossing status is available, + * - 1 `doNotCrossAbnormalSituation` - in case when something wrong is detected by equation or sensors of the railway level crossing, + including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), + * - 2 `closed` - in case the crossing is closed (barriers down), + * - 3 `unguarded` - in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), + * - 4 `nominal` - in case the barriers are up and lights are off. + * - 5-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RailwayLevelCrossingSubCauseCode ::= INTEGER { + unavailable (0), + doNotCrossAbnormalSituation (1), + closed (2), + unguarded (3), + nominal (4) +} (0..255) + +/** + * This DE describes a distance of relevance for information indicated in a message. + * + * The value shall be set to: + * - 0 `lessThan50m` - for distances below 50 m, + * - 1 `lessThan100m` - for distances below 100 m, + * - 2 `lessThan200m` - for distances below 200 m, + * - 3 `lessThan500m` - for distances below 300 m, + * - 4 `lessThan1000m` - for distances below 1 000 m, + * - 5 `lessThan5km` - for distances below 5 000 m, + * - 6 `lessThan10km` - for distances below 10 000 m, + * - 7 `over10km` - for distances over 10 000 m. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref StandardLength3b instead. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +RelevanceDistance ::= ENUMERATED { + lessThan50m(0), + lessThan100m(1), + lessThan200m(2), + lessThan500m(3), + lessThan1000m(4), + lessThan5km(5), + lessThan10km(6), + over10km(7) +} + +/** + * This DE indicates a traffic direction that is relevant to information indicated in a message. + * + * The value shall be set to: + * - 0 `allTrafficDirections` - for all traffic directions, + * - 1 `upstreamTraffic` - for upstream traffic, + * - 2 `downstreamTraffic` - for downstream traffic, + * - 3 `oppositeTraffic` - for traffic in the opposite direction. + * + * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * + * @note: Upstream traffic corresponds to the incoming traffic towards the event position, + * and downstream traffic to the departing traffic away from the event position. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrafficDirection instead. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +RelevanceTrafficDirection ::= ENUMERATED { + allTrafficDirections(0), + upstreamTraffic(1), + downstreamTraffic(2), + oppositeTraffic(3) +} + +/** + * This DE indicates whether an ITS message is transmitted as request from ITS-S or a response transmitted from + * ITS-S after receiving request from other ITS-Ss. + * + * The value shall be set to: + * - 0 `request` - for a request message, + * - 1 `response` - for a response message. + * + * @category Communication information + * @revision: Editorial update in V2.1.1 + */ +RequestResponseIndication ::= ENUMERATED { + request (0), + response (1) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` + * + * The value shall be set to: + * - 0 `unavailable` - in case further detailed information on rescue and recovery work is unavailable, + * - 1 `emergencyVehicles` - in case rescue work is ongoing by emergency vehicles, + * - 2 `rescueHelicopterLanding` - in case rescue helicopter is landing, + * - 3 `policeActivityOngoing` - in case police activity is ongoing, + * - 4 `medicalEmergencyOngoing` - in case medical emergency recovery is ongoing, + * - 5 `childAbductionInProgress`- in case a child kidnapping alarm is activated and rescue work is ongoing, + * - 6-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { + unavailable (0), + emergencyVehicles (1), + rescueHelicopterLanding (2), + policeActivityOngoing (3), + medicalEmergencyOngoing (4), + childAbductionInProgress (5) +} (0..255) + + +/** + * This DE indicates the type of a road segment. + * + * The value shall be set to: + * - 0 `urban-NoStructuralSeparationToOppositeLanes` - for an urban road with no structural separation between lanes carrying traffic in opposite directions, + * - 1 `urban-WithStructuralSeparationToOppositeLanes` - for an urban road with structural separation between lanes carrying traffic in opposite directions, + * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` - for an non urban road with no structural separation between lanes carrying traffic in opposite directions, + * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` - for an non urban road with structural separation between lanes carrying traffic in opposite directions. + * + * @category: Road Topology Information + * @revision: Editorial update in V2.1.1 + */ +RoadType ::= ENUMERATED { + urban-NoStructuralSeparationToOppositeLanes (0), + urban-WithStructuralSeparationToOppositeLanes (1), + nonUrban-NoStructuralSeparationToOppositeLanes (2), + nonUrban-WithStructuralSeparationToOppositeLanes (3) +} + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. + * +The value shall be set to: + * - 0 `unavailable` - in case further detailed information on roadworks is unavailable, + * - 1 `majorRoadworks` - in case a major roadworks is ongoing, + * - 2 `roadMarkingWork` - in case a road marking work is ongoing, + * - 3 `slowMovingRoadMaintenance` - in case slow moving road maintenance work is ongoing, + * - 4 `shortTermStationaryRoadworks`- in case a short term stationary roadwork is ongoing, + * - 5 `streetCleaning` - in case a vehicle street cleaning work is ongoing, + * - 6 `winterService` - in case winter service work is ongoing. + * - 7-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +RoadworksSubCauseCode ::= INTEGER { + unavailable (0), + majorRoadworks (1), + roadMarkingWork (2), + slowMovingRoadMaintenance (3), + shortTermStationaryRoadworks (4), + streetCleaning (5), + winterService (6) +} (0..255) + +/** + * This DE indicates if a distance is safe. + * + * The value shall be set to: + * - `FALSE` if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} is simultaneously satisfied with confidence level of 90 % or more, + * - `TRUE` otherwise. + * + * @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). + * + * @category: Traffic information, Kinematic information + * @revision: created in V2.1.1 +*/ +SafeDistanceIndicator::= BOOLEAN + +/** + * This DE indicates the horizontal position confidence value which represents the estimated absolute position accuracy, in one of the axis direction as defined in a shape of ellipse with a + * confidence level of 95 %. + * + * The value shall be set to: + * - `n (n > 0 and n < 4 094)` if the accuracy is equal to or less than n * 0,01 metre, + * - `4 094` if the accuracy is out of range, i.e. greater than 4,093 m, + * - `4 095` if the accuracy information is unavailable. + * + * The value 0 shall not be used. + * + * @note: The fact that a position coordinate value is received with confidence value set to 'unavailable(4095)'. + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the position coordinate value may be valid and used by the application. + * If a position coordinate value is received and its confidence value is set to 'outOfRange(4094)', it means that + * the position coordinate value is not valid and therefore cannot be trusted. Such value is not useful + * for the application. + + * @unit 0,01 metre + * @category: GeoReference Information + * @revision: Description revised in V2.1.1 + */ +SemiAxisLength ::= INTEGER{ + doNotUse (0), + outOfRange (4094), + unavailable (4095) +} (0..4095) + +/** + * This DE indicates the type of sensor. + * + * The value shall be set to: + * - `0` undefined - in case the sensor type is undefined. + * - `1` radar - in case the sensor is a radar, + * - `2` lidar - in case the sensor is a lidar, + * - `3` monovideo - in case the sensor is mono video, + * - `4` stereovision - in case the sensor is stereo vision, + * - `5` nightvision - in case the sensor is night vision, + * - `6` ultrasonic - in case the sensor is ultrasonic, + * - `7` pmd - in case the sensor is photonic mixing device, + * - `8` inductionLoop - in case the sensor is an induction loop, + * - `9` sphericalCamera - in case the sensor is a spherical camera, + * - `10` uwb - in case the sensor is ultra wide band, + * - `11` acoustic - in case the sensor is acoustic, + * - `12` localAggregation - in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion, + * - `13` itsAggregation - in case the information is provided by a system that aggregates information from other received ITS messages. + * - 14-31 - are reserved for future usage. + * + * @category: Sensing Information + * @revision: created in V2.1.1 +*/ +SensorType ::= INTEGER { + undefined (0), + radar (1), + lidar (2), + monovideo (3), + stereovision (4), + nightvision (5), + ultrasonic (6), + pmd (7), + inductionLoop (8), + sphericalCamera (9), + uwb (10), + acoustic (11), + localAggregation (12), + itsAggregation (13) +} (0..31) + +/** + * This DE represents a sequence number. + * + * @category: Basic information + * @revision: V1.3.1 + */ +SequenceNumber ::= INTEGER (0..65535) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. + * + * The value shall be set to: + * - 0 `unavailable` - in case further detailed information on signal violation event is unavailable, + * - 1 `stopSignViolation` - in case a stop sign violation is detected, + * - 2 `trafficLightViolation` - in case a traffic light violation is detected, + * - 3 `turningRegulationViolation`- in case a turning regulation violation is detected. + * - 4-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +SignalViolationSubCauseCode ::= INTEGER { + unavailable (0), + stopSignViolation (1), + trafficLightViolation (2), + turningRegulationViolation (3) +} (0..255) + +/** + * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". + * + * The value shall be set to: + * - 0 `unavailable` - in case further detailed information on slow vehicle driving event is + * unavailable, + * - 1 `maintenanceVehicle` - in case of a slow driving maintenance vehicle on the road, + * - 2 `vehiclesSlowingToLookAtAccident`- in case vehicle is temporally slowing down to look at accident, spot, etc., + * - 3 `abnormalLoad` - in case an abnormal loaded vehicle is driving slowly on the road, + * - 4 `abnormalWideLoad` - in case an abnormal wide load vehicle is driving slowly on the road, + * - 5 `convoy` - in case of slow driving convoy on the road, + * - 6 `snowplough` - in case of slow driving snow plough on the road, + * - 7 `deicing` - in case of slow driving de-icing vehicle on the road, + * - 8 `saltingVehicles` - in case of slow driving salting vehicle on the road. + * - 9-255 - are reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +SlowVehicleSubCauseCode ::= INTEGER { + unavailable (0), + maintenanceVehicle (1), + vehiclesSlowingToLookAtAccident (2), + abnormalLoad (3), + abnormalWideLoad (4), + convoy (5), + snowplough (6), + deicing (7), + saltingVehicles (8) +} (0..255) + +/** + * The DE indicates if a vehicle is carrying goods in the special transport conditions. + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `heavyLoad` - the vehicle is carrying goods with heavy load, + * - 1 `excessWidth` - the vehicle is carrying goods in excess of width, + * - 2 `excessLength` - the vehicle is carrying goods in excess of length, + * - 3 `excessHeight` - the vehicle is carrying goods in excess of height. + * + * Otherwise, the corresponding bit shall be set to 0. + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +SpecialTransportType ::= BIT STRING { + heavyLoad (0), + excessWidth (1), + excessLength (2), + excessHeight (3) +} (SIZE(4)) + +/** + * This DE indicates the speed confidence value which represents the estimated absolute accuracy of a speed value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n * 0,01 m/s. + * - `126` if the confidence value is out of range, i.e. greater than 1,25 m/s, + * - `127` if the confidence value information is not available. + * + * @note: The fact that a speed value is received with confidence value set to `unavailable(127)` can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the speed value may be valid and used by the application. + * + * @note: If a speed value is received and its confidence value is set to `outOfRange(126)`, it means that the speed value is not valid + * and therefore cannot be trusted. Such is not useful for the application. + * + * @unit: 0,01 m/s + * @category: Vehicle information + * @revision: Description revised in V2.1.1 + */ +SpeedConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents a speed limitation applied to a geographical position, a road section or a geographical region. + * + * @unit: km/h + * @category: Infrastructure information, Traffic information + * @revision: V1.3.1 + */ +SpeedLimit ::= INTEGER (1..255) + +/** + * This DE represents a speed value, i.e. the magnitude of the velocity-vector. + * + * The value shall be set to: + * - `0` in a standstill situation. + * - `n (n > 0 and n < 16 382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s, + * - `16 382` for speed values greater than 163,81 m/s, + * - `16 383` if the speed accuracy information is not available. + * + * @note: the definition of “standstill” is out of scope of this document. + * + * @unit: 0,01 m/s + * @category: Kinematic information + * @revision: Description revised in V2.1.1 (the meaning of 16382 has changed slightly) +*/ +SpeedValue ::= INTEGER { + standstill (0), + outOfRange (16382), + unavailable (16383) +} (0..16383) + +/** + * This DE represents the value of a velocity component in a defined coordinate system. + * + * The value shall be set to: + * - `-16 383` if the velocity is equal to or smaller than -163,83 m/s, + * - `n (n > -16 383 and n < 16 382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s, + * - `16 382` for velocity values equal to or greater than 163,81 m/s, + * - `16 383` if the velocity information is not available. + * + * @unit: 0,01 m/s + * @category: Kinematic information + * @revision: Created in V2.1.1 +*/ +VelocityComponentValue ::= INTEGER { + negativeOutOfRange (-16383), + positiveOutOfRange (16382), + unavailable (16383) +} (-16383..16383) + + +/** + * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. + * + * The value shall be set to: + * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable", + * - `n (n > 0 and n < 50)` to indicate the actual stability level, + * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability", + * - the values between 51 and 62 are reserved for future use, + * - `63`: this value indicates that the information is unavailable. + * + * @unit: 2% + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +StabilityLossProbability ::= INTEGER { + stable (0), + totalLossOfStability (50), + unavailable (63) +} (0..63) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object or shape. + * + * @unit: 0,1 metre + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength12b::= INTEGER (0..4095) + +/** + * The DE represents length as a measure of distance between points. + * + * The value shall be set to: + * - 0 `lessThan50m` - for distances below 50 m, + * - 1 `lessThan100m` - for distances below 100 m, + * - 2 `lessThan200m` - for distances below 200 m, + * - 3 `lessThan500m` - for distances below 300 m, + * - 4 `lessThan1000m` - for distances below 1 000 m, + * - 5 `lessThan5km` - for distances below 5 000 m, + * - 6 `lessThan10km` - for distances below 10 000 m, + * - 7 `over10km` - for distances over 10 000 m. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 from RelevanceDistance + */ +StandardLength3b ::= ENUMERATED { + lessThan50m (0), + lessThan100m (1), + lessThan200m (2), + lessThan500m (3), + lessThan1000m (4), + lessThan5km (5), + lessThan10km (6), + over10km (7) +} + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0,1 metre + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength9b::= INTEGER (0..511) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0,1 metre + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength1B::= INTEGER (0..255) + +/** + * The DE represents length as a measure of distance between points or as a dimension of an object. + * + * @unit: 0,1 metre + * @category: Basic information + * @revision: Created in V2.1.1 + */ +StandardLength2B::= INTEGER (0..65535) + +/** + * This DE indicates the duration in minutes since which something is stationary. + * + * The value shall be set to: + * - 0 `lessThan1Minute` - for being stationary since less than 1 minute, + * - 1 `lessThan2Minutes` - for being stationary since less than 2 minute and for equal to or more than 1 minute, + * - 2 `lessThan15Minutes` - for being stationary since less than 15 minutes and for equal to or more than 1 minute, + * - 3 `equalOrGreater15Minutes` - for being stationary since equal to or more than 15 minutes. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +StationarySince ::= ENUMERATED { + lessThan1Minute (0), + lessThan2Minutes (1), + lessThan15Minutes (2), + equalOrGreater15Minutes (3) +} + +/** + * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". + * + * The value shall be set to: + * - 0 `unavailable` - in case further detailed information on stationary vehicle is unavailable, + * - 1 `humanProblem` - in case stationary vehicle is due to health problem of driver or passenger, + * - 2 `vehicleBreakdown` - in case stationary vehicle is due to vehicle break down, + * - 3 `postCrash` - in case stationary vehicle is caused by collision, + * - 4 `publicTransportStop` - in case public transport vehicle is stationary at bus stop, + * - 5 `carryingDangerousGoods`- in case the stationary vehicle is carrying dangerous goods, + * - 6 `vehicleOnFire` - in case of vehicle on fire. + * - 7-255 reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +StationaryVehicleSubCauseCode ::= INTEGER { + unavailable (0), + humanProblem (1), + vehicleBreakdown (2), + postCrash (3), + publicTransportStop (4), + carryingDangerousGoods (5), + vehicleOnFire (6) +} (0..255) + +/** + * This DE represents the identifier of an ITS-S. + * The ITS-S ID may be a pseudonym. It may change over space and/or over time. + * + * @category: Basic information + * @revision: Created in V2.1.1 based on @ref StationID + */ +StationId ::= INTEGER(0..4294967295) + +/** + * This DE represents the identifier of an ITS-S. + * The ITS-S ID may be a pseudonym. It may change over space and/or over time. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref StationId instead. + * @category: Basic information + * @revision: V1.3.1 + */ +StationID ::= INTEGER(0..4294967295) + +/** + * This DE represents the type of technical context the ITS-S is integrated in. + * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. + * + * The value shall be set to: + * - 0 `unknown` - information about the ITS-S context is not provided, + * - 1 `pedestrian` - ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1), + * - 2 `cyclist` - ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), + * - 3 `moped` - ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + class L1, L2 (VRU Profile 3), + * - 4 `motorcycles` - ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + class L3, L4, L5, L6, L7 (VRU Profile 3), + * - 5 `passengerCar` - ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, + * - 6 `bus` - ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, + * - 7 `lightTruck` - ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, + * - 8 `heavyTruck` - ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, + * - 9 `trailer` - ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in + UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, + * - 10 `specialVehicles` - ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram` - ITS-S mounted on a vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle` - ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2), + * - 13 `animal` - ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), + * - 14 - reserved for future usage, + * - 15 `roadSideUnit` - ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 16-255 - are reserved for future usage. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrafficParticipantType instead. + * @category: Communication information. + * @revision: revised in V2.1.1 (named values 12 and 13 added and note to value 9 deleted) + */ +StationType ::= INTEGER { + unknown (0), + pedestrian (1), + cyclist (2), + moped (3), + motorcycle (4), + passengerCar (5), + bus (6), + lightTruck (7), + heavyTruck (8), + trailer (9), + specialVehicle (10), + tram (11), + lightVruVehicle (12), + animal (13), + roadSideUnit (15) +} (0..255) + +/** + * This DE indicates the steering wheel angle confidence value which represents the estimated absolute accuracy for a steering wheel angle value with a confidence level of 95 %. + * + * The value shall be set to: + * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n x 1,5 degrees, + * - `126` if the confidence value is out of range, i.e. greater than 187,5 degrees, + * - `127` if the confidence value is not available. + * + * @note: The fact that a steering wheel angle value is received with confidence value set to 'unavailable(127)' + * can be caused by several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the steering wheel angle value may be valid and used by the application. + * + * If a steering wheel angle value is received and its confidence value is set to 'outOfRange(126)', + * it means that the steering wheel angle value is not valid and therefore cannot be trusted. + * Such value is not useful for the application. + * + * @unit: 1,5 degree + * @category: Vehicle Information + * @revision: Description revised in V2.1.1 +*/ +SteeringWheelAngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE represents the steering wheel angle of the vehicle at certain point in time. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. + * + * The value shall be set to: + * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right, + * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, + turning clockwise (i.e. to the right), + * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + turning counter-clockwise (i.e. to the left), + * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left, + * - `512` if information is not available. + * + * @unit: 1,5 degree + * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). + */ +SteeringWheelAngleValue ::= INTEGER { + negativeOutOfRange (-511), + positiveOutOfRange (511), + unavailable (512) +} (-511..512) + +/** + * This DE indicates the generic sub cause of a detected event. + * + * @note: The sub cause code value assignment varies based on value of @ref CauseCode. + * + * @category: Traffic information + * @revision: Description revised in V2.1.1 (this is the generic sub cause type) + */ +SubCauseCodeType ::= INTEGER (0..255) + +/** + * This DE indicates a temperature value. + + * The value shall be set to: + * - `-60` for temperature equal to or less than -60 degrees C, + * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C, + * - `67` for temperature equal to or greater than 67 degrees C. + * + * @unit: degrees Celsius + * @category: Basic information + * @revision: Editorial update in V2.1.1 + */ +Temperature ::= INTEGER { + equalOrSmallerThanMinus60Deg (-60), + equalOrGreaterThan67Deg(67)} (-60..67) + +/** + * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. + * The ITS epoch is `00:00:00.000 UTC, 1 January 2004`. + * "Elapsed" means that the true number of milliseconds is continuously counted without interruption, + * i.e. it is not altered by leap seconds, which occur in UTC. + * + * @note: International Atomic Time (TAI) is the time reference coordinate on the basis of the readings of atomic clocks, + * operated in accordance with the definition of the second, the unit of time of the International System of Units. + * TAI is a continuous time scale. UTC has discontinuities, as it is occasionally adjusted by leap seconds. + * As of 1 January, 2022, TimestampIts is 5 seconds ahead of UTC, because since the ITS epoch on 1 January 2004 00:00:00.000 UTC, + * further 5 leap seconds have been inserted in UTC. + * + * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, + * which includes one leap second insertion since the ITS epoch. + * @unit: 0,001 s + * @category: Basic information + * @revision: Description revised in in V2.1.1 + */ +TimestampIts ::= INTEGER (0..4398046511103) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. + * + * The value shall be set to: + * - 0 `unavailable` - in case further detailed information on traffic jam is unavailable, + * - 1 `increasedVolumeOfTraffic` - in case detected jam volume is increased, + * - 2 `trafficJamSlowlyIncreasing` - in case detected traffic jam volume is increasing slowly, + * - 3 `trafficJamIncreasing` - in case traffic jam volume is increasing, + * - 4 `trafficJamStronglyIncreasing`- in case traffic jam volume is strongly increasing, + * - 5 `trafficStationary` - in case traffic is stationary, + * - 6 `trafficJamSlightlyDecreasing`- in case traffic jam volume is decreasing slowly, + * - 7 `trafficJamDecreasing` - in case traffic jam volume is decreasing, + * - 8 `trafficJamStronglyDecreasing`- in case traffic jam volume is decreasing rapidly, + * - 9-255: reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +TrafficConditionSubCauseCode ::= INTEGER { + unavailable (0), + increasedVolumeOfTraffic (1), + trafficJamSlowlyIncreasing (2), + trafficJamIncreasing (3), + trafficJamStronglyIncreasing (4), + trafficStationary (5), + trafficJamSlightlyDecreasing (6), + trafficJamDecreasing (7), + trafficJamStronglyDecreasing (8) +} (0..255) + +/** + * This DE indicates a traffic direction that is relevant to information indicated in a message. + * + * The value shall be set to: + * - 0 `allTrafficDirections` - for all traffic directions, + * - 1 `upstreamTraffic` - for upstream traffic, + * - 2 `downstreamTraffic` - for downstream traffic, + * - 3 `oppositeTraffic` - for traffic in the opposite direction. + * + * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * + * @note: Upstream traffic corresponds to the incoming traffic towards the event position, + * and downstream traffic to the departing traffic away from the event position. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 from RelevanceTrafficDirection + */ +TrafficDirection ::= ENUMERATED { + allTrafficDirections (0), + upstreamTraffic (1), + downstreamTraffic (2), + oppositeTraffic (3) +} + +/** + * This DE represents the type of a traffic participant. + * + * The value shall be set to: + * - 0 `unknown` - information about traffic participant is not provided, + * - 1 `pedestrian` - human being not using a mechanical device for their trip (VRU profile 1), + * - 2 `cyclist` - non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), + * - 3 `moped` - light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L1, L2 (VRU Profile 3), + * - 4 `motorcycles` - motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L3, L4, L5, L6, L7 (VRU Profile 3), + * - 5 `passengerCar` - small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, + * - 6 `bus` - large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, + * - 7 `lightTruck` - light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, + * - 8 `heavyTruck` - Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, + * - 9 `trailer` - unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, + * - 10 `specialVehicles` - vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 `tram` - vehicle which runs on tracks along public streets, + * - 12 `lightVruVehicle` - human being traveling on light vehicle, incl. possible use of roller skates or skateboards (VRU profile 2), + * - 13 `animal` - animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), + * - 14 `agricultural` - agricultural and forestry vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class T, + * - 15 `roadSideUnit` - infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), + * - 16-255 - are reserved for future usage. + * + * @category: Communication information. + * @revision: Created in V2.1.1 based on StationType + */ +TrafficParticipantType ::= INTEGER { + unknown (0), + pedestrian (1), + cyclist (2), + moped (3), + motorcycle (4), + passengerCar (5), + bus (6), + lightTruck (7), + heavyTruck (8), + trailer (9), + specialVehicle (10), + tram (11), + lightVruVehicle (12), + animal (13), + agricultural (14), + roadSideUnit (15) +} (0..255) + +/** + * This DE indicates traffic rules that apply to vehicles at a certain position. + * + * The value shall be set to: + * - `0` - if overtaking is prohibited for all vehicles, + * - `1` - if overtaking is prohibited for trucks, + * - `2` - if vehicles should pass to the right lane, + * - `3` - if vehicles should pass to the left lane. + * + * @category: Infrastructure information, Traffic information + * @revision: Editorial update in V2.1.1 + */ +TrafficRule ::= ENUMERATED { + noPassing (0), + noPassingForTrucks (1), + passToRight (2), + passToLeft (3), + ...} + +/** + * This DE provides information about the presence of a trailer. + * + * The value shall be set to: + * - 0 `noTrailerPresent` - to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. + * - 1 `trailerPresentWithKnownLength` - to indicate that a trailer has been detected as present and the length is included in the vehicle length value. + * - 2 `trailerPresentWithUnknownLength` - to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. + * - 3 `trailerPresenceIsUnknown` - to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. + * - 4 `unavailable` - to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * nor the detection of trailer presence/absence is possible. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 based on VehicleLengthConfidenceIndication +*/ +TrailerPresenceInformation ::= ENUMERATED { + noTrailerPresent (0), + trailerPresentWithKnownLength (1), + trailerPresentWithUnknownLength (2), + trailerPresenceIsUnknown (3), + unavailable (4) +} + +/** + * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. + * + * The value shall be set to: + * - `n (n >= 0 and n <= 50)` to indicate the actual probability, + * - the values between 51 and 62 are reserved, + * - `63`: to indicate that the information is unavailable. + * + * @unit: 2% + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionProbability ::= INTEGER { + unavailable (63) +} (0..63) + +/** + * This DE defines the confidence level of the trajectoryInterceptionProbability. + * + * The value shall be set to: + * - `0` - to indicate confidence level less than 50 %, + * - `1` - to indicate confidence level greater than or equal to 50 % and less than 70 %, + * - `2` - to indicate confidence level greater than or equal to 70 % and less than 90 %, + * - `3` - to indicate confidence level greater than or equal to 90%. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionConfidence ::= INTEGER { + lessthan50percent (0), + between50and70Percent (1), + between70and90Percent (2), + above90Percent (3) +} (0..3) + +/** + * This DE represents the time interval between two consecutive message transmissions. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref DeltaTimeMilliSecondPos instead. + * @unit: 0,001 s + * @category: Basic information + * @revision: V1.3.1 + */ +TransmissionInterval::= INTEGER (1..10000) + +/** + * This DE provides the turning direction. + * + * The value shall be set to: + * - `left` for turning to te left. + * - `right`for turing to the right. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +TurningDirection::= ENUMERATED { + left, + right +} + +/** + * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. + * + * The value shall be set to: + * - `n (n > 0 and n < 254)` to indicate the applicable value is equal to or less than n x 0,4 metre, and greater than (n-1) x 0,4 metre, + * - `254` to indicate that the turning radius is greater than 253 x 0,4 metre = 101.2 metres, + * - `255` to indicate that the information is unavailable. + * + * For vehicle with tracker, the turning radius applies to the vehicle only. + * + * @category: Vehicle information + * @unit 0,4 metre + * @revision: Description revised V2.1.1 (the meaning of 254 has changed slightly) + */ +TurningRadius ::= INTEGER { + outOfRange (254), + unavailable (255) +} (1..255) + +/** + * This DE represents the duration of a traffic event validity. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref DeltaTimeSecond instead. + * @unit: 1 s + * @category: Basic information + * @revision: V1.3.1 +*/ +ValidityDuration::= INTEGER { + timeOfDetection(0), + oneSecondAfterDetection(1) +} (0..86400) + +/** + * This DE represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.6]. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VDS ::= IA5String (SIZE(6)) + +/** + * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. + * + * The value shall be set to: + * - 0 `unavailable` - in case further detailed information on cause of vehicle break down is unavailable, + * - 1 `lackOfFuel` - in case vehicle break down is due to lack of fuel, + * - 2 `lackOfBatteryPower` - in case vehicle break down is caused by lack of battery power, + * - 3 `engineProblem` - in case vehicle break down is caused by an engine problem, + * - 4 `transmissionProblem` - in case vehicle break down is caused by transmission problem, + * - 5 `engineCoolingProblem`- in case vehicle break down is caused by an engine cooling problem, + * - 6 `brakingSystemProblem`- in case vehicle break down is caused by a braking system problem, + * - 7 `steeringProblem` - in case vehicle break down is caused by a steering problem, + * - 8 `tyrePuncture` - in case vehicle break down is caused by tyre puncture, + * - 9 `tyrePressureProblem` - in case low tyre pressure in detected, + * - 10 `vehicleOnFire` - in case the vehicle is on fire. + * - 11-255 - are reserved for future usage. + * + * @category: Traffic information + + */ +VehicleBreakdownSubCauseCode ::= INTEGER { + unavailable (0), + lackOfFuel (1), + lackOfBatteryPower (2), + engineProblem (3), + transmissionProblem (4), + engineCoolingProblem (5), + brakingSystemProblem (6), + steeringProblem (7), + tyrePuncture (8), + tyrePressureProblem (9), + vehicleOnFire (10) +} (0..255) + +/** + * This DE represents the height of the vehicle, measured from the ground to the highest point, excluding any antennas. + * In case vehicles are equipped with adjustable ride heights, camper shells, and any other + * equipment which may result in varying height, the largest possible height shall be used. + * + * The value shall be set to: + * - `n (n >0 and n < 127)` indicates the applicable value is equal to or less than n x 0,05 metre, and greater than (n-1) x 0,05 metre, + * - `127` indicates that the vehicle width is greater than 6,3 metres, + * - `128` indicates that the information in unavailable. + * + * @unit: 0,05 metre + * @category: Vehicle information + * @revision: created in V2.1.1 +*/ +VehicleHeight ::= INTEGER { + outOfRange (126), + unavailable (127) +}(1..128) + +/** + * This DE provides information about the presence of a trailer. + * + * The value shall be set to: + * - 0 `noTrailerPresent` - to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present, + * - 1 `trailerPresentWithKnownLength` - to indicate that a trailer has been detected as present and the length is included in the vehicle length value, + * - 2 `trailerPresentWithUnknownLength` - to indicate that a trailer has been detected as present and the length is not included in the vehicle length value, + * - 3 `trailerPresenceIsUnknown` - to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible, + * - 4 `unavailable` - to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer, + * nor the detection of trailer presence/absence is possible. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrailerPresenceInformation instead. + * @category: Vehicle information + * @revision: Description revised in V2.1.1 +*/ +VehicleLengthConfidenceIndication ::= ENUMERATED { + noTrailerPresent (0), + trailerPresentWithKnownLength (1), + trailerPresentWithUnknownLength (2), + trailerPresenceIsUnknown (3), + unavailable (4) +} + +/** + * This DE represents the length of a vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, + * - `1 022` to indicate that the vehicle length is greater than 102.1 metres, + * - `1 023` to indicate that the information in unavailable. + * + * + * @unit: 0,1 metre + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 1 022 has changed slightly). + */ +VehicleLengthValue ::= INTEGER { + outOfRange(1022), + unavailable(1023) +} (1..1023) + +/** + * This DE represents the mass of an empty loaded vehicle. + * + * The value shall be set to: + * - `n (n > 0 and n < 1023)` to indicate that the applicable value is equal to or less than n x 10^5 gramm, and greater than (n-1) x 10^5 gramm, + * - `1 023` indicates that the vehicle mass is greater than 102 200 000 g, + * - `1 024` indicates the vehicle mass information is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * + * @unit: 10^5 gramm + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 1 023 has changed slightly). +*/ +VehicleMass ::= INTEGER { + outOfRange (1023), + unavailable(1024) +} (1..1024) + +/** + * This DE indicates the role played by a vehicle at a point in time. + * + * The value shall be set to: + * - 0 `default` - to indicate the default vehicle role as indicated by the vehicle type, + * - 1 `publicTransport` - to indicate that the vehicle is used to operate public transport service, + * - 2 `specialTransport` - to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, + * - 3 `dangerousGoods` - to indicate that the vehicle is used for dangerous goods transportation, + * - 4 `roadWork` - to indicate that the vehicle is used to realize roadwork or road maintenance mission, + * - 5 `rescue` - to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, + * - 6 `emergency` - to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, + * - 7 `safetyCar` - to indicate that the vehicle is used for public safety, e.g. patrol, + * - 8 `agriculture` - to indicate that the vehicle is used for agriculture, e.g. farm tractor, + * - 9 `commercial` - to indicate that the vehicle is used for transportation of commercial goods, + * - 10 `military` - to indicate that the vehicle is used for military purpose, + * - 11 `roadOperator` - to indicate that the vehicle is used in road operator missions, + * - 12 `taxi` - to indicate that the vehicle is used to provide an authorized taxi service. + * - 13 `reserved` - is reserved for future usage. + * - 14 `reserved` - is reserved for future usage. + * - 15 `reserved` - is reserved for future usage. + * + * @category: Vehicle Information + * @revision: Description updated in V2.1.1 (removed reference to CEN/TS 16157-3) + */ +VehicleRole ::= ENUMERATED { + default (0), + publicTransport (1), + specialTransport(2), + dangerousGoods (3), + roadWork (4), + rescue (5), + emergency (6), + safetyCar (7), + agriculture (8), + commercial (9), + military (10), + roadOperator (11), + taxi (12), + reserved1 (13), + reserved2 (14), + reserved3 (15) +} + +/** + * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. + + * The value shall be set to: + * - `n (n >0 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, + * - `61`indicates that the vehicle width is greater than 6,0 metres, + * - `62`indicates that the information in unavailable. + * + * @unit: 0,1 metre + * @category: Vehicle information + * @revision: Description updated in V2.1.1 (the meaning of 61 has changed slightly). + */ +VehicleWidth ::= INTEGER { + outOfRange (61), + unavailable (62) +} (1..62) + +/** + * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. + * + * The value shall be set to: + * - `-160` for acceleration values equal to or less than -16 m/s2, + * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, + * - `160` for acceleration values greater than 15,9 m/s2, + * - `161` when the data is unavailable. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * + * @category: Vehicle information + * @unit: 0,1 m/s2 + * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly). + * +*/ +VerticalAccelerationValue ::= INTEGER { + negativeOutOfRange (-160), + positiveOutOfRange (160), + unavailable (161) +} (-160 .. 161) + +/** + * This DE Identifies all the VRU profile types within a cluster. + * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). + * + * The corresponding bit shall be set to 1 under the following conditions: + * - 0 `pedestrian` - indicates that the VRU cluster contains at least one pedestrian VRU, + * - 1 `bicycle` - indicates that the VRU cluster contains at least one bicycle VRU member, + * - 2 `motorcyclist`- indicates that the VRU cluster contains at least one motorcycle VRU member, + * - 3 `animal` - indicates that the VRU cluster contains at least one animal VRU member. + * + * Otherwise, the corresponding bit shall be set to 0. + * + * @category: VRU information + * @revision: Created in V2.1.1 +*/ +VruClusterProfiles ::= BIT STRING { + pedestrian (0), + bicyclist (1), + motorcyclist (2), + animal (3) +} (SIZE(4)) + +/** + * This DE represents the possible usage conditions of the VRU device. + + * - The value shall be set to: + * - 0 `unavailable` - to indicate that the usage conditions are unavailable, + * - 1 `other (1)` - to indicate that the VRU device is in a state not defined below, + * - 2 `idle (2)` - to indicate that the human is currently not interacting with the device, + * - 3 `listeningToAudio` - to indicate that any audio source other than calling is in use, + * - 4 `typing (4)` - to indicate that the human is texting or performaing any other manual input activity, + * - 5 `calling (5)` - to indicate that the VRU device is currently receiving a call, + * - 6 `playingGames (6)` - to indicate that the human is playing games, + * - 7 `reading (7)` - to indicate that the human is reading on the VRU device, + * - 8 `viewing (8)` - to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static. + * - value 9 to 255 - are reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruDeviceUsage ::= ENUMERATED { + unavailable (0), + other (1), + idle (2), + listeningToAudio (3), + typing (4), + calling (5), + playingGames (6), + reading (7), + viewing (8), + max (255) +} + +/** + * This DE represents the possible VRU environment conditions. + * + * - The value shall be set to: + * - 0 `unavailable` - to indicate that the information on the type of environment is unavailable, + * - 1 `intersectionCrossing` - to indicate that the VRU is on an intersection or crossing, + * - 2 `zebraCrossing` - to indicate that the VRU is on a zebra crossing (crosswalk), + * - 3 `sidewalk` - to indicate that the VRU is on a sidewalk, + * - 4 `onVehicleRoad` - to indicate that the VRU is on a traffic lane, + * - 5 `protectedGeographicArea`- to indicate that the VRU is in a protected area. + * - value 5 to 255 - are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruEnvironment ::= ENUMERATED { + unavailable (0), + intersectionCrossing (1), + zebraCrossing (2), + sidewalk (3), + onVehicleRoad (4), + protectedGeographicArea (5), + max (255) +} + +/** + * This DE indicates the status of the possible human control over a VRU vehicle. + * + * The value shall be set to: + * - 0 `unavailable` - to indicate that the information is unavailable, + * - 1 `braking` - to indicate that the VRU is braking, + * - 2 `hardBraking` - to indicate that the VRU is braking hard, + * - 3 `stopPedaling` - to indicate that the VRU stopped pedaling, + * - 4 `brakingAndStopPedaling` - to indicate that the VRU stopped pedaling an is braking, + * - 5 `hardBrakingAndStopPedaling` - to indicate that the VRU stopped pedaling an is braking hard, + * - 6 `noReaction` - to indicate that the VRU is not changing its behavior. + * - 7 to 255 - are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruMovementControl ::= ENUMERATED { + unavailable (0), + braking (1), + hardBraking (2), + stopPedaling (3), + brakingAndStopPedaling (4), + hardBrakingAndStopPedaling (5), + noReaction (6), + max (255) +} + +/** + * This DE indicates the profile of a pedestrian. + * + * The value shall be set to: + * - 0 `unavailable` - to indicate that the information on is unavailable, + * - 1 `ordinary-pedestrian` - to indicate a pedestrian to which no more-specific profile applies, + * - 2 `road-worker` - to indicate a pedestrian with the role of a road worker, + * - 3 `first-responder` - to indicate a pedestrian with the role of a first responder. + * - value 4 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfilePedestrian ::= ENUMERATED { + unavailable (0), + ordinary-pedestrian (1), + road-worker (2), + first-responder (3), + max (15) +} + +/** + * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. + * + * The value shall be set to: + * - 0 `unavailable` - to indicate that the information is unavailable, + * - 1 `bicyclist ` - to indicate a cycle and bicyclist, + * - 2 `wheelchair-user` - to indicate a wheelchair and its user, + * - 3 `horse-and-rider` - to indicate a horse and rider, + * - 4 `rollerskater` - to indicate a rolleskater and skater, + * - 5 `e-scooter` - to indicate an e-scooter and rider, + * - 6 `personal-transporter` - to indicate a personal-transporter and rider, + * - 7 `pedelec` - to indicate a pedelec and rider, + * - 8 `speed-pedelec` - to indicate a speed-pedelec and rider. + * - 9 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileBicyclist ::= ENUMERATED { + unavailable (0), + bicyclist (1), + wheelchair-user (2), + horse-and-rider (3), + rollerskater (4), + e-scooter (5), + personal-transporter (6), + pedelec (7), + speed-pedelec (8), + max (15) +} + +/** + * This DE indicates the profile of a motorcyclist and corresponding vehicle. + * + * The value shall be set to: + * - 0 `unavailable ` - to indicate that the information is unavailable, + * - 1 `moped` - to indicate a moped and rider, + * - 2 `motorcycle` - to indicate a motorcycle and rider, + * - 3 `motorcycle-and-sidecar-right` - to indicate a motorcycle with sidecar on the right and rider, + * - 4 `motorcycle-and-sidecar-left` - to indicate a motorcycle with sidecar on the left and rider. + * - 5 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileMotorcyclist ::= ENUMERATED { + unavailable (0), + moped (1), + motorcycle (2), + motorcycle-and-sidecar-right (3), + motorcycle-and-sidecar-left (4), + max (15) +} + +/** + * This DE indicates the profile of an animal + * + * The value shall be set to: + * - 0 `unavailable` - to indicate that the information is unavailable, + * - 1 `wild-animal` - to indicate a animal living in the wildness, + * - 2 `farm-animal` - to indicate an animal beloning to a farm, + * - 3 `service-animal` - to indicate an animal that supports a human being. + * - 4 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSubProfileAnimal ::= ENUMERATED { + unavailable (0), + wild-animal (1), + farm-animal (2), + service-animal (3), + max (15) +} + +/** + * This DE indicates the approximate size of a VRU including the VRU vehicle used. + * + * The value shall be set to: + * - 0 `unavailable` - to indicate that there is no matched size class or due to privacy reasons in profile 1, + * - 1 `low` - to indicate that the VRU size class is low depending on the VRU profile, + * - 2 `medium` - to indicate that the VRU size class is medium depending on the VRU profile, + * - 3 `high` - to indicate that the VRU size class is high depending on the VRU profile. + * - 4 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSizeClass ::= ENUMERATED { + unavailable (0), + low (1), + medium (2), + high (3), + max (15) +} + +/** + * This DE describes the status of the exterior light switches of a VRU. + * + * The value of each bit indicates the state of the switch, which commands the corresponding light. + * The bit corresponding to a specific light shall be set to 1, when the corresponding switch is turned on, either manually by the driver or VRU + * or automatically by a vehicle or VRU system: + * - 0 `unavailable` - indicates no information available, + * - 1 `backFlashLight ` - indicates the status of the back flash light, + * - 2 `helmetLight` - indicates the status of the helmet light, + * - 3 `armLight` - indicates the status of the arm light, + * - 4 `legLight` - indicates the status of the leg light, + * - 5 `wheelLight` - indicates the status of the wheel light. + * - Bits 6 to 8 - are reserved for future use. + * The bit values do not indicate if the corresponding lamps are alight or not. + * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruSpecificExteriorLights ::= BIT STRING { + unavailable (0), + backFlashLight (1), + helmetLight (2), + armLight (3), + legLight (4), + wheelLight (5) +} (SIZE(8)) + +/** + * This DE indicates the perpendicular distance between front and rear axle of the wheel base of vehicle. + * + * The value shall be set to: + * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres, + * - `127` indicates that the information is unavailable. + * + * @unit 0,1 metre + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +WheelBaseVehicle ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + +/** + * This DE indicates the angle confidence value which represents the estimated accuracy of an angle value with a default confidence level of 95 %. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `n (n >=1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, + * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, + * - `127` if the confidence value is not available. + * + * + * @unit 0,1 degrees + * @category: GeoReference Information + * @revision: Created in V2.1.1 +*/ +Wgs84AngleConfidence ::= INTEGER { + outOfRange (126), + unavailable (127) +} (1..127) + + +/** + * This DE represents an angle value in degrees described in the WGS84 reference system with respect to the WGS84 north. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. + * When the information is not available, the DE shall be set to 3 601. The value 3600 shall not be used. + * + * @unit 0,1 degrees + * @category: GeoReference Information + * @revision: Created in V2.1.1 +*/ +Wgs84AngleValue ::= INTEGER { + wgs84North (0), + wgs84East (900), + wgs84South (1800), + wgs84West (2700), + doNotUse (3600), + unavailable (3601) +} (0..3601) + +/** + * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.6]. + * + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +WMInumber ::= IA5String (SIZE(1..3)) + +/** + * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . + * + * The value shall be set to: + * - 0 `unavailable` - in case further detailed information on wrong way driving event is unavailable, + * - 1 `wrongLane` - in case vehicle is driving on a lane for which it has no authorization to use, + * - 2 `wrongDirection` - in case vehicle is driving in a direction that it is not allowed, + * - 3-255 - reserved for future usage. + * + * @category: Traffic information + * @revision: V1.3.1 + */ +WrongWayDrivingSubCauseCode ::= INTEGER { + unavailable (0), + wrongLane (1), + wrongDirection (2) +} (0..255) + +/** + * This DE indicates the yaw rate confidence value which represents the estimated accuracy for a yaw rate value with a default confidence level of 95%. + * If required, the confidence level can be defined by the corresponding standards applying this DE. + * + * The value shall be set to: + * - `0` if the confidence value is equal to or less than 0,01 degree/second, + * - `1` if the confidence value is equal to or less than 0,05 degrees/second or greater than 0,01 degree/second, + * - `2` if the confidence value is equal to or less than 0,1 degree/second or greater than 0,05 degree/second, + * - `3` if the confidence value is equal to or less than 1 degree/second or greater than 0,1 degree/second, + * - `4` if the confidence value is equal to or less than 5 degrees/second or greater than 1 degrees/second, + * - `5` if the confidence value is equal to or less than 10 degrees/second or greater than 5 degrees/second, + * - `6` if the confidence value is equal to or less than 100 degrees/second or greater than 10 degrees/second, + * - `7` if the confidence value is out of range, i.e. greater than 100 degrees/second, + * - `8` if the confidence value is unavailable. + * + * NOTE: The fact that a yaw rate value is received with confidence value set to `unavailable(8)` can be caused by + * several reasons, such as: + * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, + * - the sensor cannot calculate the accuracy due to lack of variables, or + * - there has been a vehicle bus (e.g. CAN bus) error. + * In all 3 cases above, the yaw rate value may be valid and used by the application. + * + * If a yaw rate value is received and its confidence value is set to `outOfRange(7)`, it means that the + * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. + * + * @category: Vehicle information + * @revision: Description revised in V2.1.1 + */ +YawRateConfidence ::= ENUMERATED { + degSec-000-01 (0), + degSec-000-05 (1), + degSec-000-10 (2), + degSec-001-00 (3), + degSec-005-00 (4), + degSec-010-00 (5), + degSec-100-00 (6), + outOfRange (7), + unavailable (8) +} + +/** + * This DE represents the vehicle rotation around z-axis of the coordinate system centred on the centre of mass of the empty-loaded + * vehicle. The leading sign denotes the direction of rotation. + * + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. + * + * The value shall be set to: + * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right, + * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s, + * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, + and greater than (n-1) x 0,01 degrees/s, + * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left, + * - `32 767` to indicate that the information is not available. + * + * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. + * The reading instant should be the same as for the vehicle acceleration. + * + * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * + * @unit: 0,01 degree per second. + * @category: Vehicle Information + * @revision: Desription revised in V2.1.1 (the meaning of 32766 has changed slightly). +*/ +YawRateValue ::= INTEGER { + negativeOutOfRange (-32766), + positiveOutOfRange (32766), + unavailable (32767) +} (-32766..32767) + +---------------------------------------- +-- Specification of CDD Data Frames: +---------------------------------------- + +/** + * This DF represents an acceleration vector with associated confidence value. + * + * It shall include the following components: + * + * @field polarAcceleration: the representation of the acceleration vector in a polar or cylindrical coordinate system. + * + * @field cartesianAcceleration: the representation of the acceleration vector in a cartesian coordinate system. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +Acceleration3dWithConfidence::= CHOICE { + polarAcceleration AccelerationPolarWithZ, + cartesianAcceleration AccelerationCartesian +} + +/** + * This DF represents an acceleration vector in a polar or cylindrical coordinate system. + + * It shall include the following components: + * + * @field accelerationMagnitude: magnitude of the acceleration vector projected onto the reference plane, with the associated confidence value. + * + * @field accelerationDirection: polar angle of the acceleration vector projected onto the reference plane, with the associated confidence value. + * + * @field zAcceleration: the optional z component of the acceleration vector along the reference axis of the cylindrical coordinate system, with the associated confidence value. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +AccelerationPolarWithZ::= SEQUENCE{ + accelerationMagnitude AccelerationMagnitude, + accelerationDirection CartesianAngle, + zAcceleration AccelerationComponent OPTIONAL +} + +/** + * This DF represents a acceleration vector in a cartesian coordinate system. + + * It shall include the following components: + * + * @field xAcceleration: the x component of the acceleration vector with the associated confidence value. + * + * @field yAcceleration: the y component of the acceleration vector with the associated confidence value. + * + * @field zAcceleration: the optional z component of the acceleration vector with the associated confidence value. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +AccelerationCartesian::= SEQUENCE{ + xAcceleration AccelerationComponent, + yAcceleration AccelerationComponent, + zAcceleration AccelerationComponent OPTIONAL +} + +/** + * This DF represents an acceleration component along with a confidence value. + * + * It shall include the following components: + * + * @field value: the value of the acceleration component which can be estimated as the mean of the current distribution. + * + * @field confidence: the confidence value associated to the provided value. + * + * @category: Kinematic Information + * @revision: Created in V2.1.1 + */ +AccelerationComponent ::= SEQUENCE { + value AccelerationValue, + confidence AccelerationConfidence +} + +/** + * This DF represents information associated to changes in acceleration. + * + * It shall include the following components: + * + * @field accelOrDecel: the indication of an acceleration change. + * + * @field actionDeltaTime: the period over which the acceleration change action is performed. + * + * @category: Kinematic Information + * @revision: Created in V2.1.1 + */ +AccelerationChangeIndication ::= SEQUENCE { + accelOrDecel AccelerationChange, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents the magnitude of the acceleration vector and associated confidence value. + * + * It shall include the following components: + * + * @field accelerationMagnitudeValue: the magnitude of the acceleration vector. + * + * @field accelerationConfidence: the confidence value of the magnitude value. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +AccelerationMagnitude::= SEQUENCE { + accelerationMagnitudeValue AccelerationMagnitudeValue, + accelerationConfidence AccelerationConfidence +} + +/** + * This DF represents an identifier used to describe a protocol action taken by an ITS-S. + * + * It shall include the following components: + * + * @field originatingStationId: Id of the ITS-S that takes the action. + * + * @field sequenceNumber: a sequence number. + * + * @category: Communication information + * @revision: Created in V2.1.1 based on @ref ActionID. + */ +ActionId ::= SEQUENCE { + originatingStationId StationId, + sequenceNumber SequenceNumber +} + +/** + * This DF represents an identifier used to describe a protocol action taken by an ITS-S. + * + * It shall include the following components: + * + * @field originatingStationId: Id of the ITS-S that takes the action. + * + * @field sequenceNumber: a sequence number. + * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref ActionId instead. + * @category: Communication information + * @revision: V1.3.1 + */ +ActionID ::= SEQUENCE { + originatingStationId StationID, + sequenceNumber SequenceNumber +} + +/** + * This DF shall contain a list of @ref ActionId. + + * @category: Communication Information + * @revision: Created in V2.1.1 based on ReferenceDenms from DENM Release 1 +*/ +ActionIdList::= SEQUENCE (SIZE(1..8, ...)) OF ActionId + +/** + * This DF provides the altitude and confidence level of an altitude information in a WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. + * + * It shall include the following components: + * + * @field altitudeValue: altitude of a geographical point. + * + * @field altitudeConfidence: confidence level of the altitudeValue. + * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref AltitudeWithConfidence instead. + * @category: GeoReference information + * @revision: Description revised in V2.1.1 + */ +Altitude ::= SEQUENCE { + altitudeValue AltitudeValue, + altitudeConfidence AltitudeConfidence +} + +/** + * This DE represents a general container for usage in various types of messages. + * + * It shall include the following components: + * + * @field stationType: the type of technical context in which the ITS-S that has generated the message is integrated in. + * + * @field referencePosition: the reference position of the station that has generated the message that contains the basic container. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +BasicContainer ::= SEQUENCE { + stationType TrafficParticipantType, + referencePosition ReferencePositionWithConfidence, + ... +} + +/** + * This DF represents a general Data Frame to describe an angle component along with a confidence value in a cartesian coordinate system. + * + * It shall include the following components: + * + * @field value: The angle value which can be estimated as the mean of the current distribution. + * + * @field confidence: The confidence value associated to the provided value. + * + * @category: Basic information + * @revision: Created in V2.1.1 + */ +CartesianAngle ::= SEQUENCE { + value CartesianAngleValue, + confidence AngleConfidence +} + +/** + * This DF represents an angular velocity component along with a confidence value in a cartesian coordinate system. + * + * It shall include the following components: + * + * @field value: The angular velocity component. + * + * @field confidence: The confidence value associated to the provided value. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +CartesianAngularVelocityComponent ::= SEQUENCE { + value CartesianAngularVelocityComponentValue, + confidence AngularSpeedConfidence +} + +/** + * This DF represents a general Data Frame to describe an angular acceleration component along with a confidence value in a cartesian coordinate system. + * + * It shall include the following components: + * + * @field value: The angular acceleration component value. + * + * @field confidence: The confidence value associated to the provided value. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +CartesianAngularAccelerationComponent ::= SEQUENCE { + value CartesianAngularAccelerationComponentValue, + confidence AngularAccelerationConfidence +} + +/** + * This DF represents a coordinate along with a confidence value in a cartesian reference system. + * + * It shall include the following components: + * + * @field value: the coordinate value, which can be estimated as the mean of the current distribution. + * + * @field confidence: the coordinate confidence value associated to the provided value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianCoordinateWithConfidence ::= SEQUENCE { + value CartesianCoordinateLarge, + confidence CoordinateConfidence +} + +/** + * This DF represents a position in a two- or three-dimensional cartesian coordinate system. + * + * It shall include the following components: + * + * @field xCoordinate: the X coordinate value. + * + * @field yCoordinate: the Y coordinate value. + * + * @field zCoordinate: the optional Z coordinate value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianPosition3d::=SEQUENCE{ + xCoordinate CartesianCoordinate, + yCoordinate CartesianCoordinate, + zCoordinate CartesianCoordinate OPTIONAL +} + +/** + * This DF represents a position in a two- or three-dimensional cartesian coordinate system with an associated confidence level for each coordinate. + * + * It shall include the following components: + * + * @field xCoordinate: the X coordinate value with the associated confidence level. + * + * @field yCoordinate: the Y coordinate value with the associated confidence level. + * + * @field zCoordinate: the optional Z coordinate value with the associated confidence level. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +CartesianPosition3dWithConfidence::= SEQUENCE{ + xCoordinate CartesianCoordinateWithConfidence, + yCoordinate CartesianCoordinateWithConfidence, + zCoordinate CartesianCoordinateWithConfidence OPTIONAL +} + +/** + * This DF is a representation of the cause code value of a traffic event. + * + * It shall include the following components: + * + * @field causeCode: the main cause of a detected event. + * + * @field subCauseCode: the subordinate cause of a detected event. + * + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref CauseCodeV2 instead. + * + * @category: Traffic information + * @revision: Editorial update in V2.1.1 + */ +CauseCode ::= SEQUENCE { + causeCode CauseCodeType, + subCauseCode SubCauseCodeType, + ... +} + +/** + * This DF is a representation of the cause code value and associated sub cause code value of a traffic event. + * + * @note: this DF is defined for use as part of CauseCodeV2. It is recommended to use CauseCodeV2. + * @category: Traffic information + * @revision: Created in V2.1.1 + */ +CauseCodeChoice::= CHOICE { + reserved0 SubCauseCodeType, + trafficCondition1 TrafficConditionSubCauseCode, + accident2 AccidentSubCauseCode, + roadworks3 RoadworksSubCauseCode, + reserved4 SubCauseCodeType, + impassability5 SubCauseCodeType, + adverseWeatherCondition-Adhesion6 AdverseWeatherCondition-AdhesionSubCauseCode, + aquaplaning7 SubCauseCodeType, + reserved8 SubCauseCodeType, + hazardousLocation-SurfaceCondition9 HazardousLocation-SurfaceConditionSubCauseCode, + hazardousLocation-ObstacleOnTheRoad10 HazardousLocation-ObstacleOnTheRoadSubCauseCode, + hazardousLocation-AnimalOnTheRoad11 HazardousLocation-AnimalOnTheRoadSubCauseCode, + humanPresenceOnTheRoad12 HumanPresenceOnTheRoadSubCauseCode, + reserved13 SubCauseCodeType, + wrongWayDriving14 WrongWayDrivingSubCauseCode, + rescueAndRecoveryWorkInProgress15 RescueAndRecoveryWorkInProgressSubCauseCode, + reserved16 SubCauseCodeType, + adverseWeatherCondition-ExtremeWeatherCondition17 AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode, + adverseWeatherCondition-Visibility18 AdverseWeatherCondition-VisibilitySubCauseCode, + adverseWeatherCondition-Precipitation19 AdverseWeatherCondition-PrecipitationSubCauseCode, + violence20 SubCauseCodeType, + reserved21 SubCauseCodeType, + reserved22 SubCauseCodeType, + reserved23 SubCauseCodeType, + reserved24 SubCauseCodeType, + reserved25 SubCauseCodeType, + slowVehicle26 SlowVehicleSubCauseCode, + dangerousEndOfQueue27 DangerousEndOfQueueSubCauseCode, + reserved28 SubCauseCodeType, + reserved29 SubCauseCodeType, + reserved30 SubCauseCodeType, + reserved31 SubCauseCodeType, + reserved32 SubCauseCodeType, + reserved33 SubCauseCodeType, + reserved34 SubCauseCodeType, + reserved35 SubCauseCodeType, + reserved36 SubCauseCodeType, + reserved37 SubCauseCodeType, + reserved38 SubCauseCodeType, + reserved39 SubCauseCodeType, + reserved40 SubCauseCodeType, + reserved41 SubCauseCodeType, + reserved42 SubCauseCodeType, + reserved43 SubCauseCodeType, + reserved44 SubCauseCodeType, + reserved45 SubCauseCodeType, + reserved46 SubCauseCodeType, + reserved47 SubCauseCodeType, + reserved48 SubCauseCodeType, + reserved49 SubCauseCodeType, + reserved50 SubCauseCodeType, + reserved51 SubCauseCodeType, + reserved52 SubCauseCodeType, + reserved53 SubCauseCodeType, + reserved54 SubCauseCodeType, + reserved55 SubCauseCodeType, + reserved56 SubCauseCodeType, + reserved57 SubCauseCodeType, + reserved58 SubCauseCodeType, + reserved59 SubCauseCodeType, + reserved60 SubCauseCodeType, + reserved61 SubCauseCodeType, + reserved62 SubCauseCodeType, + reserved63 SubCauseCodeType, + reserved64 SubCauseCodeType, + reserved65 SubCauseCodeType, + reserved66 SubCauseCodeType, + reserved67 SubCauseCodeType, + reserved68 SubCauseCodeType, + reserved69 SubCauseCodeType, + reserved70 SubCauseCodeType, + reserved71 SubCauseCodeType, + reserved72 SubCauseCodeType, + reserved73 SubCauseCodeType, + reserved74 SubCauseCodeType, + reserved75 SubCauseCodeType, + reserved76 SubCauseCodeType, + reserved77 SubCauseCodeType, + reserved78 SubCauseCodeType, + reserved79 SubCauseCodeType, + reserved80 SubCauseCodeType, + reserved81 SubCauseCodeType, + reserved82 SubCauseCodeType, + reserved83 SubCauseCodeType, + reserved84 SubCauseCodeType, + reserved85 SubCauseCodeType, + reserved86 SubCauseCodeType, + reserved87 SubCauseCodeType, + reserved88 SubCauseCodeType, + reserved89 SubCauseCodeType, + reserved90 SubCauseCodeType, + vehicleBreakdown91 VehicleBreakdownSubCauseCode, + postCrash92 PostCrashSubCauseCode, + humanProblem93 HumanProblemSubCauseCode, + stationaryVehicle94 StationaryVehicleSubCauseCode, + emergencyVehicleApproaching95 EmergencyVehicleApproachingSubCauseCode, + hazardousLocation-DangerousCurve96 HazardousLocation-DangerousCurveSubCauseCode, + collisionRisk97 CollisionRiskSubCauseCode, + signalViolation98 SignalViolationSubCauseCode, + dangerousSituation99 DangerousSituationSubCauseCode, + railwayLevelCrossing100 RailwayLevelCrossingSubCauseCode, + reserved101 SubCauseCodeType, + reserved102 SubCauseCodeType, + reserved103 SubCauseCodeType, + reserved104 SubCauseCodeType, + reserved105 SubCauseCodeType, + reserved106 SubCauseCodeType, + reserved107 SubCauseCodeType, + reserved108 SubCauseCodeType, + reserved109 SubCauseCodeType, + reserved110 SubCauseCodeType, + reserved111 SubCauseCodeType, + reserved112 SubCauseCodeType, + reserved113 SubCauseCodeType, + reserved114 SubCauseCodeType, + reserved115 SubCauseCodeType, + reserved116 SubCauseCodeType, + reserved117 SubCauseCodeType, + reserved118 SubCauseCodeType, + reserved119 SubCauseCodeType, + reserved120 SubCauseCodeType, + reserved121 SubCauseCodeType, + reserved122 SubCauseCodeType, + reserved123 SubCauseCodeType, + reserved124 SubCauseCodeType, + reserved125 SubCauseCodeType, + reserved126 SubCauseCodeType, + reserved127 SubCauseCodeType, + reserved128 SubCauseCodeType + } + +/** + * This DF is an alternative representation of the cause code value of a traffic event. + * + * It shall include the following components: + * + * @field ccAndScc: the main cause of a detected event. Each entry is of a different type and represents the sub cause code. + * + * The semantics of the entire DF are completely defined by the component causeCode. The interpretation of the subCauseCode may + * provide additional information that is not strictly necessary to understand the causeCode itself, and is therefore optional. + * + * @category: Traffic information + * @revision: Created in V2.1.1 + */ +CauseCodeV2 ::= SEQUENCE { + ccAndScc CauseCodeChoice, + ... +} + +/** + * The DF describes the position of a CEN DSRC road side equipment. + * + * It shall include the following components: + * + * @field protectedZoneLatitude: the latitude of the CEN DSRC road side equipment. + * + * @field protectedZoneLongitude: the latitude of the CEN DSRC road side equipment. + * + * @field cenDsrcTollingZoneID: the optional ID of the CEN DSRC road side equipment. + * + * @category: Infrastructure information, Communication information + * @revision: revised in V2.1.1 (cenDsrcTollingZoneId is directly of type ProtectedZoneId) + */ +CenDsrcTollingZone ::= SEQUENCE { + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + cenDsrcTollingZoneId ProtectedZoneId OPTIONAL, + ... +} + +/** + * + * This DF represents the shape of a circular area or a right cylinder that is centred on the shape´s reference point. + * + * It shall include the following components: + * + * @field shapeReferencePoint: optional reference point that represents the centre of the circle, relative to an externally specified reference position. + * If this component is absent, the externally specified reference position represents the shape´s reference point. + * + * @field radius: the radius of the circular area. + * + * @field height: the optional height, present if the shape is a right cylinder extending in the positive z-axis. + * + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +CircularShape ::= SEQUENCE { + shapeReferencePoint CartesianPosition3d OPTIONAL, + radius StandardLength12b, + height StandardLength12b OPTIONAL +} + +/** + * This DF indicates the opening/closure status of the lanes of a carriageway. + * + * It shall include the following components: + * + * @field innerhardShoulderStatus: this information is optional and shall be included if an inner hard shoulder is present and the information is known. + * It indicates the open/closing status of inner hard shoulder lanes. + * + * @field outerhardShoulderStatus: this information is optional and shall be included if an outer hard shoulder is present and the information is known. + * It indicates the open/closing status of outer hard shoulder lanes. + * + * @field drivingLaneStatus: this information is optional and shall be included if the information is known. + * It indicates the open/closing status of driving lanes. + * For carriageways with more than 13 driving lanes, the drivingLaneStatus component shall not be present. + * + * @category: Infrastructure information, Road topology information + * @revision: Description revised in V2.1.1 + */ +ClosedLanes ::= SEQUENCE { + innerhardShoulderStatus HardShoulderStatus OPTIONAL, + outerhardShoulderStatus HardShoulderStatus OPTIONAL, + drivingLaneStatus DrivingLaneStatus OPTIONAL, + ... +} + +/** + * This DF provides information about the breakup of a cluster. + * + * It shall include the following components: + * + * @field clusterBreakupReason: indicates the reason for breakup. + * + * @field breakupTime: indicates the time of breakup. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterBreakupInfo ::= SEQUENCE { + clusterBreakupReason ClusterBreakupReason, + breakupTime DeltaTimeQuarterSecond, + ... +} + +/** + * This DF provides information about the joining of a cluster. + * + * It shall include the following components: + * + * @field clusterId: indicates the identifier of the cluster. + * + * @field joinTime: indicates the time of joining. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterJoinInfo ::= SEQUENCE { + clusterId Identifier1B, + joinTime DeltaTimeQuarterSecond, + ... +} + +/** + * The DF provides information about the leaving of a cluster. + * + * It shall include the following components: + * + * @field clusterId: indicates the cluster. + * + * @field clusterLeaveReason: indicates the reason for leaving. + * + * @category: Cluster Information + * @revision: Created in V2.1.1 + */ +ClusterLeaveInfo ::= SEQUENCE { + clusterId Identifier1B, + clusterLeaveReason ClusterLeaveReason, + ... +} + +/** + * This DF represents a column of a lower triangular positive semi-definite matrix and consists of a list of correlation cell values ordered by rows. + * Given a matrix "A" of size n x n, the number of columns to be included in the lower triangular matrix is k=n-1. + * Each column "i" of the lower triangular matrix then contains k-(i-1) values (ordered by rows from 1 to n-1), where "i" refers to the column number count + * starting at 1 from the left. + * + * @category: Sensing Information + * @revision: Created in V2.1.1 +*/ +CorrelationColumn ::= SEQUENCE SIZE (1..13,...) OF CorrelationCellValue + +/** + * This DF represents the curvature of the vehicle trajectory and the associated confidence value. + * The curvature detected by a vehicle represents the curvature of actual vehicle trajectory. + * + * It shall include the following components: + * + * @field curvatureValue: Detected curvature of the vehicle trajectory. + * + * @field curvatureConfidence: along with a confidence value of the curvature value with a predefined confidence level. + * + * @category: Vehicle information + * @revision: Description revised in V2.1.1 + */ +Curvature ::= SEQUENCE { + curvatureValue CurvatureValue, + curvatureConfidence CurvatureConfidence +} + +/** + * This DF provides a description of dangerous goods being carried by a heavy vehicle. + * + * It shall include the following components: + * + * @field dangerousGoodsType: Type of dangerous goods. + * + * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in + * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.4], + * + * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. + * If yes, the value shall be set to TRUE, + * + * @field tunnelsRestricted: whether the heavy vehicle carrying dangerous goods is restricted to enter tunnels. + * If yes, the value shall be set to TRUE, + * + * @field limitedQuantity: whether the carried dangerous goods are packed with limited quantity. + * If yes, the value shall be set to TRUE, + * + * @field emergencyActionCode: physical signage placard at the vehicle that carries information on how an emergency + * service should deal with an incident. This component is optional; it shall be present if the information is available. + * + * @field phoneNumber: contact phone number of assistance service in case of incident or accident. + * This component is optional, it shall be present if the information is available. + * + * @field companyName: name of company that manages the transportation of the dangerous goods. + * This component is optional; it shall be present if the information is available. + * + * @category Vehicle information + * @revision: V1.3.1 + */ +DangerousGoodsExtended ::= SEQUENCE { + dangerousGoodsType DangerousGoodsBasic, + unNumber INTEGER (0..9999), + elevatedTemperature BOOLEAN, + tunnelsRestricted BOOLEAN, + limitedQuantity BOOLEAN, + emergencyActionCode IA5String (SIZE (1..24)) OPTIONAL, + phoneNumber PhoneNumber OPTIONAL, + companyName UTF8String (SIZE (1..24)) OPTIONAL, + ... +} + +/** + * This DF defines a geographical point position as a 3 dimensional offset position to a geographical reference point. + * + * It shall include the following components: + * + * @field deltaLatitude: A delta latitude offset with regards to the latitude value of the reference position. + * + * @field deltaLongitude: A delta longitude offset with regards to the longitude value of the reference position. + * + * @field deltaAltitude: A delta altitude offset with regards to the altitude value of the reference position. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +DeltaReferencePosition ::= SEQUENCE { + deltaLatitude DeltaLatitude, + deltaLongitude DeltaLongitude, + deltaAltitude DeltaAltitude +} + +/** + * This DF represents a portion of digital map. It shall contain a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * @revision: V1.3.1 + */ +DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition + +/** + * + * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on the shape´s reference point. + * + * It shall include the following components: + * + * @field shapeReferencePoint: optional reference point which represents the centre of the ellipse, relative to an externally specified reference position. + * If this component is absent, the externally specified reference position represents the shape´s reference point. + * + * @field semiMajorAxisLength: half length of the major axis of the ellipse. + * + * @field semiMinorAxisLength: half length of the minor axis of the ellipse. + * + * @field orientation: the optional orientation of the major axis of the ellipse in the WGS84 coordinate system. + * + * @field height: the optional height, present if the shape is a right elliptical cylinder extending in the positive z-axis. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ + +EllipticalShape ::= SEQUENCE { + shapeReferencePoint CartesianPosition3d OPTIONAL, + semiMajorAxisLength StandardLength12b, + semiMinorAxisLength StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL +} + +/** + * This DF represents the Euler angles which describe the orientation of an object bounding box in a Cartesian coordinate system with an associated confidence level for each angle. + * + * It shall include the following components: + * + * @field zAngle: z-angle of object bounding box at the time of measurement, with the associated confidence. + * The angle is measured with positive values considering the object orientation turning around the z-axis using the right-hand rule, starting from the x-axis. + * This extrinsic rotation shall be applied around the centre point of the object bounding box before all other rotations. + * + * @field yAngle: optional y-angle of object bounding box at the time of measurement, with the associated confidence. + * The angle is measured with positive values considering the object orientation turning around the y-axis using the right-hand rule, starting from the z-axis. + * This extrinsic rotation shall be applied around the centre point of the object bounding box after the rotation by zAngle and before the rotation by xAngle. + * + * @field xAngle: optional x-angle of object bounding box at the time of measurement, with the associated confidence. + * The angle is measured with positive values considering the object orientation turning around the x-axis using the right-hand rule, starting from the z-axis. + * This extrinsic rotation shall be applied around the centre point of the object bounding box after all other rotations. + * + * @category: Basic information + * @revision: Created in V2.1.1 +*/ +EulerAnglesWithConfidence ::= SEQUENCE { + zAngle CartesianAngle, + yAngle CartesianAngle OPTIONAL, + xAngle CartesianAngle OPTIONAL +} + +/** + * + * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.16]. + * The following options are available: + * + * @field euVehicleCategoryL: indicates a vehicle in the L category. + * + * @field euVehicleCategoryM: indicates a vehicle in the M category. + * + * @field euVehicleCategoryN: indicates a vehicle in the N category. + * + * @field euVehicleCategoryO: indicates a vehicle in the O category. + * + * @field euVehicleCategoryT: indicates a vehicle in the T category. + * + * @field euVehicleCategoryG: indicates a vehicle in the G category. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +EuVehicleCategoryCode ::= CHOICE { + euVehicleCategoryL EuVehicleCategoryL, + euVehicleCategoryM EuVehicleCategoryM, + euVehicleCategoryN EuVehicleCategoryN, + euVehicleCategoryO EuVehicleCategoryO, + euVehicleCategoryT NULL, + euVehicleCategoryG NULL + } + +/** + * The DF shall contain a list of @ref EventPoint. + * + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref EventZone instead. + * @revision: Generalized the semantics in V2.1.1 + */ +EventHistory::= SEQUENCE (SIZE(1..23)) OF EventPoint + +/** + * This DF provides information related to an event at a defined position. + * + * It shall include the following components: + * + * @field eventPosition: offset position of a detected event point to a defined position. + * + * @field eventDeltaTime: optional time travelled by the detecting ITS-S since the previous detected event point. + * + * @field informationQuality: Information quality of the detection for this event point. + * + * @category: GeoReference information, Traffic information + * @revision: generalized the semantics in V2.1.1 + */ +EventPoint ::= SEQUENCE { + eventPosition DeltaReferencePosition, + eventDeltaTime PathDeltaTime OPTIONAL, + informationQuality InformationQuality +} + +/** + * The DF shall contain a list of @ref EventPoint, where all @ref EventPoint either contain the COMPONENT eventDeltaTime + * or do not contain the COMPONENT eventDeltaTime. + * + * The eventPosition of each @ref EventPoint is defined with respect to the previous @ref EventPoint in the list. + * Except for the first @ref EventPoint which is defined with respect to a position outside of the context of this DF. + * + * @category: GeoReference information, Traffic information + * @revision: created in V2.1.1 based on EventHistory + */ +EventZone::= EventHistory + ((WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime PRESENT})) | + (WITH COMPONENT (WITH COMPONENTS {..., eventDeltaTime ABSENT}))) + +/** + * This DF indicates a transversal position in relation to the different lanes of the road. + * It is an extension of DE_LanePosition to cover locations (sidewalks, bicycle paths), where Vehicle ITS-S would normally not be present. + * + * The following options are available: + * + * @field trafficLanePosition: a position on a traffic lane. + * + * @field nonTrafficLanePosition: a position on a lane which is not a traffic lane. + * + * @field trafficIslandPosition: a position on a traffic island + * + * @field mapPosition: a position on a lane identified in a MAPEM. + * + * @category: Road Topology information + * @revision: created in V2.1.1 + */ +GeneralizedLanePosition::= CHOICE { + trafficLanePosition LanePosition, + nonTrafficLanePosition LanePositionAndType, + trafficIslandPosition TrafficIslandPosition, + mapPosition MapPosition, + ... +} + +/** + * This DF represents the Heading in a WGS84 co-ordinates system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. + * + * It shall include the following components: + * + * @field headingValue: the heading value. + * + * @field headingConfidence: the confidence value of the heading value with a predefined confidence level. + * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84Angle instead. + * @category: Kinematic Information + * @revision: Description revised in V2.1.1 + */ +Heading ::= SEQUENCE { + headingValue HeadingValue, + headingConfidence HeadingConfidence +} + + +/** + * This DF provides information associated to heading change indicators such as a change of direction. + * + * It shall include the following components: + * + * @field direction: the direction of heading change value. + * + * @field actionDeltaTime: the period over which a direction change action is performed. + * + * @category: Kinematic Information + * @revision: created in V2.1.1 + */ +HeadingChangeIndication ::= SEQUENCE { + direction TurningDirection, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents a frequency channel + * + * It shall include the following components: + * + * @field centreFrequency: the centre frequency of the channel in 10^(exp+2) Hz (where exp is exponent) + * + * @field channelWidth: width of the channel in 10^exp Hz (where exp is exponent) + * + * @field exponent: exponent of the power of 10 used in the calculation of the components above. + * + * @category: Communication information + * @revision: created in V2.1.1 +*/ +InterferenceManagementChannel ::= SEQUENCE { + centreFrequency INTEGER (1 .. 99999), + channelWidth INTEGER (0 .. 9999), + exponent INTEGER (0 .. 15) +} + +/** + * + * This DF represents a zone inside which the ITS communication should be restricted in order to manage interference. + * + * It shall include the following components: + * + * @field zoneDefinition: contains the geographical definition of the zone. + * + * @field managementInfo: contains interference management information applicable in the zone defined in the component zoneDefinition. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZone ::= SEQUENCE { + zoneDefinition InterferenceManagementZoneDefinition, + managementInfo InterferenceManagementInfo +} + +/** + * This DF represents the geographical definition of the zone where band sharing occurs. + * + * It shall include the following components: + * + * @field interferenceManagementZoneLatitude: Latitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneLongitude: Longitude of the centre point of the interference management zone. + * + * @field interferenceManagementZoneId: optional identification of the interference management zone. + * + * @field interferenceManagementZoneShape: shape of the interference management zone placed at the centre point. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZoneDefinition::= SEQUENCE{ + interferenceManagementZoneLatitude Latitude, + interferenceManagementZoneLongitude Longitude, + interferenceManagementZoneId ProtectedZoneId OPTIONAL, + interferenceManagementZoneShape Shape (WITH COMPONENTS{..., radial ABSENT, radialShapes ABSENT}) OPTIONAL, + ... +} + +/** + * This DF shall contain a list of up to 16 definitions containing interference management information, per affected frequency channels. + * + * @category: Communication information. + * @revision: created in V2.1.1 + */ +InterferenceManagementInfo::= SEQUENCE (SIZE(1..16,...)) OF InterferenceManagementInfoPerChannel + + +/** + * This DF contains interference management information for one affected frequency channel. + * + * It shall include the following components: + * + * @field interferenceManagementChannel: frequency channel for which the zone should be applied interference management + * + * @field interferenceManagementZoneType: type of the interference management zone. + * + * @field interferenceManagementMitigationType: optional type of the mitigation to be used in the interference management zone. + * In the case where no mitigation should be applied by the ITS-S, this is indicated by the field interferenceManagementMitigationType being absent. + * + * @field expiryTime: 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 + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementInfoPerChannel ::= SEQUENCE { + interferenceManagementChannel InterferenceManagementChannel, + interferenceManagementZoneType InterferenceManagementZoneType, + interferenceManagementMitigationType MitigationForTechnologies OPTIONAL, + expiryTime TimestampIts OPTIONAL, + ... +} + +/** + * This DF shall contain 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. + * + * @category: Communication information + * @revision: created in V2.1.1 + */ +InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone + +/** + * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.15]. + * + * It shall include the following components: + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the intersection + * + * @note: when the component region is present, the IntersectionReferenceId is guaranteed to be globally unique. + * @category: Road topology information + * @revision: created in V2.1.1 + */ +IntersectionReferenceId ::= SEQUENCE { + region Identifier2B OPTIONAL, + id Identifier2B +} + +/** + * This DF shall contain a list of waypoints @ref ReferencePosition. + * + * @category: GeoReference information + * @revision: Editorial update in V2.1.1 + */ +ItineraryPath ::= SEQUENCE SIZE(1..40) OF ReferencePosition + +/** + * 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 shall include the following components: + * + * @field protocolVersion: version of the ITS message. + * + * @field messageId: type of the ITS message. + * + * @field stationId: the identifier of the ITS-S that generated the ITS message. + * + * @category: Communication information + * @revision: update in V2.1.1: messageID and stationID changed to messageId and stationId; messageId is of type MessageId. + */ +ItsPduHeader ::= SEQUENCE { + protocolVersion OrdinalNumber1B, + messageId MessageId, + stationId StationId +} + +/** + * This DF indicates a transversal position in resolution of lanes and the associated lane type. + * + * It shall include the following components: + * + * @field transversalPosition: the transversal position. + * + * @field laneType: the type of the lane identified in the component transversalPosition. + * + * @category Road topology information + * @revision: Created in V2.1.1 + */ +LanePositionAndType::= SEQUENCE { + transversalPosition LanePosition, + laneType LaneType, + ... +} + +/** + * This DF indicates the vehicle acceleration at lateral direction and the confidence value of the lateral acceleration. + * + * It shall include the following components: + * + * @field lateralAccelerationValue: lateral acceleration value at a point in time. + * + * @field lateralAccelerationConfidence: confidence value of the lateral acceleration value. + * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationComponent instead. + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +LateralAcceleration ::= SEQUENCE { + lateralAccelerationValue LateralAccelerationValue, + lateralAccelerationConfidence AccelerationConfidence +} + +/** + * This DF indicates the vehicle acceleration at longitudinal direction and the confidence value of the longitudinal acceleration. + * + * It shall include the following components: + * + * @field longitudinalAccelerationValue: longitudinal acceleration value at a point in time. + + * @field longitudinalAccelerationConfidence: confidence value of the longitudinal acceleration value. + * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationComponent instead. + * @category: Vehicle information + * @revision: V1.3.1 + */ +LongitudinalAcceleration ::= SEQUENCE { + longitudinalAccelerationValue LongitudinalAccelerationValue, + longitudinalAccelerationConfidence AccelerationConfidence +} + +/** + * This DF represents the estimated position along the longitudinal length of a particular lane. + * + * It shall include the following components: + * + * @field longitudinalLanePositionValue: the mean value of the longitudinal position within a particular length. + * + * @field longitudinalLanePositionConfidence: The confidence value associated to the value. + * + * @category: Road topology information + * @revision: created in V2.1.1 + */ +LongitudinalLanePosition ::= SEQUENCE { + longitudinalLanePositionValue LongitudinalLanePositionValue, + longitudinalLanePositionConfidence LongitudinalLanePositionConfidence +} + +/** + * This DF shall contain a list of a lower triangular positive semi-definite matrices. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +LowerTriangularPositiveSemidefiniteMatrices::= SEQUENCE SIZE (1..4) OF LowerTriangularPositiveSemidefiniteMatrix + +/** + * This DF represents a lower triangular positive semi-definite matrix. + * + * It shall include the following components: + * + * @field componentsIncludedIntheMatrix: the indication of which components of a @ref PerceivedObject are included in the matrix. + * This component also implicitly indicates the number n of included components which defines the size (n x n) of the full correlation matrix "A". + * + * @field matrix: the list of cells of the lower triangular positive semi-definite matrix ordered by columns and by rows. + * + * The number of columns to be included "k" is equal to the number of included components "n" indicated by componentsIncludedIntheMatrix minus 1: k = n-1. + * These components shall be included in the order or their appearance in componentsIncludedIntheMatrix. + * Each column "i" of the lowerTriangularCorrelationMatrixColumns contains k-(i-1) values. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE{ + componentsIncludedIntheMatrix MatrixIncludedComponents, + matrix LowerTriangularPositiveSemidefiniteMatrixColumns +} + +/** + * This DF represents the columns of a lower triangular positive semi-definite matrix, each column not including the main diagonal cell of the matrix. + * Given a matrix "A" of size n x n, the number of @ref CorrelationColumn to be included in the lower triangular matrix is k=n-1. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +LowerTriangularPositiveSemidefiniteMatrixColumns ::= SEQUENCE SIZE (1..13) OF CorrelationColumn + +/** + * This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301 [i.15]. + * + * It shall include the following components: + * + * @field mapReference: optionally identifies the MAPEM containing the topology information. + * It is absent if the MAPEM topology is known from the context. + * + * @field laneId: optionally identifies the lane in the road segment or intersection topology on which the position is located. + * + * @field connectionId: optionally identifies the connection inside the conflict area of an intersection, i.e. it identifies a trajectory for travelling through the + * conflict area of an intersection which connects e.g an ingress with an egress lane. + * + * @field longitudinalLanePosition: optionally indicates the longitudinal offset of the map-matched position of the object along the lane or connection. + * + * @category: Road topology information + * @revision: Created in V2.1.1 + */ +MapPosition ::= SEQUENCE { + mapReference MapReference OPTIONAL, + laneId Identifier1B OPTIONAL, + connectionId Identifier1B OPTIONAL, + longitudinalLanePosition LongitudinalLanePosition OPTIONAL, + ... +} + ((WITH COMPONENTS {..., laneId PRESENT, connectionId ABSENT }) | + (WITH COMPONENTS {..., laneId ABSENT, connectionId PRESENT })) + +/** + * This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301 [i.15]. + * + * The following options are provided: + * + * @field roadsegment: option that identifies the description of a road segment contained in a MAPEM. + * + * @field intersection: option that identifies the description of an intersection contained in a MAPEM. + * + * @category: Road topology information + * @revision: Created in V2.1.1 + */ +MapReference::= CHOICE { + roadsegment RoadSegmentReferenceId, + intersection IntersectionReferenceId + } + +/** + * This DE indicates a message rate. + * + * @field mantissa: indicates the mantissa. + * + * @field exponent: indicates the exponent. + * + * The specified message rate is: mantissa*(10^exponent) + * + * @unit: Hz + * @category: Communication information + * @revision: Created in V2.1.1 + */ +MessageRateHz::= SEQUENCE { + mantissa INTEGER (1..100), + exponent INTEGER (-5..2) + } + +/** + * This DF provides information about a message with respect to the segmentation process at the sender. + * + * It shall include the following components: + * + * @field totalMsgNo: indicates the total number of messages that has been used on the transmitter side to encode the information. + * + * @field thisMsgNo: indicates the position of the message within of the total set of messages. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +MessageSegmentationInfo ::= SEQUENCE { + totalMsgNo CardinalNumber3b, + thisMsgNo OrdinalNumber3b + } + +/** + * This DF shall contain a list of @ref MitigationPerTechnologyClass. + * + * @category: Communication information + * @revision: Created in V2.1.1 +*/ +MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF 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 shall include the following components: + * + * @field accessTechnologyClass: channel access technology to which this mitigation is intended to be applied. + * + * @field lowDutyCycle: duty cycle limit. + * @unit: 0,01% steps + * + * @field powerReduction: the delta value of power to be reduced. + * @unit: dB + * + * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.19]. + * @unit: ms + * + * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.20]. + * @unit: ms + * + * @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. + * + * @category: Communication information + * @revision: Created in V2.1.1 + */ +MitigationPerTechnologyClass ::= SEQUENCE { + accessTechnologyClass AccessTechnologyClass, + lowDutyCycle INTEGER (0 .. 10000) OPTIONAL, + powerReduction INTEGER (0 .. 30) OPTIONAL, + dmcToffLimit INTEGER (0 .. 1200) OPTIONAL, + dmcTonLimit INTEGER (0 .. 20) OPTIONAL, + ... +} + +/** + * This DF indicates both the class and associated subclass that best describes an object. + * + * The following options are available: + * + * @field vehicleSubClass: the object is a road vehicle and the specific subclass is specified. + * + * @field vruSubClass: the object is a VRU and the specific subclass is specified. + * + * @field groupSubClass: the object is a VRU group or cluster and the cluster information is specified. + * + * @field otherSubClass: the object is of a different type than the above and the specific subclass is specified. + * + * @category: Sensing information + * @revision: Created in V2.1.1 + */ +ObjectClass ::= CHOICE { + vehicleSubClass TrafficParticipantType (unknown|passengerCar..tram|agricultural), + vruSubClass VruProfileAndSubprofile, + groupSubClass VruClusterInformation (WITH COMPONENTS{..., clusterBoundingBoxShape ABSENT}), + otherSubClass OtherSubClass, + ... +} + +/** + * This DF shall contain a list of object classes. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectClassDescription ::= SEQUENCE (SIZE(1..8)) OF ObjectClassWithConfidence + +/** + * This DF represents the classification of a detected object together with a confidence level. + * + * It shall include the following components: + * + * @field objectClass: the class of the object. + * + * @field Confidence: the associated confidence level. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectClassWithConfidence ::= SEQUENCE { + objectClass ObjectClass, + confidence ConfidenceLevel +} + +/** + * This DF represents a dimension of an object together with a confidence value. + * + * It shall include the following components: + * + * @field value: the object dimension value which can be estimated as the mean of the current distribution. + * + * @field confidence: the associated confidence value. + * + * @category: Sensing information + * @revision: Created in V2.1.1 +*/ +ObjectDimension ::= SEQUENCE { + value ObjectDimensionValue, + confidence ObjectDimensionConfidence +} + +/** + * This DF represents a path with a set of path points. + * It shall contain up to `40` @ref 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. + * + * @category: GeoReference information, Vehicle information + * @revision: created in V2.1.1 based on PathHistory + */ +Path::= SEQUENCE (SIZE(0..40)) OF PathPoint + +/** + * This DF represents a path history with a set of path points. + * It shall contain up to `40` @ref 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. + * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref Path instead. + * @category: GeoReference information, Vehicle information + * @revision: semantics updated in V2.1.1 + */ +PathHistory::= SEQUENCE (SIZE(40)) OF PathPoint + +/** + * This DF represents a predicted path with a set of path points. + * It shall contain up to `15` @ref 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. + * + * @category: GeoReference information + * @revision: created in V2.1.1 based on PathHistory + */ +PathPredicted::= SEQUENCE (SIZE(0..15,...)) OF PathPointPredicted + +/** + * This DF defines an offset waypoint position within a path. + * + * It shall include the following components: + * + * @field pathPosition: The waypoint position defined as an offset position with regards to a pre-defined reference position. + * + * @field pathDeltaTime: The optional travel time separated from a waypoint to the predefined reference position. + * + * @category GeoReference information + * @revision: semantics updated in V2.1.1 + */ +PathPoint ::= SEQUENCE { + pathPosition DeltaReferencePosition, + pathDeltaTime PathDeltaTime OPTIONAL +} + +/** + * This DF defines a predicted offset waypoint position within a path. + * + * It shall include the following components: + * + * @field deltaLatitude: an offset latitude with regards to a pre-defined reference position. + * + * @field deltaLongitude: an offset longitude with regards to a pre-defined reference position. + * + * @field horizontalPositionConfidence: the confidence value associated to the horizontal geographical position. + * + * @field deltaAltitude: an offset altitude with regards to a pre-defined reference position. + * + * @field altitudeConfidence: the confidence value associated to the altitude value of the geographical position. + * + * @field pathDeltaTime: The travel time separated from the waypoint to the predefined reference position. + * + * @category GeoReference information + * @revision: semantics updated in V2.1.1 + */ +PathPointPredicted::= SEQUENCE { + deltaLatitude DeltaLatitude, + deltaLongitude DeltaLongitude, + horizontalPositionConfidence PosConfidenceEllipse OPTIONAL, + deltaAltitude DeltaAltitude DEFAULT unavailable, + altitudeConfidence AltitudeConfidence DEFAULT unavailable, + pathDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * 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. + * + * It shall include the following components: + * + * @field objectId: optional identifier assigned to a detected object. + * + * @field measurementDeltaTime: 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. + * + * @field position: the position of the geometric centre of the object´s bounding box within the pre-defined coordinate system. + * + * @field velocity: the velocity vector of the object within the pre-defined coordinate system. + * + * @field acceleration: the acceleration vector of the object within the pre-defined coordinate system. + * + * @field angles: optional Euler angles of the object bounding box at the time of measurement. + * + * @field zAngularVelocity: optional angular velocity of the object around the z-axis at the time of measurement. + * The angular velocity is measured with positive values considering the object orientation turning around the z-axis using the right-hand rule. + * + * @field lowerTriangularCorrelationMatrices: optional set of lower triangular correlation matrices for selected components of the provided kinematic state and attitude vector. + * + * @field objectDimensionZ: 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. + * + * @field objectDimensionY: 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. + * + * @field objectDimensionX: 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. + * + * @field objectAge: 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. + * + * @field objectPerceptionQuality: optional confidence associated to the object. + * + * @field sensorIdList: optional list of sensor-IDs which provided the measurement data. + * + * @field classification: optional classification of the described object + * + * @field matchedPosition: optional map-matched position of an object. + * + * @category Sensing information + * @revision: created in V2.1.1 + */ +PerceivedObject ::= SEQUENCE { + objectId Identifier2B OPTIONAL, + measurementDeltaTime DeltaTimeMilliSecondSigned, + position CartesianPosition3dWithConfidence, + velocity Velocity3dWithConfidence OPTIONAL, + acceleration Acceleration3dWithConfidence OPTIONAL, + angles EulerAnglesWithConfidence OPTIONAL, + zAngularVelocity CartesianAngularVelocityComponent OPTIONAL, + lowerTriangularCorrelationMatrices LowerTriangularPositiveSemidefiniteMatrices OPTIONAL, + objectDimensionZ ObjectDimension OPTIONAL, + objectDimensionY ObjectDimension OPTIONAL, + objectDimensionX ObjectDimension OPTIONAL, + objectAge DeltaTimeMilliSecondSigned (0..2047) OPTIONAL, + objectPerceptionQuality ObjectPerceptionQuality OPTIONAL, + sensorIdList SequenceOfIdentifier1B OPTIONAL, + classification ObjectClassDescription OPTIONAL, + mapPosition MapPosition OPTIONAL, + ... +} + +/** + * This DF represents the shape of a polygonal area or of a right prism. + * + * It shall include the following components: + * + * @field shapeReferencePoint: 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. + * + * @field polygon: the polygonal area represented by a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * All nodes of the polygon shall be considered relative to the shape´s reference point. + * + * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. + * + * @category GeoReference information + * @revision: created in V2.1.1 + * + */ +PolygonalShape ::= SEQUENCE { + shapeReferencePoint CartesianPosition3d OPTIONAL, + polygon SequenceOfCartesianPosition3d (SIZE(3..16,...)), + height StandardLength12b OPTIONAL +} + +/** + * 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: + * + * @field semiMajorConfidence: half of length of the major axis, i.e. distance between the centre point + * and major axis point of the position accuracy ellipse. + * + * @field semiMinorConfidence: half of length of the minor axis, i.e. distance between the centre point + * and minor axis point of the position accuracy ellipse. + * + * @field semiMajorOrientation: 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. + * + * + * @category GeoReference information + * @revision: V1.3.1 + */ +PosConfidenceEllipse ::= SEQUENCE { + semiMajorConfidence SemiAxisLength, + semiMinorConfidence SemiAxisLength, + semiMajorOrientation HeadingValue +} + +/** + * 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: + * + * @field semiMajorAxisLength: half of length of the major axis, i.e. distance between the centre point + * and major axis point of the position accuracy ellipse. + * + * @field semiMinorAxisLength: half of length of the minor axis, i.e. distance between the centre point + * and minor axis point of the position accuracy ellipse. + * + * @field semiMajorAxisOrientation: 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. + * + * @category GeoReference information + * @revision: created in V2.1.1 based on @ref PosConfidenceEllipse + */ +PositionConfidenceEllipse ::= SEQUENCE { + semiMajorAxisLength SemiAxisLength, + semiMinorAxisLength SemiAxisLength, + semiMajorAxisOrientation Wgs84AngleValue +} + +/** + * This DF shall contain a list of distances @ref 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. + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +PositionOfPillars ::= SEQUENCE (SIZE(1..3, ...)) OF PosPillar + +/** + * This DF describes a zone of protection inside which the ITS communication should be restricted. + * + * It shall include the following components: + * + * @field protectedZoneType: type of the protected zone. + * + * @field expiryTime: optional time at which the validity of the protected communication zone will expire. + * + * @field protectedZoneLatitude: latitude of the centre point of the protected communication zone. + * + * @field protectedZoneLongitude: longitude of the centre point of the protected communication zone. + * + * @field protectedZoneRadius: optional radius of the protected communication zone in metres. + * + * @field protectedZoneId: the optional ID of the protected communication zone. + * + * @note: A protected communication zone may be defined around a CEN DSRC road side equipment. + * + * @category: Infrastructure information, Communication information + * @revision: revised in V2.1.1 (changed protectedZoneID to protectedZoneId) + */ +ProtectedCommunicationZone ::= SEQUENCE { + protectedZoneType ProtectedZoneType, + expiryTime TimestampIts OPTIONAL, + protectedZoneLatitude Latitude, + protectedZoneLongitude Longitude, + protectedZoneRadius ProtectedZoneRadius OPTIONAL, + protectedZoneId ProtectedZoneId OPTIONAL, + ... +} + +/** + * This DF shall contain a list of @ref ProtectedCommunicationZone provided by a road side ITS-S (Road Side Unit RSU). + * + * It may provide up to 16 protected communication zones information. + * + * @category: Infrastructure information, Communication information + * @revision: V1.3.1 + */ +ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicationZone + +/** + * 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). + * + * @field ptActivationType: type of activation. + * + * @field ptActicationData: data of activation. + * + * 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) + * for controlling traffic lights, barriers, bollards, etc. This DF shall include information like route, course, + * destination, priority, etc. + * + * The R09.x content is defined in VDV recommendation 420 [i.7]. It includes following information: + * - 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. + * @category: Vehicle information + * @revision: V1.3.1 + */ +PtActivation ::= SEQUENCE { + ptActivationType PtActivationType, + ptActivationData PtActivationData +} + +/** + * This DF describes a radial shape. The triangular or cone-shaped volume is + * 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 + * 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). + * + * It shall include the following components: + * + * @field shapeReferencePoint: 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. + * + * @field range: the radial range of the shape from the shape´s reference point. + * + * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the + * shape's horizontal opening angle in positive angular direction with respect to the + * WGS84 coordinate system. + * + * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the shape's + * horizontal opening angle in positive angular direction with respect to the WGS84 coordinate system. + * + * @field verticalOpeningAngleStart: 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the shape's + * 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. + * + * @category GeoReference information + * @revision: created in V2.1.1 +*/ +RadialShape ::= SEQUENCE { + shapeReferencePoint CartesianPosition3d OPTIONAL, + range StandardLength12b, + stationaryHorizontalOpeningAngleStart Wgs84AngleValue, + stationaryHorizontalOpeningAngleEnd Wgs84AngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL +} + + +/** + * This DF describes a list of radial shapes. + * + * It shall include the following components: + + * @field refPointId: the identification of the reference point in case of a sensor mounted to trailer. Defaults to ITS ReferencePoint (0). + * + * @field xCoordinate: the x-coordinate of the offset point. + * + * @field yCoordinate: the y-coordinate of the offset point. + * + * @field zCoordinate: the optional z-coordinate of the offset point. + * + * @field radialShapesList: the list of radial shape details. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ +RadialShapes ::= SEQUENCE { + refPointId Identifier1B, + xCoordinate CartesianCoordinateSmall, + yCoordinate CartesianCoordinateSmall, + zCoordinate CartesianCoordinateSmall OPTIONAL, + radialShapesList RadialShapesList +} + +/** + * The DF contains a list of @ref RadialShapeDetails. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ + +RadialShapesList ::= SEQUENCE SIZE(1..16,...) OF 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). + * + * It shall include the following components: + * + * @field range: the radial range of the sensor from the reference point or sensor point offset. + * + * @field horizontalOpeningAngleStart: the orientation indicating the beginning of the + * shape's horizontal opening angle in positive angular direction. + * + * @field horizontalOpeningAngleEnd: The orientation indicating the end of the shape's horizontal + * opening angle in positive angular direction. + * + * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the shape's + * 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. + * + * @field verticalOpeningAngleEnd: optional orientation indicating the end of the shape's + * 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. + * + * @category: Georeference information + * @revision: created in V2.1.1 + */ +RadialShapeDetails ::= SEQUENCE { + range StandardLength12b, + horizontalOpeningAngleStart CartesianAngleValue, + horizontalOpeningAngleEnd CartesianAngleValue, + verticalOpeningAngleStart CartesianAngleValue OPTIONAL, + verticalOpeningAngleEnd CartesianAngleValue OPTIONAL +} + +/** + * 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. + * + * It shall include the following components: + * + * @field centerPoint: represents an optional offset point which the rectangle is centred on with respect to the reference position. + * + * @field semiLength: represents half the length of the rectangle. + * + * @field semiBreadth: represents half the breadth of the rectangle. + * + * @field orientation: represents the optional orientation of the lenght of the rectangle in the WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. + * + * @field height: represents the optional height, present if the shape is a right rectangular prism with height extending in the positive z-axis. + * + * @category GeoReference information + * @revision: created in V2.1.1 + */ +RectangularShape ::= SEQUENCE { + centerPoint CartesianPosition3d OPTIONAL, + semiLength StandardLength12b, + semiBreadth StandardLength12b, + orientation Wgs84AngleValue OPTIONAL, + height StandardLength12b OPTIONAL +} + +/** + * A position within a geographic coordinate system together with a confidence ellipse. + * + * It shall include the following components: + * + * @field latitude: the latitude of the geographical point. + * + * @field longitude: the longitude of the geographical point. + * + * @field positionConfidenceEllipse: the confidence ellipse associated to the geographical position. + * + * @field altitude: the altitude and an altitude accuracy of the geographical point. + * + * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref ReferencePositionWithConfidence instead. + * @category: GeoReference information + * @revision: description updated in V2.1.1 + */ +ReferencePosition ::= SEQUENCE { + latitude Latitude, + longitude Longitude, + positionConfidenceEllipse PosConfidenceEllipse, + altitude Altitude +} + +/** + * A position within a geographic coordinate system together with a confidence ellipse. + * + * It shall include the following components: + * + * @field latitude: the latitude of the geographical point. + * + * @field longitude: the longitude of the geographical point. + * + * @field positionConfidenceEllipse: the confidence ellipse associated to the geographical position. + * + * @field altitude: the altitude and an altitude accuracy of the geographical point. + * + * @category: GeoReference information + * @revision: created in V2.1.1 based on @ref ReferencePosition but using @ref PositionConfidenceEllipse. + */ +ReferencePositionWithConfidence ::= SEQUENCE { + latitude Latitude, + longitude Longitude, + positionConfidenceEllipse PositionConfidenceEllipse, + altitude Altitude +} + +/** + * This DF shall contain a list of @ref StationType. to which a certain traffic restriction, e.g. the speed limit, applies. + * + * @category: Infrastructure information, Traffic information + * @revision: V1.3.1 + */ +RestrictedTypes ::= SEQUENCE (SIZE(1..3, ...)) OF StationType + +/** + * This DF represents a unique id for a road segment + * + * It shall include the following components: + * + * @field region: 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 @ref Id is unique within the region. + * + * @field id: the identifier of the road segment. + * + * @note: when the component region is present, the RoadSegmentReferenceId is guaranteed to be globally unique. + * @category: GeoReference information + * @revision: created in V2.1.1 + */ +RoadSegmentReferenceId ::= SEQUENCE { + region Identifier2B OPTIONAL, + id Identifier2B +} + +/** + * This DF provides the safe distance indication of a traffic participant with other traffic participant(s). + * + * It shall include the following components: + * + * @field subjectStation: optionally indicates one "other" traffic participant identified by its ITS-S. + * + * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. + * 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. + * + * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed + * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. + * + * @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). + * + * @category: Traffic information, Kinematic information + * @revision: created in V2.1.1 + */ +SafeDistanceIndication ::= SEQUENCE { + subjectStation StationId OPTIONAL, + safeDistanceIndicator SafeDistanceIndicator, + timeToCollision DeltaTimeTenthOfSecond OPTIONAL, + ... +} + +/** + * This DF shall contain a list of DF @ref CartesianPosition3d. + * + * @category: GeoReference information + * @revision: created in V2.1.1 + */ +SequenceOfCartesianPosition3d ::= SEQUENCE (SIZE(1..16, ...)) OF CartesianPosition3d + +/** + * The DF contains a list of DE @ref Identifier1B. + * + * @category: Basic information + * @revision: created in V2.1.1 +*/ +SequenceOfIdentifier1B ::= SEQUENCE SIZE(1..128, ...) OF Identifier1B + +/** + * The DF contains a list of DF @ref SafeDistanceIndication. + * + * @category: Traffic information, Kinematic information + * @revision: created in V2.1.1 +*/ +SequenceOfSafeDistanceIndication ::= SEQUENCE(SIZE(1..8,...)) OF SafeDistanceIndication + +/** + * The DF shall contain a list of DF @ref TrajectoryInterceptionIndication. + * + * @category: Traffic information, Kinematic information + * @revision: created in V2.1.1 +*/ +SequenceOfTrajectoryInterceptionIndication ::= SEQUENCE (SIZE(1..8,...)) OF TrajectoryInterceptionIndication + +/** + * This DF provides the definition of a geographical area or volume, based on different options. + * + * It is a choice of the following components: + * + * @field rectangular: definition of an rectangular area or a right rectangular prism (with a rectangular base) also called a cuboid, or informally a rectangular box. + * + * @field circular: definition of an area of circular shape or a right circular cylinder. + * + * @field polygonal: definition of an area of polygonal shape or a right prism. + * + * @field elliptical: definition of an area of elliptical shape or a right elliptical cylinder. + * + * @field radial: definition of a radial shape. + * + * @field radialList: definition of list of radial shapes. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 + */ +Shape::= CHOICE { + rectangular RectangularShape, + circular CircularShape, + polygonal PolygonalShape, + elliptical EllipticalShape, + radial RadialShape, + radialShapes RadialShapes, + ... +} + +/** + * This DF represents the speed and associated confidence value. + * + * It shall include the following components: + * + * @field speedValue: the speed value. + * + * @field speedConfidence: the confidence value of the speed value. + * + * @category: Kinematic information + * @revision: V1.3.1 + */ +Speed ::= SEQUENCE { + speedValue SpeedValue, + speedConfidence SpeedConfidence +} + +/** + * This DF provides the indication of change in stability. + * + * It shall include the following components: + * + * @field lossProbability: the probability of stability loss. + * + * @field actionDeltaTime: the period over which the the probability of stability loss is estimated. + * + * @category: Kinematic information + * @revision: V2.1.1 + */ +StabilityChangeIndication ::= SEQUENCE { + lossProbability StabilityLossProbability, + actionDeltaTime DeltaTimeTenthOfSecond, + ... +} + +/** + * This DF represents the steering wheel angle of the vehicle at certain point in time. + * + * It shall include the following components: + * + * @field steeringWheelAngleValue: steering wheel angle value. + * + * @field steeringWheelAngleConfidence: confidence value of the steering wheel angle value. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +SteeringWheelAngle ::= SEQUENCE { + steeringWheelAngleValue SteeringWheelAngleValue, + steeringWheelAngleConfidence SteeringWheelAngleConfidence +} + +/** + * This DF represents one or more paths using @ref PathHistory. + * + * @category: GeoReference information + * @revision: Description revised in V2.1.1. Is is now based on Path and not on PathHistory + */ +Traces ::= SEQUENCE SIZE(1..7) OF Path + +/** + * Ths DF represents the a position on a traffic island between two lanes. + * + * It shall include the following components: + * + * @field oneSide: represents one lane. + * + * @field otherSide: represents the other lane. + * + * @category: Road Topology information + * @revision: Created in V2.1.1 + */ +TrafficIslandPosition ::= SEQUENCE { + oneSide LanePositionAndType, + otherSide LanePositionAndType, + ... +} + +/** + * This DF provides detailed information about an attached trailer. + * + * It shall include the following components: + * + * @field refPointId: identifier of the reference point of the trailer. + * + * @field hitchPointOffset: optional position of the hitch point in negative x-direction (according to ISO 8855) from the + * vehicle Reference Point. + * + * @field frontOverhang: optional length of the trailer overhang in the positive x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. The value defaults to 0 in case the trailer + * is not overhanging to the front with respect to the trailer reference point. + * + * @field rearOverhang: optional length of the trailer overhang in the negative x direction (according to ISO 8855) from the + * trailer Reference Point indicated by the refPointID. + * + * @field trailerWidth: optional width of the trailer. + * + * @field hitchAngle: optional Value and confidence value of the angle between the trailer orientation (corresponding to the x + * direction of the ISO 8855 [2] coordinate system centered on the trailer) and the direction of + * the segment having as end points the reference point of the trailer and the reference point of + * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane + * xy, described in the local Cartesian coordinate system of the trailer. The + * angle is measured with negative values considering the trailer orientation turning clockwise + * starting from the segment direction. The angle value accuracy is provided with the + * confidence level of 95 %. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 +*/ +TrailerData ::= SEQUENCE { + refPointId Identifier1B, + hitchPointOffset StandardLength1B, + frontOverhang StandardLength1B OPTIONAL, + rearOverhang StandardLength1B OPTIONAL, + trailerWidth VehicleWidth OPTIONAL, + hitchAngle CartesianAngle, + ... +} + +/** + * This DF provides the trajectory interception indication of ego-VRU ITS-S with another ITS-Ss. + * + * It shall include the following components: + * + * @field subjectStation: indicates the subject station. + * + * @field trajectoryInterceptionProbability: indicates the propbability of the interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. + * + * @field trajectoryInterceptionConfidence: indicates the confidence of interception of the subject station trajectory + * with the trajectory of the station indicated in the component subjectStation. + * + * @category: Vehicle information + * @revision: Created in V2.1.1 + */ +TrajectoryInterceptionIndication ::= SEQUENCE { + subjectStation StationId OPTIONAL, + trajectoryInterceptionProbability TrajectoryInterceptionProbability, + trajectoryInterceptionConfidence TrajectoryInterceptionConfidence OPTIONAL, + ... +} + +/** + * This DF together with its sub DFs Ext1, Ext2 and the DE Ext3 provides the custom (i.e. not ASN.1 standard) definition of an integer with variable lenght, that can be used for example to encode the ITS-AID. + * + * @category: Basic information + * @revision: Created in V2.1.1 + */ +VarLengthNumber::=CHOICE{ + content [0] INTEGER(0..127), -- one octet length + extension [1] Ext1 + } +Ext1::=CHOICE{ + content [0] INTEGER(128..16511), -- two octets length + extension [1] Ext2 +} +Ext2::=CHOICE{ + content [0] INTEGER(16512..2113663), -- three octets length + extension [1] Ext3 + } +Ext3::= INTEGER(2113664..270549119,...) -- four and more octets length + +/** + * This DF indicates the vehicle acceleration at vertical direction and the associated confidence value. + * + * It shall include the following components: + * + * @field verticalAccelerationValue: vertical acceleration value at a point in time. + * + * @field verticalAccelerationConfidence: confidence value of the vertical acceleration value with a predefined confidence level. + * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationComponent instead. + * @category Vehicle information + * @revision: Description revised in V2.1.1 + */ +VerticalAcceleration ::= SEQUENCE { + verticalAccelerationValue VerticalAccelerationValue, + verticalAccelerationConfidence AccelerationConfidence +} + +/** + * This DF provides information related to the identification of a vehicle. + * + * It shall include the following components: + * + * @field wMInumber: World Manufacturer Identifier (WMI) code. + * + * @field vDS: Vehicle Descriptor Section (VDS). + * + * @category: Vehicle information + * @revision: V1.3.1 + */ +VehicleIdentification ::= SEQUENCE { + wMInumber WMInumber OPTIONAL, + vDS VDS OPTIONAL, + ... +} + +/** + * This DF represents the length of vehicle and accuracy indication information. + * + * It shall include the following components: + * + * @field vehicleLengthValue: length of vehicle. + * + * @field vehicleLengthConfidenceIndication: indication of the length value confidence. + * + * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref VehicleLengthV2 instead. + * @category: Vehicle information + * @revision: V1.3.1 + */ +VehicleLength ::= SEQUENCE { + vehicleLengthValue VehicleLengthValue, + vehicleLengthConfidenceIndication VehicleLengthConfidenceIndication +} + +/** + * This DF represents the length of vehicle and accuracy indication information. + * + * It shall include the following components: + * + * @field vehicleLengthValue: length of vehicle. + * + * @field trailerPresenceInformation: information about the trailer presence. + * + * @category: Vehicle information + * @revision: created in V2.1.1 based on @ref VehicleLength but using @ref TrailerPresenceInformation. + */ +VehicleLengthV2 ::= SEQUENCE { + vehicleLengthValue VehicleLengthValue, + trailerPresenceInformation TrailerPresenceInformation +} + +/** + * This DF represents a velocity vector with associated confidence value. + * + * The following options are available: + * + * @field polarVelocity: the representation of the velocity vector in a polar or cylindrical coordinate system. + * + * @field cartesianVelocity: the representation of the velocity vector in a cartesian coordinate system. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +Velocity3dWithConfidence::= CHOICE{ + polarVelocity VelocityPolarWithZ, + cartesianVelocity VelocityCartesian +} + +/** + * This DF represents a velocity vector in a cartesian coordinate system. + + * It shall include the following components: + * + * @field xVelocity: the x component of the velocity vector with the associated confidence value. + * + * @field yVelocity: the y component of the velocity vector with the associated confidence value. + * + * @field zVelocity: the optional z component of the velocity vector with the associated confidence value. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +VelocityCartesian::= SEQUENCE { + xVelocity VelocityComponent, + yVelocity VelocityComponent, + zVelocity VelocityComponent OPTIONAL +} + +/** + * This DF represents a component of the velocity vector and the associated confidence value. + * + * It shall include the following components: + * + * @field value: the value of the component. + * + * @field confidence: the confidence value of the value. + * + * @category: Kinematic information + * @revision: V2.1.1 + */ +VelocityComponent ::= SEQUENCE { + value VelocityComponentValue, + confidence SpeedConfidence +} + +/** + * This DF represents a velocity vector in a polar or cylindrical coordinate system. + * + * It shall include the following components: + * + * @field velocityMagnitude: magnitude of the velocity vector on the reference plane, with the associated confidence value. + * + * @field velocityDirection: polar angle of the velocity vector on the reference plane, with the associated confidence value. + * + * @field zVelocity: the optional z component of the velocity vector along the reference axis of the cylindrical coordinate system, with the associated confidence value. + * + * @category: Kinematic information + * @revision: Created in V2.1.1 + */ +VelocityPolarWithZ::= SEQUENCE { + velocityMagnitude Speed, + velocityDirection CartesianAngle, + zVelocity VelocityComponent OPTIONAL +} + +/** + * This DF provides information about a VRU cluster. + * + * It shall include the following components: + * + * @field clusterId: optional identifier of a VRU cluster . + * + * @field clusterBoundingBoxShape: optionally indicates the shape of the cluster bounding box. + * + * @field clusterCardinalitySize: indicates an estimation of the number of VRUs in the group, i.e. the known members in the cluster + 1 (for the cluster leader) . + * + * @field clusterProfiles: optionally identifies all the VRU profile types that are known to be within the cluster. + * if this component is absent it means that the information is unavailable. + * + * @category: VRU information + * @revision: Created in V2.1.1 +*/ +VruClusterInformation ::= SEQUENCE { + clusterId Identifier1B OPTIONAL, + clusterBoundingBoxShape Shape (WITH COMPONENTS{..., elliptical ABSENT, radial ABSENT, radialShapes ABSENT}) OPTIONAL, + clusterCardinalitySize CardinalNumber1B, + clusterProfiles VruClusterProfiles OPTIONAL, + ... +} + +/** + * This DF represents the status of the exterior light switches of a VRU. + * This DF is an extension of the vehicular DE @ref ExteriorLights. + * + * It shall include the following components: + * + * @field vehicular: represents the status of the exterior light switches of a road vehicle. + * + * @field vruSpecific: represents the status of the exterior light switches of a VRU. + * + * @category: VRU information + * @revision: created in V2.1.1 + */ +VruExteriorLights ::= SEQUENCE { + vehicular ExteriorLights, + vruSpecific VruSpecificExteriorLights, + ... +} + +/** + * This DF indicates the profile of a VRU including sub-profile information + * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.18]: + * + * @field pedestrian: VRU Profile 1 - Pedestrian. + * + * @field bicyclistAndLightVruVehicle: VRU Profile 2 - Bicyclist. + * + * @field motorcyclist: VRU Profile 3 - Motorcyclist. + * + * @field animal: VRU Profile 4 - Animal. + * + * @category: VRU information + * @revision: Created in V2.1.1 + */ +VruProfileAndSubprofile ::= CHOICE { + pedestrian VruSubProfilePedestrian, + bicyclistAndLightVruVehicle VruSubProfileBicyclist, + motorcyclist VruSubProfileMotorcyclist, + animal VruSubProfileAnimal, + ... +} + +/** + * This DF represents an angular component along with a confidence value in the WGS84 coordinate system. + * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. + * + * It shall include the following components: + * + * @field value: the angle value, which can be estimated as the mean of the current distribution. + * + * @field confidence: the confidence value associated to the angle value. + * + * @category: GeoReference information + * @revision: Created in V2.1.1 +*/ +Wgs84Angle ::= SEQUENCE { + value Wgs84AngleValue, + confidence Wgs84AngleConfidence +} + + +/** + * This DF represents a yaw rate of vehicle at a point in time. + * + * It shall include the following components: + * + * @field yawRateValue: yaw rate value at a point in time. + * + * @field yawRateConfidence: confidence value associated to the yaw rate value. + * + * @category: Vehicle Information + * @revision: V1.3.1 + */ +YawRate::= SEQUENCE { + yawRateValue YawRateValue, + yawRateConfidence YawRateConfidence +} + +END diff --git a/asn2md.py b/asn2md.py index 1f5a139..2b1e4ed 100644 --- a/asn2md.py +++ b/asn2md.py @@ -16,12 +16,15 @@ RE_MODULE = re.compile( r'^\s*([A-Z][\w-]*)\s*({.*?})?\s*DEFINITIONS.*?::=\s*? RE_SPACES = re.compile(r'\s+') -RE_COMMENTS = re.compile(r'^\s*--.*?\n|(?:^\s*)?--.*?(?:--[\t ]*|$)|(?:^\s*)?/\*.*?\*/[\t ]*\n?', re.MULTILINE|re.DOTALL) +RE_COMMENTS = re.compile(r'^\s*--.*?\n|--.*?(?:--|$)|/\*.*?\*/[\t ]*\n?', re.MULTILINE|re.DOTALL) RE_BASIC_TYPES = re.compile(r'^OCTET\s+STRING|BIT\s+STRING|BOOLEAN|INTEGER|FLOAT|SEQUENCE|SET|NULL') +#RE_TYPE_BODY_1 = re.compile(r'.*?{(.*)}\s*WITH', re.MULTILINE|re.DOTALL) +#RE_TYPE_BODY_2 = re.compile(r'.*?{(.*)}\s*(?:WITH.*|\(.*?\)|\s*$)', re.MULTILINE|re.DOTALL) RE_TYPE_BODY = re.compile(r'.*?{(.*)}\s*(?:WITH.*|\(.*?\)|\s*$)', re.MULTILINE|re.DOTALL) +#RE_FIELDS = re.compile(r'^\s*(?:/\*\*.*?\*/)|^\s*([\w-]+?)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][.\w-]+)?(.*?)(?:,((?:\s*--!?<.*?\n)*)|((?:--!?<.*?\n)*)$)', re.MULTILINE | re.DOTALL| re.VERBOSE) RE_FIELDS = re.compile(r'^\s*/\*.*?\*/|^\s*--\!.*?\n|^[\s&]*([\w-]+)\s+(OCTET\s+STRING|BIT\s+STRING|[A-Z][\w-]+)?((?:{[^}]*}|\([^)]*\)|.)*?)(?:,|(--)|$)', re.MULTILINE | re.DOTALL) RE_EXPORTS = re.compile(r'^\s*EXPORTS.*?;', re.DOTALL | re.MULTILINE) @@ -37,8 +40,9 @@ RE_DOXY_ASN_COMMENTS = re.compile(r'^\s*--[-!#](:?$|\s(.*))', re.MULTILINE) RE_DOXY_C_COMMENTS = re.compile(r'^\s*/\*\*\s(.*?)\*/', re.MULTILINE | re.DOTALL) RE_DOXY_C_COMMENTS_I = re.compile(r'\s*\*+') +RE_STRIPSTAR = re.compile(r'^\s*\*', re.MULTILINE) +RE_POWER_SIGN = re.compile('\^(-?\w+|\(.*?\))') -RE_STRIPSTAR = re.compile(r'^\s*\*?', re.MULTILINE) RE_DOXY_REF = re.compile(r'@ref\s+([\w-]+)') RE_DOXY_CLASS = re.compile(r'@(?:class|struct|details):?\s+([\w-]+)') @@ -56,11 +60,11 @@ RE_DOXY_SECTION = re.compile(r"^\s*@(brief|note|(class|struct|param|field|detail # RE_TYPE = re.compile(r'(([A-Z][\w-]*)\s*::=[\w \t]+(?:{+(.*?)}+)?.*?)\n\s*\n', re.MULTILINE | re.DOTALL) RE_TYPE = re.compile(r'^\s*([A-Z][\w-]*)?\s*([{} \t:\w-]*?)?::=([\w \t]+.*?)\n\s*\n', re.MULTILINE | re.DOTALL) RE_OPTIONS = re.compile(r'^\s*@options[\s:]+(.+)', re.MULTILINE) -RE_DOXY_OTHER = re.compile(r'\^(\w+)', re.MULTILINE) extTypes = {} cpos = 0 o_args = [] +m_options = [] def urlquote(s): if (sys.version_info > (3, 0)): @@ -85,7 +89,7 @@ def parseText(content, indent=None): content = RE_DOXY_STRIP_SINGLE_TAG.sub('', content) - content = re.sub('\^(\w+)', '\\1', content) + content = RE_POWER_SIGN.sub('\\1', content) return indentLines(content, indent) @@ -112,6 +116,14 @@ def parseDoxyComments(content:str): ret += RE_STRIPSTAR.sub('', m.group(1)) return ret +def parseOptions(doc, opts): + def repl_options(m): + if m.group(1) is not None: + for o in m.group(1).split(','): + setattr(opts, o.strip(), True) + return '' + return RE_OPTIONS.sub(repl_options, doc) + def parseModule(mname, content): global cpos cpos = 0 @@ -139,91 +151,79 @@ def parseModule(mname, content): # parse types def repl_type (m, doc): - title = typeName = m.group(1) # type name + global m_options + title = t = m.group(1) # type name f_params = {} s_unit = '' s_category = '' s_note = '' s_revision = '' - options = copy.copy(o_args) - - # doc is the prepending comment. Check if not None and not Empty - if doc : + options = copy.copy(m_options) + if doc : # doc is the prepending comment. Check if not None and not Empty doc = parseDoxyComments(doc) # parse options - def repl_options(m): - nonlocal options - if m.group(1) is not None: - for o in m.group(1).split(','): - setattr(options, o.strip().replace('-', '_'), True) - return '' - doc=RE_OPTIONS.sub(repl_options, doc) + doc = parseOptions(doc, options) - # parse @param, @details, @brief, etc... def repl_section (m): nonlocal title - nonlocal typeName + nonlocal t nonlocal f_params nonlocal s_note - nonlocal options - ret = '' l = m.group(4).lstrip(":, \t").lstrip('\n') if m.group(2) is not None: # this can be class|struct|details|param|field - if m.group(3) == typeName: + if m.group(3) == t: ret = parseText(l) else: if len(l): + if len(f_params) == 0: + ret = '--((FIELDS))--' f_params[m.group(3)] = parseText(l, 2) - + elif m.group(1) == 'brief': if options.brief_as_title: title = parseText(l) else: ret = parseText(l) - elif m.group(1) == 'note': s_note = '\n>>>\n' + 'NOTE: ' + parseText(l).rstrip() + '\n>>>\n' - else: ret = m.string[m.start():m.end()] return ret doc = RE_DOXY_SECTION.sub(repl_section, doc) - # parse @category XXX [, YYY, ZZZ] def repl_category(m): nonlocal s_category s_category = '\n    **Categories**: ' - if options.category_links: - for l in m.group(1).split(','): - s_category += '[{0}](#{1}) '.format(l.strip(), urlquote(l.strip())) - else: - for l in m.group(1).split(','): - s_category += l.strip() + ' ' + for l in m.group(1).split(','): +# s_category += '[{0}](#{1}) '.format(l.strip(), urlquote(l.strip())) + s_category += parseText(l).strip() + ' ' s_category += '\n' return '' doc = RE_DOXY_CATEGORY.sub(repl_category, doc) def repl_unit(m): nonlocal s_unit - s_unit = '\n    **Unit**: _' + m.group(1).strip() + '_\n' + s_unit = '\n    **Unit**: _' + parseText(m.group(1)).strip() + '_\n' return '' doc = RE_DOXY_UNIT.sub(repl_unit, doc) def repl_revision(m): nonlocal s_revision - s_revision = '\n    **Revision**: _' + m.group(1).strip() + '_\n' + s_revision = '\n    **Revision**: _' + parseText(m.group(1)).strip() + '_\n' return '' doc = RE_DOXY_REVISION.sub(repl_revision, doc) else: doc = '' + doc = [x.strip() for x in doc.split('--((FIELDS))--')] + ret = '' - if typeName is not None: + if t is not None: fields = '' - ret = '\n### {1}\n'.format(typeName, title) + parseText(doc) + ret = '\n### {1}\n'.format(t, title) + parseText(doc[0]) # parse fields and get out fields descriptions if m.group(3) is not None: @@ -240,38 +240,39 @@ def parseModule(mname, content): # add description to the previous type if len(field): fields += parseInlineComments(fm.string[pos:fm.start()], 3) - field = '' + field = '' f = fm.group(1).strip() ext = fm.group(3) or '' if f in f_params: field = f_params.pop(f) + '\n\n' if fm.group(2) is not None: + fTitle = 'Fields:\n' if len(field) or not options.no_auto_fields: - fTitle = 'Fields:\n' - fTypeName = fm.group(2).strip() - if RE_BASIC_TYPES.match(fTypeName) is not None: - field = '* {0} **{1}** {2}
\n'.format(f, fTypeName, ext) + field + t = fm.group(2).strip() + if RE_BASIC_TYPES.match(t) is not None: + field = '* {0} of type **{1}** {2}
\n'.format(f, t, ext) + field else: - field = '* {0} [**{1}**]({2}#{1}) {3}
\n'.format(f, fTypeName, extTypes.get(fTypeName,''), ext) + field + field = '* {0} of type [**{1}**]({2}#{1}) {3}
\n'.format(f, t, extTypes.get(t,''), ext) + field else: fTitle = 'Values:\n' if len(field) or not options.no_auto_values: field = '* **{0}** {1}
\n'.format(f, ext) + field if len(field): - field += parseText(parseDoxyComments(fm.string[pos:fm.start()]).strip(), 3) + field += parseText(fm.string[pos:fm.start()], 3) pos = fm.end() if fm.group(4) is not None: # keep '--' for the next round pos -= 2 if len(field): fields += field - field = '' if len(field): fields += parseInlineComments(typeBody[pos:], 3) # add all other fields defined as @params - if 'force_all_fields' in options or 'force_all_fields' in o_args: + if 'force-all-fields' in options: for f in f_params: fields += '* {}
\n{}\n\n'.format(f, f_params[f]) + if 'no-fields-header' in options: + fTitle = '' if len(fields): ret = ret.strip() + '\n\n' + fTitle + fields else: @@ -283,6 +284,12 @@ def parseModule(mname, content): for p in f_params: ret += '* `{0}` {1}\n'.format(p, f_params[p]) + try: + if len(doc[1]): + ret += doc[1] + '\n' + except: + pass + return ret + s_unit + s_category + s_revision + s_note + '```asn1\n' + RE_COMMENTS.sub('', m.group(0).strip()) +'\n```\n\n' pos = 0 @@ -295,23 +302,17 @@ def parseModule(mname, content): def parseAsn(outDir, content) : # iterate modules in the file + global m_options pos= 0 cnt = 0 + m_options = copy.copy(o_args) for m in RE_MODULE.finditer(content): ret = '# ASN.1 module {}\n OID: _{}_\n'.format(m.group(1), RE_SPACES.sub(' ', m.group(2))) - ret += parseDoxyComments(content[pos:m.start()]) + '\n' + ret += parseText(parseOptions(parseDoxyComments(content[pos:m.start()]), m_options)) + '\n' if m.group(3) is not None: ret += parseModule(m.group(1), m.group(3)) ret += '\n\n' - try: - f = open(outDir + '/' + m.group(1) + '.md', mode='w',encoding='utf-8') - f.write(ret) - except OSError as err: - print("OS error: {0}".format(err)) - except BaseException as err: - print(f"Unexpected {err=}, {type(err)=}") - finally: - f.close() + open(outDir + '/' + m.group(1) + '.md', "w",encoding='utf-8').write(ret) pos = m.end() cnt += 1 return cnt @@ -324,7 +325,7 @@ def main(): ap.add_argument('--force-all-fields', '-f', default=False,action='store_true', help='Add all fields in the list even if empty') ap.add_argument('--no-auto-fields', '-F', default=False,action='store_true', help='Add fields only if @param or @field is defined') ap.add_argument('--no-auto-values', '-V', default=False,action='store_true', help='Do not add named values or enums') - ap.add_argument('--category-links', '-c', default=False,action='store_true', help='Create links for categories') + ap.add_argument('--no-fields-header', '-H', default=False,action='store_true', help='Do not add fields and values header') ap.add_argument('modules', action='store', nargs='+', help='ASN.1 files') o_args = ap.parse_args() -- GitLab From ae7fcce22f5dfd7a67949c3b82c81a9ba8c67f83 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Fri, 23 Sep 2022 07:41:04 +0000 Subject: [PATCH 73/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 332501 -> 335852 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index e301a2584fe74f31f0a67f73b6e23ba322f3bd25..a10f14fa0eb358bd586bd3d8cf9167c57053fbcf 100644 GIT binary patch delta 22127 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 ZVV*VwV_BWVM09|gevzTh32+-u{s$CW%TxdW delta 19117 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 Rr6!IJF%+xILJWh+{{tHYu~Gm4 -- GitLab From d2e1dca48445cc3b4e17f63db46c1496e989729a Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Fri, 23 Sep 2022 09:45:43 +0200 Subject: [PATCH 74/91] final version for approval --- asn2md.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asn2md.py b/asn2md.py index 2b1e4ed..c98cc14 100644 --- a/asn2md.py +++ b/asn2md.py @@ -110,7 +110,7 @@ def parseInlineComments(content:str, indent=None): def parseDoxyComments(content:str): # keep only '--! ' and /** */ comments # convert '--! ' comments to C-style - content = RE_DOXY_ASN_COMMENTS.sub(r'/** *\g<1>*/', content) + content = RE_DOXY_ASN_COMMENTS.sub('/** *\g<1>*/', content) ret = '' for m in RE_DOXY_C_COMMENTS.finditer(content): ret += RE_STRIPSTAR.sub('', m.group(1)) -- GitLab From 657ca80c152e302fad5520eec2cbe36a75dc60ec Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Fri, 23 Sep 2022 09:52:18 +0200 Subject: [PATCH 75/91] final version for approval --- asn2md.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asn2md.py b/asn2md.py index c98cc14..00b2fea 100644 --- a/asn2md.py +++ b/asn2md.py @@ -278,7 +278,7 @@ def parseModule(mname, content): else: if title: ret = '### {}\n\n'.format(title) - l = parseText(parseDoxyComments(doc)) + l = parseText(parseDoxyComments(doc[0])) if len(l): ret += l + '\n\n' for p in f_params: -- GitLab From 924b8e50effa078eb2872d5bbec0b27aafc48bf8 Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Tue, 4 Oct 2022 15:12:49 +0200 Subject: [PATCH 76/91] fix editHelp issues --- ETSI-ITS-CDD.asn | 146 +++++++++++++++++++++++------------------------ asn2md.py | 12 ++-- 2 files changed, 79 insertions(+), 79 deletions(-) diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn index 15b89b1..e52d8e2 100644 --- a/ETSI-ITS-CDD.asn +++ b/ETSI-ITS-CDD.asn @@ -27,12 +27,12 @@ AccelerationChange::= ENUMERATED { } /** - * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy of an acceleration value with a default confidence level of 95%. + * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy of an acceleration value with a default confidence level of 95 %. * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 101)` if the confidence value is equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `101` if the confidence value is out of range i.e. greater than 10 m/s2, + * - `n (n > 0 and n < 101)` if the confidence value is equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - `101` if the confidence value is out of range i.e. greater than 10 m/s^2, * - `102` if the confidence value is unavailable. * * The value 0 shall not be used. @@ -45,7 +45,7 @@ AccelerationChange::= ENUMERATED { * * @note: If an acceleration value is received and its confidence value is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. * - * @unit 0,1 m/s2 + * @unit 0,1 m/s^2 * @category: Kinematic information * @revision: Description revised in V2.1.1 */ @@ -92,11 +92,11 @@ AccelerationControl ::= BIT STRING { * * The value shall be set to: * - `0` to indicate no acceleration, - * - `n (n > 0 and n < 160)` to indicate acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration values greater than 15,9 m/s2, + * - `n (n > 0 and n < 160)` to indicate acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. * - * @unit 0,1 m/s2 + * @unit 0,1 m/s^2 * @category: Kinematic information * @revision: Created in V2.1.1 */ @@ -109,14 +109,14 @@ AccelerationMagnitudeValue ::= INTEGER { * This DE represents the value of an acceleration component in a defined coordinate system. * * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s2, - * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration values greater than 15,9 m/s2, + * - `-160` for acceleration values equal to or less than -16 m/s^2, + * - `n (n > -160 and n = 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. * * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. - * @unit 0,1 m/s2 + * @unit 0,1 m/s^2 * @category: Kinematic information * @revision: Created in V2.1.1 */ @@ -305,7 +305,7 @@ AirHumidity ::= INTEGER { } (1..1001) /** - * This DE indicates the altitude confidence value which represents the estimated absolute accuracy of an altitude value of a geographical point with a default confidence level of 95%. + * This DE indicates the altitude confidence value which represents the estimated absolute accuracy of an altitude value of a geographical point with a default confidence level of 95 %. * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: @@ -398,7 +398,7 @@ AngleConfidence ::= INTEGER { } (1..127) /** - * This DE indicates the angular speed confidence value which represents the estimated absolute accuracy of an angular speed value with a default confidence level of 95%. + * This DE indicates the angular speed confidence value which represents the estimated absolute accuracy of an angular speed value with a default confidence level of 95 %. * If required, the confidence level can be defined by the corresponding standards applying this DE. * For correlation computation, maximum interval levels can be assumed. * @@ -427,18 +427,18 @@ AngularSpeedConfidence ::= ENUMERATED { } /** - * This DE indicates the angular acceleration confidence value which represents the estimated accuracy of an angular acceleration value with a default confidence level of 95%. + * This DE indicates the angular acceleration confidence value which represents the estimated accuracy of an angular acceleration value with a default confidence level of 95 %. * If required, the confidence level can be defined by the corresponding standards applying this DE. * For correlation computation, maximum interval levels shall be assumed. * * The value shall be set to: - * - 0 - `degSecSquared-01` - if the accuracy is equal to or less than 1 degree/second2, - * - 1 - `degSecSquared-02` - if the accuracy is equal to or less than 2 degrees/second2 and greater than 1 degree/second2, - * - 2 - `degSecSquared-05` - if the accuracy is equal to or less than 5 degrees/second2 and greater than 1 degree/second2, - * - 3 - `degSecSquared-10` - if the accuracy is equal to or less than 10 degrees/second2 and greater than 5 degrees/second2, - * - 4 - `degSecSquared-20` - if the accuracy is equal to or less than 20 degrees/second2 and greater than 10 degrees/second2, - * - 5 - `degSecSquared-50` - if the accuracy is equal to or less than 50 degrees/second2 and greater than 20 degrees/second2, - * - 6 - `outOfRange` - if the accuracy is out of range, i.e. greater than 50 degrees/second2, + * - 0 - `degSecSquared-01` - if the accuracy is equal to or less than 1 degree/second^2, + * - 1 - `degSecSquared-02` - if the accuracy is equal to or less than 2 degrees/second^2 and greater than 1 degree/second^2, + * - 2 - `degSecSquared-05` - if the accuracy is equal to or less than 5 degrees/second^2 and greater than 1 degree/second^2, + * - 3 - `degSecSquared-10` - if the accuracy is equal to or less than 10 degrees/second^2 and greater than 5 degrees/second^2, + * - 4 - `degSecSquared-20` - if the accuracy is equal to or less than 20 degrees/second^2 and greater than 10 degrees/second^2, + * - 5 - `degSecSquared-50` - if the accuracy is equal to or less than 50 degrees/second^2 and greater than 20 degrees/second^2, + * - 6 - `outOfRange` - if the accuracy is out of range, i.e. greater than 50 degrees/second^2, * - 7 - `unavailable` - if the accuracy information is unavailable. * * @category: Kinematic information @@ -478,7 +478,7 @@ AxlesCount ::= INTEGER{ * * The value shall be set to: * - `2999` indicates that the applicable value is less than 29990 Pa, - * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, + * - `n (n ? 3000 and n = 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, * - `12001` indicates that the values is greater than 120000 Pa, * - `12002` indicates that the information is not available. * @@ -531,7 +531,7 @@ CardinalNumber3b ::= INTEGER(1..8) * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `n (n > 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + * - `n (n = 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, * - `36001` if the accuracy information is not available. * * The value 3600 shall not be used. @@ -550,13 +550,13 @@ CartesianAngleValue ::= INTEGER { * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `-255` if the acceleration is equal to or less than -255 degrees/s2, - * - `n` (`n > -255` and `n < 255`) if the acceleration is equal to or less than n x 1 degree/s2, - and greater than `(n-1)` x 0,01 degree/s2, - * - `255` if the acceleration is greater than 254 degrees/s2, + * - `-255` if the acceleration is equal to or less than -255 degrees/s^2, + * - `n` (`n > -255` and `n < 255`) if the acceleration is equal to or less than n x 1 degree/s^2, + and greater than `(n-1)` x 0,01 degree/s^2, + * - `255` if the acceleration is greater than 254 degrees/s^2, * - `256` if the information is unavailable. * - * @unit: degree/s2 (degrees per second squared) + * @unit: degree/s^2 (degrees per second squared) * @category: Kinematic information * @revision: Created in V2.1.1 */ @@ -820,7 +820,7 @@ ConfidenceLevel ::= INTEGER { } (1..101) /** - * This DE indicates the coordinate confidence value which represents the estimated absolute accuracy of a position coordinate with a default confidence level of 95%. + * This DE indicates the coordinate confidence value which represents the estimated absolute accuracy of a position coordinate with a default confidence level of 95 %. * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: @@ -878,7 +878,7 @@ CurvatureCalculationMode ::= ENUMERATED { } /** - * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy range of a curvature value with a confidence level of 95%. + * This DE indicates the acceleration confidence value which represents the estimated absolute accuracy range of a curvature value with a confidence level of 95 %. * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: @@ -1034,7 +1034,7 @@ DangerousSituationSubCauseCode ::= INTEGER { * * The value shall be set to: * - `-12 700` for values equal to or lower than -127 metres, - * - `n` (`n > -12 700` and `n <= 0) for altitude offset n x 0,01 metre below the reference position, + * - `n` (`n > -12 700` and `n = 0) for altitude offset n x 0,01 metre below the reference position, * - `0` for no altitudinal offset, * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 metre above the reference position, * - `12 799` for values equal to or greater than 127,99 metres, @@ -1055,7 +1055,7 @@ DeltaAltitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, + * - `n` (`n = -131 071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, * - `0` for no latitudinal offset, * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the north from the reference position, * - `131 072` when the information is unavailable. @@ -1073,7 +1073,7 @@ DeltaLatitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, + * - `n` (`n = -131 071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, * - `0` for no longitudinal offset, * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the east from the reference position, * - `131 072` when the information is unavailable. @@ -1147,7 +1147,7 @@ DeltaTimeTenthOfSecond::= INTEGER { * * The value shall be set to: * - `-0` for a difference in time of 0 seconds. - * - `n (n > 0 n <= 86400)` to indicate a time value equal to or less than n x 1 s, and greater than (n-1) x 1 s, + * - `n (n > 0 n = 86400)` to indicate a time value equal to or less than n x 1 s, and greater than (n-1) x 1 s, * * @unit: 1 s * @category: Basic information @@ -1547,7 +1547,7 @@ HeadingValue ::= INTEGER { * rear to front). * * The value shall be set to: - * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `n (n = 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `99` if the height is out of range, i.e. equal to or greater than 0,98 m, * - `100` if the height information is not available. * @@ -1841,7 +1841,7 @@ LaneType::= INTEGER{ * This DE represents the width of a lane measured at a defined position. * * The value shall be set to: - * - `n (n >= 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `n (n = 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `1022` if the lane width is out of range, i.e. greater than 10,21 m, * - `1023` if the lane width information is not available. * @@ -1859,7 +1859,7 @@ LaneWidth::= INTEGER (0..1023) * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >= -900 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, + * - `n (n = -900 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, * - `0` is used for the latitude of the equator, * - `n (n > 0 and n < 900 000 001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator, * - `900 000 001` when the information is unavailable. @@ -1877,18 +1877,18 @@ Latitude ::= INTEGER { * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. * * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s2, - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation - * with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, + * - `-160` for acceleration values equal to or less than -16 m/s^2, + * - `n (n > -160 and n = 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation + * with acceleration equal to or less than n x 0,1 m/s^2 and greater than (n-1) x 0,1 m/s^2, * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation - with acceleration equal to or less than n x 0,1 m/s2 and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration values greater than 15,9 m/s2, + with acceleration equal to or less than n x 0,1 m/s^2 and greater than (n-1) x 0,1 m/s^2, + * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. * * @note: the empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead. * - * @unit: 0,1 m/s2 + * @unit: 0,1 m/s^2 * @category: Vehicle information * @revision: Description updated in V2.1.1 (the meaning of 160 has changed slightly). */ @@ -1943,17 +1943,17 @@ Longitude ::= INTEGER { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s2, - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2 - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration values greater than 15,9 m/s2, + * - `-160` for acceleration values equal to or less than -16 m/s^2, + * - `n (n > -160 and n = 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2 + * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. * * This acceleration is along the tangent plane of the road surface and does not include gravity components. * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead. * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. - * @unit: 0,1 m/s2 + * @unit: 0,1 m/s^2 * @category: Vehicle information * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). T */ @@ -1967,7 +1967,7 @@ LongitudinalAccelerationValue::= INTEGER { * This DE represents the longitudinal offset of a map-matched position along a matched lane, beginning from the lane's starting point. * * The value shall be set to: - * - `n (n >= 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `n (n = 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, * - `32 766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m, * - `32 767` if the longitudinal offset information is not available. * @@ -1981,7 +1981,7 @@ LongitudinalLanePositionValue ::= INTEGER { }(0..32767) /** - * This DE indicates the longitudinal lane position confidence value which represents the estimated accuracy of longitudinal lane position measurement with a default confidence level of 95%. + * This DE indicates the longitudinal lane position confidence value which represents the estimated accuracy of longitudinal lane position measurement with a default confidence level of 95 %. * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: @@ -2095,7 +2095,7 @@ MessageId::= INTEGER { * This DE represents the number of occupants in a vehicle. * * The value shall be set to: - * - `n (n >= 0 and n < 126)` for the number n of occupants, + * - `n (n = 0 and n < 126)` for the number n of occupants, * - `126` for values equal to or higher than 125, * - `127` if information is not available. * @@ -2143,7 +2143,7 @@ ObjectDimensionValue ::= INTEGER { }(1..256) /** - * This DE indicates the object dimension confidence value which represents the estimated absolute accuracy of an object dimension value with a default confidence level of 95%. + * This DE indicates the object dimension confidence value which represents the estimated absolute accuracy of an object dimension value with a default confidence level of 95 %. * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: @@ -2845,7 +2845,7 @@ SpecialTransportType ::= BIT STRING { } (SIZE(4)) /** - * This DE indicates the speed confidence value which represents the estimated absolute accuracy of a speed value with a default confidence level of 95%. + * This DE indicates the speed confidence value which represents the estimated absolute accuracy of a speed value with a default confidence level of 95 %. * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: @@ -2889,7 +2889,7 @@ SpeedLimit ::= INTEGER (1..255) * - `16 382` for speed values greater than 163,81 m/s, * - `16 383` if the speed accuracy information is not available. * - * @note: the definition of “standstill” is out of scope of this document. + * @note: the definition of standstill is out of scope of the present document. * * @unit: 0,01 m/s * @category: Kinematic information @@ -2925,13 +2925,13 @@ VelocityComponentValue ::= INTEGER { * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. * * The value shall be set to: - * - `0` to indicate an estimated probability of a loss of stability of 0%, i.e. "stable", + * - `0` to indicate an estimated probability of a loss of stability of 0 %, i.e. "stable", * - `n (n > 0 and n < 50)` to indicate the actual stability level, - * - `50` to indicate a estimated probability of a loss of stability of 100%, i.e. "total loss of stability", + * - `50` to indicate a estimated probability of a loss of stability of 100 %, i.e. "total loss of stability", * - the values between 51 and 62 are reserved for future use, * - `63`: this value indicates that the information is unavailable. * - * @unit: 2% + * @unit: 2 % * @category: Kinematic information * @revision: Created in V2.1.1 */ @@ -3151,7 +3151,7 @@ SteeringWheelAngleConfidence ::= INTEGER { * * The value shall be set to: * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right, - * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, + * - `n (n > -511 and n = 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, turning clockwise (i.e. to the right), * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, turning counter-clockwise (i.e. to the left), @@ -3357,11 +3357,11 @@ TrailerPresenceInformation ::= ENUMERATED { * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. * * The value shall be set to: - * - `n (n >= 0 and n <= 50)` to indicate the actual probability, + * - `n (n = 0 and n = 50)` to indicate the actual probability, * - the values between 51 and 62 are reserved, * - `63`: to indicate that the information is unavailable. * - * @unit: 2% + * @unit: 2 % * @category: Kinematic information * @revision: Created in V2.1.1 */ @@ -3631,16 +3631,16 @@ VehicleWidth ::= INTEGER { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. * * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s2, - * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s2, and greater than (n-1) x 0,1 m/s2, - * - `160` for acceleration values greater than 15,9 m/s2, + * - `-160` for acceleration values equal to or less than -16 m/s^2, + * - `n (n > -160 and n = 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. * * @category: Vehicle information - * @unit: 0,1 m/s2 + * @unit: 0,1 m/s^2 * @revision: Desciption updated in V2.1.1 (the meaning of 160 has changed slightly). * */ @@ -3904,7 +3904,7 @@ VruSpecificExteriorLights ::= BIT STRING { * This DE indicates the perpendicular distance between front and rear axle of the wheel base of vehicle. * * The value shall be set to: - * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `n (n = 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres, * - `127` indicates that the information is unavailable. * @@ -3922,7 +3922,7 @@ WheelBaseVehicle ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >=1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, + * - `n (n = 1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, * - `127` if the confidence value is not available. * @@ -3983,7 +3983,7 @@ WrongWayDrivingSubCauseCode ::= INTEGER { } (0..255) /** - * This DE indicates the yaw rate confidence value which represents the estimated accuracy for a yaw rate value with a default confidence level of 95%. + * This DE indicates the yaw rate confidence value which represents the estimated accuracy for a yaw rate value with a default confidence level of 95 %. * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: @@ -4030,7 +4030,7 @@ YawRateConfidence ::= ENUMERATED { * * The value shall be set to: * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right, - * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, + * - `n (n > -32 766 and n = 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s, * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s, @@ -5310,7 +5310,7 @@ MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyCl * @field accessTechnologyClass: channel access technology to which this mitigation is intended to be applied. * * @field lowDutyCycle: duty cycle limit. - * @unit: 0,01% steps + * @unit: 0,01 % steps * * @field powerReduction: the delta value of power to be reduced. * @unit: dB @@ -5577,7 +5577,7 @@ PolygonalShape ::= SEQUENCE { /** * 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 + * 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: @@ -5949,7 +5949,7 @@ RoadSegmentReferenceId ::= SEQUENCE { * @field safeDistanceIndicator: indicates whether the distance between the ego ITS-S and the traffic participant(s) is safe. * 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. * - * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi2 + LoDi2 + VDi2)/relative speed + * @field timeToCollision: optionally indicated the time-to-collision calculated as sqrt(LaDi^2 + LoDi^2 + VDi^2/relative speed * and represented in the nearest 100 ms. This component may be present only if subjectStation is present. * * @note: the abbreviations used are Lateral Distance (LaD), Longitudinal Distance (LoD) and Vertical Distance (VD) diff --git a/asn2md.py b/asn2md.py index 2b1e4ed..ef07688 100755 --- a/asn2md.py +++ b/asn2md.py @@ -110,7 +110,7 @@ def parseInlineComments(content:str, indent=None): def parseDoxyComments(content:str): # keep only '--! ' and /** */ comments # convert '--! ' comments to C-style - content = RE_DOXY_ASN_COMMENTS.sub(r'/** *\g<1>*/', content) + content = RE_DOXY_ASN_COMMENTS.sub('/** *\g<1>*/', content) ret = '' for m in RE_DOXY_C_COMMENTS.finditer(content): ret += RE_STRIPSTAR.sub('', m.group(1)) @@ -188,7 +188,7 @@ def parseModule(mname, content): else: ret = parseText(l) elif m.group(1) == 'note': - s_note = '\n>>>\n' + 'NOTE: ' + parseText(l).rstrip() + '\n>>>\n' + s_note = '\n>>>\n' + 'NOTE: ' + parseText(l).rstrip() + '\n>>>\n' else: ret = m.string[m.start():m.end()] return ret @@ -196,7 +196,7 @@ def parseModule(mname, content): def repl_category(m): nonlocal s_category - s_category = '\n    **Categories**: ' + s_category = '\n    **Categories:** ' for l in m.group(1).split(','): # s_category += '[{0}](#{1}) '.format(l.strip(), urlquote(l.strip())) s_category += parseText(l).strip() + ' ' @@ -206,13 +206,13 @@ def parseModule(mname, content): def repl_unit(m): nonlocal s_unit - s_unit = '\n    **Unit**: _' + parseText(m.group(1)).strip() + '_\n' + s_unit = '\n    **Unit:** _' + parseText(m.group(1)).strip() + '_\n' return '' doc = RE_DOXY_UNIT.sub(repl_unit, doc) def repl_revision(m): nonlocal s_revision - s_revision = '\n    **Revision**: _' + parseText(m.group(1)).strip() + '_\n' + s_revision = '\n    **Revision:** _' + parseText(m.group(1)).strip() + '_\n' return '' doc = RE_DOXY_REVISION.sub(repl_revision, doc) else: @@ -278,7 +278,7 @@ def parseModule(mname, content): else: if title: ret = '### {}\n\n'.format(title) - l = parseText(parseDoxyComments(doc)) + l = parseText(parseDoxyComments(doc[0])) if len(l): ret += l + '\n\n' for p in f_params: -- GitLab From 1a8c71d4abaa05fdd26b4bc87f95de4c4e2b7a88 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Tue, 4 Oct 2022 13:13:22 +0000 Subject: [PATCH 77/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 335852 -> 336109 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index a10f14fa0eb358bd586bd3d8cf9167c57053fbcf..f482f9ca15a3fbbb4b614342dd4b47cc827de0a6 100644 GIT binary patch delta 9789 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 delta 9036 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 H$8-M&4{TiE -- GitLab From fc6b6e07c0b8a1513f8558e808c9cb7cc75fcb0e Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Tue, 4 Oct 2022 15:31:51 +0200 Subject: [PATCH 78/91] fix editHelp issues --- ETSI-ITS-CDD.asn | 62 ++++++++++++++++++++++++------------------------ 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn index e52d8e2..89c3701 100644 --- a/ETSI-ITS-CDD.asn +++ b/ETSI-ITS-CDD.asn @@ -110,7 +110,7 @@ AccelerationMagnitudeValue ::= INTEGER { * * The value shall be set to: * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n = 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - `n (n > -160 and n ≤ 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. @@ -478,7 +478,7 @@ AxlesCount ::= INTEGER{ * * The value shall be set to: * - `2999` indicates that the applicable value is less than 29990 Pa, - * - `n (n ? 3000 and n = 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, + * - `n (n ? 3000 and n ≤ 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, * - `12001` indicates that the values is greater than 120000 Pa, * - `12002` indicates that the information is not available. * @@ -531,7 +531,7 @@ CardinalNumber3b ::= INTEGER(1..8) * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `n (n = 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + * - `n (n ≥ 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, * - `36001` if the accuracy information is not available. * * The value 3600 shall not be used. @@ -1055,7 +1055,7 @@ DeltaAltitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n = -131 071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, + * - `n` (`n ≥ -131 071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, * - `0` for no latitudinal offset, * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the north from the reference position, * - `131 072` when the information is unavailable. @@ -1073,7 +1073,7 @@ DeltaLatitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n = -131 071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, + * - `n` (`n ≥ -131 071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, * - `0` for no longitudinal offset, * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the east from the reference position, * - `131 072` when the information is unavailable. @@ -1147,7 +1147,7 @@ DeltaTimeTenthOfSecond::= INTEGER { * * The value shall be set to: * - `-0` for a difference in time of 0 seconds. - * - `n (n > 0 n = 86400)` to indicate a time value equal to or less than n x 1 s, and greater than (n-1) x 1 s, + * - `n (n > 0 n ≤ 86400)` to indicate a time value equal to or less than n x 1 s, and greater than (n-1) x 1 s, * * @unit: 1 s * @category: Basic information @@ -1547,7 +1547,7 @@ HeadingValue ::= INTEGER { * rear to front). * * The value shall be set to: - * - `n (n = 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `n (n ≥ 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `99` if the height is out of range, i.e. equal to or greater than 0,98 m, * - `100` if the height information is not available. * @@ -1841,7 +1841,7 @@ LaneType::= INTEGER{ * This DE represents the width of a lane measured at a defined position. * * The value shall be set to: - * - `n (n = 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `n (n ≥ 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `1022` if the lane width is out of range, i.e. greater than 10,21 m, * - `1023` if the lane width information is not available. * @@ -1859,7 +1859,7 @@ LaneWidth::= INTEGER (0..1023) * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n = -900 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, + * - `n (n ≥ -900 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, * - `0` is used for the latitude of the equator, * - `n (n > 0 and n < 900 000 001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator, * - `900 000 001` when the information is unavailable. @@ -1878,7 +1878,7 @@ Latitude ::= INTEGER { * * The value shall be set to: * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n = 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation + * - `n (n > -160 and n ≤ 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation * with acceleration equal to or less than n x 0,1 m/s^2 and greater than (n-1) x 0,1 m/s^2, * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation with acceleration equal to or less than n x 0,1 m/s^2 and greater than (n-1) x 0,1 m/s^2, @@ -1944,7 +1944,7 @@ Longitude ::= INTEGER { * * The value shall be set to: * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n = 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2 + * - `n (n > -160 and n ≤ 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2 * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. @@ -1967,7 +1967,7 @@ LongitudinalAccelerationValue::= INTEGER { * This DE represents the longitudinal offset of a map-matched position along a matched lane, beginning from the lane's starting point. * * The value shall be set to: - * - `n (n = 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `n (n ≥ 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, * - `32 766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m, * - `32 767` if the longitudinal offset information is not available. * @@ -2095,7 +2095,7 @@ MessageId::= INTEGER { * This DE represents the number of occupants in a vehicle. * * The value shall be set to: - * - `n (n = 0 and n < 126)` for the number n of occupants, + * - `n (n ≥ 0 and n < 126)` for the number n of occupants, * - `126` for values equal to or higher than 125, * - `127` if information is not available. * @@ -2164,9 +2164,9 @@ ObjectDimensionConfidence ::= INTEGER { * This DE indicates the face or part of a face of a solid object. * * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: - * - front: the face defined by the prism´s width and height, and which is the first face in direction of longitudinal movement of the object, - * - back: the face defined by the prism´s width and height, and which is the last face in direction of longitudinal movement of the object, - * - side: the faces defined by the prism´s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. + * - front: the face defined by the prism?s width and height, and which is the first face in direction of longitudinal movement of the object, + * - back: the face defined by the prism?s width and height, and which is the last face in direction of longitudinal movement of the object, + * - side: the faces defined by the prism?s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. * * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. * @@ -3151,7 +3151,7 @@ SteeringWheelAngleConfidence ::= INTEGER { * * The value shall be set to: * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right, - * - `n (n > -511 and n = 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, + * - `n (n > -511 and n ≤ 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, turning clockwise (i.e. to the right), * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, turning counter-clockwise (i.e. to the left), @@ -3357,7 +3357,7 @@ TrailerPresenceInformation ::= ENUMERATED { * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. * * The value shall be set to: - * - `n (n = 0 and n = 50)` to indicate the actual probability, + * - `n (n = 0 and n ≤ 50)` to indicate the actual probability, * - the values between 51 and 62 are reserved, * - `63`: to indicate that the information is unavailable. * @@ -3632,7 +3632,7 @@ VehicleWidth ::= INTEGER { * * The value shall be set to: * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n = 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - `n (n > -160 and n ≤ 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. @@ -3904,7 +3904,7 @@ VruSpecificExteriorLights ::= BIT STRING { * This DE indicates the perpendicular distance between front and rear axle of the wheel base of vehicle. * * The value shall be set to: - * - `n (n = 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `n (n ≥ 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres, * - `127` indicates that the information is unavailable. * @@ -3922,7 +3922,7 @@ WheelBaseVehicle ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n = 1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, + * - `n (n ≥ 1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, * - `127` if the confidence value is not available. * @@ -4030,7 +4030,7 @@ YawRateConfidence ::= ENUMERATED { * * The value shall be set to: * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right, - * - `n (n > -32 766 and n = 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, + * - `n (n > -32 766 and n ≤ 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s, * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s, @@ -4556,12 +4556,12 @@ CenDsrcTollingZone ::= SEQUENCE { /** * - * This DF represents the shape of a circular area or a right cylinder that is centred on the shape´s reference point. + * This DF represents the shape of a circular area or a right cylinder that is centred on the shape?s reference point. * * It shall include the following components: * * @field shapeReferencePoint: optional reference point that represents the centre of the circle, relative to an externally specified reference position. - * If this component is absent, the externally specified reference position represents the shape´s reference point. + * If this component is absent, the externally specified reference position represents the shape?s reference point. * * @field radius: the radius of the circular area. * @@ -4758,12 +4758,12 @@ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition /** * - * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on the shape´s reference point. + * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on the shape?s reference point. * * It shall include the following components: * * @field shapeReferencePoint: optional reference point which represents the centre of the ellipse, relative to an externally specified reference position. - * If this component is absent, the externally specified reference position represents the shape´s reference point. + * If this component is absent, the externally specified reference position represents the shape?s reference point. * * @field semiMajorAxisLength: half length of the major axis of the ellipse. * @@ -5496,7 +5496,7 @@ PathPointPredicted::= SEQUENCE { * @field measurementDeltaTime: 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. * - * @field position: the position of the geometric centre of the object´s bounding box within the pre-defined coordinate system. + * @field position: the position of the geometric centre of the object?s bounding box within the pre-defined coordinate system. * * @field velocity: the velocity vector of the object within the pre-defined coordinate system. * @@ -5558,10 +5558,10 @@ PerceivedObject ::= SEQUENCE { * It shall include the following components: * * @field shapeReferencePoint: 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. + * If this component is absent, the externally specified reference position represents the shape?s reference point. * * @field polygon: the polygonal area represented by a list of minimum `3` to maximum `16` @ref CartesianPosition3d. - * All nodes of the polygon shall be considered relative to the shape´s reference point. + * All nodes of the polygon shall be considered relative to the shape?s reference point. * * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. * @@ -5733,9 +5733,9 @@ PtActivation ::= SEQUENCE { * It shall include the following components: * * @field shapeReferencePoint: 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. + * If this component is absent, the externally specified reference position represents the shape?s reference point. * - * @field range: the radial range of the shape from the shape´s reference point. + * @field range: the radial range of the shape from the shape?s reference point. * * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the * shape's horizontal opening angle in positive angular direction with respect to the -- GitLab From 78a92a2c1aa4e0486b213fef5ac572cc561a0da7 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Tue, 4 Oct 2022 13:32:32 +0000 Subject: [PATCH 79/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 336109 -> 336192 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index f482f9ca15a3fbbb4b614342dd4b47cc827de0a6..2b3bfb55324e97bbf7a55f2111f9eed8045c152c 100644 GIT binary patch delta 448 zcmaERP~^ZNkqu=+Y=;*e>O8b$bGeY4Cyc!>dM7)Cy>xR$vQ7?^Jz3zg*XH-<6_{ai z0+%=O@Idq{SeTg@7);i^X14kN{S{D?mTq66$*5@wRlfaF5~D3l?{G3L5}*E|oKa%BeKsS{cFQcr*F0FHxwm_jGd^X38EH_%xK{znnSTBZqv&?#xr`^d z8SST^Tfx{3p;V_gtYl1MwBP<>C8O~ch~g#NW#X8YYePBH^$nS1w?FJ;nrRG^uHMUJ z3gs-_zVQQ7G|b`CfgFixs!TeQ1BBVOhks!@EsW;O?Y11uPBVe_H7;bXVFbDXNQ-V4 zSO=En;%w(%D-60#u%g$na%>(7B zY;P=Qe98h8&8cDBt1$gfCll9pi@A(fxtR`ana;P8u^UROPT#+hF%8JsuC|KNcneTN zd>qqqZARPaxrR)#+cmqGW*P$pPwZtfHD(4ndiuI>Cb8|(ADNt)VO*E#6B-y7(v$DD`Jt@UbvX~n+k{r6y7=Ash&}E`pQMjeA8V{GB08| zw53>K`u!pn@olG=i>HD#m&CJV3WFFx&CVcGwkwseWT+riPG2&EB^P8KP=VNXjhQSG F9RSNOhCu)T -- GitLab From d9c1a599d058270a38ae9cc8993eee2af03b1a66 Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Tue, 4 Oct 2022 15:40:50 +0200 Subject: [PATCH 80/91] fix unicode issue --- asn2md.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asn2md.py b/asn2md.py index ef07688..2e49e9b 100755 --- a/asn2md.py +++ b/asn2md.py @@ -336,7 +336,7 @@ def main(): cnt = 0 for a in o_args.modules: try: - content = open(a, encoding='latin-1').read() + content = open(a, mode="r", encoding='utf-8').read() cnt += parseAsn(o_args.out, content) except IOError as e: sys.stderr.write(e[1]+"\n") -- GitLab From 297cc33100bf6a079c4397675ed41fb7319e82e5 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Tue, 4 Oct 2022 13:42:04 +0000 Subject: [PATCH 81/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 336192 -> 336135 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 2b3bfb55324e97bbf7a55f2111f9eed8045c152c..94a5bc0f7825f0af021f0754a7c77a279d813e97 100644 GIT binary patch delta 240 zcmX?bNTmIc$c8c@rbnHdtA*S>xgK>cQ7|+zFfh=ZUigtobn-e=z0E=~`RpJCZOOVh zAbQ97Y-SLxad|Tjh<5)7OPFiEWqu$mGn75OA43p@ETQ`?@bor-gy)+v_-(ftY1`9S7?n2>^IL BVk!Ut delta 296 zcmZoaBy!-8$c8c@*29YqbspMWA>{4}Wgd*)#SUfGChO)vnQP8xGeek@*PQp>oN_sX z2P$*!{!^&d?OQb&wJagR+aD$|+Cg<}S4?Ak4P*0VF>3Kb)JzAm)wU;;Gd^X3YI3h( z+@}C#v(IJJKF9}l-Vy}^%>;$aG==F6cUh#SUx;PmpZ;Exk#G9xa3-GZ4RK5{+E7jR zI+?Z`L)p{!GMT~H=RYvTKwU5$$d;TwH=Idt@~&j=?e$-njtE0^fZQY9p1{Ej#4Otr JI9QiU007r`iPiuB -- GitLab From 44a3144af0b76b0b73c439ca570b1f8d0325952e Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Wed, 5 Oct 2022 10:21:47 +0200 Subject: [PATCH 82/91] support for reference links and <= and >= conversion --- ETSI-ITS-CDD.asn | 66 ++++++++++++++++++++++++------------------------ asn2md.py | 9 +++++++ 2 files changed, 42 insertions(+), 33 deletions(-) diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn index 89c3701..e30e740 100644 --- a/ETSI-ITS-CDD.asn +++ b/ETSI-ITS-CDD.asn @@ -110,7 +110,7 @@ AccelerationMagnitudeValue ::= INTEGER { * * The value shall be set to: * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n ≤ 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. @@ -478,7 +478,7 @@ AxlesCount ::= INTEGER{ * * The value shall be set to: * - `2999` indicates that the applicable value is less than 29990 Pa, - * - `n (n ? 3000 and n ≤ 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, + * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, * - `12001` indicates that the values is greater than 120000 Pa, * - `12002` indicates that the information is not available. * @@ -531,7 +531,7 @@ CardinalNumber3b ::= INTEGER(1..8) * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `n (n ≥ 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + * - `n (n >= 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, * - `36001` if the accuracy information is not available. * * The value 3600 shall not be used. @@ -1034,7 +1034,7 @@ DangerousSituationSubCauseCode ::= INTEGER { * * The value shall be set to: * - `-12 700` for values equal to or lower than -127 metres, - * - `n` (`n > -12 700` and `n = 0) for altitude offset n x 0,01 metre below the reference position, + * - `n` (`n > -12 700` and `n <= 0) for altitude offset n x 0,01 metre below the reference position, * - `0` for no altitudinal offset, * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 metre above the reference position, * - `12 799` for values equal to or greater than 127,99 metres, @@ -1055,7 +1055,7 @@ DeltaAltitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n ≥ -131 071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, + * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, * - `0` for no latitudinal offset, * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the north from the reference position, * - `131 072` when the information is unavailable. @@ -1073,7 +1073,7 @@ DeltaLatitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n ≥ -131 071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, + * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, * - `0` for no longitudinal offset, * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the east from the reference position, * - `131 072` when the information is unavailable. @@ -1147,7 +1147,7 @@ DeltaTimeTenthOfSecond::= INTEGER { * * The value shall be set to: * - `-0` for a difference in time of 0 seconds. - * - `n (n > 0 n ≤ 86400)` to indicate a time value equal to or less than n x 1 s, and greater than (n-1) x 1 s, + * - `n (n > 0 n <= 86400)` to indicate a time value equal to or less than n x 1 s, and greater than (n-1) x 1 s, * * @unit: 1 s * @category: Basic information @@ -1547,7 +1547,7 @@ HeadingValue ::= INTEGER { * rear to front). * * The value shall be set to: - * - `n (n ≥ 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `99` if the height is out of range, i.e. equal to or greater than 0,98 m, * - `100` if the height information is not available. * @@ -1841,7 +1841,7 @@ LaneType::= INTEGER{ * This DE represents the width of a lane measured at a defined position. * * The value shall be set to: - * - `n (n ≥ 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `n (n >= 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `1022` if the lane width is out of range, i.e. greater than 10,21 m, * - `1023` if the lane width information is not available. * @@ -1859,7 +1859,7 @@ LaneWidth::= INTEGER (0..1023) * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n ≥ -900 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, + * - `n (n >= -900 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, * - `0` is used for the latitude of the equator, * - `n (n > 0 and n < 900 000 001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator, * - `900 000 001` when the information is unavailable. @@ -1878,7 +1878,7 @@ Latitude ::= INTEGER { * * The value shall be set to: * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n ≤ 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation * with acceleration equal to or less than n x 0,1 m/s^2 and greater than (n-1) x 0,1 m/s^2, * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation with acceleration equal to or less than n x 0,1 m/s^2 and greater than (n-1) x 0,1 m/s^2, @@ -1944,7 +1944,7 @@ Longitude ::= INTEGER { * * The value shall be set to: * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n ≤ 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2 + * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2 * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. @@ -1967,7 +1967,7 @@ LongitudinalAccelerationValue::= INTEGER { * This DE represents the longitudinal offset of a map-matched position along a matched lane, beginning from the lane's starting point. * * The value shall be set to: - * - `n (n ≥ 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `n (n >= 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, * - `32 766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m, * - `32 767` if the longitudinal offset information is not available. * @@ -2095,7 +2095,7 @@ MessageId::= INTEGER { * This DE represents the number of occupants in a vehicle. * * The value shall be set to: - * - `n (n ≥ 0 and n < 126)` for the number n of occupants, + * - `n (n >= 0 and n < 126)` for the number n of occupants, * - `126` for values equal to or higher than 125, * - `127` if information is not available. * @@ -2164,9 +2164,9 @@ ObjectDimensionConfidence ::= INTEGER { * This DE indicates the face or part of a face of a solid object. * * The object is modelled as a rectangular prism that has a length that is greater than its width, with the faces of the object being defined as: - * - front: the face defined by the prism?s width and height, and which is the first face in direction of longitudinal movement of the object, - * - back: the face defined by the prism?s width and height, and which is the last face in direction of longitudinal movement of the object, - * - side: the faces defined by the prism?s length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. + * - front: the face defined by the prism's width and height, and which is the first face in direction of longitudinal movement of the object, + * - back: the face defined by the prism's width and height, and which is the last face in direction of longitudinal movement of the object, + * - side: the faces defined by the prism's length and height with "left" and "right" defined by looking at the front face and "front" and "back" defined w.r.t to the front and back faces. * * Note: It is permissible to derive the required object dimensions and orientation from models to provide a best guess. * @@ -3151,9 +3151,9 @@ SteeringWheelAngleConfidence ::= INTEGER { * * The value shall be set to: * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right, - * - `n (n > -511 and n ≤ 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, + * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, turning clockwise (i.e. to the right), - * - `n (n > 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + * - `n (n >= 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, turning counter-clockwise (i.e. to the left), * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left, * - `512` if information is not available. @@ -3357,7 +3357,7 @@ TrailerPresenceInformation ::= ENUMERATED { * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. * * The value shall be set to: - * - `n (n = 0 and n ≤ 50)` to indicate the actual probability, + * - `n (n >= 0 and n <= 50)` to indicate the actual probability, * - the values between 51 and 62 are reserved, * - `63`: to indicate that the information is unavailable. * @@ -3632,7 +3632,7 @@ VehicleWidth ::= INTEGER { * * The value shall be set to: * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n ≤ 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. @@ -3904,7 +3904,7 @@ VruSpecificExteriorLights ::= BIT STRING { * This DE indicates the perpendicular distance between front and rear axle of the wheel base of vehicle. * * The value shall be set to: - * - `n (n ≥ 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres, * - `127` indicates that the information is unavailable. * @@ -3922,7 +3922,7 @@ WheelBaseVehicle ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n ≥ 1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, + * - `n (n >= 1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, * - `127` if the confidence value is not available. * @@ -4030,7 +4030,7 @@ YawRateConfidence ::= ENUMERATED { * * The value shall be set to: * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right, - * - `n (n > -32 766 and n ≤ 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, + * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s, * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s, @@ -4556,12 +4556,12 @@ CenDsrcTollingZone ::= SEQUENCE { /** * - * This DF represents the shape of a circular area or a right cylinder that is centred on the shape?s reference point. + * This DF represents the shape of a circular area or a right cylinder that is centred on the shape's reference point. * * It shall include the following components: * * @field shapeReferencePoint: optional reference point that represents the centre of the circle, relative to an externally specified reference position. - * If this component is absent, the externally specified reference position represents the shape?s reference point. + * If this component is absent, the externally specified reference position represents the shape's reference point. * * @field radius: the radius of the circular area. * @@ -4758,12 +4758,12 @@ DigitalMap ::= SEQUENCE (SIZE(1..256)) OF ReferencePosition /** * - * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on the shape?s reference point. + * This DF represents the shape of an elliptical area or right elliptical cylinder that is centred on the shape's reference point. * * It shall include the following components: * * @field shapeReferencePoint: optional reference point which represents the centre of the ellipse, relative to an externally specified reference position. - * If this component is absent, the externally specified reference position represents the shape?s reference point. + * If this component is absent, the externally specified reference position represents the shape's reference point. * * @field semiMajorAxisLength: half length of the major axis of the ellipse. * @@ -5496,7 +5496,7 @@ PathPointPredicted::= SEQUENCE { * @field measurementDeltaTime: 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. * - * @field position: the position of the geometric centre of the object?s bounding box within the pre-defined coordinate system. + * @field position: the position of the geometric centre of the object's bounding box within the pre-defined coordinate system. * * @field velocity: the velocity vector of the object within the pre-defined coordinate system. * @@ -5558,10 +5558,10 @@ PerceivedObject ::= SEQUENCE { * It shall include the following components: * * @field shapeReferencePoint: 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. + * If this component is absent, the externally specified reference position represents the shape's reference point. * * @field polygon: the polygonal area represented by a list of minimum `3` to maximum `16` @ref CartesianPosition3d. - * All nodes of the polygon shall be considered relative to the shape?s reference point. + * All nodes of the polygon shall be considered relative to the shape's reference point. * * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. * @@ -5733,9 +5733,9 @@ PtActivation ::= SEQUENCE { * It shall include the following components: * * @field shapeReferencePoint: 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. + * If this component is absent, the externally specified reference position represents the shape's reference point. * - * @field range: the radial range of the shape from the shape?s reference point. + * @field range: the radial range of the shape from the shape's reference point. * * @field stationaryHorizontalOpeningAngleStart: the orientation indicating the beginning of the * shape's horizontal opening angle in positive angular direction with respect to the diff --git a/asn2md.py b/asn2md.py index 2e49e9b..1ab6ee7 100755 --- a/asn2md.py +++ b/asn2md.py @@ -42,6 +42,9 @@ RE_DOXY_C_COMMENTS = re.compile(r'^\s*/\*\*\s(.*?)\*/', re.MULTILINE | re.DOTALL RE_DOXY_C_COMMENTS_I = re.compile(r'\s*\*+') RE_STRIPSTAR = re.compile(r'^\s*\*', re.MULTILINE) RE_POWER_SIGN = re.compile('\^(-?\w+|\(.*?\))') +RE_GREATEQ_SIGN = re.compile(r'(?<=\s)>=(?=\s)') +RE_LESSEQ_SIGN = re.compile(r'(?<=\s)<=(?=\s)') +RE_REFERENCE_NUMBER = re.compile(r'\[(?:i\.)?\d+\]') RE_DOXY_REF = re.compile(r'@ref\s+([\w-]+)') @@ -91,6 +94,12 @@ def parseText(content, indent=None): content = RE_POWER_SIGN.sub('\\1', content) + content = RE_LESSEQ_SIGN.sub('≤', content) + + content = RE_GREATEQ_SIGN.sub('≥', content) + + content = RE_REFERENCE_NUMBER.sub('[\\g<0>](#markdown-header-references)', content) + return indentLines(content, indent) def parseInlineComments(content:str, indent=None): -- GitLab From cabab84b8c88196e42a0f5beaeb36036b71c6cb4 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Wed, 5 Oct 2022 08:22:56 +0000 Subject: [PATCH 83/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 336135 -> 338406 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 94a5bc0f7825f0af021f0754a7c77a279d813e97..804a3a9ed7a24d6d485c97e3cb1f8d2bb3e19783 100644 GIT binary patch delta 3491 zcmb7`Z%kEX9LM*2o&y)~f-x>#$b|<1;RYAI*Z6ZJ({i;nLu}(k^9p!_djkb@_b!1f zyS->dZVf!*@4l!Raob=`MbGTVWKL^_khf)PE7zJe3p6%oFKjMdvvbb17ro(me06rV z&+pIk{r!2KcfWKkeD9h(72wwfKQ)Yiw!JvuZ)vG0=?O-5ckJow^>&7W9ifOf5(4m0_}vVz(l6h88aG|!kLX2n8OHnP zV$QT{g9&x5KAbEw{K@`hC8i@$g2wS5UBwpYtCb7cs&D&y@!7uu@A0us|xiZY44wb$MCH}rGRE$ zhv|IFM%1ME&Jc9Vlo$h16J-$?hJL#UH6rrLFtp2&n+`#@9C`8(ykV0*QFOl! zV>Y=~ME;~hST6c=hoMJ~q{DDPN=|JA_Si1#L}?xyfnmAen~%T+n-q05I`KhtQ6o_d zA)E{4czqlWraomDpMWrw)BOqf%wCzojyQfAp0!jFfpq&cIMOUqG!$eG#n&a);uowY z+*_yY#i1F z-f?yd)9}}QtXU4%`q+DN;Ils%L(Hw+buJ~Xy0pB$C-oXPOye-aW|lOXO7Xt zS$34k2YBI*;=&cZpkrH3S{Av#V2S#NKULjbwp}tqA6;Z$9O(X zjq+E)T(0KNO(cugkB%!fbj+b7RlB#ArlTGlUB~@2S)nwi%khizd?i(^Q5G_*&Gh{u zC92f+?%-?DkXo0D)TAj_!Hy(+-1r-mSfv$1^k}Hg%F0qz6<AA>g^!H z^r&Qm;$CHzwxLbw%1afjfX+sgN~_*~M3v6c|B6}9n3!p$h1Q~D-NYFmOk@Hv>h1=j2->L`(I6Hu z)95m@4gIYi#3&)t2SFLy$OT?l3?^nXrpCmOsELV@1dRzi>f)bs+v~dcbU){N&pG#; z^Ed3FPGGSNcg5aMYa~7KcpRQzsQCE+1BkBMb^=Or{0%xU)_ICN?5Nub6k{3d}pt( zuWxAG?YCQ3?&o9nC^+S}+0f=!5#<73R=}Dxo}Bh#^#{y>$5y~EN}@8uE1_EBrTMbnrO1@DbAI0GAf>f_~ z?<7Qt`~tUIu$8Dn;8P3Q)N?_BM}LP#jm|hkHJ*(_Od&;8o`OFVmI~wuP1@mCgzq&L z_CRMk?O#2xM~TY?)|`eD`aZiCCKXbfv%P7DfRKmJK$9CH`1BGSPah?C<}x%vM6w|m zR3D0}OOC;+6v^N?%(D@`>+rw?41c21(rn#V;Zq!5X1FjJ;X$1J8{G2NW7w(usg_MM z@J)*3)C?R?br2F3%zcCxs@YkULz_pwW<6;Wzu3SIXndH#_8PWNtL*r->Bb;MX|2WS(09qcEq z((5Jorh`>!n@U)Wzjd;RwyBO1^mb+JF4mjAl2pekrup2D?6DIn<&kc-)yF*b z=9bNU%;C)p6o>v~^W^9VTj_kaRY+U)gOro3k7fMgIW`aG?F9=9y*9gCeUqIJXHr|q ziTUy{7@JiRNvqk-Q=yW!@?f04?b3@z4CovfFrKT|%Y_`jZhYvZ6`-pzJdreR(DlYU z#(szHV(y`_F7+1$g>1; Date: Fri, 7 Oct 2022 06:28:52 +0000 Subject: [PATCH 84/91] Replace ETSI-ITS-CDD.asn --- ETSI-ITS-CDD.asn | 188 +++++++++++++++++++++++++++-------------------- 1 file changed, 110 insertions(+), 78 deletions(-) diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn index e30e740..ee558fa 100644 --- a/ETSI-ITS-CDD.asn +++ b/ETSI-ITS-CDD.asn @@ -478,7 +478,7 @@ AxlesCount ::= INTEGER{ * * The value shall be set to: * - `2999` indicates that the applicable value is less than 29990 Pa, - * - `n (n >= 3000 and n <= 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, + * - `n (n > 2999 and n <= 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, * - `12001` indicates that the values is greater than 120000 Pa, * - `12002` indicates that the information is not available. * @@ -923,7 +923,7 @@ CurvatureConfidence ::= ENUMERATED { * wherein radius is the vehicle turning curve radius in metres. * * Positive values indicate a turning curve to the left hand side of the driver. - * It corresponds to the vehicle coordinate system as defined in ISO 8855 [2]. + * It corresponds to the vehicle coordinate system as defined in ISO 8855 [21]. * * The value shall be set to: * - `-1023` for values smaller than -1023, @@ -933,7 +933,7 @@ CurvatureConfidence ::= ENUMERATED { * - `1022`, for values greater than 1021, * - `1023`, if the information is not available. * - * @note: The present DE is limited to vehicle types as defined in ISO 8855 [2]. + * @note: The present DE is limited to vehicle types as defined in ISO 8855 [21]. * * @unit: 1 over 10 000 metres * @category: Vehicle information @@ -971,7 +971,7 @@ DangerousEndOfQueueSubCauseCode ::= INTEGER { /** * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. * The value is assigned according to `class` and `division` definitions of dangerous goods as specified in part II, - * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [i.3]. + * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [3]. * * * @category Vehicle information @@ -1096,7 +1096,7 @@ DeltaLongitude ::= INTEGER { * * @unit: 0,001 s * @category: Basic information - * @revision: Created in V2.1.1 from the DE TransmissionInterval in [i.2] + * @revision: Created in V2.1.1 from the DE TransmissionInterval in [2] */ DeltaTimeMilliSecondPositive ::= INTEGER (1..10000) @@ -1282,7 +1282,7 @@ EnergyStorageType ::= BIT STRING { }(SIZE(7)) /** - * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. + * This DE represents one of the specific categories in the L category: L1, L2, L3, L4, L5, L6, or L7 according to UNECE/TRANS/WP.29/78/Rev.4 [16]. * * * @category: Vehicle information @@ -1291,7 +1291,7 @@ EnergyStorageType ::= BIT STRING { EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } /** - * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. + * This DE represents one of the specific categories in the M category: M1, M2, or M3 according to UNECE/TRANS/WP.29/78/Rev.4 [16]. * * * @category: Vehicle information @@ -1300,7 +1300,7 @@ EuVehicleCategoryL ::= ENUMERATED { l1, l2, l3, l4, l5, l6, l7 } EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} /** - * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. + * This DE represents one of the specific categories in the N category: N1, N2, or N3 according to UNECE/TRANS/WP.29/78/Rev.4 [16]. * * * @category: Vehicle information @@ -1309,7 +1309,7 @@ EuVehicleCategoryM ::= ENUMERATED {m1, m2, m3} EuVehicleCategoryN ::= ENUMERATED {n1, n2, n3} /** - * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [i.16]. + * This DE represents one of the specific categories in the O category: O1, O2, O3 or O4 according to UNECE/TRANS/WP.29/78/Rev.4 [16]. * * * @category: Vehicle information @@ -1362,7 +1362,7 @@ ExteriorLights ::= BIT STRING { * This means that generationDeltaTime = TimestampIts mod 65 536. * * @category: Basic information - * @revision: Created in V2.1.1 based on ETSI TS 103 900 [i.1] + * @revision: Created in V2.1.1 based on ETSI TS 103 900 [1] */ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) @@ -1635,12 +1635,12 @@ InformationQuality ::= INTEGER (0..7) * It is an extension of the type @ref ProtectedZoneType. * * The value shall be set to: - * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14], - * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [i.14], + * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [14], + * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [14], * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling, - * - 3 - `urbanRail` - as specified in ETSI TS 103 724 [i.13], clause 7, - * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [i.13], clause 7, - * - 5 - `fixedLinks` - as specified in ETSI TS 103 724 [i.13], clause 7. + * - 3 - `urbanRail` - as specified in ETSI TS 103 724 [13], clause 7, + * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [13], clause 7, + * - 5 - `fixedLinks` - as specified in ETSI TS 103 724 [13], clause 7. * * @category: Communication information * @revision: Created in V2.1.1 @@ -1656,7 +1656,7 @@ InterferenceManagementZoneType ::= ENUMERATED { } /** - * This DE represents the vehicle type according to ISO 3833 [3]. + * This DE represents the vehicle type according to ISO 3833 [22]. * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. * * The value shall be set to: @@ -1841,7 +1841,7 @@ LaneType::= INTEGER{ * This DE represents the width of a lane measured at a defined position. * * The value shall be set to: - * - `n (n >= 1 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - `n (n > 0 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, * - `1022` if the lane width is out of range, i.e. greater than 10,21 m, * - `1023` if the lane width information is not available. * @@ -1874,7 +1874,7 @@ Latitude ::= INTEGER { /** * This DE represents the vehicle acceleration at lateral direction in the centre of the mass of the empty vehicle. - * It corresponds to the vehicle coordinate system as specified in ISO 8855 [2]. + * It corresponds to the vehicle coordinate system as specified in ISO 8855 [21]. * * The value shall be set to: * - `-160` for acceleration values equal to or less than -16 m/s^2, @@ -1885,7 +1885,7 @@ Latitude ::= INTEGER { * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. * - * @note: the empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * @note: the empty load vehicle is defined in ISO 1176 [8], clause 4.6. * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead. * * @unit: 0,1 m/s^2 @@ -1940,7 +1940,7 @@ Longitude ::= INTEGER { /** * This DE represents the vehicle acceleration at longitudinal direction in the centre of the mass of the empty vehicle. - * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [21], clause 2.11. * * The value shall be set to: * - `-160` for acceleration values equal to or less than -16 m/s^2, @@ -1952,7 +1952,7 @@ Longitude ::= INTEGER { * This acceleration is along the tangent plane of the road surface and does not include gravity components. * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead. * - * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [8], clause 4.6. * @unit: 0,1 m/s^2 * @category: Vehicle information * @revision: description revised in V2.1.1 (the meaning of 160 has changed slightly). T @@ -1967,7 +1967,7 @@ LongitudinalAccelerationValue::= INTEGER { * This DE represents the longitudinal offset of a map-matched position along a matched lane, beginning from the lane's starting point. * * The value shall be set to: - * - `n (n >= 1 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - `n (n >= 0 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, * - `32 766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m, * - `32 767` if the longitudinal offset information is not available. * @@ -2041,22 +2041,22 @@ MatrixIncludedComponents::= BIT STRING{ * This DE represents the type of facility layer message. * * The value shall be set to: - * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [i.2], - * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [i.1], - * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [i.9], - * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [i.15], - * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [i.15], - * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [i.15], - * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [i.11], - * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [i.10], - * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [i.15], - * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [i.15], - * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [i.9], - * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [i.17], - * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [i.15], + * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [2], + * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [1], + * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [9], + * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [15], + * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [15], + * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [15], + * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [11], + * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [10], + * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [15], + * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [15], + * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [9], + * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [17], + * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [15], * - 14 - `cpm` - reserved for Collective Perception Message (CPM), - * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [i.13], - * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [i.12], + * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [13], + * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [12], * - 17 - `dsm` - reserved for Diagnosis, logging and Status Message, * - 18 - `pcim` - reserved for Parking Control Infrastructure Message, * - 19 - `pcvm` - reserved for Parking Control Vehicle Message, @@ -2242,8 +2242,8 @@ PathDeltaTime ::= INTEGER (1..65535, ...) * * The value shall be set to: * - `0` if the performance class is unknown, - * - `1` for performance class A as defined in ETSI TS 101 539-1 [i.5], - * - `2` for performance class B as defined in ETSI TS 101 539-1 [i.5], + * - `1` for performance class A as defined in ETSI TS 101 539-1 [5], + * - `2` for performance class B as defined in ETSI TS 101 539-1 [5], * - Values in the range `3 to 7` are reserved for future use. * * @category: Vehicle information @@ -2272,7 +2272,7 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * - `62` for values equal to or higher than `6.1 metres`, * - `63` if the information is unavailable. * - * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [8], clause 4.6. * * @unit 0,1 metre * @category Vehicle information @@ -2471,7 +2471,7 @@ ProtectedZoneRadius ::= INTEGER (1..255,...) * This DE indicates the type of a protected communication zone, so that an ITS-S is aware of the actions to do * while passing by such zone (e.g. reduce the transmit power in case of a DSRC tolling station). * - * The protected zone type is defined in ETSI TS 102 792 [i.14]. + * The protected zone type is defined in ETSI TS 102 792 [14]. * * * @category: Communication information @@ -2502,8 +2502,8 @@ PtActivationData ::= OCTET STRING (SIZE(1..20)) * * The folowing value are specified: * - `0` undefinedCodingType : undefined coding type, - * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [i.7], - * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [i.7]. + * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [7], + * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [7]. * - values 3 to 255 : reserved for alternative and future use. * * @category: Vehicle information @@ -3076,16 +3076,16 @@ StationID ::= INTEGER(0..4294967295) * - 0 `unknown` - information about the ITS-S context is not provided, * - 1 `pedestrian` - ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1), * - 2 `cyclist` - ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), - * - 3 `moped` - ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + * - 3 `moped` - ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class L1, L2 (VRU Profile 3), - * - 4 `motorcycles` - ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] + * - 4 `motorcycles` - ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class L3, L4, L5, L6, L7 (VRU Profile 3), - * - 5 `passengerCar` - ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, - * - 6 `bus` - ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, - * - 7 `lightTruck` - ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, - * - 8 `heavyTruck` - ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, + * - 5 `passengerCar` - ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M1, + * - 6 `bus` - ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M2, M3, + * - 7 `lightTruck` - ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N1, + * - 8 `heavyTruck` - ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N2 and N3, * - 9 `trailer` - ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in - UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, + UNECE/TRANS/WP.29/78/Rev.4 [16] class O, * - 10 `specialVehicles` - ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), * - 11 `tram` - ITS-S mounted on a vehicle which runs on tracks along public streets, * - 12 `lightVruVehicle` - ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2), @@ -3147,7 +3147,7 @@ SteeringWheelAngleConfidence ::= INTEGER { /** * This DE represents the steering wheel angle of the vehicle at certain point in time. - * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [21], clause 2.11. * * The value shall be set to: * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right, @@ -3274,18 +3274,18 @@ TrafficDirection ::= ENUMERATED { * - 0 `unknown` - information about traffic participant is not provided, * - 1 `pedestrian` - human being not using a mechanical device for their trip (VRU profile 1), * - 2 `cyclist` - non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), - * - 3 `moped` - light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L1, L2 (VRU Profile 3), - * - 4 `motorcycles` - motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class L3, L4, L5, L6, L7 (VRU Profile 3), - * - 5 `passengerCar` - small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M1, - * - 6 `bus` - large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class M2, M3, - * - 7 `lightTruck` - light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N1, - * - 8 `heavyTruck` - Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class N2 and N3, - * - 9 `trailer` - unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class O, + * - 3 `moped` - light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class L1, L2 (VRU Profile 3), + * - 4 `motorcycles` - motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class L3, L4, L5, L6, L7 (VRU Profile 3), + * - 5 `passengerCar` - small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M1, + * - 6 `bus` - large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M2, M3, + * - 7 `lightTruck` - light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N1, + * - 8 `heavyTruck` - Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N2 and N3, + * - 9 `trailer` - unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class O, * - 10 `specialVehicles` - vehicles which have special purposes other than the above (e.g. moving road works vehicle), * - 11 `tram` - vehicle which runs on tracks along public streets, * - 12 `lightVruVehicle` - human being traveling on light vehicle, incl. possible use of roller skates or skateboards (VRU profile 2), * - 13 `animal` - animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), - * - 14 `agricultural` - agricultural and forestry vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [i.16] class T, + * - 14 `agricultural` - agricultural and forestry vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class T, * - 15 `roadSideUnit` - infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), * - 16-255 - are reserved for future usage. @@ -3446,7 +3446,7 @@ ValidityDuration::= INTEGER { } (0..86400) /** - * This DE represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [i.6]. + * This DE represents the Vehicle Descriptor Section (VDS). The values are assigned according to ISO 3779 [6]. * * @category: Vehicle information * @revision: V1.3.1 @@ -3555,7 +3555,7 @@ VehicleLengthValue ::= INTEGER { * - `1 023` indicates that the vehicle mass is greater than 102 200 000 g, * - `1 024` indicates the vehicle mass information is unavailable. * - * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [8], clause 4.6. * * @unit: 10^5 gramm * @category: Vehicle information @@ -3628,7 +3628,7 @@ VehicleWidth ::= INTEGER { /** * This DE represents the vehicle acceleration at vertical direction in the centre of the mass of the empty vehicle. - * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [21], clause 2.11. * * The value shall be set to: * - `-160` for acceleration values equal to or less than -16 m/s^2, @@ -3637,7 +3637,7 @@ VehicleWidth ::= INTEGER { * - `160` for acceleration values greater than 15,9 m/s^2, * - `161` when the data is unavailable. * - * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [8], clause 4.6. * * @category: Vehicle information * @unit: 0,1 m/s^2 @@ -3956,7 +3956,7 @@ Wgs84AngleValue ::= INTEGER { } (0..3601) /** - * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [i.6]. + * This DE represents the World Manufacturer Identifier (WMI). The values are assigned according to ISO 3779 [6]. * * * @category: Vehicle information @@ -4026,7 +4026,7 @@ YawRateConfidence ::= ENUMERATED { * This DE represents the vehicle rotation around z-axis of the coordinate system centred on the centre of mass of the empty-loaded * vehicle. The leading sign denotes the direction of rotation. * - * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [2], clause 2.11. + * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [21], clause 2.11. * * The value shall be set to: * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right, @@ -4040,7 +4040,7 @@ YawRateConfidence ::= ENUMERATED { * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. * The reading instant should be the same as for the vehicle acceleration. * - * @note: The empty load vehicle is defined in ISO 1176 [i.8], clause 4.6. + * @note: The empty load vehicle is defined in ISO 1176 [8], clause 4.6. * * @unit: 0,01 degree per second. * @category: Vehicle Information @@ -4693,7 +4693,7 @@ Curvature ::= SEQUENCE { * @field dangerousGoodsType: Type of dangerous goods. * * @field unNumber: a 4-digit number that identifies the substance of the dangerous goods as specified in - * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [i.4], + * United Nations Recommendations on the Transport of Dangerous Goods - Model Regulations [4], * * @field elevatedTemperature: whether the carried dangerous goods are transported at high temperature. * If yes, the value shall be set to TRUE, @@ -4813,7 +4813,7 @@ EulerAnglesWithConfidence ::= SEQUENCE { /** * - * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [i.16]. + * This DF represents a vehicle category according to the UNECE/TRANS/WP.29/78/Rev.4 [16]. * The following options are available: * * @field euVehicleCategoryL: indicates a vehicle in the L category. @@ -5057,7 +5057,7 @@ InterferenceManagementInfoPerChannel ::= SEQUENCE { InterferenceManagementZones ::= SEQUENCE (SIZE(1..16), ...) OF InterferenceManagementZone /** - * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [i.15]. + * This DF represents a unique id for an intersection, in accordance with ETSI TS 103 301 [15]. * * It shall include the following components: * @@ -5215,7 +5215,7 @@ LowerTriangularPositiveSemidefiniteMatrix ::= SEQUENCE{ LowerTriangularPositiveSemidefiniteMatrixColumns ::= SEQUENCE SIZE (1..13) OF CorrelationColumn /** - * This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301 [i.15]. + * This DF indicates a position on a topology description transmitted in a MAPEM according to ETSI TS 103 301 [15]. * * It shall include the following components: * @@ -5243,7 +5243,7 @@ MapPosition ::= SEQUENCE { (WITH COMPONENTS {..., laneId ABSENT, connectionId PRESENT })) /** - * This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301 [i.15]. + * This DF provides the reference to the information contained in a MAPEM according to ETSI TS 103 301 [15]. * * The following options are provided: * @@ -5303,7 +5303,7 @@ MessageSegmentationInfo ::= SEQUENCE { MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyClass /** - * This DF represents a set of mitigation parameters for a specific technology, as specified in ETSI TS 103 724 [i.24], clause 7. + * This DF represents a set of mitigation parameters for a specific technology, as specified in ETSI TS 103 724 [24], clause 7. * * It shall include the following components: * @@ -5315,14 +5315,14 @@ MitigationForTechnologies ::= SEQUENCE (SIZE(1..8)) OF MitigationPerTechnologyCl * @field powerReduction: the delta value of power to be reduced. * @unit: dB * - * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [i.19]. + * @field dmcToffLimit: idle time limit as defined in ETSI TS 103 175 [19]. * @unit: ms * - * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [i.20]. + * @field dmcTonLimit: Transmission duration limit, as defined in ETSI EN 302 571 [20]. * @unit: ms * * @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. + * interference management zone types. Specification details are in ETSI TS 103 724 [24], clause 7. * * @category: Communication information * @revision: Created in V2.1.1 @@ -5702,7 +5702,7 @@ ProtectedCommunicationZonesRSU ::= SEQUENCE (SIZE(1..16)) OF ProtectedCommunicat * for controlling traffic lights, barriers, bollards, etc. This DF shall include information like route, course, * destination, priority, etc. * - * The R09.x content is defined in VDV recommendation 420 [i.7]. It includes following information: + * The R09.x content is defined in VDV recommendation 420 [7]. It includes following information: * - Priority Request Information (pre-request, request, ready to start) * - End of Prioritization procedure * - Priority request direction @@ -6125,7 +6125,7 @@ TrafficIslandPosition ::= SEQUENCE { * @field trailerWidth: optional width of the trailer. * * @field hitchAngle: optional Value and confidence value of the angle between the trailer orientation (corresponding to the x - * direction of the ISO 8855 [2] coordinate system centered on the trailer) and the direction of + * direction of the ISO 8855 [21] coordinate system centered on the trailer) and the direction of * the segment having as end points the reference point of the trailer and the reference point of * the pulling vehicle, which can be another trailer or a vehicle looking on the horizontal plane * xy, described in the local Cartesian coordinate system of the trailer. The @@ -6380,7 +6380,7 @@ VruExteriorLights ::= SEQUENCE { /** * This DF indicates the profile of a VRU including sub-profile information - * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [i.18]: + * It identifies four options corresponding to the four types of VRU profiles specified in ETSI TS 103 300-2 [18]: * * @field pedestrian: VRU Profile 1 - Pedestrian. * @@ -6438,3 +6438,35 @@ YawRate::= SEQUENCE { } END + +------------------------------------------ +-- References: +------------------------------------------ +/** + * + * [1] ETSI TS 103 900: "Intelligent Transport Systems (ITS); Vehicular Communications; Basic Set of Applications; Part 2: Specification of Cooperative Awareness Basic Service; Release 2". + * [2] ETSI TS 103 831: "Intelligent Transport Systems (ITS); Vehicular Communications; Basic Set of Applications; Part 3: Specifications of Decentralized Environmental Notification Basic Service"; Release 2. + * [3] European Agreement (Applicable as from 1 January 2011): "Concerning the International Carriage of Dangerous Goods by Road". + * @note: Available at http://www.unece.org/trans/danger/publi/adr/adr2011/11ContentsE.html. + * [4] United Nations: "Recommendations on the Transport of Dangerous Goods - Model Regulations", Twelfth revised edition. + * @note: Available at http://www.unece.org/trans/danger/publi/unrec/12_e.html. + * [5] ETSI TS 101 539-1: "Intelligent Transport Systems (ITS); V2X Applications; Part 1: Road Hazard Signalling (RHS) application requirements specification". + * [6] ISO 3779 (2011-07): "Road vehicles -- Vehicle identification number (VIN) Content and structure". + * [7] VDV recommendation 420 (1992): "Technical Requirements for Automatic Vehicle Location / Control Systems - Radio Data Transmission (BON Version) with Supplement 1 and Supplement 2". + * [8] ISO 1176:1990: "Road vehicles -- Masses -- Vocabulary and codes". + * [9] ETSI TS 101 556-1: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communication; Electric Vehicle Charging Spot Notification Specification". + * [10] ETSI TS 101 556-2: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communication; Part 2: Communication system specification to support application requirements for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability". + * [11] ETSI TS 101 556-3: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communications; Part 3: Communications system for the planning and reservation of EV energy supply using wireless networks". + * [12] ETSI TS 103 300-3: "Intelligent Transport Systems (ITS); Vulnerable Road Users (VRU) awareness; Part 3: Specification of VRU awareness basic service; Release 2" + * [13] ETSI TS 103 724: "Intelligent Transport Systems (ITS); Facilities layer function; Interference Management Zone Message (IMZM); Release 2" + * [14] ETSI TS 102 792: "Intelligent Transport Systems (ITS); Mitigation techniques to avoid interference between European CEN Dedicated Short Range Communication (CEN DSRC) equipment and Intelligent Transport Systems (ITS) operating in the 5 GHz frequency range". + * [15] ETSI TS 103 301: "Intelligent Transport Systems (ITS); Vehicular Communications; Basic Set of Applications; Facilities layer protocols and communication requirements for infrastructure services; Release 2". + * [16] UNECE/TRANS/WP.29/78/Rev.4: "Consolidated Resolution on the Construction of Vehicles (R.E.3)". + * [17] ETSI EN 302 890-1: "Intelligent Transport Systems (ITS); Facilities layer function; Part 1: Services Announcement (SA) specification". + * [18] ETSI TS 103 300-2 "Intelligent Transport System (ITS); Vulnerable Road Users (VRU) awareness; Part 2: Functional Architecture and Requirements definition; Release 2" + * [19] ETSI TS 103 175 "Intelligent Transport Systems (ITS); Cross Layer DCC Management Entity for operation in the ITS G5A and ITS G5B medium" + * [20] ETSI EN 302 571 "Intelligent Transport Systems (ITS); Radiocommunications equipment operating in the 5 855 MHz to 5 925 MHz frequency band; Harmonised Standard covering the essential requirements of article 3.2 of Directive 2014/53/EU" + * [21] ISO 8855: "Road vehicles -- Vehicle dynamics and road-holding ability -- Vocabulary". + * [22] ISO 3833, Road vehicles — Types — Terms and definitions +*/ + -- GitLab From 1669660461cce7406e9db962bfc825b5c27a68fc Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Mon, 10 Oct 2022 12:22:42 +0200 Subject: [PATCH 85/91] fix non-utf8 characters in text --- ETSI-ITS-CDD.asn | 1786 +++++++++++++++++++++++----------------------- 1 file changed, 893 insertions(+), 893 deletions(-) diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn index ee558fa..f53898a 100644 --- a/ETSI-ITS-CDD.asn +++ b/ETSI-ITS-CDD.asn @@ -15,8 +15,8 @@ BEGIN * This DE indicates a change of acceleration. * * The value shall be set to: - * - 0 - `accelerate` - if the magnitude of the horizontal velocity vector increases. - * - 1 - `decelerate` - if the magnitude of the horizontal velocity vector decreases. + * - 0 - 'accelerate' - if the magnitude of the horizontal velocity vector increases. + * - 1 - 'decelerate' - if the magnitude of the horizontal velocity vector decreases. * * @category: Kinematic information * @revision: Created in V2.1.1 @@ -31,9 +31,9 @@ AccelerationChange::= ENUMERATED { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 101)` if the confidence value is equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, - * - `101` if the confidence value is out of range i.e. greater than 10 m/s^2, - * - `102` if the confidence value is unavailable. + * - 'n (n > 0 and n < 101)' if the confidence value is equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - '101' if the confidence value is out of range i.e. greater than 10 m/s^2, + * - '102' if the confidence value is unavailable. * * The value 0 shall not be used. * @@ -43,7 +43,7 @@ AccelerationChange::= ENUMERATED { * - there has been a vehicle bus (e.g. CAN bus) error. * In all 3 cases above, the acceleration value may be valid and used by the application. * - * @note: If an acceleration value is received and its confidence value is set to `outOfRange(101)`, it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. + * @note: If an acceleration value is received and its confidence value is set to 'outOfRange(101)', it means that the value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @unit 0,1 m/s^2 * @category: Kinematic information @@ -62,13 +62,13 @@ AccelerationConfidence ::= INTEGER { * control system, cruise control system and speed limiter system. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `brakePedalEngaged` - Driver is stepping on the brake pedal, - * - 1 - `gasPedalEngaged` - Driver is stepping on the gas pedal, - * - 2 - `emergencyBrakeEngaged` - emergency brake system is engaged, - * - 3 - `collisionWarningEngaged`- collision warning system is engaged, - * - 4 - `accEngaged` - ACC is engaged, - * - 5 - `cruiseControlEngaged` - cruise control is engaged, - * - 6 - `speedLimiterEngaged` - speed limiter is engaged. + * - 0 - 'brakePedalEngaged' - Driver is stepping on the brake pedal, + * - 1 - 'gasPedalEngaged' - Driver is stepping on the gas pedal, + * - 2 - 'emergencyBrakeEngaged' - emergency brake system is engaged, + * - 3 - 'collisionWarningEngaged'- collision warning system is engaged, + * - 4 - 'accEngaged' - ACC is engaged, + * - 5 - 'cruiseControlEngaged' - cruise control is engaged, + * - 6 - 'speedLimiterEngaged' - speed limiter is engaged. * * Otherwise (for example when the corresponding system is not available due to non equipped system * or information is unavailable), the corresponding bit shall be set to 0. @@ -91,10 +91,10 @@ AccelerationControl ::= BIT STRING { * This DE represents the magnitude of the acceleration vector in a defined coordinate system. * * The value shall be set to: - * - `0` to indicate no acceleration, - * - `n (n > 0 and n < 160)` to indicate acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, - * - `160` for acceleration values greater than 15,9 m/s^2, - * - `161` when the data is unavailable. + * - '0' to indicate no acceleration, + * - 'n (n > 0 and n < 160)' to indicate acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - '160' for acceleration values greater than 15,9 m/s^2, + * - '161' when the data is unavailable. * * @unit 0,1 m/s^2 * @category: Kinematic information @@ -109,11 +109,11 @@ AccelerationMagnitudeValue ::= INTEGER { * This DE represents the value of an acceleration component in a defined coordinate system. * * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n <= 0)` to indicate negative acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, - * - `n (n > 0 and n < 160)` to indicate positive acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, - * - `160` for acceleration values greater than 15,9 m/s^2, - * - `161` when the data is unavailable. + * - '-160' for acceleration values equal to or less than -16 m/s^2, + * - 'n (n > -160 and n <= 0)' to indicate negative acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - 'n (n > 0 and n < 160)' to indicate positive acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - '160' for acceleration values greater than 15,9 m/s^2, + * - '161' when the data is unavailable. * * @note: the formula for values > -160 and <160 results in rounding up to the next value. Zero acceleration is indicated using n=0. * @unit 0,1 m/s^2 @@ -131,10 +131,10 @@ AccelerationValue ::= INTEGER { * This DE indicates an access technology. * * The value shall be set to: - * - `0`: in case of any access technology class, - * - `1`: in case of ITS-G5 access technology class, - * - `2`: in case of LTE-V2X access technology class, - * - `3`: in case of NR-V2X access technology class. + * - '0': in case of any access technology class, + * - '1': in case of ITS-G5 access technology class, + * - '2': in case of LTE-V2X access technology class, + * - '3': in case of NR-V2X access technology class. * * @category: Communication information * @revision: Created in V2.1.1 @@ -148,19 +148,19 @@ AccessTechnologyClass ::= ENUMERATED { } /** - * This DE represents the value of the sub cause code of the @ref CauseCode `accident`. + * This DE represents the value of the sub cause code of the @ref CauseCode 'accident'. * * The value shall be set to: - * - 0 - `unavailable` - in case the information on the sub cause of the accident is unavailable, - * - 1 - `multiVehicleAccident` - in case more than two vehicles are involved in accident, - * - 2 - `heavyAccident` - in case the airbag of the vehicle involved in the accident is triggered, + * - 0 - 'unavailable' - in case the information on the sub cause of the accident is unavailable, + * - 1 - 'multiVehicleAccident' - in case more than two vehicles are involved in accident, + * - 2 - 'heavyAccident' - in case the airbag of the vehicle involved in the accident is triggered, * the accident requires important rescue and/or recovery work, - * - 3 - `accidentInvolvingLorry` - in case the accident involves a lorry, - * - 4 - `accidentInvolvingBus` - in case the accident involves a bus, - * - 5 - `accidentInvolvingHazardousMaterials`- in case the accident involves hazardous material, - * - 6 - `accidentOnOppositeLane` - in case the accident happens on opposite lanes, - * - 7 - `unsecuredAccident` - in case the accident is not secured, - * - 8 - `assistanceRequested` - in case rescue and assistance are requested, + * - 3 - 'accidentInvolvingLorry' - in case the accident involves a lorry, + * - 4 - 'accidentInvolvingBus' - in case the accident involves a bus, + * - 5 - 'accidentInvolvingHazardousMaterials'- in case the accident involves hazardous material, + * - 6 - 'accidentOnOppositeLane' - in case the accident happens on opposite lanes, + * - 7 - 'unsecuredAccident' - in case the accident is not secured, + * - 8 - 'assistanceRequested' - in case rescue and assistance are requested, * - 9-255 - reserved for future usage. * * @category: Traffic information @@ -179,20 +179,20 @@ AccidentSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the value of the sub cause code of the @ref CauseCode `adverseWeatherCondition-Adhesion`. + * This DE represents the value of the sub cause code of the @ref CauseCode 'adverseWeatherCondition-Adhesion'. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of the low road adhesion is unavailable, - * - 1 - `heavyFrostOnRoad`- in case the low road adhesion is due to heavy frost on the road, - * - 2 - `fuelOnRoad` - in case the low road adhesion is due to fuel on the road, - * - 3 - `mudOnRoad` - in case the low road adhesion is due to mud on the road, - * - 4 - `snowOnRoad` - in case the low road adhesion is due to snow on the road, - * - 5 - `iceOnRoad` - in case the low road adhesion is due to ice on the road, - * - 6 - `blackIceOnRoad` - in case the low road adhesion is due to black ice on the road, - * - 7 - `oilOnRoad` - in case the low road adhesion is due to oil on the road, - * - 8 - `looseChippings` - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard, - * - 9 - `instantBlackIce` - in case the low road adhesion is due to instant black ice on the road surface, - * - 10 - `roadsSalted` - when the low road adhesion is due to salted road, + * - 0 - 'unavailable' - in case information on the cause of the low road adhesion is unavailable, + * - 1 - 'heavyFrostOnRoad'- in case the low road adhesion is due to heavy frost on the road, + * - 2 - 'fuelOnRoad' - in case the low road adhesion is due to fuel on the road, + * - 3 - 'mudOnRoad' - in case the low road adhesion is due to mud on the road, + * - 4 - 'snowOnRoad' - in case the low road adhesion is due to snow on the road, + * - 5 - 'iceOnRoad' - in case the low road adhesion is due to ice on the road, + * - 6 - 'blackIceOnRoad' - in case the low road adhesion is due to black ice on the road, + * - 7 - 'oilOnRoad' - in case the low road adhesion is due to oil on the road, + * - 8 - 'looseChippings' - in case the low road adhesion is due to loose gravel or stone fragments detached from a road surface or from a hazard, + * - 9 - 'instantBlackIce' - in case the low road adhesion is due to instant black ice on the road surface, + * - 10 - 'roadsSalted' - when the low road adhesion is due to salted road, * - 11-255 - are reserved for future usage. * * @category: Traffic information @@ -213,16 +213,16 @@ AdverseWeatherCondition-AdhesionSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-ExtremeWeatherCondition`. + * This DE represents the value of the sub cause codes of the @ref CauseCode 'adverseWeatherCondition-ExtremeWeatherCondition'. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of extreme weather condition is unavailable, - * - 1 - `strongWinds` - in case the type of extreme weather condition is strong wind, - * - 2 - `damagingHail`- in case the type of extreme weather condition is damaging hail, - * - 3 - `hurricane` - in case the type of extreme weather condition is hurricane, - * - 4 - `thunderstorm`- in case the type of extreme weather condition is thunderstorm, - * - 5 - `tornado` - in case the type of extreme weather condition is tornado, - * - 6 - `blizzard` - in case the type of extreme weather condition is blizzard. + * - 0 - 'unavailable' - in case information on the type of extreme weather condition is unavailable, + * - 1 - 'strongWinds' - in case the type of extreme weather condition is strong wind, + * - 2 - 'damagingHail'- in case the type of extreme weather condition is damaging hail, + * - 3 - 'hurricane' - in case the type of extreme weather condition is hurricane, + * - 4 - 'thunderstorm'- in case the type of extreme weather condition is thunderstorm, + * - 5 - 'tornado' - in case the type of extreme weather condition is tornado, + * - 6 - 'blizzard' - in case the type of extreme weather condition is blizzard. * - 7-255 - are reserved for future usage. * * @category: Traffic information @@ -239,13 +239,13 @@ AdverseWeatherCondition-ExtremeWeatherConditionSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Precipitation`. + * This DE represents the value of the sub cause codes of the @ref CauseCode 'adverseWeatherCondition-Precipitation'. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of precipitation is unavailable, - * - 1 - `heavyRain` - in case the type of precipitation is heavy rain, - * - 2 - `heavySnowfall` - in case the type of precipitation is heavy snow fall, - * - 3 - `softHail` - in case the type of precipitation is soft hail. + * - 0 - 'unavailable' - in case information on the type of precipitation is unavailable, + * - 1 - 'heavyRain' - in case the type of precipitation is heavy rain, + * - 2 - 'heavySnowfall' - in case the type of precipitation is heavy snow fall, + * - 3 - 'softHail' - in case the type of precipitation is soft hail. * - 4-255 - are reserved for future usage * * @category: Traffic information @@ -259,18 +259,18 @@ AdverseWeatherCondition-PrecipitationSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `adverseWeatherCondition-Visibility`. + * This DE represents the value of the sub cause codes of the @ref CauseCode 'adverseWeatherCondition-Visibility'. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the cause of low visibility is unavailable, - * - 1 - `fog` - in case the cause of low visibility is fog, - * - 2 - `smoke` - in case the cause of low visibility is smoke, - * - 3 - `heavySnowfall` - in case the cause of low visibility is heavy snow fall, - * - 4 - `heavyRain` - in case the cause of low visibility is heavy rain, - * - 5 - `heavyHail` - in case the cause of low visibility is heavy hail, - * - 6 - `lowSunGlare` - in case the cause of low visibility is sun glare, - * - 7 - `sandstorms` - in case the cause of low visibility is sand storm, - * - 8 - `swarmsOfInsects`- in case the cause of low visibility is swarm of insects. + * - 0 - 'unavailable' - in case information on the cause of low visibility is unavailable, + * - 1 - 'fog' - in case the cause of low visibility is fog, + * - 2 - 'smoke' - in case the cause of low visibility is smoke, + * - 3 - 'heavySnowfall' - in case the cause of low visibility is heavy snow fall, + * - 4 - 'heavyRain' - in case the cause of low visibility is heavy rain, + * - 5 - 'heavyHail' - in case the cause of low visibility is heavy hail, + * - 6 - 'lowSunGlare' - in case the cause of low visibility is sun glare, + * - 7 - 'sandstorms' - in case the cause of low visibility is sand storm, + * - 8 - 'swarmsOfInsects'- in case the cause of low visibility is swarm of insects. * - 9-255 - are reserved for future usage * * @category: Traffic information @@ -292,8 +292,8 @@ AdverseWeatherCondition-VisibilitySubCauseCode ::= INTEGER { * This DE represents the air humidity in tenths of percent. * * The value shall be set to: - * - `n (n > 0 and n < 1001)` indicates that the applicable value is equal to or less than n x 0,1 percent and greater than (n-1) x 0,1 percent. - * - `1001` indicates that the air humidity is unavailable. + * - 'n (n > 0 and n < 1001)' indicates that the applicable value is equal to or less than n x 0,1 percent and greater than (n-1) x 0,1 percent. + * - '1001' indicates that the air humidity is unavailable. * * @category: Basic information * @unit: 0,1 % @@ -309,31 +309,31 @@ AirHumidity ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - 0 - `alt-000-01` - if the confidence value is equal to or less than 0,01 metre, - * - 1 - `alt-000-02` - if the confidence value is equal to or less than 0,02 metre and greater than 0,01 metre, - * - 2 - `alt-000-05` - if the confidence value is equal to or less than 0,05 metre and greater than 0,02 metre, - * - 3 - `alt-000-10` - if the confidence value is equal to or less than 0,1 metre and greater than 0,05 metre, - * - 4 - `alt-000-20` - if the confidence value is equal to or less than 0,2 metre and greater than 0,1 metre, - * - 5 - `alt-000-50` - if the confidence value is equal to or less than 0,5 metre and greater than 0,2 metre, - * - 6 - `alt-001-00` - if the confidence value is equal to or less than 1 metre and greater than 0,5 metre, - * - 7 - `alt-002-00` - if the confidence value is equal to or less than 2 metres and greater than 1 metre, - * - 8 - `alt-005-00` - if the confidence value is equal to or less than 5 metres and greater than 2 metres, - * - 9 - `alt-010-00` - if the confidence value is equal to or less than 10 metres and greater than 5 metres, - * - 10 - `alt-020-00` - if the confidence value is equal to or less than 20 metres and greater than 10 metres, - * - 11 - `alt-050-00` - if the confidence value is equal to or less than 50 metres and greater than 20 metres, - * - 12 - `alt-100-00` - if the confidence value is equal to or less than 100 metres and greater than 50 metres, - * - 13 - `alt-200-00` - if the confidence value is equal to or less than 200 metres and greater than 100 metres, - * - 14 - `outOfRange` - if the confidence value is out of range, i.e. greater than 200 metres, - * - 15 - `unavailable` - if the confidence value is unavailable. - * - * @note: The fact that an altitude value is received with confidence value set to `unavailable(15)` can be caused + * - 0 - 'alt-000-01' - if the confidence value is equal to or less than 0,01 metre, + * - 1 - 'alt-000-02' - if the confidence value is equal to or less than 0,02 metre and greater than 0,01 metre, + * - 2 - 'alt-000-05' - if the confidence value is equal to or less than 0,05 metre and greater than 0,02 metre, + * - 3 - 'alt-000-10' - if the confidence value is equal to or less than 0,1 metre and greater than 0,05 metre, + * - 4 - 'alt-000-20' - if the confidence value is equal to or less than 0,2 metre and greater than 0,1 metre, + * - 5 - 'alt-000-50' - if the confidence value is equal to or less than 0,5 metre and greater than 0,2 metre, + * - 6 - 'alt-001-00' - if the confidence value is equal to or less than 1 metre and greater than 0,5 metre, + * - 7 - 'alt-002-00' - if the confidence value is equal to or less than 2 metres and greater than 1 metre, + * - 8 - 'alt-005-00' - if the confidence value is equal to or less than 5 metres and greater than 2 metres, + * - 9 - 'alt-010-00' - if the confidence value is equal to or less than 10 metres and greater than 5 metres, + * - 10 - 'alt-020-00' - if the confidence value is equal to or less than 20 metres and greater than 10 metres, + * - 11 - 'alt-050-00' - if the confidence value is equal to or less than 50 metres and greater than 20 metres, + * - 12 - 'alt-100-00' - if the confidence value is equal to or less than 100 metres and greater than 50 metres, + * - 13 - 'alt-200-00' - if the confidence value is equal to or less than 200 metres and greater than 100 metres, + * - 14 - 'outOfRange' - if the confidence value is out of range, i.e. greater than 200 metres, + * - 15 - 'unavailable' - if the confidence value is unavailable. + * + * @note: The fact that an altitude value is received with confidence value set to 'unavailable(15)' can be caused * by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. * In all 3 cases above, the altitude value may be valid and used by the application. * - * @note: If an altitude value is received and its confidence value is set to `outOfRange(14)`, it means that the + * @note: If an altitude value is received and its confidence value is set to 'outOfRange(14)', it means that the * altitude value is not valid and therefore cannot be trusted. Such value is not useful for the application. * * @category: GeoReference information @@ -363,10 +363,10 @@ AltitudeConfidence ::= ENUMERATED { * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `-100 000` if the altitude is equal to or less than -1 000 m, - * - `n (n > -100 000 and n < 800 000)` if the altitude is equal to or less than n x 0,01 metre and greater than (n-1) x 0,01 metre, - * - `800 000` if the altitude greater than 7 999,99 m, - * - `800 001` if the information is not available. + * - '-100 000' if the altitude is equal to or less than -1 000 m, + * - 'n (n > -100 000 and n < 800 000)' if the altitude is equal to or less than n x 0,01 metre and greater than (n-1) x 0,01 metre, + * - '800 000' if the altitude greater than 7 999,99 m, + * - '800 001' if the information is not available. * * @note: the range of this DE does not use the full binary encoding range, but all reasonable values are covered. In order to cover all possible altitude ranges a larger encoding would be necessary. * @unit: 0,01 metre @@ -384,9 +384,9 @@ AltitudeValue ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 126)` if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees, - * - `126` if the accuracy is out of range, i.e. greater than 12,5 degrees, - * - `127` if the accuracy information is not available. + * - 'n (n > 0 and n < 126)' if the accuracy is equal to or less than n * 0,1 degrees and greater than (n-1) x * 0,1 degrees, + * - '126' if the accuracy is out of range, i.e. greater than 12,5 degrees, + * - '127' if the accuracy information is not available. * * @unit: 0,1 degrees * @category: Basic information @@ -403,14 +403,14 @@ AngleConfidence ::= INTEGER { * For correlation computation, maximum interval levels can be assumed. * * The value shall be set to: - * - 0 - `degSec-01` - if the accuracy is equal to or less than 1 degree/second, - * - 1 - `degSec-02` - if the accuracy is equal to or less than 2 degrees/second and greater than 1 degree/second, - * - 2 - `degSec-05` - if the accuracy is equal to or less than 5 degrees/second and greater than 2 degrees/second, - * - 3 - `degSec-10` - if the accuracy is equal to or less than 10 degrees/second and greater than 5 degrees/second, - * - 4 - `degSec-20` - if the accuracy is equal to or less than 20 degrees/second and greater than 10 degrees/second, - * - 5 - `degSec-50` - if the accuracy is equal to or less than 50 degrees/second and greater than 20 degrees/second, - * - 6 - `outOfRange` - if the accuracy is out of range, i.e. greater than 50 degrees/second, - * - 7 - `unavailable` - if the accuracy information is unavailable. + * - 0 - 'degSec-01' - if the accuracy is equal to or less than 1 degree/second, + * - 1 - 'degSec-02' - if the accuracy is equal to or less than 2 degrees/second and greater than 1 degree/second, + * - 2 - 'degSec-05' - if the accuracy is equal to or less than 5 degrees/second and greater than 2 degrees/second, + * - 3 - 'degSec-10' - if the accuracy is equal to or less than 10 degrees/second and greater than 5 degrees/second, + * - 4 - 'degSec-20' - if the accuracy is equal to or less than 20 degrees/second and greater than 10 degrees/second, + * - 5 - 'degSec-50' - if the accuracy is equal to or less than 50 degrees/second and greater than 20 degrees/second, + * - 6 - 'outOfRange' - if the accuracy is out of range, i.e. greater than 50 degrees/second, + * - 7 - 'unavailable' - if the accuracy information is unavailable. * * @category: Kinematic information * @revision: Created in V2.1.1 @@ -432,14 +432,14 @@ AngularSpeedConfidence ::= ENUMERATED { * For correlation computation, maximum interval levels shall be assumed. * * The value shall be set to: - * - 0 - `degSecSquared-01` - if the accuracy is equal to or less than 1 degree/second^2, - * - 1 - `degSecSquared-02` - if the accuracy is equal to or less than 2 degrees/second^2 and greater than 1 degree/second^2, - * - 2 - `degSecSquared-05` - if the accuracy is equal to or less than 5 degrees/second^2 and greater than 1 degree/second^2, - * - 3 - `degSecSquared-10` - if the accuracy is equal to or less than 10 degrees/second^2 and greater than 5 degrees/second^2, - * - 4 - `degSecSquared-20` - if the accuracy is equal to or less than 20 degrees/second^2 and greater than 10 degrees/second^2, - * - 5 - `degSecSquared-50` - if the accuracy is equal to or less than 50 degrees/second^2 and greater than 20 degrees/second^2, - * - 6 - `outOfRange` - if the accuracy is out of range, i.e. greater than 50 degrees/second^2, - * - 7 - `unavailable` - if the accuracy information is unavailable. + * - 0 - 'degSecSquared-01' - if the accuracy is equal to or less than 1 degree/second^2, + * - 1 - 'degSecSquared-02' - if the accuracy is equal to or less than 2 degrees/second^2 and greater than 1 degree/second^2, + * - 2 - 'degSecSquared-05' - if the accuracy is equal to or less than 5 degrees/second^2 and greater than 1 degree/second^2, + * - 3 - 'degSecSquared-10' - if the accuracy is equal to or less than 10 degrees/second^2 and greater than 5 degrees/second^2, + * - 4 - 'degSecSquared-20' - if the accuracy is equal to or less than 20 degrees/second^2 and greater than 10 degrees/second^2, + * - 5 - 'degSecSquared-50' - if the accuracy is equal to or less than 50 degrees/second^2 and greater than 20 degrees/second^2, + * - 6 - 'outOfRange' - if the accuracy is out of range, i.e. greater than 50 degrees/second^2, + * - 7 - 'unavailable' - if the accuracy information is unavailable. * * @category: Kinematic information * @revision: Created in V2.1.1 @@ -459,9 +459,9 @@ AngularAccelerationConfidence ::= ENUMERATED { * This DE indicates the number of axles of a passing train. * * The value shall be set to: - * - `n(n > 2 and n < 1001)` indicates that the train has n x axles, - * - `1001`indicates that the number of axles is out of range, - * - `1002` the information is unavailable. + * - 'n(n > 2 and n < 1001)' indicates that the train has n x axles, + * - '1001'indicates that the number of axles is out of range, + * - '1002' the information is unavailable. * * * @unit: Number of axles @@ -477,10 +477,10 @@ AxlesCount ::= INTEGER{ * This DE represents the measured uncompensated atmospheric pressure. * * The value shall be set to: - * - `2999` indicates that the applicable value is less than 29990 Pa, - * - `n (n > 2999 and n <= 12000)` indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, - * - `12001` indicates that the values is greater than 120000 Pa, - * - `12002` indicates that the information is not available. + * - '2999' indicates that the applicable value is less than 29990 Pa, + * - 'n (n > 2999 and n <= 12000)' indicates that the applicable value is equal to or less than n x 10 Pa and greater than (n-1) x 10 Pa, + * - '12001' indicates that the values is greater than 120000 Pa, + * - '12002' indicates that the information is not available. * * @category: Basic information * @unit: 10 Pascal @@ -497,9 +497,9 @@ BarometricPressure ::= INTEGER{ * This DE indicates the cardinal number of bogies of a train. * * The value shall be set to: - * - `n (n > 1 and n < 100)` indicates that the train has n x bogies, - * - `100`indicates that the number of bogies is out of range, - * - `101` the information is unavailable. + * - 'n (n > 1 and n < 100)' indicates that the train has n x bogies, + * - '100'indicates that the number of bogies is out of range, + * - '101' the information is unavailable. * * @unit: Number of bogies * @category: Vehicle information @@ -531,8 +531,8 @@ CardinalNumber3b ::= INTEGER(1..8) * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `n (n >= 0 and n < 3600)` if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, - * - `36001` if the accuracy information is not available. + * - 'n (n >= 0 and n < 3600)' if the angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + * - '36001' if the accuracy information is not available. * * The value 3600 shall not be used. * @@ -550,11 +550,11 @@ CartesianAngleValue ::= INTEGER { * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `-255` if the acceleration is equal to or less than -255 degrees/s^2, - * - `n` (`n > -255` and `n < 255`) if the acceleration is equal to or less than n x 1 degree/s^2, - and greater than `(n-1)` x 0,01 degree/s^2, - * - `255` if the acceleration is greater than 254 degrees/s^2, - * - `256` if the information is unavailable. + * - '-255' if the acceleration is equal to or less than -255 degrees/s^2, + * - 'n' ('n > -255' and 'n < 255') if the acceleration is equal to or less than n x 1 degree/s^2, + and greater than '(n-1)' x 0,01 degree/s^2, + * - '255' if the acceleration is greater than 254 degrees/s^2, + * - '256' if the information is unavailable. * * @unit: degree/s^2 (degrees per second squared) * @category: Kinematic information @@ -571,10 +571,10 @@ CartesianAngularAccelerationComponentValue ::= INTEGER { * a right-hand local coordinate system from the abscissa. * * The value shall be set to: - * - `-255` if the velocity is equal to or less than -255 degrees/s, - * - `n` (`n > -255` and `n < 255`) if the velocity is equal to or less than n x 1 degree/s, and greater than (n-1) x 1 degree/s, - * - `255` if the velocity is greater than 254 degrees/s, - * - `256` if the information is unavailable. + * - '-255' if the velocity is equal to or less than -255 degrees/s, + * - 'n' ('n > -255' and 'n < 255') if the velocity is equal to or less than n x 1 degree/s, and greater than (n-1) x 1 degree/s, + * - '255' if the velocity is greater than 254 degrees/s, + * - '256' if the information is unavailable. * * @unit: degree/s * @category: Kinematic information @@ -591,43 +591,43 @@ CartesianAngularVelocityComponentValue ::= INTEGER { * * The value shall be set to: * - 0 - reserved for future use, - * - 1 - `trafficCondition` - in case the type of event is an abnormal traffic condition, - * - 2 - `accident` - in case the type of event is a road accident, - * - 3 - `roadworks` - in case the type of event is roadwork, + * - 1 - 'trafficCondition' - in case the type of event is an abnormal traffic condition, + * - 2 - 'accident' - in case the type of event is a road accident, + * - 3 - 'roadworks' - in case the type of event is roadwork, * - 4 - reserved for future usage, - * - 5 - `impassability` - in case the type of event is unmanaged road blocking, referring to any + * - 5 - 'impassability' - in case the type of event is unmanaged road blocking, referring to any * blocking of a road, partial or total, which has not been adequately * secured and signposted, - * - 6 - `adverseWeatherCondition-Adhesion` - in case the type of event is low adhesion, - * - 7 - `aquaplaning` - danger of aquaplaning on the road, + * - 6 - 'adverseWeatherCondition-Adhesion' - in case the type of event is low adhesion, + * - 7 - 'aquaplaning' - danger of aquaplaning on the road, * - 8 - reserved for future usage, - * - 9 - `hazardousLocation-SurfaceCondition` - in case the type of event is abnormal road surface condition, - * - 10 - `hazardousLocation-ObstacleOnTheRoad` - in case the type of event is obstacle on the road, - * - 11 - `hazardousLocation-AnimalOnTheRoad` - in case the type of event is animal on the road, - * - 12 - `humanPresenceOnTheRoad` - in case the type of event is human presence on the road, + * - 9 - 'hazardousLocation-SurfaceCondition' - in case the type of event is abnormal road surface condition, + * - 10 - 'hazardousLocation-ObstacleOnTheRoad' - in case the type of event is obstacle on the road, + * - 11 - 'hazardousLocation-AnimalOnTheRoad' - in case the type of event is animal on the road, + * - 12 - 'humanPresenceOnTheRoad' - in case the type of event is human presence on the road, * - 13 - reserved for future usage, - * - 14 - `wrongWayDriving` - in case the type of the event is vehicle driving in wrong way, - * - 15 - `rescueAndRecoveryWorkInProgress` - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, + * - 14 - 'wrongWayDriving' - in case the type of the event is vehicle driving in wrong way, + * - 15 - 'rescueAndRecoveryWorkInProgress' - in case the type of event is rescue and recovery work for accident or for a road hazard in progress, * - 16 - reserved for future usage, - * - 17 - `adverseWeatherCondition-ExtremeWeatherCondition`- in case the type of event is extreme weather condition, - * - 18 - `adverseWeatherCondition-Visibility` - in case the type of event is low visibility, - * - 19 - `adverseWeatherCondition-Precipitation` - in case the type of event is precipitation, - * - 20 - `violence` - in case the the type of event is human violence on or near the road, + * - 17 - 'adverseWeatherCondition-ExtremeWeatherCondition'- in case the type of event is extreme weather condition, + * - 18 - 'adverseWeatherCondition-Visibility' - in case the type of event is low visibility, + * - 19 - 'adverseWeatherCondition-Precipitation' - in case the type of event is precipitation, + * - 20 - 'violence' - in case the the type of event is human violence on or near the road, * - 21-25 - reserved for future usage, - * - 26 - `slowVehicle` - in case the type of event is slow vehicle driving on the road, - * - 27 - `dangerousEndOfQueue` - in case the type of event is dangerous end of vehicle queue, + * - 26 - 'slowVehicle' - in case the type of event is slow vehicle driving on the road, + * - 27 - 'dangerousEndOfQueue' - in case the type of event is dangerous end of vehicle queue, * - 28-90 - are reserved for future usage, - * - 91 - `vehicleBreakdown` - in case the type of event is break down vehicle on the road, - * - 92 - `postCrash` - in case the type of event is a detected crash, - * - 93 - `humanProblem` - in case the type of event is human health problem in vehicles involved in traffic, - * - 94 - `stationaryVehicle` - in case the type of event is stationary vehicle, - * - 95 - `emergencyVehicleApproaching` - in case the type of event is approaching vehicle operating emergency mission, - * - 96 - `hazardousLocation-DangerousCurve` - in case the type of event is dangerous curve, - * - 97 - `collisionRisk` - in case the type of event is a collision risk, - * - 98 - `signalViolation` - in case the type of event is signal violation, - * - 99 - `dangerousSituation` - in case the type of event is dangerous situation in which autonomous safety system in vehicle + * - 91 - 'vehicleBreakdown' - in case the type of event is break down vehicle on the road, + * - 92 - 'postCrash' - in case the type of event is a detected crash, + * - 93 - 'humanProblem' - in case the type of event is human health problem in vehicles involved in traffic, + * - 94 - 'stationaryVehicle' - in case the type of event is stationary vehicle, + * - 95 - 'emergencyVehicleApproaching' - in case the type of event is approaching vehicle operating emergency mission, + * - 96 - 'hazardousLocation-DangerousCurve' - in case the type of event is dangerous curve, + * - 97 - 'collisionRisk' - in case the type of event is a collision risk, + * - 98 - 'signalViolation' - in case the type of event is signal violation, + * - 99 - 'dangerousSituation' - in case the type of event is dangerous situation in which autonomous safety system in vehicle * is activated, - * - 100 - `railwayLevelCrossing` - in case the type of event is a railway level crossing. + * - 100 - 'railwayLevelCrossing' - in case the type of event is a railway level crossing. * - 101-255 - are reserved for future usage. * * @category: Traffic information @@ -668,9 +668,9 @@ CauseCodeType ::= INTEGER { * This DF represents the value of a cartesian coordinate with a range of -30,94 metres to +10,00 metres. * * The value shall be set to: - * - `3094` if the longitudinal offset is out of range, i.e. less than or equal to -30,94 metres, - * - `n (n > -3 094 and n < 1 001)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `1001` if the longitudinal offset is out of range, i.e. greater than 10 metres. + * - '3094' if the longitudinal offset is out of range, i.e. less than or equal to -30,94 metres, + * - 'n (n > -3 094 and n < 1 001)' if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - '1001' if the longitudinal offset is out of range, i.e. greater than 10 metres. * * @unit 0,01 m * @category: Basic information @@ -685,9 +685,9 @@ CartesianCoordinateSmall::= INTEGER { * This DF represents the value of a cartesian coordinate with a range of -327,68 metres to +327,66 metres. * * The value shall be set to: - * - `-32 768` if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres, - * - `n (n > -32 768 and n < 32 767)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `32 767` if the longitudinal offset is out of range, i.e. greater than + 327,66 metres. + * - '-32 768' if the longitudinal offset is out of range, i.e. less than or equal to -327,68 metres, + * - 'n (n > -32 768 and n < 32 767)' if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - '32 767' if the longitudinal offset is out of range, i.e. greater than + 327,66 metres. * * @unit 0,01 m * @category: Basic information @@ -702,9 +702,9 @@ CartesianCoordinate::= INTEGER{ * This DF represents the value of a cartesian coordinate with a range of -1 310,72 metres to +1 310,70 metres. * * The value shall be set to: - * - `-131072` if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres, - * - `n (n > 131 072 and n < 131 071)` if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `131 071` if the longitudinal offset is out of range, i.e. greater than + 1 310,70 metres. + * - '-131072' if the longitudinal offset is out of range, i.e. less than or equal to -1 310,72 metres, + * - 'n (n > 131 072 and n < 131 071)' if the longitudinal offset information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - '131 071' if the longitudinal offset is out of range, i.e. greater than + 1 310,70 metres. * * @unit 0,01 m * @category: Basic information @@ -728,12 +728,12 @@ CenDsrcTollingZoneID::= ProtectedZoneId * This DE indicates the reason why a cluster leader intends to break up the cluster. * * The value shall be set to: - * - 0 - `notProvided` - if the information is not provided, - * - 1 - `clusteringPurposeCompleted` - if the cluster purpose has been completed, - * - 2 - `leaderMovedOutOfClusterBoundingBox` - if the leader moved out of the cluster's bounding box, - * - 3 - `joiningAnotherCluster` - if the cluster leader is about to join another cluster, - * - 4 - `enteringLowRiskAreaBasedOnMaps` - if the cluster is entering an area idenrified as low risk based on the use of maps, - * - 5 - `receptionOfCpmContainingCluster` - if the leader received a Collective Perception Message containing information about the same cluster. + * - 0 - 'notProvided' - if the information is not provided, + * - 1 - 'clusteringPurposeCompleted' - if the cluster purpose has been completed, + * - 2 - 'leaderMovedOutOfClusterBoundingBox' - if the leader moved out of the cluster's bounding box, + * - 3 - 'joiningAnotherCluster' - if the cluster leader is about to join another cluster, + * - 4 - 'enteringLowRiskAreaBasedOnMaps' - if the cluster is entering an area idenrified as low risk based on the use of maps, + * - 5 - 'receptionOfCpmContainingCluster' - if the leader received a Collective Perception Message containing information about the same cluster. * - 6 to 15 - are reserved for future use. * * @category: Cluster information @@ -753,15 +753,15 @@ ClusterBreakupReason ::= ENUMERATED { * This DE indicates the reason why a cluster participant is leaving the cluster. * * The value shall be set to: - * - 0 - `notProvided ` - if the information is not provided, - * - 1 - `clusterLeaderLost` - if the cluster leader cannot be found anymore, - * - 2 - `clusterDisbandedByLeader` - if the cluster has been disbanded by the leader, - * - 3 - `outOfClusterBoundingBox` - if the participants moved out of the cluster's bounding box, - * - 4 - `outOfClusterSpeedRange` - if the cluster speed moved out of a defined range, - * - 5 - `joiningAnotherCluster` - if the participant is joining another cluster, - * - 6 - `cancelledJoin` - if the participant is cancelling a joining procedure, - * - 7 - `failedJoin` - if the participant failed to join the cluster, - * - 8 - `safetyCondition` - if a safety condition applies. + * - 0 - 'notProvided ' - if the information is not provided, + * - 1 - 'clusterLeaderLost' - if the cluster leader cannot be found anymore, + * - 2 - 'clusterDisbandedByLeader' - if the cluster has been disbanded by the leader, + * - 3 - 'outOfClusterBoundingBox' - if the participants moved out of the cluster's bounding box, + * - 4 - 'outOfClusterSpeedRange' - if the cluster speed moved out of a defined range, + * - 5 - 'joiningAnotherCluster' - if the participant is joining another cluster, + * - 6 - 'cancelledJoin' - if the participant is cancelling a joining procedure, + * - 7 - 'failedJoin' - if the participant failed to join the cluster, + * - 8 - 'safetyCondition' - if a safety condition applies. * - 9 to 15 - are reserved for future use * * @category: Cluster information @@ -781,15 +781,15 @@ ClusterLeaveReason ::= ENUMERATED { } /** - * This DE represents the sub cause codes of the @ref CauseCode `collisionRisk`. + * This DE represents the sub cause codes of the @ref CauseCode 'collisionRisk'. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of collision risk is unavailable, - * - 1 - `longitudinalCollisionRisk`- in case the type of detected collision risk is longitudinal collision risk, + * - 0 - 'unavailable' - in case information on the type of collision risk is unavailable, + * - 1 - 'longitudinalCollisionRisk'- in case the type of detected collision risk is longitudinal collision risk, * e.g. forward collision or face to face collision, - * - 2 - `crossingCollisionRisk` - in case the type of detected collision risk is crossing collision risk, - * - 3 - `lateralCollisionRisk` - in case the type of detected collision risk is lateral collision risk, - * - 4 - `vulnerableRoadUser` - in case the type of detected collision risk involves vulnerable road users + * - 2 - 'crossingCollisionRisk' - in case the type of detected collision risk is crossing collision risk, + * - 3 - 'lateralCollisionRisk' - in case the type of detected collision risk is lateral collision risk, + * - 4 - 'vulnerableRoadUser' - in case the type of detected collision risk involves vulnerable road users * e.g. pedestrians or bicycles. * - 5-255 - are reserved for future usage. * @@ -808,8 +808,8 @@ CollisionRiskSubCauseCode ::= INTEGER { * This DE represents a confidence level in percentage. * * The value shall be set to: - * - `n (n > 0 and n < 101)` : for the confidence level in %, - * - `101` : in case the confidence level is not available. + * - 'n (n > 0 and n < 101)' : for the confidence level in %, + * - '101' : in case the confidence level is not available. * * @unit Percent * @category: Basic information @@ -824,9 +824,9 @@ ConfidenceLevel ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n` (`n > 0` and `n < 4095`) if the confidence value is is equal to or less than n x 0,01 metre, and greater than (n-1) x 0,01 metre, - * - `4095` if the confidence value is greater than 40,94 metres, - * - `4096` if the confidence value is not available. + * - 'n' ('n > 0' and 'n < 4095') if the confidence value is is equal to or less than n x 0,01 metre, and greater than (n-1) x 0,01 metre, + * - '4095' if the confidence value is greater than 40,94 metres, + * - '4096' if the confidence value is not available. * * @unit 0,01 m * @category: Basic information @@ -841,12 +841,12 @@ CoordinateConfidence ::= INTEGER { * This DE represents the Bravais-Pearson correlation value for each cell of a lower triangular correlation matrix. * * The value shall be set to: - * - `-100` in case of full negative correlation, - * - `n` (`n > -100` and `n < 0`) if the correlation is negative and equal to n x 100, - * - `0` in case of no correlation, - * - `n` (`n > 0` and `n < 100`) if the correlation is positive and equal to n x 100, - * - `100` in case of full positive correlation, - * - `101` in case the correlation information is unavailable. + * - '-100' in case of full negative correlation, + * - 'n' ('n > -100' and 'n < 0') if the correlation is negative and equal to n x 100, + * - '0' in case of no correlation, + * - 'n' ('n > 0' and 'n < 100') if the correlation is positive and equal to n x 100, + * - '100' in case of full positive correlation, + * - '101' in case the correlation information is unavailable. * * @unit: the value is scaled by 100 * @category: Basic information @@ -863,9 +863,9 @@ CorrelationCellValue ::= INTEGER { * The DE describes whether the yaw rate is used to calculate the curvature for a curvature value. * * The value shall be set to: - * - 0 - `yawRateUsed` - if the yaw rate is used, - * - 1 - `yawRateNotUsed` - if the yaw rate is not used, - * - 2 - `unavailable` - if the information of curvature calculation mode is unknown. + * - 0 - 'yawRateUsed' - if the yaw rate is used, + * - 1 - 'yawRateNotUsed' - if the yaw rate is not used, + * - 2 - 'unavailable' - if the information of curvature calculation mode is unknown. * * @category: Vehicle information * @revision: V1.3.1 @@ -882,16 +882,16 @@ CurvatureCalculationMode ::= ENUMERATED { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - 0 - `onePerMeter-0-00002` - if the confidence value is less than or equal to 0,00002 m-1, - * - 1 - `onePerMeter-0-0001` - if the confidence value is less than or equal to 0,0001 m-1 and greater than 0,00002 m-1, - * - 2 - `onePerMeter-0-0005` - if the confidence value is less than or equal to 0,0005 m-1 and greater than 0,0001 m-1, - * - 3 - `onePerMeter-0-002` - if the confidence value is less than or equal to 0,002 m-1 and greater than 0,0005 m-1, - * - 4 - `nePerMeter-0-01` - if the confidence value is less than or equal to 0,01 m-1 and greater than 0,002 m-1, - * - 5 - `nePerMeter-0-1` - if the confidence value is less than or equal to 0,1 m-1 and greater than 0,01 m-1, - * - 6 - `outOfRange` - if the confidence value is out of range, i.e. greater than 0,1 m-1, - * - 7 - `unavailable` - if the confidence value is not available. - * - * @note: The fact that a curvature value is received with confidence value set to `unavailable(7)` can be caused by + * - 0 - 'onePerMeter-0-00002' - if the confidence value is less than or equal to 0,00002 m-1, + * - 1 - 'onePerMeter-0-0001' - if the confidence value is less than or equal to 0,0001 m-1 and greater than 0,00002 m-1, + * - 2 - 'onePerMeter-0-0005' - if the confidence value is less than or equal to 0,0005 m-1 and greater than 0,0001 m-1, + * - 3 - 'onePerMeter-0-002' - if the confidence value is less than or equal to 0,002 m-1 and greater than 0,0005 m-1, + * - 4 - 'nePerMeter-0-01' - if the confidence value is less than or equal to 0,01 m-1 and greater than 0,002 m-1, + * - 5 - 'nePerMeter-0-1' - if the confidence value is less than or equal to 0,1 m-1 and greater than 0,01 m-1, + * - 6 - 'outOfRange' - if the confidence value is out of range, i.e. greater than 0,1 m-1, + * - 7 - 'unavailable' - if the confidence value is not available. + * + * @note: The fact that a curvature value is received with confidence value set to 'unavailable(7)' can be caused by * several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or @@ -917,21 +917,21 @@ CurvatureConfidence ::= ENUMERATED { /** * This DE describes vehicle turning curve with the following information: - * ``` + * ''' * Value = 1 / Radius * 10000 - * ``` + * ''' * wherein radius is the vehicle turning curve radius in metres. * * Positive values indicate a turning curve to the left hand side of the driver. * It corresponds to the vehicle coordinate system as defined in ISO 8855 [21]. * * The value shall be set to: - * - `-1023` for values smaller than -1023, - * - `n` (`n > -1023` and `n < 0) for negative values equal to or less than n, and greater than (n-1), - * - `0` when the vehicle is moving straight, - * - `n` (`n > 0` and `n < 1022) for positive values equal to or less than n, and greater than (n-1), - * - `1022`, for values greater than 1021, - * - `1023`, if the information is not available. + * - '-1023' for values smaller than -1023, + * - 'n' ('n > -1023' and 'n < 0) for negative values equal to or less than n, and greater than (n-1), + * - '0' when the vehicle is moving straight, + * - 'n' ('n > 0' and 'n < 1022) for positive values equal to or less than n, and greater than (n-1), + * - '1022', for values greater than 1021, + * - '1023', if the information is not available. * * @note: The present DE is limited to vehicle types as defined in ISO 8855 [21]. * @@ -947,14 +947,14 @@ CurvatureValue ::= INTEGER { } (-1023..1023) /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousEndOfQueue`. + * This DE represents the value of the sub cause codes of the @ref CauseCode 'dangerousEndOfQueue'. * * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of dangerous queue is unavailable, - * - 1 - `suddenEndOfQueue`- in case a sudden end of queue is detected, e.g. due to accident or obstacle, - * - 2 - `queueOverHill` - in case the dangerous end of queue is detected on the road hill, - * - 3 - `queueAroundBend` - in case the dangerous end of queue is detected around the road bend, - * - 4 - `queueInTunnel` - in case queue is detected in tunnel, + * - 0 - 'unavailable' - in case information on the type of dangerous queue is unavailable, + * - 1 - 'suddenEndOfQueue'- in case a sudden end of queue is detected, e.g. due to accident or obstacle, + * - 2 - 'queueOverHill' - in case the dangerous end of queue is detected on the road hill, + * - 3 - 'queueAroundBend' - in case the dangerous end of queue is detected around the road bend, + * - 4 - 'queueInTunnel' - in case queue is detected in tunnel, * - 5-255 - reserved for future usage. * * @category: Traffic information @@ -970,7 +970,7 @@ DangerousEndOfQueueSubCauseCode ::= INTEGER { /** * This DE indicates the type of the dangerous goods being carried by a heavy vehicle. - * The value is assigned according to `class` and `division` definitions of dangerous goods as specified in part II, + * The value is assigned according to 'class' and 'division' definitions of dangerous goods as specified in part II, * chapter 2.1.1.1 of European Agreement concerning the International Carriage of Dangerous Goods by Road [3]. * * @@ -1001,17 +1001,17 @@ DangerousGoodsBasic::= ENUMERATED { } /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `dangerousSituation` + * This DE represents the value of the sub cause codes of the @ref CauseCode 'dangerousSituation' * * The value shall be set to: - * - 0 - `unavailable` - in case information on the type of dangerous situation is unavailable, - * - 1 - `emergencyElectronicBrakeEngaged` - in case emergency electronic brake is engaged, - * - 2 - `preCrashSystemEngaged` - in case pre-crash system is engaged, - * - 3 - `espEngaged` - in case Electronic Stability Program (ESP) system is engaged, - * - 4 - `absEngaged` - in case Anti-lock Braking System (ABS) is engaged, - * - 5 - `aebEngaged` - in case Autonomous Emergency Braking (AEB) system is engaged, - * - 6 - `brakeWarningEngaged` - in case brake warning is engaged, - * - 7 - `collisionRiskWarningEngaged` - in case collision risk warning is engaged, + * - 0 - 'unavailable' - in case information on the type of dangerous situation is unavailable, + * - 1 - 'emergencyElectronicBrakeEngaged' - in case emergency electronic brake is engaged, + * - 2 - 'preCrashSystemEngaged' - in case pre-crash system is engaged, + * - 3 - 'espEngaged' - in case Electronic Stability Program (ESP) system is engaged, + * - 4 - 'absEngaged' - in case Anti-lock Braking System (ABS) is engaged, + * - 5 - 'aebEngaged' - in case Autonomous Emergency Braking (AEB) system is engaged, + * - 6 - 'brakeWarningEngaged' - in case brake warning is engaged, + * - 7 - 'collisionRiskWarningEngaged' - in case collision risk warning is engaged, * - 8-255 - reserved for future usage. * * @category: Traffic information @@ -1033,12 +1033,12 @@ DangerousSituationSubCauseCode ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `-12 700` for values equal to or lower than -127 metres, - * - `n` (`n > -12 700` and `n <= 0) for altitude offset n x 0,01 metre below the reference position, - * - `0` for no altitudinal offset, - * - `n` (`n > 0` and `n < 12799`) for altitude offset n x 0,01 metre above the reference position, - * - `12 799` for values equal to or greater than 127,99 metres, - * - `12 800` when the information is unavailable. + * - '-12 700' for values equal to or lower than -127 metres, + * - 'n' ('n > -12 700' and 'n <= 0) for altitude offset n x 0,01 metre below the reference position, + * - '0' for no altitudinal offset, + * - 'n' ('n > 0' and 'n < 12799') for altitude offset n x 0,01 metre above the reference position, + * - '12 799' for values equal to or greater than 127,99 metres, + * - '12 800' when the information is unavailable. * * @unit: 0,01 metre * @category: GeoReference information @@ -1055,10 +1055,10 @@ DeltaAltitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the south from the reference position, - * - `0` for no latitudinal offset, - * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the north from the reference position, - * - `131 072` when the information is unavailable. + * - 'n' ('n >= -131 071' and 'n < 0') for offset n x 10^-7 degree towards the south from the reference position, + * - '0' for no latitudinal offset, + * - 'n' ('n > 0' and 'n < 131 072') for offset n x 10^-7 degree towards the north from the reference position, + * - '131 072' when the information is unavailable. * * @unit: 10^-7 degree * @category: GeoReference information @@ -1073,10 +1073,10 @@ DeltaLatitude ::= INTEGER { * It may be used to describe a geographical point with regards to a specific reference geographical position. * * The value shall be set to: - * - `n` (`n >= -131 071` and `n < 0`) for offset n x 10^-7 degree towards the west from the reference position, - * - `0` for no longitudinal offset, - * - `n` (`n > 0` and `n < 131 072`) for offset n x 10^-7 degree towards the east from the reference position, - * - `131 072` when the information is unavailable. + * - 'n' ('n >= -131 071' and 'n < 0') for offset n x 10^-7 degree towards the west from the reference position, + * - '0' for no longitudinal offset, + * - 'n' ('n > 0' and 'n < 131 072') for offset n x 10^-7 degree towards the east from the reference position, + * - '131 072' when the information is unavailable. * * @unit: 10^-7 degree * @category: GeoReference information @@ -1090,7 +1090,7 @@ DeltaLongitude ::= INTEGER { * This DE represents a difference in time with respect to a reference time. * * The value shall be set to: - * - `n (n > 0 n < 10001)` to indicate a time value equal to or less than n x 0,001 s, and greater than (n-1) x 0,001 s, + * - 'n (n > 0 n < 10001)' to indicate a time value equal to or less than n x 0,001 s, and greater than (n-1) x 0,001 s, * * Example: a time interval between two consecutive message transmissions. * @@ -1104,9 +1104,9 @@ DeltaTimeMilliSecondPositive ::= INTEGER (1..10000) * This DE represents a signed difference in time with respect to a reference time. * * The value shall be set to: - * - `-2048` for time values equal to or less than -2,048 s, - * - `n (n > -2048 and n < 2047)` to indicate a time value equal to or less than n x 0,001 s, and greater than (n-1) x 0,001 s, - * - `2047` for time values greater than 2,046 s + * - '-2048' for time values equal to or less than -2,048 s, + * - 'n (n > -2048 and n < 2047)' to indicate a time value equal to or less than n x 0,001 s, and greater than (n-1) x 0,001 s, + * - '2047' for time values greater than 2,046 s * * @unit: 0,001 s * @category: Basic information @@ -1117,7 +1117,7 @@ DeltaTimeMilliSecondSigned ::= INTEGER (-2048..2047) /** * This DE represents a difference in time with respect to a reference time. * It can be interpreted as the first 8 bits of a GenerationDeltaTime. To convert it to a @ref GenerationDeltaTime, - * multiply by 256 (i.e. append a `00` byte) + * multiply by 256 (i.e. append a '00' byte) * * @unit: 256 * 0,001 s * @category: Basic information @@ -1131,8 +1131,8 @@ DeltaTimeQuarterSecond::= INTEGER { * This DE represents a difference in time with respect to a reference time. * * The value shall be set to: - * - `0` for a difference in time of 0 seconds. - * - `n (n > 0 n < 128)` to indicate a time value equal to or less than n x 0,1 s, and greater than (n-1) x 0,1 s, + * - '0' for a difference in time of 0 seconds. + * - 'n (n > 0 n < 128)' to indicate a time value equal to or less than n x 0,1 s, and greater than (n-1) x 0,1 s, * * @unit: 0,1 s * @category: Basic information @@ -1146,8 +1146,8 @@ DeltaTimeTenthOfSecond::= INTEGER { * This DE represents a difference in time with respect to a reference time. * * The value shall be set to: - * - `-0` for a difference in time of 0 seconds. - * - `n (n > 0 n <= 86400)` to indicate a time value equal to or less than n x 1 s, and greater than (n-1) x 1 s, + * - '-0' for a difference in time of 0 seconds. + * - 'n (n > 0 n <= 86400)' to indicate a time value equal to or less than n x 1 s, and greater than (n-1) x 1 s, * * @unit: 1 s * @category: Basic information @@ -1160,10 +1160,10 @@ DeltaTimeSecond ::= INTEGER (0..86400) * Example: a reference direction may be implicitly defined by the definition of a geographical zone. * * The value shall be set to: - * - 0 - `sameDirection` - to indicate the same direction as the reference direction, - * - 1 - `oppositeDirection` - to indicate opposite direction as the reference direction, - * - 2 - `bothDirections` - to indicate both directions, i.e. the same and the opposite direction, - * - 3 - `unavailable` - to indicate that the information is unavailable. + * - 0 - 'sameDirection' - to indicate the same direction as the reference direction, + * - 1 - 'oppositeDirection' - to indicate opposite direction as the reference direction, + * - 2 - 'bothDirections' - to indicate both directions, i.e. the same and the opposite direction, + * - 3 - 'unavailable' - to indicate that the information is unavailable. * * @category: GeoReference information * @revision: Created in V2.1.1 @@ -1179,9 +1179,9 @@ Direction::= INTEGER{ * This DE indicates in which direction something is moving. * * The value shall be set to: - * - 0 - `forward` - to indicate it is moving forward, - * - 1 - `backwards` - to indicate it is moving backwards, - * - 2 - `unavailable` - to indicate that the information is unavailable. + * - 0 - 'forward' - to indicate it is moving forward, + * - 1 - 'backwards' - to indicate it is moving backwards, + * - 2 - 'unavailable' - to indicate that the information is unavailable. * * @category: Kinematic information * @revision: editorial update in V2.1.1 @@ -1199,9 +1199,9 @@ DriveDirection ::= ENUMERATED { * correspond to the total number of the driving lanes in the carriageway. * * The numbering is matched to @ref LanePosition. - * The bit `0` is used to indicate the innermost lane, bit `1` is used to indicate the second lane from inside border. + * The bit '0' is used to indicate the innermost lane, bit '1' is used to indicate the second lane from inside border. * - * If a lane is closed to traffic, the corresponding bit shall be set to `1`. Otherwise, it shall be set to `0`. + * If a lane is closed to traffic, the corresponding bit shall be set to '1'. Otherwise, it shall be set to '0'. * * @note: hard shoulder status is not provided by this DE but in @ref HardShoulderStatus. * @@ -1221,11 +1221,11 @@ EmbarkationStatus ::= BOOLEAN /** * This DE indicates the right of priority requested or assumed by an operating emergency vehicle. - * The right-of-priority bit shall be set to `1` if the corresponding right is requested. + * The right-of-priority bit shall be set to '1' if the corresponding right is requested. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `requestForRightOfWay` - when the vehicle is requesting/assuming the right of way, - * - 1 - `requestForFreeCrossingAtATrafficLight` - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. + * - 0 - 'requestForRightOfWay' - when the vehicle is requesting/assuming the right of way, + * - 1 - 'requestForFreeCrossingAtATrafficLight' - when the vehicle is requesting/assuming the right to pass at a (red) traffic light. * * @category: Traffic information * @revision: description revised in V2.1.1 @@ -1239,10 +1239,10 @@ EmergencyPriority ::= BIT STRING { * This DE represents the value of the sub cause codes of the @ref CauseCode "emergencyVehicleApproaching". * * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the emergency vehicle approaching event + * - 0 - 'unavailable' - in case further detailed information on the emergency vehicle approaching event * is unavailable, - * - 1 - `emergencyVehicleApproaching` - in case an operating emergency vehicle is approaching, - * - 2 - `prioritizedVehicleApproaching` - in case a prioritized vehicle is approaching, + * - 1 - 'emergencyVehicleApproaching' - in case an operating emergency vehicle is approaching, + * - 2 - 'prioritizedVehicleApproaching' - in case a prioritized vehicle is approaching, * - 3-255 - reserved for future usage. * * @category: Traffic information @@ -1258,15 +1258,15 @@ EmergencyVehicleApproachingSubCauseCode ::= INTEGER { * This DE indicated the type of energy being used and stored in vehicle. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `hydrogenStorage` - when hydrogen is being used and stored in vehicle, - * - 1 - `electricEnergyStorage` - when electric energy is being used and stored in vehicle, - * - 2 - `liquidPropaneGas` - when liquid Propane Gas (LPG) is being used and stored in vehicle, - * - 3 - `compressedNaturalGas ` - when compressedNaturalGas (CNG) is being used and stored in vehicle, - * - 4 - `diesel` - when diesel is being used and stored in vehicle, - * - 5 - `gasoline` - when gasoline is being used and stored in vehicle, - * - 6 - `ammonia` - when ammonia is being used and stored in vehicle. + * - 0 - 'hydrogenStorage' - when hydrogen is being used and stored in vehicle, + * - 1 - 'electricEnergyStorage' - when electric energy is being used and stored in vehicle, + * - 2 - 'liquidPropaneGas' - when liquid Propane Gas (LPG) is being used and stored in vehicle, + * - 3 - 'compressedNaturalGas ' - when compressedNaturalGas (CNG) is being used and stored in vehicle, + * - 4 - 'diesel' - when diesel is being used and stored in vehicle, + * - 5 - 'gasoline' - when gasoline is being used and stored in vehicle, + * - 6 - 'ammonia' - when ammonia is being used and stored in vehicle. * - * - Otherwise, the corresponding bit shall be set to `0`. + * - Otherwise, the corresponding bit shall be set to '0'. * * @category: Vehicle information * @revision: editorial revision in V2.1.1 @@ -1321,27 +1321,27 @@ EuVehicleCategoryO ::= ENUMERATED {o1, o2, o3, o4} * This DE describes the status of the exterior light switches of a vehicle incl. VRU vehicles. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lowBeamHeadlightsOn` - when the low beam head light switch is on, - * - 1 - `highBeamHeadlightsOn` - when the high beam head light switch is on, - * - 2 - `leftTurnSignalOn` - when the left turnSignal switch is on, - * - 3 - `rightTurnSignalOn` - when the right turn signal switch is on, - * - 4 - `daytimeRunningLightsOn` - when the daytime running light switch is on, - * - 5 - `reverseLightOn` - when the reverse light switch is on, - * - 6 - `fogLightOn` - when the tail fog light switch is on, - * - 7 - `parkingLightsOn` - when the parking light switch is on. + * - 0 - 'lowBeamHeadlightsOn' - when the low beam head light switch is on, + * - 1 - 'highBeamHeadlightsOn' - when the high beam head light switch is on, + * - 2 - 'leftTurnSignalOn' - when the left turnSignal switch is on, + * - 3 - 'rightTurnSignalOn' - when the right turn signal switch is on, + * - 4 - 'daytimeRunningLightsOn' - when the daytime running light switch is on, + * - 5 - 'reverseLightOn' - when the reverse light switch is on, + * - 6 - 'fogLightOn' - when the tail fog light switch is on, + * - 7 - 'parkingLightsOn' - when the parking light switch is on. * * @note: The value of each bit indicates the state of the switch, which commands the corresponding light. - * The bit corresponding to a specific light is set to `1`, when the corresponding switch is turned on, + * The bit corresponding to a specific light is set to '1', when the corresponding switch is turned on, * either manually by the driver or automatically by a vehicle system. The bit value does not indicate * if the corresponding lamps are alight or not. * * If a vehicle is not equipped with a certain light or if the light switch status information is not available, - * the corresponding bit shall be set to `0`. + * the corresponding bit shall be set to '0'. * * As the bit value indicates only the state of the switch, the turn signal and hazard signal bit values shall not * alternate with the blinking interval. * - * For hazard indicator, the `leftTurnSignalOn` (2) and `rightTurnSignalOn` (3) shall be both set to 1. + * For hazard indicator, the 'leftTurnSignalOn' (2) and 'rightTurnSignalOn' (3) shall be both set to 1. * * @category Vehicle information * @revision: Description revised in V2.1.1 @@ -1371,9 +1371,9 @@ GenerationDeltaTime ::= INTEGER { oneMilliSec(1) } (0..65535) * (e.g. for stopping or for driving) or closed for all vehicles. * * The value shall be set to: - * - 0 - `availableForStopping` - if the hard shoulder is available for stopping in e.g. emergency situations, - * - 1 - `closed` - if the hard shoulder is closed and cannot be occupied in any case, - * - 2 - `availableForDriving` - if the hard shoulder is available for regular driving. + * - 0 - 'availableForStopping' - if the hard shoulder is available for stopping in e.g. emergency situations, + * - 1 - 'closed' - if the hard shoulder is closed and cannot be occupied in any case, + * - 2 - 'availableForDriving' - if the hard shoulder is available for regular driving. * * @category: Traffic information * @revision: Description revised in V2.1.1 @@ -1385,14 +1385,14 @@ HardShoulderStatus ::= ENUMERATED { } /** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-AnimalOnTheRoad`. + * This DE represents the value of the sub cause code of the @ref CauseCode 'hazardousLocation-AnimalOnTheRoad'. * * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the animal on the road event is unavailable, - * - 1 - `wildAnimals` - in case wild animals are detected on the road, - * - 2 - `herdOfAnimals`- in case herd of animals are detected on the road, - * - 3 - `smallAnimals` - in case small size animals are detected on the road, - * - 4 - `largeAnimals` - in case large size animals are detected on the road. + * - 0 - 'unavailable' - in case further detailed information on the animal on the road event is unavailable, + * - 1 - 'wildAnimals' - in case wild animals are detected on the road, + * - 2 - 'herdOfAnimals'- in case herd of animals are detected on the road, + * - 3 - 'smallAnimals' - in case small size animals are detected on the road, + * - 4 - 'largeAnimals' - in case large size animals are detected on the road. * - 5-255 - are reserved for future usage. * * @category: Traffic information @@ -1407,15 +1407,15 @@ HazardousLocation-AnimalOnTheRoadSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the sub cause code of the @ref CauseCode `hazardousLocation-DangerousCurve`. + * This DE represents the sub cause code of the @ref CauseCode 'hazardousLocation-DangerousCurve'. * * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the dangerous curve is unavailable, - * - 1 - `dangerousLeftTurnCurve` - in case the dangerous curve is a left turn curve, - * - 2 - `dangerousRightTurnCurve` - in case the dangerous curve is a right turn curve, - * - 3 - `multipleCurvesStartingWithUnknownTurningDirection` - in case of multiple curves for which the starting curve turning direction is not known, - * - 4 - `multipleCurvesStartingWithLeftTurn` - in case of multiple curves starting with a left turn curve, - * - 5 - `multipleCurvesStartingWithRightTurn` - in case of multiple curves starting with a right turn curve. + * - 0 - 'unavailable' - in case further detailed information on the dangerous curve is unavailable, + * - 1 - 'dangerousLeftTurnCurve' - in case the dangerous curve is a left turn curve, + * - 2 - 'dangerousRightTurnCurve' - in case the dangerous curve is a right turn curve, + * - 3 - 'multipleCurvesStartingWithUnknownTurningDirection' - in case of multiple curves for which the starting curve turning direction is not known, + * - 4 - 'multipleCurvesStartingWithLeftTurn' - in case of multiple curves starting with a left turn curve, + * - 5 - 'multipleCurvesStartingWithRightTurn' - in case of multiple curves starting with a right turn curve. * - 6-255 - are reserved for future usage. * * The definition of whether a curve is dangerous may vary according to region and according to vehicle types/mass @@ -1434,17 +1434,17 @@ HazardousLocation-DangerousCurveSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-ObstacleOnTheRoad`. + * This DE represents the value of the sub cause code of the @ref CauseCode 'hazardousLocation-ObstacleOnTheRoad'. * * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the detected obstacle is unavailable, - * - 1 - `shedLoad` - in case detected obstacle is large amount of obstacles (shedload), - * - 2 - `partsOfVehicles`- in case detected obstacles are parts of vehicles, - * - 3 - `partsOfTyres` - in case the detected obstacles are parts of tyres, - * - 4 - `bigObjects` - in case the detected obstacles are big objects, - * - 5 - `fallenTrees` - in case the detected obstacles are fallen trees, - * - 6 - `hubCaps` - in case the detected obstacles are hub caps, - * - 7 - `waitingVehicles`- in case the detected obstacles are waiting vehicles. + * - 0 - 'unavailable' - in case further detailed information on the detected obstacle is unavailable, + * - 1 - 'shedLoad' - in case detected obstacle is large amount of obstacles (shedload), + * - 2 - 'partsOfVehicles'- in case detected obstacles are parts of vehicles, + * - 3 - 'partsOfTyres' - in case the detected obstacles are parts of tyres, + * - 4 - 'bigObjects' - in case the detected obstacles are big objects, + * - 5 - 'fallenTrees' - in case the detected obstacles are fallen trees, + * - 6 - 'hubCaps' - in case the detected obstacles are hub caps, + * - 7 - 'waitingVehicles'- in case the detected obstacles are waiting vehicles. * - 8-255 - are reserved for future usage. * * @category: Traffic information @@ -1462,20 +1462,20 @@ HazardousLocation-ObstacleOnTheRoadSubCauseCode ::= INTEGER { } (0..255) /** - * This DE represents the value of the sub cause code of the @ref CauseCode `hazardousLocation-SurfaceCondition`. + * This DE represents the value of the sub cause code of the @ref CauseCode 'hazardousLocation-SurfaceCondition'. * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on the road surface condition is unavailable, - * - 1 - `rockfalls` - in case rock falls are detected on the road surface, - * - 2 - `earthquakeDamage`- in case the road surface is damaged by earthquake, - * - 3 - `sewerCollapse` - in case of sewer collapse on the road surface, - * - 4 - `subsidence` - in case road surface is damaged by subsidence, - * - 5 - `snowDrifts` - in case road surface is damaged due to snow drift, - * - 6 - `stormDamage` - in case road surface is damaged by strong storm, - * - 7 - `burstPipe` - in case road surface is damaged due to pipe burst, - * - 8 - `volcanoEruption` - in case road surface is damaged due to volcano eruption, - * - 9 - `fallingIce` - in case road surface damage is due to falling ice, - * - 10 - `fire` - in case there is fire on or near to the road surface. + * - 0 - 'unavailable' - in case further detailed information on the road surface condition is unavailable, + * - 1 - 'rockfalls' - in case rock falls are detected on the road surface, + * - 2 - 'earthquakeDamage'- in case the road surface is damaged by earthquake, + * - 3 - 'sewerCollapse' - in case of sewer collapse on the road surface, + * - 4 - 'subsidence' - in case road surface is damaged by subsidence, + * - 5 - 'snowDrifts' - in case road surface is damaged due to snow drift, + * - 6 - 'stormDamage' - in case road surface is damaged by strong storm, + * - 7 - 'burstPipe' - in case road surface is damaged due to pipe burst, + * - 8 - 'volcanoEruption' - in case road surface is damaged due to volcano eruption, + * - 9 - 'fallingIce' - in case road surface damage is due to falling ice, + * - 10 - 'fire' - in case there is fire on or near to the road surface. * - 11-255 - are reserved for future usage. * * @category: Traffic information @@ -1499,18 +1499,18 @@ HazardousLocation-SurfaceConditionSubCauseCode ::= INTEGER { * This DE indicates the heading confidence value which represents the estimated absolute accuracy of a heading value with a confidence level of 95 %. * * The value shall be set to: - * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, - * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, - * - `127` if the confidence value information is not available. + * - 'n (n > 0 and n < 126)' if the confidence value is equal to or less than n x 0,1 degree and more than (n-1) x 0,1 degree, + * - '126' if the confidence value is out of range, i.e. greater than 12,5 degrees, + * - '127' if the confidence value information is not available. * - * @note: The fact that a value is received with confidence value set to `unavailable(127)` can be caused by several reasons, + * @note: The fact that a value is received with confidence value set to 'unavailable(127)' can be caused by several reasons, * such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. * In all 3 cases above, the heading value may be valid and used by the application. * - * @note: If a heading value is received and its confidence value is set to `outOfRange(126)`, it means that the + * @note: If a heading value is received and its confidence value is set to 'outOfRange(126)', it means that the * heading value is not valid and therefore cannot be trusted. Such value is not useful for the application. * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref Wgs84AngleConfidence instead. * @@ -1547,9 +1547,9 @@ HeadingValue ::= INTEGER { * rear to front). * * The value shall be set to: - * - `n (n >= 1 and n < 99)` if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `99` if the height is out of range, i.e. equal to or greater than 0,98 m, - * - `100` if the height information is not available. + * - 'n (n >= 1 and n < 99)' if the height information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - '99' if the height is out of range, i.e. equal to or greater than 0,98 m, + * - '100' if the height information is not available. * * @unit 0,01 metre * @category Vehicle information @@ -1561,13 +1561,13 @@ HeightLonCarr ::= INTEGER { } (1..100) /** - * This DE represents the value of the sub cause code of the @ref CauseCode `humanPresenceOnTheRoad`. + * This DE represents the value of the sub cause code of the @ref CauseCode 'humanPresenceOnTheRoad'. * * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on human presence on the road is unavailable, - * - 1 - `childrenOnRoadway` - in case children are detected on the road, - * - 2 - `cyclistOnRoadway` - in case cyclist presence is detected on the road, - * - 3 - `motorcyclistOnRoadway`- in case motorcyclist presence is detected on the road. + * - 0 - 'unavailable' - in case further detailed information on human presence on the road is unavailable, + * - 1 - 'childrenOnRoadway' - in case children are detected on the road, + * - 2 - 'cyclistOnRoadway' - in case cyclist presence is detected on the road, + * - 3 - 'motorcyclistOnRoadway'- in case motorcyclist presence is detected on the road. * - 4-255 - are reserved for future usage. * * @category: Traffic information @@ -1584,9 +1584,9 @@ HumanPresenceOnTheRoadSubCauseCode ::= INTEGER { * This DE represents the value of the sub cause codes of the @ref CauseCode "humanProblem". * * The value shall be set to: - * - 0 - `unavailable` - in case further detailed information on human health problem is unavailable, - * - 1 - `glycemiaProblem`- in case human problem is due to glycaemia problem, - * - 2 - `heartProblem` - in case human problem is due to heart problem. + * - 0 - 'unavailable' - in case further detailed information on human health problem is unavailable, + * - 1 - 'glycemiaProblem'- in case human problem is due to glycaemia problem, + * - 2 - 'heartProblem' - in case human problem is due to heart problem. * - 3-255 - reserved for future usage. * * @category: Traffic information @@ -1618,10 +1618,10 @@ Identifier2B ::= INTEGER (0..65535) * This DE represents the quality level of provided information. * * The value shall be set to: - * - `0` if the information is unavailable, - * - `1` if the quality level is lowest, - * - `n (n > 1 and n < 7)` if the quality level is n, - * - `7` if the quality level is highest. + * - '0' if the information is unavailable, + * - '1' if the quality level is lowest, + * - 'n (n > 1 and n < 7)' if the quality level is n, + * - '7' if the quality level is highest. * * @note: Definition of quality level is out of scope of the present document. * @category: Basic information @@ -1635,12 +1635,12 @@ InformationQuality ::= INTEGER (0..7) * It is an extension of the type @ref ProtectedZoneType. * * The value shall be set to: - * - 0 - `permanentCenDsrcTolling` - as specified in ETSI TS 102 792 [14], - * - 1 - `temporaryCenDsrcTolling` - as specified in ETSI TS 102 792 [14], - * - 2 - `unavailable` - default value. Set to 2 for backwards compatibility with DSRC tolling, - * - 3 - `urbanRail` - as specified in ETSI TS 103 724 [13], clause 7, - * - 4 - `satelliteStation` - as specified in ETSI TS 103 724 [13], clause 7, - * - 5 - `fixedLinks` - as specified in ETSI TS 103 724 [13], clause 7. + * - 0 - 'permanentCenDsrcTolling' - as specified in ETSI TS 102 792 [14], + * - 1 - 'temporaryCenDsrcTolling' - as specified in ETSI TS 102 792 [14], + * - 2 - 'unavailable' - default value. Set to 2 for backwards compatibility with DSRC tolling, + * - 3 - 'urbanRail' - as specified in ETSI TS 103 724 [13], clause 7, + * - 4 - 'satelliteStation' - as specified in ETSI TS 103 724 [13], clause 7, + * - 5 - 'fixedLinks' - as specified in ETSI TS 103 724 [13], clause 7. * * @category: Communication information * @revision: Created in V2.1.1 @@ -1660,47 +1660,47 @@ InterferenceManagementZoneType ::= ENUMERATED { * A "term No" refers to the number of the corresponding term and its definition in ISO 3833. * * The value shall be set to: - * - 0 - `passengerCar` - term No 3.1.1 - * - 1 - `saloon` - term No 3.1.1.1 (sedan) - * - 2 - `convertibleSaloon` - term No 3.1.1.2 - * - 3 - `pullmanSaloon` - term No 3.1.1.3 - * - 4 - `stationWagon` - term No 3.1.1.4 - * - 5 - `truckStationWagon` - term No 3.1.1.4.1 - * - 6 - `coupe` - term No 3.1.1.5 (coupe) - * - 7 - `convertible` - term No 3.1.1.6 (open tourer, roadstar, spider) - * - 8 - `multipurposePassengerCar` - term No 3.1.1.7 - * - 9 - `forwardControlPassengerCar`- term No 3.1.1.8 - * - 10 - `specialPassengerCar` - term No 3.1.1.9 - * - 11 - `bus` - term No 3.1.2 - * - 12 - `minibus` - term No 3.1.2.1 - * - 13 - `urbanBus` - term No 3.1.2.2 - * - 14 - `interurbanCoach` - term No 3.1.2.3 - * - 15 - `longDistanceCoach` - term No 3.1.2.4 - * - 16 - `articulatedBus` - term No 3.1.2.5 - * - 17 - `trolleyBus ` - term No 3.1.2.6 - * - 18 - `specialBus` - term No 3.1.2.7 - * - 19 - `commercialVehicle ` - term No 3.1.3 - * - 20 - `specialCommercialVehicle` - term No 3.1.3.1 - * - 21 - `specialVehicle ` - term No 3.1.4 - * - 22 - `trailingTowingVehicle ` - term No 3.1.5 (draw-bar tractor) - * - 23 - `semiTrailerTowingVehicle` - term No 3.1.6 (fifth wheel tractor) - * - 24 - `trailer` - term No 3.2.1 - * - 25 - `busTrailer` - term No 3.2.1.1 - * - 26 - `generalPurposeTrailer` - term No 3.2.1.2 - * - 27 - `caravan` - term No 3.2.1.3 - * - 28 - `specialTrailer` - term No 3.2.1.4 - * - 29 - `semiTrailer` - term No 3.2.2 - * - 30 - `busSemiTrailer ` - term No 3.2.2.1 - * - 31 - `generalPurposeSemiTrailer` - term No 3.2.2.2 - * - 32 - `specialSemiTrailer` - term No 3.2.2.3 - * - 33 - `roadTrain` - term No 3.3.1 - * - 34 - `passengerRoadTrain ` - term No 3.3.2 - * - 35 - `articulatedRoadTrain` - term No 3.3.3 - * - 36 - `doubleRoadTrain` - term No 3.3.4 - * - 37 - `compositeRoadTrain` - term No 3.3.5 - * - 38 - `specialRoadTrain` - term No 3.3.6 - * - 39 - `moped` - term No 3.4 - * - 40 - `motorCycle` - term No 3.5 + * - 0 - 'passengerCar' - term No 3.1.1 + * - 1 - 'saloon' - term No 3.1.1.1 (sedan) + * - 2 - 'convertibleSaloon' - term No 3.1.1.2 + * - 3 - 'pullmanSaloon' - term No 3.1.1.3 + * - 4 - 'stationWagon' - term No 3.1.1.4 + * - 5 - 'truckStationWagon' - term No 3.1.1.4.1 + * - 6 - 'coupe' - term No 3.1.1.5 (coupe) + * - 7 - 'convertible' - term No 3.1.1.6 (open tourer, roadstar, spider) + * - 8 - 'multipurposePassengerCar' - term No 3.1.1.7 + * - 9 - 'forwardControlPassengerCar'- term No 3.1.1.8 + * - 10 - 'specialPassengerCar' - term No 3.1.1.9 + * - 11 - 'bus' - term No 3.1.2 + * - 12 - 'minibus' - term No 3.1.2.1 + * - 13 - 'urbanBus' - term No 3.1.2.2 + * - 14 - 'interurbanCoach' - term No 3.1.2.3 + * - 15 - 'longDistanceCoach' - term No 3.1.2.4 + * - 16 - 'articulatedBus' - term No 3.1.2.5 + * - 17 - 'trolleyBus ' - term No 3.1.2.6 + * - 18 - 'specialBus' - term No 3.1.2.7 + * - 19 - 'commercialVehicle ' - term No 3.1.3 + * - 20 - 'specialCommercialVehicle' - term No 3.1.3.1 + * - 21 - 'specialVehicle ' - term No 3.1.4 + * - 22 - 'trailingTowingVehicle ' - term No 3.1.5 (draw-bar tractor) + * - 23 - 'semiTrailerTowingVehicle' - term No 3.1.6 (fifth wheel tractor) + * - 24 - 'trailer' - term No 3.2.1 + * - 25 - 'busTrailer' - term No 3.2.1.1 + * - 26 - 'generalPurposeTrailer' - term No 3.2.1.2 + * - 27 - 'caravan' - term No 3.2.1.3 + * - 28 - 'specialTrailer' - term No 3.2.1.4 + * - 29 - 'semiTrailer' - term No 3.2.2 + * - 30 - 'busSemiTrailer ' - term No 3.2.2.1 + * - 31 - 'generalPurposeSemiTrailer' - term No 3.2.2.2 + * - 32 - 'specialSemiTrailer' - term No 3.2.2.3 + * - 33 - 'roadTrain' - term No 3.3.1 + * - 34 - 'passengerRoadTrain ' - term No 3.3.2 + * - 35 - 'articulatedRoadTrain' - term No 3.3.3 + * - 36 - 'doubleRoadTrain' - term No 3.3.4 + * - 37 - 'compositeRoadTrain' - term No 3.3.5 + * - 38 - 'specialRoadTrain' - term No 3.3.6 + * - 39 - 'moped' - term No 3.4 + * - 40 - 'motorCycle' - term No 3.5 * - 41-255 - reserved for future use * * @category: Vehicle information @@ -1754,16 +1754,16 @@ Iso3833VehicleType ::= INTEGER { * This DE indicates a transversal position on the carriageway at a specific longitudinal position, in resolution of lanes of the carriageway. * * For right-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road, - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane, - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction, - * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). + * - '-1' if the position is off, i.e. besides the road, + * - '0' if the position is on the inner hard shoulder, i.e. the hard should adjacent to the leftmost lane, + * - 'n (n >0 and n < 14)', if the position is on the n-th driving lane counted from the leftmost lane to the rightmost lane of a specific traffic direction, + * - '14' if the position is on the outer hard shoulder, i.e. the hard should adjacent to rightmost lane (if present). * * For left-hand traffic roads, the value shall be set to: - * - `-1` if the position is off, i.e. besides the road, - * - `0` if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane, - * - `n (n >0 and n < 14)`, if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction, - * - `14` if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). + * - '-1' if the position is off, i.e. besides the road, + * - '0' if the position is on the inner hard shoulder, i.e. the hard should adjacent to the rightmost lane, + * - 'n (n >0 and n < 14)', if the position is on the n-th driving lane counted from the rightmost lane to the leftmost lane of a specific traffic direction, + * - '14' if the position is on the outer hard shoulder, i.e. the hard should adjacent to leftmost lane (if present). * @note: in practice this means that the position is counted from "inside" to "outside" no matter which traffic practice is used. * @@ -1784,29 +1784,29 @@ LanePosition ::= INTEGER { * This DE represents the type of a lane. * * The value shall be set to: - * - 0 - `traffic` - Lane dedicated to the movement of vehicles, - * - 1 - `through` - Lane dedicated to the movement of vehicles travelling ahead and not turning, - * - 2 - `reversible` - Lane where the direction of traffic can be changed to match the peak flow, - * - 3 - `acceleration` - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it, - * - 4 - `deceleration` - Lane that allows vehicles exiting a road to decelerate before leaving it, - * - 5 - `leftHandTurning` - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic, - * - 6 - `rightHandTurning` - Lane reserved for slowing down and making a right turn so as not to disrupt traffic, - * - 7 - `dedicatedVehicle` - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc., - * - 8 - `bus` - Lane dedicated to movement of buses providing public transport, - * - 9 - `taxi` - Lane dedicated to movement of taxis, - * - 10 - `hov` - Carpooling lane or high occupancy vehicle lane, - * - 11 - `hot` - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll, - * - 12 - `pedestrian` - Lanes dedicated to pedestrians such as pedestrian sidewalk paths, - * - 13 - `cycleLane` - Lane dedicated to exclusive or preferred use by bicycles, - * - 14 - `median` - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median, + * - 0 - 'traffic' - Lane dedicated to the movement of vehicles, + * - 1 - 'through' - Lane dedicated to the movement of vehicles travelling ahead and not turning, + * - 2 - 'reversible' - Lane where the direction of traffic can be changed to match the peak flow, + * - 3 - 'acceleration' - Lane that allows vehicles entering a road to accelerate to the speed of through traffic before merging with it, + * - 4 - 'deceleration' - Lane that allows vehicles exiting a road to decelerate before leaving it, + * - 5 - 'leftHandTurning' - Lane reserved for slowing down and making a left turn, so as not to disrupt traffic, + * - 6 - 'rightHandTurning' - Lane reserved for slowing down and making a right turn so as not to disrupt traffic, + * - 7 - 'dedicatedVehicle' - Lane dedicated to movement of motor vehicles with specific characteristics, such as heavy goods vehicles, etc., + * - 8 - 'bus' - Lane dedicated to movement of buses providing public transport, + * - 9 - 'taxi' - Lane dedicated to movement of taxis, + * - 10 - 'hov' - Carpooling lane or high occupancy vehicle lane, + * - 11 - 'hot' - High occupancy vehicle lanes that is allowed to be used without meeting the occupancy criteria by paying a toll, + * - 12 - 'pedestrian' - Lanes dedicated to pedestrians such as pedestrian sidewalk paths, + * - 13 - 'cycleLane' - Lane dedicated to exclusive or preferred use by bicycles, + * - 14 - 'median' - Lane not dedicated to movement of vehicles but representing a median / central reservation such as the central median, separating the two directional carriageways of the highway, - * - 15 - `striping` - Lane not dedicated to movement of vehicles but covered with roadway markings, - * - 16 - `trackedVehicle` - Lane dedicated to movement of trains, trams and trolleys, - * - 17 - `parking` - Lanes dedicated to vehicles parking, stopping and loading lanes, - * - 18 - `emergency` - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder, - * - 19 - `verge` - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between + * - 15 - 'striping' - Lane not dedicated to movement of vehicles but covered with roadway markings, + * - 16 - 'trackedVehicle' - Lane dedicated to movement of trains, trams and trolleys, + * - 17 - 'parking' - Lanes dedicated to vehicles parking, stopping and loading lanes, + * - 18 - 'emergency' - Lane dedicated to vehicles in breakdown or to emergency vehicles also called hard shoulder, + * - 19 - 'verge' - Lane representing the verge, i.e. a narrow strip of grass or plants and sometimes also trees located between the road surface edge and the boundary of a road, - * - 20 `minimumRiskManoeuvre` - Lane dedicated to automated vehicles making a minimum risk manoeuvre. + * - 20 'minimumRiskManoeuvre' - Lane dedicated to automated vehicles making a minimum risk manoeuvre. * - values 21 to 30 reserved for future use. * * @category: Road topology information @@ -1841,9 +1841,9 @@ LaneType::= INTEGER{ * This DE represents the width of a lane measured at a defined position. * * The value shall be set to: - * - `n (n > 0 and n < 1022)` if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, - * - `1022` if the lane width is out of range, i.e. greater than 10,21 m, - * - `1023` if the lane width information is not available. + * - 'n (n > 0 and n < 1022)' if the lane width information is equal to or less than n x 0,01 metre and more than (n-1) x 0,01 metre, + * - '1022' if the lane width is out of range, i.e. greater than 10,21 m, + * - '1023' if the lane width information is not available. * * The value 0 shall not be used. * @@ -1859,10 +1859,10 @@ LaneWidth::= INTEGER (0..1023) * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >= -900 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for latitudes south of the Equator, - * - `0` is used for the latitude of the equator, - * - `n (n > 0 and n < 900 000 001)` x 10^-7 degree, i.e. positive values for latitudes north of the Equator, - * - `900 000 001` when the information is unavailable. + * - 'n (n >= -900 000 000 and n < 0)' x 10^-7 degree, i.e. negative values for latitudes south of the Equator, + * - '0' is used for the latitude of the equator, + * - 'n (n > 0 and n < 900 000 001)' x 10^-7 degree, i.e. positive values for latitudes north of the Equator, + * - '900 000 001' when the information is unavailable. * * @unit: 10^-7 degree * @category: GeoReference information @@ -1877,13 +1877,13 @@ Latitude ::= INTEGER { * It corresponds to the vehicle coordinate system as specified in ISO 8855 [21]. * * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation + * - '-160' for acceleration values equal to or less than -16 m/s^2, + * - 'n (n > -160 and n <= 0)' to indicate that the vehicle is accelerating towards the right side with regards to the vehicle orientation * with acceleration equal to or less than n x 0,1 m/s^2 and greater than (n-1) x 0,1 m/s^2, - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation + * - 'n (n > 0 and n < 160)' to indicate that the vehicle is accelerating towards the left hand side with regards to the vehicle orientation with acceleration equal to or less than n x 0,1 m/s^2 and greater than (n-1) x 0,1 m/s^2, - * - `160` for acceleration values greater than 15,9 m/s^2, - * - `161` when the data is unavailable. + * - '160' for acceleration values greater than 15,9 m/s^2, + * - '161' when the data is unavailable. * * @note: the empty load vehicle is defined in ISO 1176 [8], clause 4.6. * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead. @@ -1903,8 +1903,8 @@ LateralAccelerationValue ::= INTEGER { * This includes various common sirens as well as backup up beepers and other slow speed manoeuvring alerts. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 - `lightBarActivated` - when the light bar is activated, - * - 1 - `sirenActivated` - when the siren is activated. + * - 0 - 'lightBarActivated' - when the light bar is activated, + * - 1 - 'sirenActivated' - when the siren is activated. * * Otherwise, it shall be set to 0. * @@ -1922,10 +1922,10 @@ LightBarSirenInUse ::= BIT STRING { * The specific WGS84 coordinate system is specified by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > -1 800 000 000 and n < 0)` x 10^-7 degree, i.e. negative values for longitudes to the west, - * - `0` to indicate the prime meridian, - * - `n (n > 0 and n < 1 800 000 001)` x 10^-7 degree, i.e. positive values for longitudes to the east, - * - `1 800 000 001` when the information is unavailable. + * - 'n (n > -1 800 000 000 and n < 0)' x 10^-7 degree, i.e. negative values for longitudes to the west, + * - '0' to indicate the prime meridian, + * - 'n (n > 0 and n < 1 800 000 001)' x 10^-7 degree, i.e. positive values for longitudes to the east, + * - '1 800 000 001' when the information is unavailable. * * The value -1 800 000 000 shall not be used. * @@ -1943,11 +1943,11 @@ Longitude ::= INTEGER { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [21], clause 2.11. * * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n <= 0)` to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2 - * - `n (n > 0 and n < 160)` to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, - * - `160` for acceleration values greater than 15,9 m/s^2, - * - `161` when the data is unavailable. + * - '-160' for acceleration values equal to or less than -16 m/s^2, + * - 'n (n > -160 and n <= 0)' to indicate that the vehicle is braking with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2 + * - 'n (n > 0 and n < 160)' to indicate that the vehicle is accelerating with acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - '160' for acceleration values greater than 15,9 m/s^2, + * - '161' when the data is unavailable. * * This acceleration is along the tangent plane of the road surface and does not include gravity components. * @note: this DF is kept for backwards compatibility reasons only. It is recommended to use @ref AccelerationValue instead. @@ -1967,9 +1967,9 @@ LongitudinalAccelerationValue::= INTEGER { * This DE represents the longitudinal offset of a map-matched position along a matched lane, beginning from the lane's starting point. * * The value shall be set to: - * - `n (n >= 0 and n < 32766)` if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, - * - `32 766` if the longitudinal offset is out of range, i.e. greater than 3276,5 m, - * - `32 767` if the longitudinal offset information is not available. + * - 'n (n >= 0 and n < 32766)' if the longitudinal offset information is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - '32 766' if the longitudinal offset is out of range, i.e. greater than 3276,5 m, + * - '32 767' if the longitudinal offset information is not available. * * @unit 0,1 metre * @category: GeoReference information @@ -1985,9 +1985,9 @@ LongitudinalLanePositionValue ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 1 022)` if the confidence value is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, - * - `1 022` if the confidence value is out of range i.e. greater than 102,1 m, - * - `1 023` if the confidence value is unavailable. + * - 'n (n > 0 and n < 1 022)' if the confidence value is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, + * - '1 022' if the confidence value is out of range i.e. greater than 102,1 m, + * - '1 023' if the confidence value is unavailable. * * @unit 0,1 metre * @category: GeoReference information @@ -2002,19 +2002,19 @@ LongitudinalLanePositionConfidence ::= INTEGER { * This DE indicates the components of an @ref PerceivedObject that are included in the @ref LowerTriangularPositiveSemidefiniteMatrix. * * The corresponding bit shall be set to 1 if the component is included: - * - 0 - `xCoordinate` - when the component xCoordinate of the component @ref CartesianPosition3dWithConfidence is included, - * - 1 - `yCoordinate` - when the component yCoordinate of the component @ref CartesianPosition3dWithConfidence is included, - * - 2 - `zCoordinate` - when the component zCoordinate of the component @ref CartesianPosition3dWithConfidence is included, - * - 3 - `xVelocityOrVelocityMagnitude` - when the component xVelocity of the component @ref VelocityCartesian or the component VelocityMagnitude of the component @ref VelocityPolarWithZ is included, - * - 4 - `yVelocityOrVelocityDirection` - when the component yVelocity of the component @ref VelocityCartesian or the component VelocityDirection of the component @ref VelocityPolarWithZ is included, - * - 5 - `zVelocity` - when the component zVelocity of the component @ref VelocityCartesian or of the component @ref VelocityPolarWithZ is included, - * - 6 - `xAccelOrAccelMagnitude` - when the component xAcceleration of the component @ref AccelerationCartesian or the component AccelerationMagnitude of the component @ref AccelerationPolarWithZ is included, - * - 7 - `yAccelOrAccelDirection` - when the component yAcceleration of the component @ref AccelerationCartesian or the component AccelerationDirection of the component @ref AccelerationPolarWithZ is included, - * - 8 - `zAcceleration` - when the component zAcceleration of the component @ref AccelerationCartesian or of the component @ref AccelerationPolarWithZ is included, - * - 9 - `zAngle` - when the component zAngle is included, - * - 10 - `yAngle` - when the component yAngle is included, - * - 11 - `xAngle` - when the component xAngle is included, - * - 12 - `zAngularVelocity` - when the component zAngularVelocity is included. + * - 0 - 'xCoordinate' - when the component xCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 1 - 'yCoordinate' - when the component yCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 2 - 'zCoordinate' - when the component zCoordinate of the component @ref CartesianPosition3dWithConfidence is included, + * - 3 - 'xVelocityOrVelocityMagnitude' - when the component xVelocity of the component @ref VelocityCartesian or the component VelocityMagnitude of the component @ref VelocityPolarWithZ is included, + * - 4 - 'yVelocityOrVelocityDirection' - when the component yVelocity of the component @ref VelocityCartesian or the component VelocityDirection of the component @ref VelocityPolarWithZ is included, + * - 5 - 'zVelocity' - when the component zVelocity of the component @ref VelocityCartesian or of the component @ref VelocityPolarWithZ is included, + * - 6 - 'xAccelOrAccelMagnitude' - when the component xAcceleration of the component @ref AccelerationCartesian or the component AccelerationMagnitude of the component @ref AccelerationPolarWithZ is included, + * - 7 - 'yAccelOrAccelDirection' - when the component yAcceleration of the component @ref AccelerationCartesian or the component AccelerationDirection of the component @ref AccelerationPolarWithZ is included, + * - 8 - 'zAcceleration' - when the component zAcceleration of the component @ref AccelerationCartesian or of the component @ref AccelerationPolarWithZ is included, + * - 9 - 'zAngle' - when the component zAngle is included, + * - 10 - 'yAngle' - when the component yAngle is included, + * - 11 - 'xAngle' - when the component xAngle is included, + * - 12 - 'zAngularVelocity' - when the component zAngularVelocity is included. * * Otherwise, it shall be set to 0. * @@ -2041,27 +2041,27 @@ MatrixIncludedComponents::= BIT STRING{ * This DE represents the type of facility layer message. * * The value shall be set to: - * - 1 - `denm` - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [2], - * - 2 - `cam` - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [1], - * - 3 - `poi` - for Point of Interest message as specified in ETSI TS 101 556-1 [9], - * - 4 - `spatem` - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [15], - * - 5 - `mapem` - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [15], - * - 6 - `ivim` - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [15], - * - 7 - `ev-rsr` - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [11], - * - 8 - `tistpgtransaction` - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [10], - * - 9 - `srem` - for Signal Request Extended Message as specified in ETSI TS 103 301 [15], - * - 10 - `ssem` - for Signal request Status Extended Message as specified in ETSI TS 103 301 [15], - * - 11 - `evcsn` - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [9], - * - 12 - `saem` - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [17], - * - 13 - `rtcmem` - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [15], - * - 14 - `cpm` - reserved for Collective Perception Message (CPM), - * - 15 - `imzm` - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [13], - * - 16 - `vam` - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [12], - * - 17 - `dsm` - reserved for Diagnosis, logging and Status Message, - * - 18 - `pcim` - reserved for Parking Control Infrastructure Message, - * - 19 - `pcvm` - reserved for Parking Control Vehicle Message, - * - 20 - `mcm` - reserved for Manoeuvre Coordination Message, - * - 21 - `pam` - reserved for Parking Availability Message, + * - 1 - 'denm' - for Decentralized Environmental Notification Message (DENM) as specified in ETSI EN 302 637-3 [2], + * - 2 - 'cam' - for Cooperative Awareness Message (CAM) as specified in ETSI EN 302 637-2 [1], + * - 3 - 'poi' - for Point of Interest message as specified in ETSI TS 101 556-1 [9], + * - 4 - 'spatem' - for Signal Phase And Timing Extended Message (SPATEM) as specified in ETSI TS 103 301 [15], + * - 5 - 'mapem' - for MAP Extended Message (MAPEM) as specified in ETSI TS 103 301 [15], + * - 6 - 'ivim' - for in Vehicle Information Message (IVIM) as specified in ETSI TS 103 301 [15], + * - 7 - 'ev-rsr' - for Electric vehicle recharging spot reservation message, as defined in ETSI TS 101 556-3 [11], + * - 8 - 'tistpgtransaction' - for messages for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability, as specified in ETSI TS 101 556-2 [10], + * - 9 - 'srem' - for Signal Request Extended Message as specified in ETSI TS 103 301 [15], + * - 10 - 'ssem' - for Signal request Status Extended Message as specified in ETSI TS 103 301 [15], + * - 11 - 'evcsn' - for Electrical Vehicle Charging Spot Notification message as specified in ETSI TS 101 556-1 [9], + * - 12 - 'saem' - for Services Announcement Extended Message as specified in ETSI EN 302 890-1 [17], + * - 13 - 'rtcmem' - for Radio Technical Commission for Maritime Services Extended Message (RTCMEM) as specified in ETSI TS 103 301 [15], + * - 14 - 'cpm' - reserved for Collective Perception Message (CPM), + * - 15 - 'imzm' - for Interference Management Zone Message (IMZM) as specified in ETSI TS 103 724 [13], + * - 16 - 'vam' - for Vulnerable Road User Awareness Message as specified in ETSI TS 130 300-3 [12], + * - 17 - 'dsm' - reserved for Diagnosis, logging and Status Message, + * - 18 - 'pcim' - reserved for Parking Control Infrastructure Message, + * - 19 - 'pcvm' - reserved for Parking Control Vehicle Message, + * - 20 - 'mcm' - reserved for Manoeuvre Coordination Message, + * - 21 - 'pam' - reserved for Parking Availability Message, * - 22-255 - reserved for future usage. * * @category: Communication information @@ -2095,9 +2095,9 @@ MessageId::= INTEGER { * This DE represents the number of occupants in a vehicle. * * The value shall be set to: - * - `n (n >= 0 and n < 126)` for the number n of occupants, - * - `126` for values equal to or higher than 125, - * - `127` if information is not available. + * - 'n (n >= 0 and n < 126)' for the number n of occupants, + * - '126' for values equal to or higher than 125, + * - '127' if information is not available. * * @unit: 1 person * @category: Vehicle information @@ -2112,9 +2112,9 @@ NumberOfOccupants ::= INTEGER { * This DE represents a single-value indication about the overall information quality of a perceived object. * * The value shall be set to: - * -`0` : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed, - * - `n (n > 0 and n < 15)` : for the applicable confidence value, - * -`15` : if there is full confidence in the detected Object. + * -'0' : if there is no confidence in detected object, e.g. for "ghost"-objects or if confidence could not be computed, + * - 'n (n > 0 and n < 15)' : for the applicable confidence value, + * -'15' : if there is full confidence in the detected Object. * * @unit n/a * @category: Sensing information @@ -2129,9 +2129,9 @@ ObjectPerceptionQuality ::= INTEGER { * This DE represents a single dimension of an object. * * The value shall be set to: - * - `n (n > 0 and n < 255)` if the accuracy is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, - * - `255` if the accuracy is out of range i.e. greater than 25,4 m, - * - `256` if the data is unavailable. + * - 'n (n > 0 and n < 255)' if the accuracy is equal to or less than n x 0,1 m, and more than (n-1) x 0,1 m, + * - '255' if the accuracy is out of range i.e. greater than 25,4 m, + * - '256' if the data is unavailable. * * @unit 0,1 m * @category: Basic information @@ -2147,9 +2147,9 @@ ObjectDimensionValue ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 31)` if the confidence value is equal to or less than n x 0,1 metre, and more than (n-1) x 0,1 metre, - * - `31` if the confidence value is out of range i.e. greater than 3,0 m, - * - `32` if the confidence value is unavailable. + * - 'n (n > 0 and n < 31)' if the confidence value is equal to or less than n x 0,1 metre, and more than (n-1) x 0,1 metre, + * - '31' if the confidence value is out of range i.e. greater than 3,0 m, + * - '32' if the confidence value is unavailable. * * @unit 0,1 m * @category: Sensing information @@ -2212,10 +2212,10 @@ OrdinalNumber3b ::= INTEGER(1..8) * This DE indicates the subclass of a detected object for @ref ObjectClass "otherSubclass". * * The value shall be set to: - * - `0` - unknown - if the subclass is unknown. - * - `1` - singleObject - if the object is a single object. - * - `2` - multipleObjects - if the object is a group of multiple objects. - * - `3` - bulkMaterial - if the object is a bulk material. + * - '0' - unknown - if the subclass is unknown. + * - '1' - singleObject - if the object is a single object. + * - '2' - multipleObjects - if the object is a group of multiple objects. + * - '3' - bulkMaterial - if the object is a bulk material. * * @category: Sensing information * @revision: Created in V2.1.1 @@ -2241,10 +2241,10 @@ PathDeltaTime ::= INTEGER (1..65535, ...) * A performance class value is used to describe age of data. The exact values are out of scope of the present document. * * The value shall be set to: - * - `0` if the performance class is unknown, - * - `1` for performance class A as defined in ETSI TS 101 539-1 [5], - * - `2` for performance class B as defined in ETSI TS 101 539-1 [5], - * - Values in the range `3 to 7` are reserved for future use. + * - '0' if the performance class is unknown, + * - '1' for performance class A as defined in ETSI TS 101 539-1 [5], + * - '2' for performance class B as defined in ETSI TS 101 539-1 [5], + * - Values in the range '3 to 7' are reserved for future use. * * @category: Vehicle information * @revision: Editorial update in V2.1.1 @@ -2268,9 +2268,9 @@ PhoneNumber ::= NumericString (SIZE(1..16)) * the vehicle bounding box of the empty load vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 62)` for any aplicable value n between 0,1 metre and 6,2 metres, - * - `62` for values equal to or higher than `6.1 metres`, - * - `63` if the information is unavailable. + * - 'n (n > 0 and n < 62)' for any aplicable value n between 0,1 metre and 6,2 metres, + * - '62' for values equal to or higher than '6.1 metres', + * - '63' if the information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [8], clause 4.6. * @@ -2288,12 +2288,12 @@ PosCentMass ::= INTEGER { * This DE indicates the positioning technology being used to estimate a geographical position. * * The value shall be set to: - * - 0 `noPositioningSolution` - no positioning solution used, - * - 1 `sGNSS` - Global Navigation Satellite System used, - * - 2 `dGNSS` - Differential GNSS used, - * - 3 `sGNSSplusDR` - GNSS and dead reckoning used, - * - 4 `dGNSSplusDR` - Differential GNSS and dead reckoning used, - * - 5 `dR` - dead reckoning used. + * - 0 'noPositioningSolution' - no positioning solution used, + * - 1 'sGNSS' - Global Navigation Satellite System used, + * - 2 'dGNSS' - Differential GNSS used, + * - 3 'sGNSSplusDR' - GNSS and dead reckoning used, + * - 4 'dGNSSplusDR' - Differential GNSS and dead reckoning used, + * - 5 'dR' - dead reckoning used. * * @category: GeoReference information * @revision: V1.3.1 @@ -2315,20 +2315,20 @@ PositioningSolutionType ::= ENUMERATED { * of the vehicle. * The left side seat of a row refers to the left hand side seen from vehicle rear to front. * Additionally, a bit is reserved for each seat row, to indicate if the seat occupation of a row is detectable or not, - * i.e. `row1NotDetectable (3)`, `row2NotDetectable(8)`, `row3NotDetectable(13)` and `row4NotDetectable(18)`. + * i.e. 'row1NotDetectable (3)', 'row2NotDetectable(8)', 'row3NotDetectable(13)' and 'row4NotDetectable(18)'. * Finally, a bit is reserved for each row seat to indicate if the seat row is present or not in the vehicle, - * i.e. row1NotPresent `(4)`, row2NotPresent `(9)`, `row3NotPresent(14)`, `row4NotPresent(19)`. + * i.e. row1NotPresent '(4)', row2NotPresent '(9)', 'row3NotPresent(14)', 'row4NotPresent(19)'. * - * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to `1`. - * For example, when the row 1 left seat is occupied, `row1LeftOccupied(0)` bit shall be set to 1. - * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to `0`. + * When a seat is detected to be occupied, the corresponding seat occupation bit shall be set to '1'. + * For example, when the row 1 left seat is occupied, 'row1LeftOccupied(0)' bit shall be set to 1. + * When a seat is detected to be not occupied, the corresponding seat occupation bit shall be set to '0'. * Otherwise, the value of seat occupation bit shall be set according to the following conditions: - * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to `1`. - * When any seat row not detectable bit is set to `1`, all corresponding seat occupation bits of the same row - * shall be set to `1`. - * - If the seat row is not present, the corresponding not present bit of the same row shall be set to `1`. - * When any of the seat row not present bit is set to `1`, the corresponding not detectable bit for that row - * shall be set to `1`, and all the corresponding seat occupation bits in that row shall be set to `0`. + * - If the seat occupation of a seat row is not detectable, the corresponding bit shall be set to '1'. + * When any seat row not detectable bit is set to '1', all corresponding seat occupation bits of the same row + * shall be set to '1'. + * - If the seat row is not present, the corresponding not present bit of the same row shall be set to '1'. + * When any of the seat row not present bit is set to '1', the corresponding not detectable bit for that row + * shall be set to '1', and all the corresponding seat occupation bits in that row shall be set to '0'. * * @category: Vehicle information * @revision: V1.3.1 @@ -2360,9 +2360,9 @@ PositionOfOccupants ::= BIT STRING { * This DE indicates the perpendicular distance between the vehicle front line of the bounding box and the front wheel axle in 0,1 metre. * * The value shall be set to: - * - `n (n > 0 and n < 19)` for any aplicable value between 0,1 metre and 1,9 metres, - * - `19` for values equal to or higher than 1.8 metres, - * - `20` if the information is unavailable. + * - 'n (n > 0 and n < 19)' for any aplicable value between 0,1 metre and 1,9 metres, + * - '19' for values equal to or higher than 1.8 metres, + * - '20' if the information is unavailable. * * @category: Vehicle information * @unit 0,1 metre @@ -2378,9 +2378,9 @@ PosFrontAx ::= INTEGER { * The left/right carrier refers to the left/right as seen from a passenger sitting in the vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 126)` for any aplicable value between 0,01 metre and 1,26 metres, - * - `126` for values equal to or higher than 1.25 metres, - * - `127` if the information is unavailable. + * - 'n (n > 0 and n < 126)' for any aplicable value between 0,01 metre and 1,26 metres, + * - '126' for values equal to or higher than 1.25 metres, + * - '127' if the information is unavailable. * * @unit 0,01 metre * @category Vehicle information @@ -2396,9 +2396,9 @@ PosLonCarr ::= INTEGER { * middle point of the front line of the vehicle bounding box. * * The value shall be set to: - * - `n (n > 0 and n < 29)` for any aplicable value between 0,1 metre and 2,9 metres, - * - `29` for values equal to or greater than 2.8 metres, - * - `30` if the information is unavailable. + * - 'n (n > 0 and n < 29)' for any aplicable value between 0,1 metre and 2,9 metres, + * - '29' for values equal to or greater than 2.8 metres, + * - '30' if the information is unavailable. * * @unit 0,1 metre * @category Vehicle information @@ -2410,14 +2410,14 @@ PosPillar ::= INTEGER { } (1..30) /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `postCrash` . + * This DE represents the value of the sub cause codes of the @ref CauseCode 'postCrash' . * * The value shall be set to: - * - 0 `unavailable` - in case further detailed information on post crash event is unavailable, - * - 1 `accidentWithoutECallTriggered` - in case no eCall has been triggered for an accident, - * - 2 `accidentWithECallManuallyTriggered` - in case eCall has been manually triggered and transmitted to eCall back end, - * - 3 `accidentWithECallAutomaticallyTriggered` - in case eCall has been automatically triggered and transmitted to eCall back end, - * - 4 `accidentWithECallTriggeredWithoutAccessToCellularNetwork` - in case eCall has been triggered but cellular network is not accessible from triggering vehicle. + * - 0 'unavailable' - in case further detailed information on post crash event is unavailable, + * - 1 'accidentWithoutECallTriggered' - in case no eCall has been triggered for an accident, + * - 2 'accidentWithECallManuallyTriggered' - in case eCall has been manually triggered and transmitted to eCall back end, + * - 3 'accidentWithECallAutomaticallyTriggered' - in case eCall has been automatically triggered and transmitted to eCall back end, + * - 4 'accidentWithECallTriggeredWithoutAccessToCellularNetwork' - in case eCall has been triggered but cellular network is not accessible from triggering vehicle. * - 5-255 - are reserved for future usage. * * @category: Traffic information @@ -2435,9 +2435,9 @@ PostCrashSubCauseCode ::= INTEGER { * This DE represent the total amount of rain falling during one hour. It is measured in mm per hour at an area of 1 square metre. * * The following values are specified: -* - `n (n > 0 and n < 2000)` if the amount of rain falling is equal to or less than n x 0,1 mm/h and greater than (n-1) x 0,1 mm/h, -* - `2000` if the amount of rain falling is greater than 199.9 mm/h, -* - `2001` if the information is not available. +* - 'n (n > 0 and n < 2000)' if the amount of rain falling is equal to or less than n x 0,1 mm/h and greater than (n-1) x 0,1 mm/h, +* - '2000' if the amount of rain falling is greater than 199.9 mm/h, +* - '2001' if the information is not available. * * @unit: 0,1 mm/h * @category: Basic Information @@ -2501,9 +2501,9 @@ PtActivationData ::= OCTET STRING (SIZE(1..20)) * This DE indicates a certain coding type of the PtActivationData data. * * The folowing value are specified: - * - `0` undefinedCodingType : undefined coding type, - * - `1` r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [7], - * - `2` vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [7]. + * - '0' undefinedCodingType : undefined coding type, + * - '1' r09-16CodingType : coding of PtActivationData conform to VDV recommendation 420 [7], + * - '2' vdv-50149CodingType : coding of PtActivationData based on VDV recommendation 420 [7]. * - values 3 to 255 : reserved for alternative and future use. * * @category: Vehicle information @@ -2516,15 +2516,15 @@ PtActivationType ::= INTEGER { } (0..255) /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `railwayLevelCrossing` . + * This DE represents the value of the sub cause codes of the @ref CauseCode 'railwayLevelCrossing' . * * The value shall be set to: - * - 0 `unavailable` - in case no further detailed information on the railway level crossing status is available, - * - 1 `doNotCrossAbnormalSituation` - in case when something wrong is detected by equation or sensors of the railway level crossing, + * - 0 'unavailable' - in case no further detailed information on the railway level crossing status is available, + * - 1 'doNotCrossAbnormalSituation' - in case when something wrong is detected by equation or sensors of the railway level crossing, including level crossing is closed for too long (e.g. more than 10 minutes long ; default value), - * - 2 `closed` - in case the crossing is closed (barriers down), - * - 3 `unguarded` - in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), - * - 4 `nominal` - in case the barriers are up and lights are off. + * - 2 'closed' - in case the crossing is closed (barriers down), + * - 3 'unguarded' - in case the level crossing is unguarded (i.e a Saint Andrew cross level crossing without detection of train), + * - 4 'nominal' - in case the barriers are up and lights are off. * - 5-255: reserved for future usage. * * @category: Traffic information @@ -2542,14 +2542,14 @@ RailwayLevelCrossingSubCauseCode ::= INTEGER { * This DE describes a distance of relevance for information indicated in a message. * * The value shall be set to: - * - 0 `lessThan50m` - for distances below 50 m, - * - 1 `lessThan100m` - for distances below 100 m, - * - 2 `lessThan200m` - for distances below 200 m, - * - 3 `lessThan500m` - for distances below 300 m, - * - 4 `lessThan1000m` - for distances below 1 000 m, - * - 5 `lessThan5km` - for distances below 5 000 m, - * - 6 `lessThan10km` - for distances below 10 000 m, - * - 7 `over10km` - for distances over 10 000 m. + * - 0 'lessThan50m' - for distances below 50 m, + * - 1 'lessThan100m' - for distances below 100 m, + * - 2 'lessThan200m' - for distances below 200 m, + * - 3 'lessThan500m' - for distances below 300 m, + * - 4 'lessThan1000m' - for distances below 1 000 m, + * - 5 'lessThan5km' - for distances below 5 000 m, + * - 6 'lessThan10km' - for distances below 10 000 m, + * - 7 'over10km' - for distances over 10 000 m. * * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref StandardLength3b instead. * @@ -2571,12 +2571,12 @@ RelevanceDistance ::= ENUMERATED { * This DE indicates a traffic direction that is relevant to information indicated in a message. * * The value shall be set to: - * - 0 `allTrafficDirections` - for all traffic directions, - * - 1 `upstreamTraffic` - for upstream traffic, - * - 2 `downstreamTraffic` - for downstream traffic, - * - 3 `oppositeTraffic` - for traffic in the opposite direction. + * - 0 'allTrafficDirections' - for all traffic directions, + * - 1 'upstreamTraffic' - for upstream traffic, + * - 2 'downstreamTraffic' - for downstream traffic, + * - 3 'oppositeTraffic' - for traffic in the opposite direction. * - * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * The terms 'upstream', 'downstream' and 'oppositeTraffic' are relative to the event position. * * @note: Upstream traffic corresponds to the incoming traffic towards the event position, * and downstream traffic to the departing traffic away from the event position. @@ -2598,8 +2598,8 @@ RelevanceTrafficDirection ::= ENUMERATED { * ITS-S after receiving request from other ITS-Ss. * * The value shall be set to: - * - 0 `request` - for a request message, - * - 1 `response` - for a response message. + * - 0 'request' - for a request message, + * - 1 'response' - for a response message. * * @category Communication information * @revision: Editorial update in V2.1.1 @@ -2610,15 +2610,15 @@ RequestResponseIndication ::= ENUMERATED { } /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `rescueAndRecoveryWorkInProgress` + * This DE represents the value of the sub cause codes of the @ref CauseCode 'rescueAndRecoveryWorkInProgress' * * The value shall be set to: - * - 0 `unavailable` - in case further detailed information on rescue and recovery work is unavailable, - * - 1 `emergencyVehicles` - in case rescue work is ongoing by emergency vehicles, - * - 2 `rescueHelicopterLanding` - in case rescue helicopter is landing, - * - 3 `policeActivityOngoing` - in case police activity is ongoing, - * - 4 `medicalEmergencyOngoing` - in case medical emergency recovery is ongoing, - * - 5 `childAbductionInProgress`- in case a child kidnapping alarm is activated and rescue work is ongoing, + * - 0 'unavailable' - in case further detailed information on rescue and recovery work is unavailable, + * - 1 'emergencyVehicles' - in case rescue work is ongoing by emergency vehicles, + * - 2 'rescueHelicopterLanding' - in case rescue helicopter is landing, + * - 3 'policeActivityOngoing' - in case police activity is ongoing, + * - 4 'medicalEmergencyOngoing' - in case medical emergency recovery is ongoing, + * - 5 'childAbductionInProgress'- in case a child kidnapping alarm is activated and rescue work is ongoing, * - 6-255: reserved for future usage. * * @category: Traffic information @@ -2638,10 +2638,10 @@ RescueAndRecoveryWorkInProgressSubCauseCode ::= INTEGER { * This DE indicates the type of a road segment. * * The value shall be set to: - * - 0 `urban-NoStructuralSeparationToOppositeLanes` - for an urban road with no structural separation between lanes carrying traffic in opposite directions, - * - 1 `urban-WithStructuralSeparationToOppositeLanes` - for an urban road with structural separation between lanes carrying traffic in opposite directions, - * - 2 `nonUrban-NoStructuralSeparationToOppositeLanes` - for an non urban road with no structural separation between lanes carrying traffic in opposite directions, - * - 3 `nonUrban-WithStructuralSeparationToOppositeLanes` - for an non urban road with structural separation between lanes carrying traffic in opposite directions. + * - 0 'urban-NoStructuralSeparationToOppositeLanes' - for an urban road with no structural separation between lanes carrying traffic in opposite directions, + * - 1 'urban-WithStructuralSeparationToOppositeLanes' - for an urban road with structural separation between lanes carrying traffic in opposite directions, + * - 2 'nonUrban-NoStructuralSeparationToOppositeLanes' - for an non urban road with no structural separation between lanes carrying traffic in opposite directions, + * - 3 'nonUrban-WithStructuralSeparationToOppositeLanes' - for an non urban road with structural separation between lanes carrying traffic in opposite directions. * * @category: Road Topology Information * @revision: Editorial update in V2.1.1 @@ -2654,16 +2654,16 @@ RoadType ::= ENUMERATED { } /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `roadworks`. + * This DE represents the value of the sub cause codes of the @ref CauseCode 'roadworks'. * The value shall be set to: - * - 0 `unavailable` - in case further detailed information on roadworks is unavailable, - * - 1 `majorRoadworks` - in case a major roadworks is ongoing, - * - 2 `roadMarkingWork` - in case a road marking work is ongoing, - * - 3 `slowMovingRoadMaintenance` - in case slow moving road maintenance work is ongoing, - * - 4 `shortTermStationaryRoadworks`- in case a short term stationary roadwork is ongoing, - * - 5 `streetCleaning` - in case a vehicle street cleaning work is ongoing, - * - 6 `winterService` - in case winter service work is ongoing. + * - 0 'unavailable' - in case further detailed information on roadworks is unavailable, + * - 1 'majorRoadworks' - in case a major roadworks is ongoing, + * - 2 'roadMarkingWork' - in case a road marking work is ongoing, + * - 3 'slowMovingRoadMaintenance' - in case slow moving road maintenance work is ongoing, + * - 4 'shortTermStationaryRoadworks'- in case a short term stationary roadwork is ongoing, + * - 5 'streetCleaning' - in case a vehicle street cleaning work is ongoing, + * - 6 'winterService' - in case winter service work is ongoing. * - 7-255 - are reserved for future usage. * * @category: Traffic information @@ -2683,8 +2683,8 @@ RoadworksSubCauseCode ::= INTEGER { * This DE indicates if a distance is safe. * * The value shall be set to: - * - `FALSE` if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} is simultaneously satisfied with confidence level of 90 % or more, - * - `TRUE` otherwise. + * - 'FALSE' if the triple {LaD, LoD, VD} < {MSLaD, MSLoD, MSVD} is simultaneously satisfied with confidence level of 90 % or more, + * - 'TRUE' otherwise. * * @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). @@ -2699,9 +2699,9 @@ SafeDistanceIndicator::= BOOLEAN * confidence level of 95 %. * * The value shall be set to: - * - `n (n > 0 and n < 4 094)` if the accuracy is equal to or less than n * 0,01 metre, - * - `4 094` if the accuracy is out of range, i.e. greater than 4,093 m, - * - `4 095` if the accuracy information is unavailable. + * - 'n (n > 0 and n < 4 094)' if the accuracy is equal to or less than n * 0,01 metre, + * - '4 094' if the accuracy is out of range, i.e. greater than 4,093 m, + * - '4 095' if the accuracy information is unavailable. * * The value 0 shall not be used. * @@ -2729,20 +2729,20 @@ SemiAxisLength ::= INTEGER{ * This DE indicates the type of sensor. * * The value shall be set to: - * - `0` undefined - in case the sensor type is undefined. - * - `1` radar - in case the sensor is a radar, - * - `2` lidar - in case the sensor is a lidar, - * - `3` monovideo - in case the sensor is mono video, - * - `4` stereovision - in case the sensor is stereo vision, - * - `5` nightvision - in case the sensor is night vision, - * - `6` ultrasonic - in case the sensor is ultrasonic, - * - `7` pmd - in case the sensor is photonic mixing device, - * - `8` inductionLoop - in case the sensor is an induction loop, - * - `9` sphericalCamera - in case the sensor is a spherical camera, - * - `10` uwb - in case the sensor is ultra wide band, - * - `11` acoustic - in case the sensor is acoustic, - * - `12` localAggregation - in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion, - * - `13` itsAggregation - in case the information is provided by a system that aggregates information from other received ITS messages. + * - '0' undefined - in case the sensor type is undefined. + * - '1' radar - in case the sensor is a radar, + * - '2' lidar - in case the sensor is a lidar, + * - '3' monovideo - in case the sensor is mono video, + * - '4' stereovision - in case the sensor is stereo vision, + * - '5' nightvision - in case the sensor is night vision, + * - '6' ultrasonic - in case the sensor is ultrasonic, + * - '7' pmd - in case the sensor is photonic mixing device, + * - '8' inductionLoop - in case the sensor is an induction loop, + * - '9' sphericalCamera - in case the sensor is a spherical camera, + * - '10' uwb - in case the sensor is ultra wide band, + * - '11' acoustic - in case the sensor is acoustic, + * - '12' localAggregation - in case the information is provided by a system that aggregates information from different local sensors. Aggregation may include fusion, + * - '13' itsAggregation - in case the information is provided by a system that aggregates information from other received ITS messages. * - 14-31 - are reserved for future usage. * * @category: Sensing Information @@ -2774,13 +2774,13 @@ SensorType ::= INTEGER { SequenceNumber ::= INTEGER (0..65535) /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `signalViolation`. + * This DE represents the value of the sub cause codes of the @ref CauseCode 'signalViolation'. * * The value shall be set to: - * - 0 `unavailable` - in case further detailed information on signal violation event is unavailable, - * - 1 `stopSignViolation` - in case a stop sign violation is detected, - * - 2 `trafficLightViolation` - in case a traffic light violation is detected, - * - 3 `turningRegulationViolation`- in case a turning regulation violation is detected. + * - 0 'unavailable' - in case further detailed information on signal violation event is unavailable, + * - 1 'stopSignViolation' - in case a stop sign violation is detected, + * - 2 'trafficLightViolation' - in case a traffic light violation is detected, + * - 3 'turningRegulationViolation'- in case a turning regulation violation is detected. * - 4-255 - are reserved for future usage. * * @category: Traffic information @@ -2797,16 +2797,16 @@ SignalViolationSubCauseCode ::= INTEGER { * This DE represents the sub cause codes of the @ref CauseCode "slowVehicle". * * The value shall be set to: - * - 0 `unavailable` - in case further detailed information on slow vehicle driving event is + * - 0 'unavailable' - in case further detailed information on slow vehicle driving event is * unavailable, - * - 1 `maintenanceVehicle` - in case of a slow driving maintenance vehicle on the road, - * - 2 `vehiclesSlowingToLookAtAccident`- in case vehicle is temporally slowing down to look at accident, spot, etc., - * - 3 `abnormalLoad` - in case an abnormal loaded vehicle is driving slowly on the road, - * - 4 `abnormalWideLoad` - in case an abnormal wide load vehicle is driving slowly on the road, - * - 5 `convoy` - in case of slow driving convoy on the road, - * - 6 `snowplough` - in case of slow driving snow plough on the road, - * - 7 `deicing` - in case of slow driving de-icing vehicle on the road, - * - 8 `saltingVehicles` - in case of slow driving salting vehicle on the road. + * - 1 'maintenanceVehicle' - in case of a slow driving maintenance vehicle on the road, + * - 2 'vehiclesSlowingToLookAtAccident'- in case vehicle is temporally slowing down to look at accident, spot, etc., + * - 3 'abnormalLoad' - in case an abnormal loaded vehicle is driving slowly on the road, + * - 4 'abnormalWideLoad' - in case an abnormal wide load vehicle is driving slowly on the road, + * - 5 'convoy' - in case of slow driving convoy on the road, + * - 6 'snowplough' - in case of slow driving snow plough on the road, + * - 7 'deicing' - in case of slow driving de-icing vehicle on the road, + * - 8 'saltingVehicles' - in case of slow driving salting vehicle on the road. * - 9-255 - are reserved for future usage. * * @category: Traffic information @@ -2828,10 +2828,10 @@ SlowVehicleSubCauseCode ::= INTEGER { * The DE indicates if a vehicle is carrying goods in the special transport conditions. * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `heavyLoad` - the vehicle is carrying goods with heavy load, - * - 1 `excessWidth` - the vehicle is carrying goods in excess of width, - * - 2 `excessLength` - the vehicle is carrying goods in excess of length, - * - 3 `excessHeight` - the vehicle is carrying goods in excess of height. + * - 0 'heavyLoad' - the vehicle is carrying goods with heavy load, + * - 1 'excessWidth' - the vehicle is carrying goods in excess of width, + * - 2 'excessLength' - the vehicle is carrying goods in excess of length, + * - 3 'excessHeight' - the vehicle is carrying goods in excess of height. * * Otherwise, the corresponding bit shall be set to 0. * @category Vehicle information @@ -2849,17 +2849,17 @@ SpecialTransportType ::= BIT STRING { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n * 0,01 m/s. - * - `126` if the confidence value is out of range, i.e. greater than 1,25 m/s, - * - `127` if the confidence value information is not available. + * - 'n (n > 0 and n < 126)' if the confidence value is equal to or less than n * 0,01 m/s. + * - '126' if the confidence value is out of range, i.e. greater than 1,25 m/s, + * - '127' if the confidence value information is not available. * - * @note: The fact that a speed value is received with confidence value set to `unavailable(127)` can be caused by several reasons, such as: + * @note: The fact that a speed value is received with confidence value set to 'unavailable(127)' can be caused by several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. * In all 3 cases above, the speed value may be valid and used by the application. * - * @note: If a speed value is received and its confidence value is set to `outOfRange(126)`, it means that the speed value is not valid + * @note: If a speed value is received and its confidence value is set to 'outOfRange(126)', it means that the speed value is not valid * and therefore cannot be trusted. Such is not useful for the application. * * @unit: 0,01 m/s @@ -2884,10 +2884,10 @@ SpeedLimit ::= INTEGER (1..255) * This DE represents a speed value, i.e. the magnitude of the velocity-vector. * * The value shall be set to: - * - `0` in a standstill situation. - * - `n (n > 0 and n < 16 382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s, - * - `16 382` for speed values greater than 163,81 m/s, - * - `16 383` if the speed accuracy information is not available. + * - '0' in a standstill situation. + * - 'n (n > 0 and n < 16 382)' if the applicable value is equal to or less than n x 0,01 m/s, and greater than (n-1) x 0,01 m/s, + * - '16 382' for speed values greater than 163,81 m/s, + * - '16 383' if the speed accuracy information is not available. * * @note: the definition of standstill is out of scope of the present document. * @@ -2905,10 +2905,10 @@ SpeedValue ::= INTEGER { * This DE represents the value of a velocity component in a defined coordinate system. * * The value shall be set to: - * - `-16 383` if the velocity is equal to or smaller than -163,83 m/s, - * - `n (n > -16 383 and n < 16 382)` if the applicable value is equal to or less than n x 0,01 m/s, and greater than `(n-1) x 0,01 m/s, - * - `16 382` for velocity values equal to or greater than 163,81 m/s, - * - `16 383` if the velocity information is not available. + * - '-16 383' if the velocity is equal to or smaller than -163,83 m/s, + * - 'n (n > -16 383 and n < 16 382)' if the applicable value is equal to or less than n x 0,01 m/s, and greater than '(n-1) x 0,01 m/s, + * - '16 382' for velocity values equal to or greater than 163,81 m/s, + * - '16 383' if the velocity information is not available. * * @unit: 0,01 m/s * @category: Kinematic information @@ -2925,11 +2925,11 @@ VelocityComponentValue ::= INTEGER { * This DE indicates the estimated probability of a stability level and conversely also the probability of a stability loss. * * The value shall be set to: - * - `0` to indicate an estimated probability of a loss of stability of 0 %, i.e. "stable", - * - `n (n > 0 and n < 50)` to indicate the actual stability level, - * - `50` to indicate a estimated probability of a loss of stability of 100 %, i.e. "total loss of stability", + * - '0' to indicate an estimated probability of a loss of stability of 0 %, i.e. "stable", + * - 'n (n > 0 and n < 50)' to indicate the actual stability level, + * - '50' to indicate a estimated probability of a loss of stability of 100 %, i.e. "total loss of stability", * - the values between 51 and 62 are reserved for future use, - * - `63`: this value indicates that the information is unavailable. + * - '63': this value indicates that the information is unavailable. * * @unit: 2 % * @category: Kinematic information @@ -2954,14 +2954,14 @@ StandardLength12b::= INTEGER (0..4095) * The DE represents length as a measure of distance between points. * * The value shall be set to: - * - 0 `lessThan50m` - for distances below 50 m, - * - 1 `lessThan100m` - for distances below 100 m, - * - 2 `lessThan200m` - for distances below 200 m, - * - 3 `lessThan500m` - for distances below 300 m, - * - 4 `lessThan1000m` - for distances below 1 000 m, - * - 5 `lessThan5km` - for distances below 5 000 m, - * - 6 `lessThan10km` - for distances below 10 000 m, - * - 7 `over10km` - for distances over 10 000 m. + * - 0 'lessThan50m' - for distances below 50 m, + * - 1 'lessThan100m' - for distances below 100 m, + * - 2 'lessThan200m' - for distances below 200 m, + * - 3 'lessThan500m' - for distances below 300 m, + * - 4 'lessThan1000m' - for distances below 1 000 m, + * - 5 'lessThan5km' - for distances below 5 000 m, + * - 6 'lessThan10km' - for distances below 10 000 m, + * - 7 'over10km' - for distances over 10 000 m. * * @category: GeoReference information * @revision: Created in V2.1.1 from RelevanceDistance @@ -3008,10 +3008,10 @@ StandardLength2B::= INTEGER (0..65535) * This DE indicates the duration in minutes since which something is stationary. * * The value shall be set to: - * - 0 `lessThan1Minute` - for being stationary since less than 1 minute, - * - 1 `lessThan2Minutes` - for being stationary since less than 2 minute and for equal to or more than 1 minute, - * - 2 `lessThan15Minutes` - for being stationary since less than 15 minutes and for equal to or more than 1 minute, - * - 3 `equalOrGreater15Minutes` - for being stationary since equal to or more than 15 minutes. + * - 0 'lessThan1Minute' - for being stationary since less than 1 minute, + * - 1 'lessThan2Minutes' - for being stationary since less than 2 minute and for equal to or more than 1 minute, + * - 2 'lessThan15Minutes' - for being stationary since less than 15 minutes and for equal to or more than 1 minute, + * - 3 'equalOrGreater15Minutes' - for being stationary since equal to or more than 15 minutes. * * @category: Kinematic information * @revision: Created in V2.1.1 @@ -3027,13 +3027,13 @@ StationarySince ::= ENUMERATED { * This DE provides the value of the sub cause codes of the @ref CauseCode "stationaryVehicle". * * The value shall be set to: - * - 0 `unavailable` - in case further detailed information on stationary vehicle is unavailable, - * - 1 `humanProblem` - in case stationary vehicle is due to health problem of driver or passenger, - * - 2 `vehicleBreakdown` - in case stationary vehicle is due to vehicle break down, - * - 3 `postCrash` - in case stationary vehicle is caused by collision, - * - 4 `publicTransportStop` - in case public transport vehicle is stationary at bus stop, - * - 5 `carryingDangerousGoods`- in case the stationary vehicle is carrying dangerous goods, - * - 6 `vehicleOnFire` - in case of vehicle on fire. + * - 0 'unavailable' - in case further detailed information on stationary vehicle is unavailable, + * - 1 'humanProblem' - in case stationary vehicle is due to health problem of driver or passenger, + * - 2 'vehicleBreakdown' - in case stationary vehicle is due to vehicle break down, + * - 3 'postCrash' - in case stationary vehicle is caused by collision, + * - 4 'publicTransportStop' - in case public transport vehicle is stationary at bus stop, + * - 5 'carryingDangerousGoods'- in case the stationary vehicle is carrying dangerous goods, + * - 6 'vehicleOnFire' - in case of vehicle on fire. * - 7-255 reserved for future usage. * * @category: Traffic information @@ -3073,25 +3073,25 @@ StationID ::= INTEGER(0..4294967295) * The station type depends on the integration environment of ITS-S into vehicle, mobile devices or at infrastructure. * * The value shall be set to: - * - 0 `unknown` - information about the ITS-S context is not provided, - * - 1 `pedestrian` - ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1), - * - 2 `cyclist` - ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), - * - 3 `moped` - ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] + * - 0 'unknown' - information about the ITS-S context is not provided, + * - 1 'pedestrian' - ITS-S carried by human being not using a mechanical device for their trip (VRU profile 1), + * - 2 'cyclist' - ITS-S mounted on non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), + * - 3 'moped' - ITS-S mounted on light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class L1, L2 (VRU Profile 3), - * - 4 `motorcycles` - ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] + * - 4 'motorcycles' - ITS-S mounted on motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class L3, L4, L5, L6, L7 (VRU Profile 3), - * - 5 `passengerCar` - ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M1, - * - 6 `bus` - ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M2, M3, - * - 7 `lightTruck` - ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N1, - * - 8 `heavyTruck` - ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N2 and N3, - * - 9 `trailer` - ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in + * - 5 'passengerCar' - ITS-S mounted on small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M1, + * - 6 'bus' - ITS-S mounted on large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M2, M3, + * - 7 'lightTruck' - ITS-S mounted on light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N1, + * - 8 'heavyTruck' - ITS-S mounted on Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N2 and N3, + * - 9 'trailer' - ITS-S mounted on an unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class O, - * - 10 `specialVehicles` - ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram` - ITS-S mounted on a vehicle which runs on tracks along public streets, - * - 12 `lightVruVehicle` - ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2), - * - 13 `animal` - ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), + * - 10 'specialVehicles' - ITS-S mounted on vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 'tram' - ITS-S mounted on a vehicle which runs on tracks along public streets, + * - 12 'lightVruVehicle' - ITS-S carried by a human being traveling on light vehicle , incl. possible use of roller skates or skateboards (VRU profile 2), + * - 13 'animal' - ITS-S carried by an animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), * - 14 - reserved for future usage, - * - 15 `roadSideUnit` - ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + * - 15 'roadSideUnit' - ITS-S mounted on an infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), * - 16-255 - are reserved for future usage. * @@ -3121,9 +3121,9 @@ StationType ::= INTEGER { * This DE indicates the steering wheel angle confidence value which represents the estimated absolute accuracy for a steering wheel angle value with a confidence level of 95 %. * * The value shall be set to: - * - `n (n > 0 and n < 126)` if the confidence value is equal to or less than n x 1,5 degrees, - * - `126` if the confidence value is out of range, i.e. greater than 187,5 degrees, - * - `127` if the confidence value is not available. + * - 'n (n > 0 and n < 126)' if the confidence value is equal to or less than n x 1,5 degrees, + * - '126' if the confidence value is out of range, i.e. greater than 187,5 degrees, + * - '127' if the confidence value is not available. * * @note: The fact that a steering wheel angle value is received with confidence value set to 'unavailable(127)' * can be caused by several reasons, such as: @@ -3150,13 +3150,13 @@ SteeringWheelAngleConfidence ::= INTEGER { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [21], clause 2.11. * * The value shall be set to: - * - `-511` if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right, - * - `n (n > -511 and n <= 0)` if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, + * - '-511' if the steering wheel angle is equal to or greater than 511 x 1,5 degrees = 766,5 degrees to the right, + * - 'n (n > -511 and n <= 0)' if the steering wheel angle is equal to or less than n x 1,5 degrees, and greater than (n-1) x 1,5 degrees, turning clockwise (i.e. to the right), - * - `n (n >= 1 and n < 511)` if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, + * - 'n (n >= 1 and n < 511)' if the steering wheel angle is equal to or less than n x 0,1 degrees, and greater than (n-1) x 0,1 degrees, turning counter-clockwise (i.e. to the left), - * - `511` if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left, - * - `512` if information is not available. + * - '511' if the steering wheel angle is greater than 510 x 1,5 degrees = 765 degrees to the left, + * - '512' if information is not available. * * @unit: 1,5 degree * @revision: Description revised in V2.1.1 (meaning of value 511 has changed slightly). @@ -3181,9 +3181,9 @@ SubCauseCodeType ::= INTEGER (0..255) * This DE indicates a temperature value. * The value shall be set to: - * - `-60` for temperature equal to or less than -60 degrees C, - * - `n (n > -60 and n < 67)` for the actual temperature n in degrees C, - * - `67` for temperature equal to or greater than 67 degrees C. + * - '-60' for temperature equal to or less than -60 degrees C, + * - 'n (n > -60 and n < 67)' for the actual temperature n in degrees C, + * - '67' for temperature equal to or greater than 67 degrees C. * * @unit: degrees Celsius * @category: Basic information @@ -3195,7 +3195,7 @@ Temperature ::= INTEGER { /** * This DE represents the number of elapsed (TAI) milliseconds since the ITS Epoch. - * The ITS epoch is `00:00:00.000 UTC, 1 January 2004`. + * The ITS epoch is '00:00:00.000 UTC, 1 January 2004'. * "Elapsed" means that the true number of milliseconds is continuously counted without interruption, * i.e. it is not altered by leap seconds, which occur in UTC. * @@ -3205,7 +3205,7 @@ Temperature ::= INTEGER { * As of 1 January, 2022, TimestampIts is 5 seconds ahead of UTC, because since the ITS epoch on 1 January 2004 00:00:00.000 UTC, * further 5 leap seconds have been inserted in UTC. * - * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is `94 694 401 000` milliseconds, + * EXAMPLE: The value for TimestampIts for 1 January 2007 00:00:00.000 UTC is '94 694 401 000' milliseconds, * which includes one leap second insertion since the ITS epoch. * @unit: 0,001 s * @category: Basic information @@ -3214,18 +3214,18 @@ Temperature ::= INTEGER { TimestampIts ::= INTEGER (0..4398046511103) /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `trafficCondition`. + * This DE represents the value of the sub cause codes of the @ref CauseCode 'trafficCondition'. * * The value shall be set to: - * - 0 `unavailable` - in case further detailed information on traffic jam is unavailable, - * - 1 `increasedVolumeOfTraffic` - in case detected jam volume is increased, - * - 2 `trafficJamSlowlyIncreasing` - in case detected traffic jam volume is increasing slowly, - * - 3 `trafficJamIncreasing` - in case traffic jam volume is increasing, - * - 4 `trafficJamStronglyIncreasing`- in case traffic jam volume is strongly increasing, - * - 5 `trafficStationary` - in case traffic is stationary, - * - 6 `trafficJamSlightlyDecreasing`- in case traffic jam volume is decreasing slowly, - * - 7 `trafficJamDecreasing` - in case traffic jam volume is decreasing, - * - 8 `trafficJamStronglyDecreasing`- in case traffic jam volume is decreasing rapidly, + * - 0 'unavailable' - in case further detailed information on traffic jam is unavailable, + * - 1 'increasedVolumeOfTraffic' - in case detected jam volume is increased, + * - 2 'trafficJamSlowlyIncreasing' - in case detected traffic jam volume is increasing slowly, + * - 3 'trafficJamIncreasing' - in case traffic jam volume is increasing, + * - 4 'trafficJamStronglyIncreasing'- in case traffic jam volume is strongly increasing, + * - 5 'trafficStationary' - in case traffic is stationary, + * - 6 'trafficJamSlightlyDecreasing'- in case traffic jam volume is decreasing slowly, + * - 7 'trafficJamDecreasing' - in case traffic jam volume is decreasing, + * - 8 'trafficJamStronglyDecreasing'- in case traffic jam volume is decreasing rapidly, * - 9-255: reserved for future usage. * * @category: Traffic information @@ -3247,12 +3247,12 @@ TrafficConditionSubCauseCode ::= INTEGER { * This DE indicates a traffic direction that is relevant to information indicated in a message. * * The value shall be set to: - * - 0 `allTrafficDirections` - for all traffic directions, - * - 1 `upstreamTraffic` - for upstream traffic, - * - 2 `downstreamTraffic` - for downstream traffic, - * - 3 `oppositeTraffic` - for traffic in the opposite direction. + * - 0 'allTrafficDirections' - for all traffic directions, + * - 1 'upstreamTraffic' - for upstream traffic, + * - 2 'downstreamTraffic' - for downstream traffic, + * - 3 'oppositeTraffic' - for traffic in the opposite direction. * - * The terms `upstream`, `downstream` and `oppositeTraffic` are relative to the event position. + * The terms 'upstream', 'downstream' and 'oppositeTraffic' are relative to the event position. * * @note: Upstream traffic corresponds to the incoming traffic towards the event position, * and downstream traffic to the departing traffic away from the event position. @@ -3271,22 +3271,22 @@ TrafficDirection ::= ENUMERATED { * This DE represents the type of a traffic participant. * * The value shall be set to: - * - 0 `unknown` - information about traffic participant is not provided, - * - 1 `pedestrian` - human being not using a mechanical device for their trip (VRU profile 1), - * - 2 `cyclist` - non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), - * - 3 `moped` - light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class L1, L2 (VRU Profile 3), - * - 4 `motorcycles` - motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class L3, L4, L5, L6, L7 (VRU Profile 3), - * - 5 `passengerCar` - small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M1, - * - 6 `bus` - large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M2, M3, - * - 7 `lightTruck` - light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N1, - * - 8 `heavyTruck` - Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N2 and N3, - * - 9 `trailer` - unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class O, - * - 10 `specialVehicles` - vehicles which have special purposes other than the above (e.g. moving road works vehicle), - * - 11 `tram` - vehicle which runs on tracks along public streets, - * - 12 `lightVruVehicle` - human being traveling on light vehicle, incl. possible use of roller skates or skateboards (VRU profile 2), - * - 13 `animal` - animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), - * - 14 `agricultural` - agricultural and forestry vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class T, - * - 15 `roadSideUnit` - infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, + * - 0 'unknown' - information about traffic participant is not provided, + * - 1 'pedestrian' - human being not using a mechanical device for their trip (VRU profile 1), + * - 2 'cyclist' - non-motorized unicycles, bicycles , tricycles, quadracycles (VRU profile 2), + * - 3 'moped' - light motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class L1, L2 (VRU Profile 3), + * - 4 'motorcycles' - motor vehicles with less than four wheels as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class L3, L4, L5, L6, L7 (VRU Profile 3), + * - 5 'passengerCar' - small passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M1, + * - 6 'bus' - large passenger vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class M2, M3, + * - 7 'lightTruck' - light Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N1, + * - 8 'heavyTruck' - Heavy Goods Vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class N2 and N3, + * - 9 'trailer' - unpowered vehicle that is intended to be towed by a powered vehicle as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class O, + * - 10 'specialVehicles' - vehicles which have special purposes other than the above (e.g. moving road works vehicle), + * - 11 'tram' - vehicle which runs on tracks along public streets, + * - 12 'lightVruVehicle' - human being traveling on light vehicle, incl. possible use of roller skates or skateboards (VRU profile 2), + * - 13 'animal' - animal presenting a safety risk to other road users e.g. domesticated dog in a city or horse (VRU Profile 4), + * - 14 'agricultural' - agricultural and forestry vehicles as defined in UNECE/TRANS/WP.29/78/Rev.4 [16] class T, + * - 15 'roadSideUnit' - infrastructure typically positioned outside of the drivable roadway (e.g. on a gantry, on a pole, on a stationary road works trailer); the infrastructure is static during the entire operation period of the ITS-S (e.g. no stop and go activity), * - 16-255 - are reserved for future usage. * @@ -3316,10 +3316,10 @@ TrafficParticipantType ::= INTEGER { * This DE indicates traffic rules that apply to vehicles at a certain position. * * The value shall be set to: - * - `0` - if overtaking is prohibited for all vehicles, - * - `1` - if overtaking is prohibited for trucks, - * - `2` - if vehicles should pass to the right lane, - * - `3` - if vehicles should pass to the left lane. + * - '0' - if overtaking is prohibited for all vehicles, + * - '1' - if overtaking is prohibited for trucks, + * - '2' - if vehicles should pass to the right lane, + * - '3' - if vehicles should pass to the left lane. * * @category: Infrastructure information, Traffic information * @revision: Editorial update in V2.1.1 @@ -3335,11 +3335,11 @@ TrafficRule ::= ENUMERATED { * This DE provides information about the presence of a trailer. * * The value shall be set to: - * - 0 `noTrailerPresent` - to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. - * - 1 `trailerPresentWithKnownLength` - to indicate that a trailer has been detected as present and the length is included in the vehicle length value. - * - 2 `trailerPresentWithUnknownLength` - to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. - * - 3 `trailerPresenceIsUnknown` - to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. - * - 4 `unavailable` - to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer + * - 0 'noTrailerPresent' - to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present. + * - 1 'trailerPresentWithKnownLength' - to indicate that a trailer has been detected as present and the length is included in the vehicle length value. + * - 2 'trailerPresentWithUnknownLength' - to indicate that a trailer has been detected as present and the length is not included in the vehicle length value. + * - 3 'trailerPresenceIsUnknown' - to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible. + * - 4 'unavailable' - to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer * nor the detection of trailer presence/absence is possible. * * @category: Vehicle information @@ -3357,9 +3357,9 @@ TrailerPresenceInformation ::= ENUMERATED { * This DE defines the probability that the ego trajectory intercepts with any other object's trajectory on the road. * * The value shall be set to: - * - `n (n >= 0 and n <= 50)` to indicate the actual probability, + * - 'n (n >= 0 and n <= 50)' to indicate the actual probability, * - the values between 51 and 62 are reserved, - * - `63`: to indicate that the information is unavailable. + * - '63': to indicate that the information is unavailable. * * @unit: 2 % * @category: Kinematic information @@ -3373,10 +3373,10 @@ TrajectoryInterceptionProbability ::= INTEGER { * This DE defines the confidence level of the trajectoryInterceptionProbability. * * The value shall be set to: - * - `0` - to indicate confidence level less than 50 %, - * - `1` - to indicate confidence level greater than or equal to 50 % and less than 70 %, - * - `2` - to indicate confidence level greater than or equal to 70 % and less than 90 %, - * - `3` - to indicate confidence level greater than or equal to 90%. + * - '0' - to indicate confidence level less than 50 %, + * - '1' - to indicate confidence level greater than or equal to 50 % and less than 70 %, + * - '2' - to indicate confidence level greater than or equal to 70 % and less than 90 %, + * - '3' - to indicate confidence level greater than or equal to 90%. * * @category: Kinematic information * @revision: Created in V2.1.1 @@ -3402,8 +3402,8 @@ TransmissionInterval::= INTEGER (1..10000) * This DE provides the turning direction. * * The value shall be set to: - * - `left` for turning to te left. - * - `right`for turing to the right. + * - 'left' for turning to te left. + * - 'right'for turing to the right. * * @category: Kinematic information * @revision: Created in V2.1.1 @@ -3417,9 +3417,9 @@ TurningDirection::= ENUMERATED { * This DE represents the smallest circular turn (i.e. U-turn) that the vehicle is capable of making. * * The value shall be set to: - * - `n (n > 0 and n < 254)` to indicate the applicable value is equal to or less than n x 0,4 metre, and greater than (n-1) x 0,4 metre, - * - `254` to indicate that the turning radius is greater than 253 x 0,4 metre = 101.2 metres, - * - `255` to indicate that the information is unavailable. + * - 'n (n > 0 and n < 254)' to indicate the applicable value is equal to or less than n x 0,4 metre, and greater than (n-1) x 0,4 metre, + * - '254' to indicate that the turning radius is greater than 253 x 0,4 metre = 101.2 metres, + * - '255' to indicate that the information is unavailable. * * For vehicle with tracker, the turning radius applies to the vehicle only. * @@ -3454,20 +3454,20 @@ ValidityDuration::= INTEGER { VDS ::= IA5String (SIZE(6)) /** - * This DE represents the value of the sub cause codes of the @ref CauseCode `vehicleBreakdown`. + * This DE represents the value of the sub cause codes of the @ref CauseCode 'vehicleBreakdown'. * * The value shall be set to: - * - 0 `unavailable` - in case further detailed information on cause of vehicle break down is unavailable, - * - 1 `lackOfFuel` - in case vehicle break down is due to lack of fuel, - * - 2 `lackOfBatteryPower` - in case vehicle break down is caused by lack of battery power, - * - 3 `engineProblem` - in case vehicle break down is caused by an engine problem, - * - 4 `transmissionProblem` - in case vehicle break down is caused by transmission problem, - * - 5 `engineCoolingProblem`- in case vehicle break down is caused by an engine cooling problem, - * - 6 `brakingSystemProblem`- in case vehicle break down is caused by a braking system problem, - * - 7 `steeringProblem` - in case vehicle break down is caused by a steering problem, - * - 8 `tyrePuncture` - in case vehicle break down is caused by tyre puncture, - * - 9 `tyrePressureProblem` - in case low tyre pressure in detected, - * - 10 `vehicleOnFire` - in case the vehicle is on fire. + * - 0 'unavailable' - in case further detailed information on cause of vehicle break down is unavailable, + * - 1 'lackOfFuel' - in case vehicle break down is due to lack of fuel, + * - 2 'lackOfBatteryPower' - in case vehicle break down is caused by lack of battery power, + * - 3 'engineProblem' - in case vehicle break down is caused by an engine problem, + * - 4 'transmissionProblem' - in case vehicle break down is caused by transmission problem, + * - 5 'engineCoolingProblem'- in case vehicle break down is caused by an engine cooling problem, + * - 6 'brakingSystemProblem'- in case vehicle break down is caused by a braking system problem, + * - 7 'steeringProblem' - in case vehicle break down is caused by a steering problem, + * - 8 'tyrePuncture' - in case vehicle break down is caused by tyre puncture, + * - 9 'tyrePressureProblem' - in case low tyre pressure in detected, + * - 10 'vehicleOnFire' - in case the vehicle is on fire. * - 11-255 - are reserved for future usage. * * @category: Traffic information @@ -3493,9 +3493,9 @@ VehicleBreakdownSubCauseCode ::= INTEGER { * equipment which may result in varying height, the largest possible height shall be used. * * The value shall be set to: - * - `n (n >0 and n < 127)` indicates the applicable value is equal to or less than n x 0,05 metre, and greater than (n-1) x 0,05 metre, - * - `127` indicates that the vehicle width is greater than 6,3 metres, - * - `128` indicates that the information in unavailable. + * - 'n (n >0 and n < 127)' indicates the applicable value is equal to or less than n x 0,05 metre, and greater than (n-1) x 0,05 metre, + * - '127' indicates that the vehicle width is greater than 6,3 metres, + * - '128' indicates that the information in unavailable. * * @unit: 0,05 metre * @category: Vehicle information @@ -3510,11 +3510,11 @@ VehicleHeight ::= INTEGER { * This DE provides information about the presence of a trailer. * * The value shall be set to: - * - 0 `noTrailerPresent` - to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present, - * - 1 `trailerPresentWithKnownLength` - to indicate that a trailer has been detected as present and the length is included in the vehicle length value, - * - 2 `trailerPresentWithUnknownLength` - to indicate that a trailer has been detected as present and the length is not included in the vehicle length value, - * - 3 `trailerPresenceIsUnknown` - to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible, - * - 4 `unavailable` - to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer, + * - 0 'noTrailerPresent' - to indicate that no trailer is present, i.e. either the vehicle is physically not enabled to tow a trailer or it has been detected that no trailer is present, + * - 1 'trailerPresentWithKnownLength' - to indicate that a trailer has been detected as present and the length is included in the vehicle length value, + * - 2 'trailerPresentWithUnknownLength' - to indicate that a trailer has been detected as present and the length is not included in the vehicle length value, + * - 3 'trailerPresenceIsUnknown' - to indicate that information about the trailer presence is unknown, i.e. the vehicle is physically enabled to tow a trailer but the detection of trailer presence/absence is not possible, + * - 4 'unavailable' - to indicate that the information about the presence of a trailer is not available, i.e. it is neither known whether the vehicle is able to tow a trailer, * nor the detection of trailer presence/absence is possible. * * @note: this DE is kept for backwards compatibility reasons only. It is recommended to use the @ref TrailerPresenceInformation instead. @@ -3533,9 +3533,9 @@ VehicleLengthConfidenceIndication ::= ENUMERATED { * This DE represents the length of a vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 1022)` to indicate the applicable value n is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, - * - `1 022` to indicate that the vehicle length is greater than 102.1 metres, - * - `1 023` to indicate that the information in unavailable. + * - 'n (n > 0 and n < 1022)' to indicate the applicable value n is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, + * - '1 022' to indicate that the vehicle length is greater than 102.1 metres, + * - '1 023' to indicate that the information in unavailable. * * * @unit: 0,1 metre @@ -3551,9 +3551,9 @@ VehicleLengthValue ::= INTEGER { * This DE represents the mass of an empty loaded vehicle. * * The value shall be set to: - * - `n (n > 0 and n < 1023)` to indicate that the applicable value is equal to or less than n x 10^5 gramm, and greater than (n-1) x 10^5 gramm, - * - `1 023` indicates that the vehicle mass is greater than 102 200 000 g, - * - `1 024` indicates the vehicle mass information is unavailable. + * - 'n (n > 0 and n < 1023)' to indicate that the applicable value is equal to or less than n x 10^5 gramm, and greater than (n-1) x 10^5 gramm, + * - '1 023' indicates that the vehicle mass is greater than 102 200 000 g, + * - '1 024' indicates the vehicle mass information is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [8], clause 4.6. * @@ -3570,22 +3570,22 @@ VehicleMass ::= INTEGER { * This DE indicates the role played by a vehicle at a point in time. * * The value shall be set to: - * - 0 `default` - to indicate the default vehicle role as indicated by the vehicle type, - * - 1 `publicTransport` - to indicate that the vehicle is used to operate public transport service, - * - 2 `specialTransport` - to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, - * - 3 `dangerousGoods` - to indicate that the vehicle is used for dangerous goods transportation, - * - 4 `roadWork` - to indicate that the vehicle is used to realize roadwork or road maintenance mission, - * - 5 `rescue` - to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, - * - 6 `emergency` - to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, - * - 7 `safetyCar` - to indicate that the vehicle is used for public safety, e.g. patrol, - * - 8 `agriculture` - to indicate that the vehicle is used for agriculture, e.g. farm tractor, - * - 9 `commercial` - to indicate that the vehicle is used for transportation of commercial goods, - * - 10 `military` - to indicate that the vehicle is used for military purpose, - * - 11 `roadOperator` - to indicate that the vehicle is used in road operator missions, - * - 12 `taxi` - to indicate that the vehicle is used to provide an authorized taxi service. - * - 13 `reserved` - is reserved for future usage. - * - 14 `reserved` - is reserved for future usage. - * - 15 `reserved` - is reserved for future usage. + * - 0 'default' - to indicate the default vehicle role as indicated by the vehicle type, + * - 1 'publicTransport' - to indicate that the vehicle is used to operate public transport service, + * - 2 'specialTransport' - to indicate that the vehicle is used for special transport purpose, e.g. oversized trucks, + * - 3 'dangerousGoods' - to indicate that the vehicle is used for dangerous goods transportation, + * - 4 'roadWork' - to indicate that the vehicle is used to realize roadwork or road maintenance mission, + * - 5 'rescue' - to indicate that the vehicle is used for rescue purpose in case of an accident, e.g. as a towing service, + * - 6 'emergency' - to indicate that the vehicle is used for emergency mission, e.g. ambulance, fire brigade, + * - 7 'safetyCar' - to indicate that the vehicle is used for public safety, e.g. patrol, + * - 8 'agriculture' - to indicate that the vehicle is used for agriculture, e.g. farm tractor, + * - 9 'commercial' - to indicate that the vehicle is used for transportation of commercial goods, + * - 10 'military' - to indicate that the vehicle is used for military purpose, + * - 11 'roadOperator' - to indicate that the vehicle is used in road operator missions, + * - 12 'taxi' - to indicate that the vehicle is used to provide an authorized taxi service. + * - 13 'reserved' - is reserved for future usage. + * - 14 'reserved' - is reserved for future usage. + * - 15 'reserved' - is reserved for future usage. * * @category: Vehicle Information * @revision: Description updated in V2.1.1 (removed reference to CEN/TS 16157-3) @@ -3613,9 +3613,9 @@ VehicleRole ::= ENUMERATED { * This DE represents the width of a vehicle, excluding side mirrors and possible similar extensions. * The value shall be set to: - * - `n (n >0 and n < 61)` indicates the applicable value is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, - * - `61`indicates that the vehicle width is greater than 6,0 metres, - * - `62`indicates that the information in unavailable. + * - 'n (n >0 and n < 61)' indicates the applicable value is equal to or less than n x 0,1 metre, and greater than (n-1) x 0,1 metre, + * - '61'indicates that the vehicle width is greater than 6,0 metres, + * - '62'indicates that the information in unavailable. * * @unit: 0,1 metre * @category: Vehicle information @@ -3631,11 +3631,11 @@ VehicleWidth ::= INTEGER { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [21], clause 2.11. * * The value shall be set to: - * - `-160` for acceleration values equal to or less than -16 m/s^2, - * - `n (n > -160 and n <= 0)` to indicate downwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, - * - `n (n > 0 and n < 160)` to indicate upwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, - * - `160` for acceleration values greater than 15,9 m/s^2, - * - `161` when the data is unavailable. + * - '-160' for acceleration values equal to or less than -16 m/s^2, + * - 'n (n > -160 and n <= 0)' to indicate downwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - 'n (n > 0 and n < 160)' to indicate upwards acceleration equal to or less than n x 0,1 m/s^2, and greater than (n-1) x 0,1 m/s^2, + * - '160' for acceleration values greater than 15,9 m/s^2, + * - '161' when the data is unavailable. * * @note: The empty load vehicle is defined in ISO 1176 [8], clause 4.6. * @@ -3655,10 +3655,10 @@ VerticalAccelerationValue ::= INTEGER { * It consist of a Bitmap encoding VRU profiles, to allow multiple profiles to be indicated in a single cluster (heterogeneous cluster if more than one profile). * * The corresponding bit shall be set to 1 under the following conditions: - * - 0 `pedestrian` - indicates that the VRU cluster contains at least one pedestrian VRU, - * - 1 `bicycle` - indicates that the VRU cluster contains at least one bicycle VRU member, - * - 2 `motorcyclist`- indicates that the VRU cluster contains at least one motorcycle VRU member, - * - 3 `animal` - indicates that the VRU cluster contains at least one animal VRU member. + * - 0 'pedestrian' - indicates that the VRU cluster contains at least one pedestrian VRU, + * - 1 'bicycle' - indicates that the VRU cluster contains at least one bicycle VRU member, + * - 2 'motorcyclist'- indicates that the VRU cluster contains at least one motorcycle VRU member, + * - 3 'animal' - indicates that the VRU cluster contains at least one animal VRU member. * * Otherwise, the corresponding bit shall be set to 0. * @@ -3676,15 +3676,15 @@ VruClusterProfiles ::= BIT STRING { * This DE represents the possible usage conditions of the VRU device. * - The value shall be set to: - * - 0 `unavailable` - to indicate that the usage conditions are unavailable, - * - 1 `other (1)` - to indicate that the VRU device is in a state not defined below, - * - 2 `idle (2)` - to indicate that the human is currently not interacting with the device, - * - 3 `listeningToAudio` - to indicate that any audio source other than calling is in use, - * - 4 `typing (4)` - to indicate that the human is texting or performaing any other manual input activity, - * - 5 `calling (5)` - to indicate that the VRU device is currently receiving a call, - * - 6 `playingGames (6)` - to indicate that the human is playing games, - * - 7 `reading (7)` - to indicate that the human is reading on the VRU device, - * - 8 `viewing (8)` - to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static. + * - 0 'unavailable' - to indicate that the usage conditions are unavailable, + * - 1 'other (1)' - to indicate that the VRU device is in a state not defined below, + * - 2 'idle (2)' - to indicate that the human is currently not interacting with the device, + * - 3 'listeningToAudio' - to indicate that any audio source other than calling is in use, + * - 4 'typing (4)' - to indicate that the human is texting or performaing any other manual input activity, + * - 5 'calling (5)' - to indicate that the VRU device is currently receiving a call, + * - 6 'playingGames (6)' - to indicate that the human is playing games, + * - 7 'reading (7)' - to indicate that the human is reading on the VRU device, + * - 8 'viewing (8)' - to indicate that the human is watching dynamic content, including following navigation prompts, viewing videos or other visual contents that are not static. * - value 9 to 255 - are reserved for future usage. Value 255 set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3707,12 +3707,12 @@ VruDeviceUsage ::= ENUMERATED { * This DE represents the possible VRU environment conditions. * * - The value shall be set to: - * - 0 `unavailable` - to indicate that the information on the type of environment is unavailable, - * - 1 `intersectionCrossing` - to indicate that the VRU is on an intersection or crossing, - * - 2 `zebraCrossing` - to indicate that the VRU is on a zebra crossing (crosswalk), - * - 3 `sidewalk` - to indicate that the VRU is on a sidewalk, - * - 4 `onVehicleRoad` - to indicate that the VRU is on a traffic lane, - * - 5 `protectedGeographicArea`- to indicate that the VRU is in a protected area. + * - 0 'unavailable' - to indicate that the information on the type of environment is unavailable, + * - 1 'intersectionCrossing' - to indicate that the VRU is on an intersection or crossing, + * - 2 'zebraCrossing' - to indicate that the VRU is on a zebra crossing (crosswalk), + * - 3 'sidewalk' - to indicate that the VRU is on a sidewalk, + * - 4 'onVehicleRoad' - to indicate that the VRU is on a traffic lane, + * - 5 'protectedGeographicArea'- to indicate that the VRU is in a protected area. * - value 5 to 255 - are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3732,13 +3732,13 @@ VruEnvironment ::= ENUMERATED { * This DE indicates the status of the possible human control over a VRU vehicle. * * The value shall be set to: - * - 0 `unavailable` - to indicate that the information is unavailable, - * - 1 `braking` - to indicate that the VRU is braking, - * - 2 `hardBraking` - to indicate that the VRU is braking hard, - * - 3 `stopPedaling` - to indicate that the VRU stopped pedaling, - * - 4 `brakingAndStopPedaling` - to indicate that the VRU stopped pedaling an is braking, - * - 5 `hardBrakingAndStopPedaling` - to indicate that the VRU stopped pedaling an is braking hard, - * - 6 `noReaction` - to indicate that the VRU is not changing its behavior. + * - 0 'unavailable' - to indicate that the information is unavailable, + * - 1 'braking' - to indicate that the VRU is braking, + * - 2 'hardBraking' - to indicate that the VRU is braking hard, + * - 3 'stopPedaling' - to indicate that the VRU stopped pedaling, + * - 4 'brakingAndStopPedaling' - to indicate that the VRU stopped pedaling an is braking, + * - 5 'hardBrakingAndStopPedaling' - to indicate that the VRU stopped pedaling an is braking hard, + * - 6 'noReaction' - to indicate that the VRU is not changing its behavior. * - 7 to 255 - are reserved for future usage. Value 255 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3759,10 +3759,10 @@ VruMovementControl ::= ENUMERATED { * This DE indicates the profile of a pedestrian. * * The value shall be set to: - * - 0 `unavailable` - to indicate that the information on is unavailable, - * - 1 `ordinary-pedestrian` - to indicate a pedestrian to which no more-specific profile applies, - * - 2 `road-worker` - to indicate a pedestrian with the role of a road worker, - * - 3 `first-responder` - to indicate a pedestrian with the role of a first responder. + * - 0 'unavailable' - to indicate that the information on is unavailable, + * - 1 'ordinary-pedestrian' - to indicate a pedestrian to which no more-specific profile applies, + * - 2 'road-worker' - to indicate a pedestrian with the role of a road worker, + * - 3 'first-responder' - to indicate a pedestrian with the role of a first responder. * - value 4 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3780,15 +3780,15 @@ VruSubProfilePedestrian ::= ENUMERATED { * This DE indicates the profile of a VRU and its light VRU vehicle / mounted animal. * * The value shall be set to: - * - 0 `unavailable` - to indicate that the information is unavailable, - * - 1 `bicyclist ` - to indicate a cycle and bicyclist, - * - 2 `wheelchair-user` - to indicate a wheelchair and its user, - * - 3 `horse-and-rider` - to indicate a horse and rider, - * - 4 `rollerskater` - to indicate a rolleskater and skater, - * - 5 `e-scooter` - to indicate an e-scooter and rider, - * - 6 `personal-transporter` - to indicate a personal-transporter and rider, - * - 7 `pedelec` - to indicate a pedelec and rider, - * - 8 `speed-pedelec` - to indicate a speed-pedelec and rider. + * - 0 'unavailable' - to indicate that the information is unavailable, + * - 1 'bicyclist ' - to indicate a cycle and bicyclist, + * - 2 'wheelchair-user' - to indicate a wheelchair and its user, + * - 3 'horse-and-rider' - to indicate a horse and rider, + * - 4 'rollerskater' - to indicate a rolleskater and skater, + * - 5 'e-scooter' - to indicate an e-scooter and rider, + * - 6 'personal-transporter' - to indicate a personal-transporter and rider, + * - 7 'pedelec' - to indicate a pedelec and rider, + * - 8 'speed-pedelec' - to indicate a speed-pedelec and rider. * - 9 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3811,11 +3811,11 @@ VruSubProfileBicyclist ::= ENUMERATED { * This DE indicates the profile of a motorcyclist and corresponding vehicle. * * The value shall be set to: - * - 0 `unavailable ` - to indicate that the information is unavailable, - * - 1 `moped` - to indicate a moped and rider, - * - 2 `motorcycle` - to indicate a motorcycle and rider, - * - 3 `motorcycle-and-sidecar-right` - to indicate a motorcycle with sidecar on the right and rider, - * - 4 `motorcycle-and-sidecar-left` - to indicate a motorcycle with sidecar on the left and rider. + * - 0 'unavailable ' - to indicate that the information is unavailable, + * - 1 'moped' - to indicate a moped and rider, + * - 2 'motorcycle' - to indicate a motorcycle and rider, + * - 3 'motorcycle-and-sidecar-right' - to indicate a motorcycle with sidecar on the right and rider, + * - 4 'motorcycle-and-sidecar-left' - to indicate a motorcycle with sidecar on the left and rider. * - 5 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3834,10 +3834,10 @@ VruSubProfileMotorcyclist ::= ENUMERATED { * This DE indicates the profile of an animal * * The value shall be set to: - * - 0 `unavailable` - to indicate that the information is unavailable, - * - 1 `wild-animal` - to indicate a animal living in the wildness, - * - 2 `farm-animal` - to indicate an animal beloning to a farm, - * - 3 `service-animal` - to indicate an animal that supports a human being. + * - 0 'unavailable' - to indicate that the information is unavailable, + * - 1 'wild-animal' - to indicate a animal living in the wildness, + * - 2 'farm-animal' - to indicate an animal beloning to a farm, + * - 3 'service-animal' - to indicate an animal that supports a human being. * - 4 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3855,10 +3855,10 @@ VruSubProfileAnimal ::= ENUMERATED { * This DE indicates the approximate size of a VRU including the VRU vehicle used. * * The value shall be set to: - * - 0 `unavailable` - to indicate that there is no matched size class or due to privacy reasons in profile 1, - * - 1 `low` - to indicate that the VRU size class is low depending on the VRU profile, - * - 2 `medium` - to indicate that the VRU size class is medium depending on the VRU profile, - * - 3 `high` - to indicate that the VRU size class is high depending on the VRU profile. + * - 0 'unavailable' - to indicate that there is no matched size class or due to privacy reasons in profile 1, + * - 1 'low' - to indicate that the VRU size class is low depending on the VRU profile, + * - 2 'medium' - to indicate that the VRU size class is medium depending on the VRU profile, + * - 3 'high' - to indicate that the VRU size class is high depending on the VRU profile. * - 4 to 15 - are reserved for future usage. Value 15 is set to "max" in order to bound the size of the encoded field. * * @category: VRU information @@ -3878,12 +3878,12 @@ VruSizeClass ::= ENUMERATED { * The value of each bit indicates the state of the switch, which commands the corresponding light. * The bit corresponding to a specific light shall be set to 1, when the corresponding switch is turned on, either manually by the driver or VRU * or automatically by a vehicle or VRU system: - * - 0 `unavailable` - indicates no information available, - * - 1 `backFlashLight ` - indicates the status of the back flash light, - * - 2 `helmetLight` - indicates the status of the helmet light, - * - 3 `armLight` - indicates the status of the arm light, - * - 4 `legLight` - indicates the status of the leg light, - * - 5 `wheelLight` - indicates the status of the wheel light. + * - 0 'unavailable' - indicates no information available, + * - 1 'backFlashLight ' - indicates the status of the back flash light, + * - 2 'helmetLight' - indicates the status of the helmet light, + * - 3 'armLight' - indicates the status of the arm light, + * - 4 'legLight' - indicates the status of the leg light, + * - 5 'wheelLight' - indicates the status of the wheel light. * - Bits 6 to 8 - are reserved for future use. * The bit values do not indicate if the corresponding lamps are alight or not. * If VRU is not equipped with a certain light or if the light switch status information is not available, the corresponding bit shall be set to 0. @@ -3904,9 +3904,9 @@ VruSpecificExteriorLights ::= BIT STRING { * This DE indicates the perpendicular distance between front and rear axle of the wheel base of vehicle. * * The value shall be set to: - * - `n (n >= 1 and n < 126)` if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, - * - `126` indicates that the wheel base distance is equal to or greater than 12,5 metres, - * - `127` indicates that the information is unavailable. + * - 'n (n >= 1 and n < 126)' if the value is equal to or less than n x 0,1 metre and more than (n-1) x 0,1 metre, + * - '126' indicates that the wheel base distance is equal to or greater than 12,5 metres, + * - '127' indicates that the information is unavailable. * * @unit 0,1 metre * @category: Vehicle information @@ -3922,9 +3922,9 @@ WheelBaseVehicle ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `n (n >= 1 and n < 126)` if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, - * - `126` if the confidence value is out of range, i.e. greater than 12,5 degrees, - * - `127` if the confidence value is not available. + * - 'n (n >= 1 and n < 126)' if the confidence value is equal to or less than n x 0,1 degrees and more than (n-1) x 0,1 degrees, + * - '126' if the confidence value is out of range, i.e. greater than 12,5 degrees, + * - '127' if the confidence value is not available. * * * @unit 0,1 degrees @@ -3965,12 +3965,12 @@ Wgs84AngleValue ::= INTEGER { WMInumber ::= IA5String (SIZE(1..3)) /** - * This DE represents the sub cause codes of the @ref CauseCode `wrongWayDriving` . + * This DE represents the sub cause codes of the @ref CauseCode 'wrongWayDriving' . * * The value shall be set to: - * - 0 `unavailable` - in case further detailed information on wrong way driving event is unavailable, - * - 1 `wrongLane` - in case vehicle is driving on a lane for which it has no authorization to use, - * - 2 `wrongDirection` - in case vehicle is driving in a direction that it is not allowed, + * - 0 'unavailable' - in case further detailed information on wrong way driving event is unavailable, + * - 1 'wrongLane' - in case vehicle is driving on a lane for which it has no authorization to use, + * - 2 'wrongDirection' - in case vehicle is driving in a direction that it is not allowed, * - 3-255 - reserved for future usage. * * @category: Traffic information @@ -3987,24 +3987,24 @@ WrongWayDrivingSubCauseCode ::= INTEGER { * If required, the confidence level can be defined by the corresponding standards applying this DE. * * The value shall be set to: - * - `0` if the confidence value is equal to or less than 0,01 degree/second, - * - `1` if the confidence value is equal to or less than 0,05 degrees/second or greater than 0,01 degree/second, - * - `2` if the confidence value is equal to or less than 0,1 degree/second or greater than 0,05 degree/second, - * - `3` if the confidence value is equal to or less than 1 degree/second or greater than 0,1 degree/second, - * - `4` if the confidence value is equal to or less than 5 degrees/second or greater than 1 degrees/second, - * - `5` if the confidence value is equal to or less than 10 degrees/second or greater than 5 degrees/second, - * - `6` if the confidence value is equal to or less than 100 degrees/second or greater than 10 degrees/second, - * - `7` if the confidence value is out of range, i.e. greater than 100 degrees/second, - * - `8` if the confidence value is unavailable. - * - * NOTE: The fact that a yaw rate value is received with confidence value set to `unavailable(8)` can be caused by + * - '0' if the confidence value is equal to or less than 0,01 degree/second, + * - '1' if the confidence value is equal to or less than 0,05 degrees/second or greater than 0,01 degree/second, + * - '2' if the confidence value is equal to or less than 0,1 degree/second or greater than 0,05 degree/second, + * - '3' if the confidence value is equal to or less than 1 degree/second or greater than 0,1 degree/second, + * - '4' if the confidence value is equal to or less than 5 degrees/second or greater than 1 degrees/second, + * - '5' if the confidence value is equal to or less than 10 degrees/second or greater than 5 degrees/second, + * - '6' if the confidence value is equal to or less than 100 degrees/second or greater than 10 degrees/second, + * - '7' if the confidence value is out of range, i.e. greater than 100 degrees/second, + * - '8' if the confidence value is unavailable. + * + * NOTE: The fact that a yaw rate value is received with confidence value set to 'unavailable(8)' can be caused by * several reasons, such as: * - the sensor cannot deliver the accuracy at the defined confidence level because it is a low-end sensor, * - the sensor cannot calculate the accuracy due to lack of variables, or * - there has been a vehicle bus (e.g. CAN bus) error. * In all 3 cases above, the yaw rate value may be valid and used by the application. * - * If a yaw rate value is received and its confidence value is set to `outOfRange(7)`, it means that the + * If a yaw rate value is received and its confidence value is set to 'outOfRange(7)', it means that the * yaw rate value is not valid and therefore cannot be trusted. Such value is not useful the application. * * @category: Vehicle information @@ -4029,13 +4029,13 @@ YawRateConfidence ::= ENUMERATED { * The value shall be provided in the vehicle coordinate system as defined in ISO 8855 [21], clause 2.11. * * The value shall be set to: - * - `-32 766` to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right, - * - `n (n > -32 766 and n <= 0)` to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, + * - '-32 766' to indicate that the yaw rate is equal to or greater than 327,66 degrees/second to the right, + * - 'n (n > -32 766 and n <= 0)' to indicate that the rotation is clockwise (i.e. to the right) and is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s, - * - `n (n > 0 and n < 32 766)` to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, + * - 'n (n > 0 and n < 32 766)' to indicate that the rotation is anti-clockwise (i.e. to the left) and is equal to or less than n x 0,01 degrees/s, and greater than (n-1) x 0,01 degrees/s, - * - `32 766` to indicate that the yaw rate is greater than 327.65 degrees/second to the left, - * - `32 767` to indicate that the information is not available. + * - '32 766' to indicate that the yaw rate is greater than 327.65 degrees/second to the left, + * - '32 767' to indicate that the information is not available. * * The yaw rate value shall be a raw data value, i.e. not filtered, smoothed or otherwise modified. * The reading instant should be the same as for the vehicle acceleration. @@ -5404,7 +5404,7 @@ ObjectDimension ::= SEQUENCE { /** * This DF represents a path with a set of path points. - * It shall contain up to `40` @ref PathPoint. + * It shall contain up to '40' @ref 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. @@ -5416,7 +5416,7 @@ Path::= SEQUENCE (SIZE(0..40)) OF PathPoint /** * This DF represents a path history with a set of path points. - * It shall contain up to `40` @ref PathPoint. + * It shall contain up to '40' @ref 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. @@ -5429,7 +5429,7 @@ PathHistory::= SEQUENCE (SIZE(40)) OF PathPoint /** * This DF represents a predicted path with a set of path points. - * It shall contain up to `15` @ref PathPoint. + * It shall contain up to '15' @ref 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. @@ -5519,7 +5519,7 @@ PathPointPredicted::= SEQUENCE { * This dimension shall be measured along the direction of the x-axis after all the rotations have been applied. * * @field objectAge: 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. + * 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. * * @field objectPerceptionQuality: optional confidence associated to the object. * @@ -5560,7 +5560,7 @@ PerceivedObject ::= SEQUENCE { * @field shapeReferencePoint: 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. * - * @field polygon: the polygonal area represented by a list of minimum `3` to maximum `16` @ref CartesianPosition3d. + * @field polygon: the polygonal area represented by a list of minimum '3' to maximum '16' @ref CartesianPosition3d. * All nodes of the polygon shall be considered relative to the shape's reference point. * * @field height: the optional height, present if the shape is a right prism extending in the positive z-axis. @@ -5744,7 +5744,7 @@ PtActivation ::= SEQUENCE { * @field stationaryHorizontalOpeningAngleEnd: The orientation indicating the end of the shape's * horizontal opening angle in positive angular direction with respect to the WGS84 coordinate system. * - * @field verticalOpeningAngleStart: optional orientation indicating the beginning of the shape`s + * @field verticalOpeningAngleStart: 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. * @@ -6451,9 +6451,9 @@ END * [4] United Nations: "Recommendations on the Transport of Dangerous Goods - Model Regulations", Twelfth revised edition. * @note: Available at http://www.unece.org/trans/danger/publi/unrec/12_e.html. * [5] ETSI TS 101 539-1: "Intelligent Transport Systems (ITS); V2X Applications; Part 1: Road Hazard Signalling (RHS) application requirements specification". - * [6] ISO 3779 (2011-07): "Road vehicles -- Vehicle identification number (VIN) Content and structure". + * [6] ISO 3779 (2011-07): "Road vehicles - Vehicle identification number (VIN) Content and structure". * [7] VDV recommendation 420 (1992): "Technical Requirements for Automatic Vehicle Location / Control Systems - Radio Data Transmission (BON Version) with Supplement 1 and Supplement 2". - * [8] ISO 1176:1990: "Road vehicles -- Masses -- Vocabulary and codes". + * [8] ISO 1176:1990: "Road vehicles - Masses - Vocabulary and codes". * [9] ETSI TS 101 556-1: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communication; Electric Vehicle Charging Spot Notification Specification". * [10] ETSI TS 101 556-2: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communication; Part 2: Communication system specification to support application requirements for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability". * [11] ETSI TS 101 556-3: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communications; Part 3: Communications system for the planning and reservation of EV energy supply using wireless networks". @@ -6466,7 +6466,7 @@ END * [18] ETSI TS 103 300-2 "Intelligent Transport System (ITS); Vulnerable Road Users (VRU) awareness; Part 2: Functional Architecture and Requirements definition; Release 2" * [19] ETSI TS 103 175 "Intelligent Transport Systems (ITS); Cross Layer DCC Management Entity for operation in the ITS G5A and ITS G5B medium" * [20] ETSI EN 302 571 "Intelligent Transport Systems (ITS); Radiocommunications equipment operating in the 5 855 MHz to 5 925 MHz frequency band; Harmonised Standard covering the essential requirements of article 3.2 of Directive 2014/53/EU" - * [21] ISO 8855: "Road vehicles -- Vehicle dynamics and road-holding ability -- Vocabulary". - * [22] ISO 3833, Road vehicles — Types — Terms and definitions + * [21] ISO 8855: "Road vehicles - Vehicle dynamics and road-holding ability - Vocabulary". + * [22] ISO 3833, Road vehicles - Types - Terms and definitions */ -- GitLab From cc29a005005908fc42219d741761a4ef51bd7ef8 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Mon, 10 Oct 2022 10:23:13 +0000 Subject: [PATCH 86/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 338406 -> 338281 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index 804a3a9ed7a24d6d485c97e3cb1f8d2bb3e19783..ce5adc5cf02cb5506a20ad4d9076998beecdee0a 100644 GIT binary patch delta 21289 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 Date: Mon, 10 Oct 2022 20:07:20 +0200 Subject: [PATCH 87/91] Work with reference table. Support post-types text --- asn2md.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/asn2md.py b/asn2md.py index 1ab6ee7..6fe4f6b 100755 --- a/asn2md.py +++ b/asn2md.py @@ -59,6 +59,7 @@ RE_DOXY_CATEGORY = re.compile(r'^\s*@category[\s:]+(.+)\n', re.MULTILINE) RE_DOXY_PARAM = re.compile(r'^\s*@(?:param|field):?\s+([\w-]+)\s*(.*?)\n\s*$', re.MULTILINE | re.DOTALL) RE_DOXY_SECTION = re.compile(r"^\s*@(brief|note|(class|struct|param|field|details)\s+([-\w]+)):?(.*?)(?=\n\s*@|\n\s*\n|\Z)", re.MULTILINE | re.DOTALL) +RE_NOTE_SECTION = re.compile(r"^\s*@(note):?(.*?)(?=\n\s*@|\n\s*\n|\Z)", re.MULTILINE | re.DOTALL) # RE_TYPE = re.compile(r'(([A-Z][\w-]*)\s*::=[\w \t]+(?:{+(.*?)}+)?.*?)\n\s*\n', re.MULTILINE | re.DOTALL) RE_TYPE = re.compile(r'^\s*([A-Z][\w-]*)?\s*([{} \t:\w-]*?)?::=([\w \t]+.*?)\n\s*\n', re.MULTILINE | re.DOTALL) @@ -98,7 +99,7 @@ def parseText(content, indent=None): content = RE_GREATEQ_SIGN.sub('≥', content) - content = RE_REFERENCE_NUMBER.sub('[\\g<0>](#markdown-header-references)', content) + content = RE_REFERENCE_NUMBER.sub('[\\g<0>](#references)', content) return indentLines(content, indent) @@ -306,6 +307,13 @@ def parseModule(mname, content): for m in RE_TYPE.finditer(content[cpos:]): ret += repl_type (m, m.string[pos:m.start()]) pos = m.end() + + v = parseText(parseOptions(parseDoxyComments(content[pos:]), m_options)) + if len(v): + def repl_note (m): + return '\n>>>\n' + 'NOTE: ' + m.group(2).lstrip(":, \t").lstrip('\n').rstrip() + '\n>>>\n' + ret += '\n\n' + RE_NOTE_SECTION.sub(repl_note, v).strip() +'\n' + return ret -- GitLab From 255a9af4a14ecdd9899bf7626f3b3cd66526e7f3 Mon Sep 17 00:00:00 2001 From: Denis Filatov Date: Mon, 10 Oct 2022 20:08:21 +0200 Subject: [PATCH 88/91] put reference table inside module. Convert reference table to numbered list. Add links for some references --- ETSI-ITS-CDD.asn | 54 ++++++++++++++++++++++-------------------------- 1 file changed, 25 insertions(+), 29 deletions(-) diff --git a/ETSI-ITS-CDD.asn b/ETSI-ITS-CDD.asn index f53898a..e163e43 100644 --- a/ETSI-ITS-CDD.asn +++ b/ETSI-ITS-CDD.asn @@ -6437,36 +6437,32 @@ YawRate::= SEQUENCE { yawRateConfidence YawRateConfidence } -END - ------------------------------------------- --- References: ------------------------------------------ /** - * - * [1] ETSI TS 103 900: "Intelligent Transport Systems (ITS); Vehicular Communications; Basic Set of Applications; Part 2: Specification of Cooperative Awareness Basic Service; Release 2". - * [2] ETSI TS 103 831: "Intelligent Transport Systems (ITS); Vehicular Communications; Basic Set of Applications; Part 3: Specifications of Decentralized Environmental Notification Basic Service"; Release 2. - * [3] European Agreement (Applicable as from 1 January 2011): "Concerning the International Carriage of Dangerous Goods by Road". - * @note: Available at http://www.unece.org/trans/danger/publi/adr/adr2011/11ContentsE.html. - * [4] United Nations: "Recommendations on the Transport of Dangerous Goods - Model Regulations", Twelfth revised edition. - * @note: Available at http://www.unece.org/trans/danger/publi/unrec/12_e.html. - * [5] ETSI TS 101 539-1: "Intelligent Transport Systems (ITS); V2X Applications; Part 1: Road Hazard Signalling (RHS) application requirements specification". - * [6] ISO 3779 (2011-07): "Road vehicles - Vehicle identification number (VIN) Content and structure". - * [7] VDV recommendation 420 (1992): "Technical Requirements for Automatic Vehicle Location / Control Systems - Radio Data Transmission (BON Version) with Supplement 1 and Supplement 2". - * [8] ISO 1176:1990: "Road vehicles - Masses - Vocabulary and codes". - * [9] ETSI TS 101 556-1: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communication; Electric Vehicle Charging Spot Notification Specification". - * [10] ETSI TS 101 556-2: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communication; Part 2: Communication system specification to support application requirements for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability". - * [11] ETSI TS 101 556-3: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communications; Part 3: Communications system for the planning and reservation of EV energy supply using wireless networks". - * [12] ETSI TS 103 300-3: "Intelligent Transport Systems (ITS); Vulnerable Road Users (VRU) awareness; Part 3: Specification of VRU awareness basic service; Release 2" - * [13] ETSI TS 103 724: "Intelligent Transport Systems (ITS); Facilities layer function; Interference Management Zone Message (IMZM); Release 2" - * [14] ETSI TS 102 792: "Intelligent Transport Systems (ITS); Mitigation techniques to avoid interference between European CEN Dedicated Short Range Communication (CEN DSRC) equipment and Intelligent Transport Systems (ITS) operating in the 5 GHz frequency range". - * [15] ETSI TS 103 301: "Intelligent Transport Systems (ITS); Vehicular Communications; Basic Set of Applications; Facilities layer protocols and communication requirements for infrastructure services; Release 2". - * [16] UNECE/TRANS/WP.29/78/Rev.4: "Consolidated Resolution on the Construction of Vehicles (R.E.3)". - * [17] ETSI EN 302 890-1: "Intelligent Transport Systems (ITS); Facilities layer function; Part 1: Services Announcement (SA) specification". - * [18] ETSI TS 103 300-2 "Intelligent Transport System (ITS); Vulnerable Road Users (VRU) awareness; Part 2: Functional Architecture and Requirements definition; Release 2" - * [19] ETSI TS 103 175 "Intelligent Transport Systems (ITS); Cross Layer DCC Management Entity for operation in the ITS G5A and ITS G5B medium" - * [20] ETSI EN 302 571 "Intelligent Transport Systems (ITS); Radiocommunications equipment operating in the 5 855 MHz to 5 925 MHz frequency band; Harmonised Standard covering the essential requirements of article 3.2 of Directive 2014/53/EU" - * [21] ISO 8855: "Road vehicles - Vehicle dynamics and road-holding ability - Vocabulary". - * [22] ISO 3833, Road vehicles - Types - Terms and definitions + * ## References: + * 1. ETSI TS 103 900: "Intelligent Transport Systems (ITS); Vehicular Communications; Basic Set of Applications; Part 2: Specification of Cooperative Awareness Basic Service; Release 2". + * 2. ETSI TS 103 831: "Intelligent Transport Systems (ITS); Vehicular Communications; Basic Set of Applications; Part 3: Specifications of Decentralized Environmental Notification Basic Service"; Release 2. + * 3. [European Agreement (Applicable as from 1 January 2011): "Concerning the International Carriage of Dangerous Goods by Road"](http://www.unece.org/trans/danger/publi/adr/adr2011/11ContentsE.html). + * 4. [United Nations: "Recommendations on the Transport of Dangerous Goods - Model Regulations", Twelfth revised edition](http://www.unece.org/trans/danger/publi/unrec/12_e.html). + * 5. ETSI TS 101 539-1: "Intelligent Transport Systems (ITS); V2X Applications; Part 1: Road Hazard Signalling (RHS) application requirements specification". + * 6. ISO 3779 (2011-07): "Road vehicles - Vehicle identification number (VIN) Content and structure". + * 7. VDV recommendation 420 (1992): "Technical Requirements for Automatic Vehicle Location / Control Systems - Radio Data Transmission (BON Version) with Supplement 1 and Supplement 2". + * 8. ISO 1176:1990: "Road vehicles - Masses - Vocabulary and codes". + * 9. ETSI TS 101 556-1: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communication; Electric Vehicle Charging Spot Notification Specification". + * 10. ETSI TS 101 556-2: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communication; Part 2: Communication system specification to support application requirements for Tyre Information System (TIS) and Tyre Pressure Gauge (TPG) interoperability". + * 11. ETSI TS 101 556-3: "Intelligent Transport Systems (ITS); Infrastructure to Vehicle Communications; Part 3: Communications system for the planning and reservation of EV energy supply using wireless networks". + * 12. ETSI TS 103 300-3: "Intelligent Transport Systems (ITS); Vulnerable Road Users (VRU) awareness; Part 3: Specification of VRU awareness basic service; Release 2" + * 13. ETSI TS 103 724: "Intelligent Transport Systems (ITS); Facilities layer function; Interference Management Zone Message (IMZM); Release 2" + * 14. ETSI TS 102 792: "Intelligent Transport Systems (ITS); Mitigation techniques to avoid interference between European CEN Dedicated Short Range Communication (CEN DSRC) equipment and Intelligent Transport Systems (ITS) operating in the 5 GHz frequency range". + * 15. ETSI TS 103 301: "Intelligent Transport Systems (ITS); Vehicular Communications; Basic Set of Applications; Facilities layer protocols and communication requirements for infrastructure services; Release 2". + * 16. UNECE/TRANS/WP.29/78/Rev.4: "Consolidated Resolution on the Construction of Vehicles (R.E.3)". + * 17. ETSI EN 302 890-1: "Intelligent Transport Systems (ITS); Facilities layer function; Part 1: Services Announcement (SA) specification". + * 18. ETSI TS 103 300-2 "Intelligent Transport System (ITS); Vulnerable Road Users (VRU) awareness; Part 2: Functional Architecture and Requirements definition; Release 2" + * 19. ETSI TS 103 175 "Intelligent Transport Systems (ITS); Cross Layer DCC Management Entity for operation in the ITS G5A and ITS G5B medium" + * 20. ETSI EN 302 571 "Intelligent Transport Systems (ITS); Radiocommunications equipment operating in the 5 855 MHz to 5 925 MHz frequency band; Harmonised Standard covering the essential requirements of article 3.2 of Directive 2014/53/EU" + * 21. ISO 8855: "Road vehicles - Vehicle dynamics and road-holding ability - Vocabulary". + * 22. ISO 3833, "Road vehicles - Types - Terms and definitions". */ +END + -- GitLab From eda26e2d5a7bcb6666773a41139c5890ac5e964e Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Mon, 10 Oct 2022 18:08:49 +0000 Subject: [PATCH 89/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 338281 -> 340821 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index ce5adc5cf02cb5506a20ad4d9076998beecdee0a..9cd0cc4549c34701ed8024318801073c92d4df6a 100644 GIT binary patch delta 3966 zcmb_fZD?E98RlHc-RzKNB{BB0wSDWXn>AudSF$Y2%Eug8ah%nzD=A)Bx{vFtBk7W> zd)514Pa(~vWwemB8^lRYk}=XS_G1i2hG{NgV_C{r*PJh2U#!0T-*5M>JpOLKAN?e` zF0-{1ImxCc$Q$f%HrUTzOOqZJPm^P<%US-{fWPMe*(Le$Lu7EoM+A|b?A3<@2iW=3 zx}Vzy_|8AF|(FC4XW!uaOu0$?uc&W9*gNB=6t9O$K|! zHvWM-#NUU<8DsN@gBkYPrQoOiOMfPn9=7uysru*dksp*;a$fp9{}E+V&q!C;U!Re_ z!(Ptek5|v(y`Sf#N0^$IjqebFhalkS{*l1$L+dErN}6u&1)FW!9)-z+~B?w93ml+}vVOr=ZwSvdk*T za9lB5#i~OrD$5}}RAwc3=kVgt*M=*OQ=5oHmY0{qu0d5AHm!2R;Vp?26{Ae8NX=c; zwTM!*_&5K2M3yrqHqdbFY`Ef7^$_A26?je(!`{CenD&PDLt&ZfC8q)w zUD9lPg%&m5%Xq$CNXQ zRfN1&HWcKlQHJ5%v3v-WHsA0x&$*f<3U7nm$v94^F^+F0|FjD6WHJTAym%wgB(J~N zVTlu5r#6f1|P)T1&!3xW#7|fEv^)*Tw1dI=D7} za~Y+F^0C37&a!Ep7UYn*jkk{#hj=tPvf)^Jw;nod?HcL#a0V^pPN3G86`XXqMH*V? z=;8rKhi|rDgher%IQ$J01_{GWyAxV6Hu}JNqX}=ChDQ}u)6p|g8M;zOQ-G3dsN6%- z?9124ey?Lb4B=j*;okOEF-WGi&CFTcrQE2!BW&b37dJ&}DNCkS1PxutY9;_!#L81@ zK-Tq|lPHs&gDG@(v=p@Ye1#t+$0tcA0l0sN7xTGH2)IMl#PH(1--d<(hn|H9kpr3` z*pmQn`q&wqcDNQslRDr8D+_a!6P<4am#Hg&Bi>YtF(HM-Uq7Ry@o2%yW+_tFzEuuCw zg!RuirfA5*oq6TPJusWfkj& zQq|OkAT11gBNbCGis7@!O}5SxSu1>S62|yc;Y-KIkr1COpCsLJ3caT0> zE$!-Y7THu?7OnrkUT7&fI4zsP@Hja?mz>F9VSNE93jwRq5F>Boklv+O|3{X6b&GKspvVaYp?GLXU21rf=s~Gqvp9)#!jcwxg-eAN zi3l}NB-Wy9x=6f2T6<8W@V71Ei*;K^n@{_fazd#H;OJ2CO`;Do`kTZVq`DH9I?*gP zqNK}7Q$b#4d-0}QHr@)kCT20F4n#J{R-mkw~WLX#LX{^ z5{ub7y+Y=yqHsMFX mb8~z!=HDOB!1b<55E{74ob Date: Tue, 11 Oct 2022 10:06:05 +0000 Subject: [PATCH 90/91] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9596ff5..cc207a3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ -# ASN.1 modules for ETSI ITS Common Data Dictionary (ETSI TS 102 894-2) +# ASN.1 modules for ETSI ITS Common Data Dictionary (ETSI TS 102 894-2) Release 2 -The ASN.1 module for ETSI ITS Common Data Dictionary (CDD) is contained in the **ITS-Container.asn** file. -* The module is published in the **[ETSI TS 102 894-2 v1.3.1](https://www.etsi.org/deliver/etsi_ts/102800_102899/10289402/01.03.01_60/ts_10289402v010301p.pdf)** (2018-08). +The ASN.1 module for ETSI ITS Common Data Dictionary (CDD) is contained in the **ETSI-ITS-CDD.asn** file. +* The module is published in the **[ETSI TS 102 894-2 v2.1.1](https://www.etsi.org/deliver/etsi_ts/102800_102899/10289402/02.01.01_60/ts_10289402v020101p.pdf)**. ## License -- GitLab From fad9ad63dce28ba316b468beed00c5678a4311e1 Mon Sep 17 00:00:00 2001 From: "ASN.1 Checker" Date: Tue, 11 Oct 2022 10:20:07 +0000 Subject: [PATCH 91/91] Documentation update --- docs/ETSI-ITS-CDD.md | Bin 338281 -> 340821 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/ETSI-ITS-CDD.md b/docs/ETSI-ITS-CDD.md index ce5adc5cf02cb5506a20ad4d9076998beecdee0a..9cd0cc4549c34701ed8024318801073c92d4df6a 100644 GIT binary patch delta 3966 zcmb_fZD?E98RlHc-RzKNB{BB0wSDWXn>AudSF$Y2%Eug8ah%nzD=A)Bx{vFtBk7W> zd)514Pa(~vWwemB8^lRYk}=XS_G1i2hG{NgV_C{r*PJh2U#!0T-*5M>JpOLKAN?e` zF0-{1ImxCc$Q$f%HrUTzOOqZJPm^P<%US-{fWPMe*(Le$Lu7EoM+A|b?A3<@2iW=3 zx}Vzy_|8AF|(FC4XW!uaOu0$?uc&W9*gNB=6t9O$K|! zHvWM-#NUU<8DsN@gBkYPrQoOiOMfPn9=7uysru*dksp*;a$fp9{}E+V&q!C;U!Re_ z!(Ptek5|v(y`Sf#N0^$IjqebFhalkS{*l1$L+dErN}6u&1)FW!9)-z+~B?w93ml+}vVOr=ZwSvdk*T za9lB5#i~OrD$5}}RAwc3=kVgt*M=*OQ=5oHmY0{qu0d5AHm!2R;Vp?26{Ae8NX=c; zwTM!*_&5K2M3yrqHqdbFY`Ef7^$_A26?je(!`{CenD&PDLt&ZfC8q)w zUD9lPg%&m5%Xq$CNXQ zRfN1&HWcKlQHJ5%v3v-WHsA0x&$*f<3U7nm$v94^F^+F0|FjD6WHJTAym%wgB(J~N zVTlu5r#6f1|P)T1&!3xW#7|fEv^)*Tw1dI=D7} za~Y+F^0C37&a!Ep7UYn*jkk{#hj=tPvf)^Jw;nod?HcL#a0V^pPN3G86`XXqMH*V? z=;8rKhi|rDgher%IQ$J01_{GWyAxV6Hu}JNqX}=ChDQ}u)6p|g8M;zOQ-G3dsN6%- z?9124ey?Lb4B=j*;okOEF-WGi&CFTcrQE2!BW&b37dJ&}DNCkS1PxutY9;_!#L81@ zK-Tq|lPHs&gDG@(v=p@Ye1#t+$0tcA0l0sN7xTGH2)IMl#PH(1--d<(hn|H9kpr3` z*pmQn`q&wqcDNQslRDr8D+_a!6P<4am#Hg&Bi>YtF(HM-Uq7Ry@o2%yW+_tFzEuuCw zg!RuirfA5*oq6TPJusWfkj& zQq|OkAT11gBNbCGis7@!O}5SxSu1>S62|yc;Y-KIkr1COpCsLJ3caT0> zE$!-Y7THu?7OnrkUT7&fI4zsP@Hja?mz>F9VSNE93jwRq5F>Boklv+O|3{X6b&GKspvVaYp?GLXU21rf=s~Gqvp9)#!jcwxg-eAN zi3l}NB-Wy9x=6f2T6<8W@V71Ei*;K^n@{_fazd#H;OJ2CO`;Do`kTZVq`DH9I?*gP zqNK}7Q$b#4d-0}QHr@)kCT20F4n#J{R-mkw~WLX#LX{^ z5{ub7y+Y=yqHsMFX mb8~z!=HDOB!1b<55E{74ob