You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Constants that determine the type of equator to be used for the coordinate system.
235
235
*/
236
236
enumnovas_equator_type {
237
-
NOVAS_MEAN_EQUATOR=0, ///< True equinox Of Date (TOD): dynamical system of the true equator, with its origin at the true equinox (pre IAU 2006 system).
238
-
NOVAS_CIRS_EQUATOR, ///< Celestial Intermediate Reference System (CIRS): dynamical system of the true equator, with its origin at the CIO (preferred since IAU 2006)
237
+
NOVAS_MEAN_EQUATOR=0, ///< Mean equator without nutation (pre IAU 2006 system).
238
+
NOVAS_TRUE_EQUATOR, ///< True equator (pre IAU 2006 system).
239
239
NOVAS_ICRS_EQUATOR///< International Celestiual Reference system (ICRS). The equatorial system fixed to the frame of distant quasars.
240
240
};
241
241
242
+
/**
243
+
* Constants that determine the type of dynamical system type for gcrs2equ()
244
+
*/
245
+
enumnovas_dynamical_type {
246
+
NOVAS_DYNAMICAL_MOD=0, ///< Mean equinox Of Date (TOD): dynamical system not including nutation (pre IAU 2006 system).
247
+
NOVAS_DYNAMICAL_TOD, ///< True equinox Of Date (TOD): dynamical system of the true equator, with its origin at the true equinox (pre IAU 2006 system).
248
+
NOVAS_DYNAMICAL_CIRS///< Celestial Intermediate Reference System (CIRS): dynamical system of the true equator, with its origin at the CIO (preferred since IAU 2006)
249
+
};
250
+
242
251
#defineNOVAS_REFERENCE_SYSTEMS (NOVAS_ICRS + 1) ///< The number of basic coordinate reference systems in NOVAS.
0 commit comments