lox_analysis/lib.rs
1// SPDX-FileCopyrightText: 2026 Helge Eichhorn <git@helgeeichhorn.de>
2//
3// SPDX-License-Identifier: MPL-2.0
4
5#![warn(missing_docs)]
6
7//! Visibility analysis, ground station and spacecraft asset modelling.
8
9/// Asset definitions: ground stations, spacecraft, constellations, and scenarios.
10pub mod assets;
11/// Visibility analysis: line-of-sight, elevation masks, passes, and interval computation.
12pub mod visibility;