Commit 85918c63 authored by Paul Taylor's avatar Paul Taylor
Browse files

Removed comments and ....

parent 1ac8be6a
Loading
Loading
Loading
Loading
Loading
+6 −17
Original line number Diff line number Diff line
@@ -97,57 +97,46 @@ VLANID ::= INTEGER (0..4095)

ServiceAccessIdentifier ::= UTF8String

-- Generic Percentage type
Percentage ::= INTEGER (1..100)
-- Generic percentage value
-- 1 to 100 = percentage (e.g., 68%, 95%, 99%)

AltitudeMeters ::= INTEGER (-1000..50000)
-- Range: -1000m (below sea level) to 50000m (stratosphere)

Altitude ::== CHOICE
{
	altitudeAboveGroundLevel  [0] AltitudeMeters,
	altitudeAboveMeanSeaLevel [1] AltitudeMeters,
	...
	altitudeAboveMeanSeaLevel [1] AltitudeMeters
}

UncertaintyMeters ::= INTEGER (1..MAX)
-- Uncertainty/error estimate in meters
-- 1 to MAX = estimated error radius in meters

GNSSLocation ::== SEQUENCE
{
	wGS84Location [0] WGS84Location,
	fixMode       [1] FixMode,
	...
	fixMode       [1] FixMode
}

WGS84Location ::== SEQUENCE
{
	location    [0] WGS84Coordinate,
	altitude    [1] Altitude OPTIONAL,	
	uncertainty [2] LocationUncertainty OPTIONAL,	
	...
	uncertainty [2] LocationUncertainty OPTIONAL
}

WGS84Coordinate ::= CHOICE
{
    wGS84CoordinateDecimal [0] Common-Parameters.WGS84CoordinateDecimal,
    wGS84CoordinateAngular [1] Common-Parameters.WGS84CoordinateAngular,
    ...
    wGS84CoordinateAngular [1] Common-Parameters.WGS84CoordinateAngular
}

LocationUncertainty ::== SEQUENCE
{
	shape      [0] UncertaintyShape,
	confidence [1] Percentage OPTIONAL,
	...
	confidence [1] Percentage OPTIONAL
}

UncertaintyShape ::== CHOICE
{
	...

}

END