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
//! Earth: physical constants, reference ellipsoid, geodetic coordinates,
//! Earth rotation models, and Earth Orientation Parameters.
//!
//! # Submodules
//!
//! - [`ellipsoid`] — WGS-84 reference ellipsoid constants
//! - [`geodetic`] — WGS-84 Cartesian ↔ geodetic conversions, [`Geodetic`] type
//! - [`rotation`] — IAU 2009 WGCCRE rotation model (`EARTH` const)
//! - [`eop`] — Earth Orientation Parameters provider traits
//! ([`Ut1Offset`](eop::Ut1Offset), [`PolarMotion`](eop::PolarMotion),
//! [`NutationCorrections`](eop::NutationCorrections),
//! [`LengthOfDay`](eop::LengthOfDay)) and [`NullEop`](eop::NullEop) placeholder
//! - [`iau2006`] — IAU 2006 / 2000A_R06 precession-nutation supporting math
//! (angular units, fundamental arguments, precession polynomials; Phase 3A-1)
//!
//! Phase 3 will add `Rotation<Gcrs, Cirs>::iau2006` / `Rotation<Cirs, Tirs>::from_era`
//! / `Rotation<Tirs, Itrs>::polar_motion` constructors that consume these EOP
//! traits for the full IAU 2006 CIO-based Earth rotation chain.
pub use ;
pub use ;
// ─── Physical constants ──────────────────────────────────────────
/// Earth gravitational parameter [km³/s²] (WGS-84).
pub const MU: f64 = 398600.4418;
/// Earth equatorial radius [km] (WGS-84).
pub const R: f64 = 6378.137;
/// Earth J2 zonal harmonic coefficient (WGS-84 / EGM96).
pub const J2: f64 = 1.08263e-3;
/// Earth J3 zonal harmonic coefficient (WGS-84 / EGM96).
pub const J3: f64 = -2.5356e-6;
/// Earth J4 zonal harmonic coefficient (WGS-84 / EGM96).
pub const J4: f64 = -1.6199e-6;
/// Earth rotation rate [rad/s] (IERS 2010).
pub const OMEGA: f64 = 7.2921159e-5;