about summary refs log tree commit diff
path: root/TLE.go
blob: 376790fac2e1cc76a7562fcdb66d6a574e0afb96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
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 {
	TitleLine struct {
		satname [24]byte `json:"satname"`
	} `json:"titleline"`
	TitleLine struct {
	} `json:"lineone"`
	TitleLine struct {
	} `json:"linetwo"`
}