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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
//! ERFA wrapper functions for coordinate transformations and astronomical calculations.
//!
//! This module provides safe wrappers around the ERFA (Essential Routines for
//! Fundamental Astronomy) C library functions, ensuring compatibility with
//! astropy and other professional astronomy software.
//!
//! # Function Naming
//!
//! We use descriptive names instead of ERFA's cryptic abbreviations:
//! - `greenwich_mean_sidereal_time` instead of `gmst06`
//! - `greenwich_apparent_sidereal_time` instead of `gst06a`
//! - `earth_rotation_angle` instead of `era00`
//! - `bias_precession_nutation_matrix` instead of `pnm06a`
use crate;
/// Transform ICRS coordinates to observed (horizontal) coordinates.
///
/// This uses ERFA's Atco13 function which implements the full IAU 2000/2006
/// transformation pipeline including:
/// - Frame bias
/// - Precession-nutation
/// - Earth rotation
/// - Polar motion
/// - Diurnal aberration
/// - Atmospheric refraction
///
/// # Arguments
///
/// * `ra_icrs` - ICRS right ascension (radians)
/// * `dec_icrs` - ICRS declination (radians)
/// * `pr` - Proper motion in RA (radians/year)
/// * `pd` - Proper motion in Dec (radians/year)
/// * `px` - Parallax (arcsec)
/// * `rv` - Radial velocity (km/s, positive = receding)
/// * `utc1` - UTC as JD (part 1)
/// * `utc2` - UTC as JD (part 2)
/// * `dut1` - UT1-UTC (seconds)
/// * `elong` - Longitude (radians, east positive)
/// * `phi` - Latitude (radians)
/// * `hm` - Height above ellipsoid (meters)
/// * `xp` - Polar motion x (radians)
/// * `yp` - Polar motion y (radians)
/// * `phpa` - Pressure (hPa)
/// * `tc` - Temperature (Celsius)
/// * `rh` - Relative humidity (0-1)
/// * `wl` - Wavelength (micrometers)
///
/// # Returns
///
/// * `Result<(f64, f64, f64, f64, f64, f64)>` - (azimuth, zenith distance, hour angle, declination, RA, declination) all in radians
/// Transform ICRS to CIRS (Celestial Intermediate Reference System).
///
/// This handles proper motion, parallax, light deflection, and aberration.
///
/// # Arguments
///
/// * `ra_icrs` - ICRS right ascension (radians)
/// * `dec_icrs` - ICRS declination (radians)
/// * `pr` - Proper motion in RA (radians/year)
/// * `pd` - Proper motion in Dec (radians/year)
/// * `px` - Parallax (arcsec)
/// * `rv` - Radial velocity (km/s, positive = receding)
/// * `date1` - TDB as JD (part 1)
/// * `date2` - TDB as JD (part 2)
///
/// # Returns
///
/// * `Result<(f64, f64, f64)>` - (RA, Dec, equation of origins) in radians
/// Transform CIRS to observed coordinates.
///
/// Applies Earth rotation, polar motion, diurnal aberration, and refraction.
///
/// # Arguments
///
/// * `ri` - CIRS right ascension (radians)
/// * `di` - CIRS declination (radians)
/// * `utc1` - UTC as JD (part 1)
/// * `utc2` - UTC as JD (part 2)
/// * `dut1` - UT1-UTC (seconds)
/// * `elong` - Longitude (radians, east positive)
/// * `phi` - Latitude (radians)
/// * `hm` - Height above ellipsoid (meters)
/// * `xp` - Polar motion x (radians)
/// * `yp` - Polar motion y (radians)
/// * `phpa` - Pressure (hPa)
/// * `tc` - Temperature (Celsius)
/// * `rh` - Relative humidity (0-1)
/// * `wl` - Wavelength (micrometers)
///
/// # Returns
///
/// * `Result<(f64, f64, f64, f64, f64, f64)>` - (azimuth, zenith distance, hour angle, declination, RA, declination) in radians
/// Calculate Greenwich Mean Sidereal Time using ERFA IAU 2006 model.
///
/// # Arguments
///
/// * `ut11` - UT1 as JD (part 1)
/// * `ut12` - UT1 as JD (part 2)
/// * `tt1` - TT as JD (part 1)
/// * `tt2` - TT as JD (part 2)
///
/// # Returns
///
/// GMST in radians
/// Calculate Greenwich Apparent Sidereal Time using ERFA IAU 2006 model.
///
/// This includes nutation corrections for the true sidereal time.
///
/// # Arguments
///
/// * `ut11` - UT1 as JD (part 1)
/// * `ut12` - UT1 as JD (part 2)
/// * `tt1` - TT as JD (part 1)
/// * `tt2` - TT as JD (part 2)
///
/// # Returns
///
/// GAST in radians
/// Calculate Earth Rotation Angle.
///
/// The angle through which Earth has rotated since the J2000.0 epoch.
///
/// # Arguments
///
/// * `ut11` - UT1 as JD (part 1)
/// * `ut12` - UT1 as JD (part 2)
///
/// # Returns
///
/// ERA in radians
/// Get precession matrix at a given epoch.
///
/// # Arguments
///
/// * `date1` - TT as JD (part 1)
/// * `date2` - TT as JD (part 2)
///
/// # Returns
///
/// 3x3 precession matrix from J2000 to date
/// Get bias-precession-nutation matrix.
///
/// # Arguments
///
/// * `date1` - TT as JD (part 1)
/// * `date2` - TT as JD (part 2)
///
/// # Returns
///
/// 3x3 BPN matrix