Skip to main content

celestial_core/angle/
mod.rs

1mod core;
2mod format;
3mod normalize;
4mod ops;
5mod parse;
6#[cfg(feature = "serde")]
7mod serde_;
8mod validate;
9
10pub use core::Angle;
11pub use format::{parse_angle, DmsFmt, HmsFmt, ParsedAngle};
12pub use normalize::{clamp_dec, wrap_0_2pi, wrap_pm_pi, NormalizeMode};
13pub use parse::{parse_dms, parse_hms, AngleUnits, ParseAngle};
14pub use validate::{
15    validate_declination, validate_latitude, validate_longitude, validate_right_ascension,
16};
17
18pub use core::{arcmin, arcsec, deg, hours, rad};