lox-frames 0.1.0-alpha.13

Reference frame transformations for the Lox ecosystem
Documentation
// SPDX-FileCopyrightText: 2024 Helge Eichhorn <git@helgeeichhorn.de>
//
// SPDX-License-Identifier: MPL-2.0

#![warn(missing_docs)]

//! Reference frames, rotations, and coordinate transformations.

/// Dynamic dispatch enum for reference frames.
pub mod dynamic;
/// Concrete reference frame marker types.
pub mod frames;
/// IAU body-fixed frame rotation calculations.
pub mod iau;
/// IERS reference systems, conventions, and Earth orientation sub-models.
pub mod iers;
/// Default rotation provider (no EOP data).
pub mod providers;
/// Rotation matrices, the [`rotations::TryRotation`] trait, and [`rotations::RotationProvider`].
pub mod rotations;
/// Core reference frame traits.
pub mod traits;

pub use dynamic::{DynFrame, UnknownFrameError};
pub use frames::{Cirf, Iau, Icrf, Itrf, J2000, Teme, Tirf};
pub use traits::{
    BodyFixed, NonBodyFixedFrameError, NonQuasiInertialFrameError, QuasiInertial, ReferenceFrame,
    TryBodyFixed, TryQuasiInertial,
};