1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//! **TLE-tools** is a small library to work with [`two-line element set`] files.
//!
//! This module defines the structure [`TLE`] which represents a single TLE.
//! Its fields are expressed in the same units that are used by the TLE format.
//!
//! [`two-line element set`]: https://en.wikipedia.org/wiki/Two-line_element_set
/// Structure representing a single TLE.
///
/// A two-line element set (TLE) is a data format encoding a list of orbital
/// elements of an Earth-orbiting object at a given point in time, the epoch.
///
/// All the fields parsed from the TLE are expressed in the same units
/// that are used in the TLE format.
pub use *;