/* 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"` }