RINEX

Rust package to parse and analyze Rinex files

Rust codecov

This package is Work in Progress, its main objective being able to parse .g and .o observations file, hopefully V3 RINEX standard.

Getting started

```rust let rinex = Rinex::from_file("data/amel0010.21g"); println!("{:#?}", rinex);

let rinex = Rinex::from_file("data/aopr0010.17o"); println!("{:#?}", rinex); ```

Developments

You can add some more RINEX files to the "/data" folder to test the lib against more data:

shell cargo test cargo est -- --nocapture