Crates.io | adsbx_json |
lib.rs | adsbx_json |
version | 21.0.0 |
source | src |
created_at | 2021-02-24 17:08:38.109769 |
updated_at | 2024-11-08 08:20:52.630902 |
description | Library for parsing the ADS-B Exchange API JSON. |
homepage | |
repository | https://gitlab.com/jjwiseman/adsbx_json |
max_upload_size | |
id | 360062 |
size | 5,201,404 |
This is a Rust library for parsing the JSON returned by the ADS-B Exchange API. It currently supports version 2 of the API.
The goal of this library is to be a fast, type-safe interface to all the data returned by both v1 and v2 of the ADS-B Exchange API.
The ADS-B JSON format evolves pretty continuously, not always in a backwards compatible way. Currently I prefer to use this library in a mode where it errors out if it even sees an unexpected field in the JSON, because it helps highlight those changes when they occur, but that makes more sense for me, as a developer of the library than it probably does for users. I'm not sure serde offers a way to choose at runtime whether to turn off those strict checks.
Alpha, unstable. Handles all of v2 of the ADS-B Exchange API. Does not handle v1 at all.
Currently parses about 250,000-300,000 aircraft objects per second.
Build:
cargo build
Build examples in release mode:
cargo build --release --examples fetch
Run unit and integration tests:
cargo test
Run example code:
ADSBX_API_KEY=xxx cargo run --example fetch -- --url https://adsbexchange.com/api/aircraft/v2/all
Output:
Got 3734 aircraft.
Aircraft {
adsb_version: None,
aircraft_type: Some(
"A320",
),
baro_rate: Some(
-2170,
),
barometric_altitude: Some(
Altitude(
12675,
),
),
calc_track: None,
call_sign: Some(
"NKS907 ",
),
[...]
Run benchmarks:
cargo bench