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
//!
//! Downloads archival and real-time NEXRAD level II weather radar data from AWS Open Data buckets
//! populated by NOAA.
//!
//! [AWS Open Data NOAA NEXRAD](https://registry.opendata.aws/noaa-nexrad/)
//!
//! [AWS Labs Open Data Documentation](https://github.com/awslabs/open-data-docs/tree/main/docs/noaa/noaa-nexrad)
//!
//! **NEXRAD Level II archive data**: `arn:aws:s3:::noaa-nexrad-level2`
//!
//! **NEXRAD Level II real-time data**: `arn:aws:s3:::unidata-nexrad-level2-chunks`
//!

pub mod archive;
pub mod realtime;

mod s3;