lox-frames 0.1.0-alpha.13

Reference frame transformations for the Lox ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-FileCopyrightText: 2023 Helge Eichhorn <git@helgeeichhorn.de>
// SPDX-FileCopyrightText: 2024 Angus Morrison <github@angus-morrison.com>
//
// SPDX-License-Identifier: MPL-2.0

use lox_core::units::Angle;

use crate::iers::nutation::Nutation;

/// 2000B uses fixed offsets for ψ and ε in lieu of planetary terms.
pub(crate) static OFFSETS: &Nutation = &Nutation {
    dpsi: Angle::arcseconds(-0.135 * 1e-3),
    deps: Angle::arcseconds(0.388 * 1e-3),
};