siderust-archive 0.1.2

Reusable Rust bindings for the Siderust Archive: manifests, checksums, provenance, and runtime download of scientific datasets (IERS time data, kernels, planetary theories).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (C) 2026 Vallés Puig, Ramon

//! # JPL DE-series Physical Constants
//!
//! Physical constants taken from the JPL DE-series ephemeris headers.  Values
//! are consistent across DE440 and DE441.
//!
//! ## Source
//!
//! - Park, R. S. et al. (2021). "The JPL Planetary and Lunar Ephemerides
//!   DE440 and DE441". *Astronomical Journal* 161, 105.
//!   <https://doi.org/10.3847/1538-3881/abd414>

/// Earth/Moon mass ratio from the JPL DE4xx ephemeris headers.
///
/// Defined as `μ_Earth / μ_Moon`.  Consistent across DE440 and DE441.
pub const EARTH_MOON_RATIO: f64 = 81.300_569_074_190_62;