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

Documentation update

parent 1e509d59
Loading
Loading
Loading
Loading
+16 −16
Original line number Diff line number Diff line
@@ -443,8 +443,8 @@ This structure is used to define validity regions for use in
 longitude as defined above.

Fields:
* latitude of type [**Latitude**](#Latitude) <br>
* longitude of type [**Longitude**](#Longitude) <br>
* latitude of type [**SecLatitude**](#SecLatitude) <br>
* longitude of type [**SecLongitude**](#SecLongitude) <br>
   

>>>
@@ -456,8 +456,8 @@ NOTE:&emsp;This data structure is consistent with the location encoding
>>>
```asn1
TwoDLocation ::= SEQUENCE {
  latitude  Latitude,
  longitude Longitude
  latitude  SecLatitude,
  longitude SecLongitude
}
```

@@ -736,10 +736,10 @@ This structure contains an estimate of 3D location. The details of
 the structure are given in the definitions of the individual fields below.

Fields:
* latitude of type [**Latitude**](#Latitude) <br>
* longitude of type [**Longitude**](#Longitude) <br>
* latitude of type [**SecLatitude**](#SecLatitude) <br>
* longitude of type [**SecLongitude**](#SecLongitude) <br>
   
* elevation of type [**Elevation**](#Elevation) <br>
* elevation of type [**SecElevation**](#SecElevation) <br>
   

>>>
@@ -749,14 +749,14 @@ NOTE:&emsp;The units used in this data structure are consistent with the
>>>
```asn1
ThreeDLocation ::= SEQUENCE {
  latitude  Latitude,
  longitude Longitude,
  elevation Elevation
  latitude  SecLatitude,
  longitude SecLongitude,
  elevation SecElevation
}
```


### <a name="Latitude"></a>Latitude
### <a name="SecLatitude"></a>SecLatitude
This type contains an INTEGER encoding an estimate of the latitude
 with precision 1/10th microdegree relative to the World Geodetic System
 (WGS)-84 datum as defined in NIMA Technical Report TR8350.2.
@@ -764,11 +764,11 @@ This type contains an INTEGER encoding an estimate of the latitude
 than ?900 000 000, except that the value 900 000 001 is used to indicate 
 the latitude was not available to the sender.
```asn1
Latitude ::= NinetyDegreeInt
SecLatitude ::= NinetyDegreeInt
```


### <a name="Longitude"></a>Longitude
### <a name="SecLongitude"></a>SecLongitude
This type contains an INTEGER encoding an estimate of the longitude
 with precision 1/10th microdegree relative to the World Geodetic System
 (WGS)-84 datum as defined in NIMA Technical Report TR8350.2.
@@ -776,17 +776,17 @@ This type contains an INTEGER encoding an estimate of the longitude
 less than ?1 799 999 999, except that the value 1 800 000 001 is used to 
 indicate that the longitude was not available to the sender.
```asn1
Longitude ::= OneEightyDegreeInt
SecLongitude ::= OneEightyDegreeInt
```


### <a name="Elevation"></a>Elevation
### <a name="SecElevation"></a>SecElevation
This structure contains an estimate of the geodetic altitude above
 or below the WGS84 ellipsoid. The 16-bit value is interpreted as an
 integer number of decimeters representing the height above a minimum
 height of -409.5 m, with the maximum height being 6143.9 m.
```asn1
Elevation ::= Uint16
SecElevation ::= Uint16
```