lox_frames/iers/cio.rs
1// SPDX-FileCopyrightText: 2023 Helge Eichhorn <git@helgeeichhorn.de>
2// SPDX-FileCopyrightText: 2024 Angus Morrison <github@angus-morrison.com>
3//
4// SPDX-License-Identifier: MPL-2.0
5
6//! Module cio exposes functions for calculating the Celestial Intermediate Origin (CIO) locator, s.
7
8use lox_core::units::Angle;
9use lox_test_utils::ApproxEq;
10
11pub mod iau2006;
12
13/// Celestial Intermediate Origin (CIO) locator, s.
14#[derive(Debug, Clone, Copy, Default, PartialEq, ApproxEq)]
15pub struct CioLocator(pub Angle);