Skip to main content

nexrad_process/derived/
mod.rs

1//! Derived products computed from radar scans.
2//!
3//! These algorithms produce new data products by combining information from
4//! multiple elevation sweeps or by applying transformations that require
5//! additional context beyond a single sweep.
6
7mod composite;
8mod srvel;
9mod vertical;
10
11pub use composite::CompositeReflectivity;
12pub use srvel::StormRelativeVelocity;
13pub use vertical::VerticalCrossSection;