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
//! Filtering algorithms for sweep field data.
//!
//! Filters transform a [`SweepField`](nexrad_model::data::SweepField) by modifying gate values
//! or statuses based on various criteria such as value thresholds, spatial patterns, or
//! cross-product relationships.

mod clutter;
mod smoothing;
mod threshold;

pub use clutter::CorrelationCoefficientFilter;
pub use smoothing::{GaussianSmooth, MedianFilter};
pub use threshold::ThresholdFilter;