adsb/
lib.rs

1//! Parse ADS-B/Mode-S messages. Messages with the following Downlink Formats (DF) are supported:
2//!
3//! - **DF 5**: Surveillance identity (squawk code)
4//! - **DF 17/18**: Automatic Dependent Surveillance - Broadcast (ADS-B)
5//!   - **TC 1-4**: Aircraft identification and category
6//!   - **TC 9-18**: Airborne position
7//!   - **TC 19**: Airborne velocity
8
9pub mod cpr;
10mod crc;
11mod parser;
12mod types;
13
14pub use parser::*;
15pub use types::*;
16
17#[macro_use]
18extern crate lazy_static;