brahe 1.4.1

Brahe is a modern satellite dynamics library for research and engineering applications designed to be easy-to-learn, high-performance, and quick-to-deploy. The north-star of the development is enabling users to solve meaningful problems and answer questions quickly, easily, and correctly.
Documentation
/*!
 * Access computation module for satellite ground coverage analysis
 *
 * This module provides functionality for computing when and how satellites
 * can access ground locations or imaging targets. It supports:
 *
 * - Point and polygon locations with GeoJSON interoperability
 * - Extensible constraint system (Rust and Python-defined)
 * - Flexible property computation
 * - Polygon tessellation via along-track strips
 * - Parallel computation with configurable threading
 */

pub mod compute;
pub mod constraints;
pub mod geometry;
pub mod location;
pub mod properties;
pub mod tessellation;
pub mod windows;

// Re-exports
pub use compute::*;
pub use constraints::*;
pub use geometry::*;
pub use location::*;
pub use properties::*;
pub use tessellation::*;
pub use windows::*;