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

Documentation update

parent 3d3ac26a
Loading
Loading
Loading
Loading
+16 −16
Original line number Diff line number Diff line
@@ -376,8 +376,8 @@ PolygonalRegion ::= SEQUENCE SIZE (3..MAX) OF TwoDLocation
 certificates. The latitude and longitude fields contain the latitude and
 longitude as defined above.

* _latitude_ of type [**Latitude**](#Latitude) <br>
* _longitude_ of type [**Longitude**](#Longitude) <br>
* _latitude_ of type [**SecLatitude**](#SecLatitude) <br>
* _longitude_ of type [**SecLongitude**](#SecLongitude) <br>

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

@@ -640,9 +640,9 @@ SequenceOfRegionAndSubregions ::= SEQUENCE OF RegionAndSubregions
### <a name="ThreeDLocation"></a>This structure contains an estimate of 3D location. The details of
 the structure are given in the definitions of the individual fields below.

* _latitude_ of type [**Latitude**](#Latitude) <br>
* _longitude_ of type [**Longitude**](#Longitude) <br>
* _elevation_ of type [**Elevation**](#Elevation) <br>
* _latitude_ of type [**SecLatitude**](#SecLatitude) <br>
* _longitude_ of type [**SecLongitude**](#SecLongitude) <br>
* _elevation_ of type [**SecElevation**](#SecElevation) <br>

>>>
NOTE:&emsp;The units used in this data structure are consistent with the 
@@ -651,13 +651,13 @@ 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>This type contains an INTEGER encoding an estimate of the latitude
### <a name="SecLatitude"></a>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.
 The integer in the latitude field is no more than 900 000 000 and no less 
@@ -665,10 +665,10 @@ ThreeDLocation ::= SEQUENCE {
 the latitude was not available to the sender.
 
```asn1
Latitude ::= NinetyDegreeInt
SecLatitude ::= NinetyDegreeInt
```

### <a name="Longitude"></a>This type contains an INTEGER encoding an estimate of the longitude
### <a name="SecLongitude"></a>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.
 The integer in the longitude field is no more than 1 800 000 000 and no 
@@ -676,16 +676,16 @@ Latitude ::= NinetyDegreeInt
 indicate that the longitude was not available to the sender.
 
```asn1
Longitude ::= OneEightyDegreeInt
SecLongitude ::= OneEightyDegreeInt
```

### <a name="Elevation"></a>This structure contains an estimate of the geodetic altitude above
### <a name="SecElevation"></a>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
```

### <a name="NinetyDegreeInt"></a>The integer in the latitude field is no more than 900,000,000 and