Skip to main content

nexrad_process/detection/
mod.rs

1//! Storm cell detection algorithms.
2//!
3//! This module provides algorithms for identifying and characterizing storm
4//! cells in radar data using connected-component analysis on reflectivity
5//! fields.
6
7mod cell;
8
9pub use cell::{StormCell, StormCellBounds, StormCellDetector};