blob: 4a4e5b567961ca4dc7ae000136e903d4abd23fd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
Implementing the "Two-line element set (TLE)", a data format encoding orbital elements of Earth-orbiting objects. https://en.wikipedia.org/wiki/Two-line_element_set
*/
package TLE
type TLE struct {
type TitleLine struct {
} `json: "titleline"`
type TitleLine struct {
} `json: "lineone"`
type TitleLine struct {
} `json: "linetwo"`
}
|