Rust package to parse and analyze Rinex files
This package is Work in Progress, its main objective being able to parse .g and .o observations file, hopefully V3 RINEX standard.
```rust let rinex = Rinex::from_file("data/amel0010.21g"); println!("{:#?}", rinex);
let rinex = Rinex::from_file("data/aopr0010.17o"); println!("{:#?}", rinex); ```
You can add some more RINEX files to the "/data" folder to test the lib against more data:
shell
cargo test
cargo test -- --nocapture