nexrad-process 1.0.0-rc.1

Processing algorithms for NEXRAD weather radar data.
Documentation
1
2
3
4
5
6
7
8
9
//! Storm cell detection algorithms.
//!
//! This module provides algorithms for identifying and characterizing storm
//! cells in radar data using connected-component analysis on reflectivity
//! fields.

mod cell;

pub use cell::{StormCell, StormCellBounds, StormCellDetector};