nexrad-process 1.0.0-rc.1

Processing algorithms for NEXRAD weather radar data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Derived products computed from radar scans.
//!
//! These algorithms produce new data products by combining information from
//! multiple elevation sweeps or by applying transformations that require
//! additional context beyond a single sweep.

mod composite;
mod srvel;
mod vertical;

pub use composite::CompositeReflectivity;
pub use srvel::StormRelativeVelocity;
pub use vertical::VerticalCrossSection;