Commit 16c9f852 authored by kovacsa's avatar kovacsa
Browse files

asn update

parent 8de957d5
Loading
Loading
Loading
Loading
+10 −6
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ ReferencePosition ::= SEQUENCE {
  elevationConfidence ElevationConfidence
}

DeltaPosition ::= SEQUENCE {
DeltaReferencePosition ::= SEQUENCE {
  deltaLongitude DeltaLongitude,
  deltaLatitude DeltaLatitude,
  positionConfidenceEllipse PosConfidenceEllipse
@@ -33,7 +33,7 @@ Longitude ::= INTEGER { oneMicrodegreeEast (10), oneMicrodegreeWest (-10), unkno

Latitude ::= INTEGER { oneMicrodegreeNorth (10), oneMicrodegreeSouth (-10), unknown(900000001) } (-900000000..900000001) -- multiples of 0.1 microdegree

Elevation ::= INTEGER { seaLevel (0),oneMeter (1) } (-1000..7191)
Elevation ::= INTEGER { seaLevel(0),oneMeter (1), unknown(7191) } (-1000..7191)

DeltaLongitude ::= INTEGER { oneMicrodegreeEast (10), oneMicrodegreeWest (-10), unknown(120) } (-120..120) -- multiples of 0.1 microdegree

@@ -47,11 +47,11 @@ PosConfidenceEllipse ::= SEQUENCE {
} 

PathPoint ::= SEQUENCE {
 pathPosition DeltaPosition,
 pathPosition DeltaReferencePosition,
 pathDeltaTime PathDeltaTime
}

PathDeltaTime ::= INTEGER { hundredMilliSecondsInPast(1), unkown(0), hundredMilliSecondsInFuture(-1) } (-31..31, ...)
PathDeltaTime ::= INTEGER { tenMilliSecondsInPast(1), unavailable(65535) } (0..65535, ...)

AccelerationControl ::= BIT STRING {
 notValid      (0),
@@ -155,7 +155,7 @@ VehicleHeight ::= INTEGER { tenCentimeters(1), outOfRange(62), notValid(63) } (0

VehicleWidth ::= INTEGER { tenCentimeters(1), outOfRange(62), notValid(63) } (0..63)

VehicleLengthNormal ::= INTEGER { unkown(0), tenCentimeters(1), outOfRange(127) } (0..127)
VehicleLengthNormal ::= INTEGER { tenCentimeters(1), outOfRange(127) } (1..127)

ExteriorLights ::= BIT STRING {
 lowBeamHeadlightsOn     (0),
@@ -207,7 +207,11 @@ PositionOfOccupants ::= BIT STRING {
 tier3NotDetectable   (9)
}

VehicleLength ::= CHOICE { vehicleLengthNormal VehicleLengthNormal, longTruck LongTruck}
VehicleLength ::= CHOICE { 
 vehicleLengthNormal VehicleLengthNormal, 
 longTruck LongTruck, 
 unknown NULL
}

VehicleLengthConfidenceIndication ::= ENUMERATED { noTrailerPresent(0), trailerPresentWithUnkownLength(1), 
trailerPresenceIsUnkown(2) }