nexrad_decode/lib.rs
1//!
2//! # nexrad-decode
3//! Decoding functions and models for NEXRAD weather radar data. Decoder and struct definitions are
4//! in accordance with NOAA's WSR-88D Interface Control Document for Archive II "ICD 2620010H"
5//! build 19.0.
6//!
7//! Optionally, the `nexrad-model` feature provides mappings to a common model for representing
8//! radar data. The `uom` feature can also be used to provide type-safe units of measure.
9//!
10
11#![forbid(unsafe_code)]
12#![deny(clippy::unwrap_used)]
13#![deny(clippy::expect_used)]
14#![warn(clippy::correctness)]
15#![allow(clippy::too_many_arguments)]
16
17pub mod messages;
18pub mod result;
19pub mod summarize;
20
21mod util;