Function parse

Source
pub fn parse(raw_tle: &str) -> Result<TLE>
Examples found in repository?
examples/parse_iss_tle.rs (line 10)
5fn main() {
6    let raw_tle = "ISS (ZARYA)
71 25544U 98067A   20045.18587073  .00000950  00000-0  25302-4 0  9990
82 25544  51.6443 242.0161 0004885 264.6060 207.3845 15.49165514212791";
9
10    let tle = parse(raw_tle);
11
12    match tle {
13        Ok(t) => println!("{:?}", t),
14        Err(_) => println!("Error Parsing TLE"),
15    }
16}