1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
use crate;
/// Transform geodetic coordinates to geocentric using the specified
/// reference ellipsoid.
///
/// Status: canonical transformation.
///
/// Given:
/// n i32 ellipsoid identifier (Note 1)
/// elong f64 longitude (radians, east +ve, Note 3)
/// phi f64 latitude (geodetic, radians, Note 3)
/// height f64 height above ellipsoid (geodetic, Notes 2,3)
///
/// Returned:
/// xyz [f64; 3] geocentric vector (Note 2)
///
/// Returned (function value):
/// Result<[f64; 3], i32> status: 0 = OK
/// -1 = illegal identifier (Note 3)
/// -2 = illegal case (Note 3)
///
/// Notes:
///
/// 1) The identifier n is a number that specifies the choice of
/// reference ellipsoid. The following are supported:
///
/// n ellipsoid
///
/// 1 WGS84
/// 2 GRS80
/// 3 WGS72
///
/// The n value has no significance outside the SOFA software.
///
/// 2) The height (height, given) and the geocentric vector (xyz,
/// returned) are in meters.
///
/// 3) No validation is performed on the arguments elong, phi and
/// height. An error status -1 means that the identifier n is
/// illegal. An error status -2 protects against cases that would
/// lead to arithmetic exceptions.