Commit 1bb1d960 authored by ASN.1 Checker's avatar ASN.1 Checker
Browse files

Documentation update

parent 7df74823
Loading
Loading
Loading
Loading
+23 −6
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
OID: _{itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) denmPduRelease2 (103831) major-version-2 (2) minor-version-3 (3)}_

## Imports:
* **[ETSI-ITS-CDD](ETSI-ITS-CDD.md)** *{itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-4 (4) minor-version-1 (1)} WITH SUCCESSORS*<br/>
* **[ETSI-ITS-CDD](ETSI-ITS-CDD.md)** *{itu-t (0) identified-organization (4) etsi (0) itsDomain (5) wg1 (1) ts (102894) cdd (2) major-version-4 (4) minor-version-3 (3)} WITH SUCCESSORS*<br/>
## Data Elements:
### <a name="DENM"></a>DENM
This type represents the DENM PDU.
@@ -132,6 +132,12 @@ This type represents the situation container.
  the end position of the event along the road that is affected by the event w.r.t. the component eventPosition of the 
   Management container. This end position is represented by the length of the event along the road. 

* _eventEndFactor_ of type [**MultiplicativeFactor**](ETSI-ITS-CDD.md#MultiplicativeFactor)  OPTIONAL<br>
  an optional component that applies to the component eventEnd. It is a factor to be multiplied with the value given in eventEnd.

* _perceivedEvent_ of type [**PerceivedEvent**](#PerceivedEvent)  OPTIONAL <br>
  an optional component that, in case of vehicle ITS-S, indicates the nature of the information about the event.

```asn1
SituationContainer ::= SEQUENCE {
    informationQuality InformationQuality,
@@ -140,11 +146,13 @@ SituationContainer ::= SEQUENCE {
    eventZone          EventZone OPTIONAL,
    ...,
[[  linkedDenms        ActionIdList OPTIONAL,
    eventEnd           Position1d OPTIONAL ]]   
    eventEnd           Position1d OPTIONAL ]], 
[[  eventEndFactor     MultiplicativeFactor OPTIONAL,
    perceivedEvent     PerceivedEvent OPTIONAL ]] 
}
  ((WITH COMPONENTS {..., eventZone PRESENT, eventEnd ABSENT}) |
  ((WITH COMPONENTS {..., eventZone PRESENT, eventEnd ABSENT, eventEndFactor ABSENT}) |
   (WITH COMPONENTS {..., eventZone ABSENT, eventEnd PRESENT}) |
   (WITH COMPONENTS {..., eventZone ABSENT, eventEnd ABSENT}))
   (WITH COMPONENTS {..., eventZone ABSENT, eventEnd ABSENT, eventEndFactor ABSENT}))
```

### <a name="LocationContainer"></a>LocationContainer
@@ -456,6 +464,15 @@ This type specifies the default value for DENM validity duration used for DENM p
defaultValidity INTEGER ::= 600
```

### <a name="PerceivedEvent"></a>PerceivedEvent
This DE indicates whether a vehicle has perceived an event (e.g. a stationary vehicle using camera sensors) or whether it is itself the cause of the event.
 the value shall be set to:
 - True - in case the vehicle has perceived the event
 - False - in case the vehicle itself is the cause of the event (e.g. vehicle is stationary) or part of the cause (e.g. traffic jam) or is directly exposed to the environmental condition (e.g. adverse weather)
```asn1
PerceivedEvent::= BOOLEAN
```

### <a name="Termination"></a>Termination
This indicates the termination type of generated DENM, i.e. if it is a cancellation DENM or a negation DENM
```asn1
+1318 −353

File changed.

Preview size limit exceeded, changes collapsed.