nexrad_data/
volume.rs

1//!
2//! Model definitions and decompression and decoding logic for NEXRAD Level II radar data volumes.
3//!
4//! Archival NEXRAD weather radar data is distributed using an archive format built atop Unidata's
5//! ["Local Data Manager" (or LDM)](https://www.unidata.ucar.edu/software/ldm/) system. Archive
6//! files called "volumes" contain NEXRAD Level II radar data and are composed of LDM records. They
7//! start with a "volume header record" that provides basic metadata about the radar site and
8//! collection time followed by a series of compressed records that contain radar messages with
9//! data.
10//!
11//! The document "Interface Control Document for the Archive II/User" 2620010H (build 19.0 at
12//! writing) describes this archive format in detail, particularly in section 7 "Archive II
13//! Application Layer".
14//!
15
16mod file;
17pub use file::*;
18
19mod header;
20pub use header::*;
21
22mod record;
23pub use record::*;
24
25mod util;