lox-space 0.1.0-alpha.48

The Lox toolbox for space mission analysis and design
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-FileCopyrightText: 2024 Angus Morrison <github@angus-morrison.com>
// SPDX-FileCopyrightText: 2024 Helge Eichhorn <git@helgeeichhorn.de>
//
// SPDX-License-Identifier: MPL-2.0

//! Module `python` aggregates the Python binding for `lox-time`.

/// Python bindings for time delta types.
pub mod deltas;
/// Python bindings for the core `Time` type.
pub mod time;
/// Python bindings for time scale types.
pub mod time_scales;
/// Python bindings for time series types.
pub mod time_series;
/// Python bindings for UTC time types.
pub mod utc;