nexrad-data 0.2.0

Models and functions for accessing NEXRAD data from public sources.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//!
//! # nexrad-data
//! Provides structure definitions and decoding functions for NEXRAD Archive II volume files, along
//! with functions for downloading both archival and real-time data from open cloud providers like
//! AWS OpenData.
//!

#![forbid(unsafe_code)]
#![deny(clippy::unwrap_used)]
#![deny(clippy::expect_used)]
#![warn(clippy::correctness)]

#[cfg(feature = "aws")]
pub mod aws;

pub mod volume;

pub mod result;