nexrad_process/filter/mod.rs
1//! Filtering algorithms for sweep field data.
2//!
3//! Filters transform a [`SweepField`](nexrad_model::data::SweepField) by modifying gate values
4//! or statuses based on various criteria such as value thresholds, spatial patterns, or
5//! cross-product relationships.
6
7mod clutter;
8mod smoothing;
9mod threshold;
10
11pub use clutter::CorrelationCoefficientFilter;
12pub use smoothing::{GaussianSmooth, MedianFilter};
13pub use threshold::ThresholdFilter;