Commit adbf7bde authored by Jasja Tijink's avatar Jasja Tijink
Browse files

Replace ITS-Container.asn

parent c04c8074
Loading
Loading
Loading
Loading
+56 −1
Original line number Diff line number Diff line
@@ -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),