nexrad_data/lib.rs
1//!
2//! # nexrad-data
3//! Provides structure definitions and decoding functions for NEXRAD Archive II volume files, along
4//! with functions for downloading both archival and real-time data from open cloud providers like
5//! AWS OpenData.
6//!
7
8#![forbid(unsafe_code)]
9#![deny(clippy::unwrap_used)]
10#![deny(clippy::expect_used)]
11#![warn(clippy::correctness)]
12
13#[cfg(feature = "aws")]
14pub mod aws;
15
16pub mod volume;
17
18pub mod result;