Skip to main content

celestial_core/location/
mod.rs

1//! Observer location on Earth.
2//!
3//! - [`Location`]: WGS84 geodetic coordinates (latitude, longitude, height)
4//! - [`geodesy`]: geodetic-to-geocentric conversions for parallax corrections
5
6pub mod core;
7pub mod geodesy;
8
9pub use core::Location;