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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
//! ERFA Earth Rotation Angle and Sidereal Time Functions
use crate*;
/// The equation of the equinoxes, compatible with IAU 2000 resolutions, given
/// the nutation in longitude and the mean obliquity.
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/ee00.c)
/// Equation of the equinoxes, compatible with IAU 2000 resolutions.
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/ee00a.c)
/// Equation of the equinoxes, compatible with IAU 2000 resolutions but using
/// the truncated nutation model IAU 2000B.
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/ee00b.c)
/// Equation of the equinoxes, compatible with IAU 2000 resolutions and IAU
/// 2006/2000A precession-nutation.
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/ee06a.c)
/// Equation of the equinoxes complementary terms, consistent with IAU 2000
/// resolutions.
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/eect00.c)
/// Equation of the equinoxes, IAU 1994 model.
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/eqeq94.c)
/// Earth rotation angle (IAU 2000 model).
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/era00.c)
/// Greenwich mean sidereal time (model consistent with IAU 2000 resolutions).
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/gmst00.c)
/// Greenwich mean sidereal time (consistent with IAU 2006 precession).
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/gmst06.c)
/// Universal Time to Greenwich mean sidereal time (IAU 1982 model).
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/gmst82.c)
/// Greenwich apparent sidereal time (consistent with IAU 2000 resolutions).
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/gst00a.c)
/// Greenwich apparent sidereal time (consistent with IAU 2000 resolutions but
/// using the truncated nutation model IAU 2000B).
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/gst00b.c)
/// Greenwich apparent sidereal time, IAU 2006, given the NPB matrix.
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/gst06.c)
/// Greenwich apparent sidereal time (consistent with IAU 2000 and 2006
/// resolutions).
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/gst06a.c)
/// Greenwich apparent sidereal time (consistent with IAU 1982/94 resolutions).
///
/// Please see the full ERFA docs for this function [here](https://github.com/liberfa/erfa/blob/master/src/gst94.c)