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.
67mod cell;
89pub use cell::{StormCell, StormCellBounds, StormCellDetector};