openaip-rs
OpenAIP file parser for Rust.
Features
- Reading OpenAIP airspace files
not implemented yet:
- Writing OpenAIP airspace files
- Reading/Writing OpenAIP airport files
- Reading/Writing OpenAIP hotspot files
- Reading/Writing OpenAIP navaid files
Usage
Read the full documentation at docs.rs
Example
```rust
use openaip::parse;
let data: &'static str = r##"
d59ffb1bd865bc7307dbb3a191f4d00dfef5529f
150668
DE
Alb-Nord_1 128.950
100
4500
9.1911 48.4911, 9.3727 48.5655, 9.4222 48.5747, 9.1911 48.4911
"##;
let result = parse(data.asbytes());
assert!(result.isok());
```
License
openaip-rs is licensed under the Apache 2.0 License.