pub enum Product {
Reflectivity,
Velocity,
SpectrumWidth,
DifferentialReflectivity,
DifferentialPhase,
CorrelationCoefficient,
SpecificDiffPhase,
}Expand description
Radar data products that can be rendered.
Each product corresponds to a different type of moment data captured by the radar.
Variants§
Reflectivity
Base reflectivity (dBZ). Measures the intensity of precipitation.
Velocity
Radial velocity (m/s). Measures motion toward or away from the radar.
SpectrumWidth
Spectrum width (m/s). Measures turbulence within the radar beam.
DifferentialReflectivity
Differential reflectivity (dB). Compares horizontal and vertical reflectivity.
DifferentialPhase
Differential phase (degrees). Phase difference between polarizations.
CorrelationCoefficient
Correlation coefficient. Correlation between polarizations (0-1).
SpecificDiffPhase
Specific differential phase (degrees/km). Rate of differential phase change.
Trait Implementations§
impl Copy for Product
impl Eq for Product
impl StructuralPartialEq for Product
Auto Trait Implementations§
impl Freeze for Product
impl RefUnwindSafe for Product
impl Send for Product
impl Sync for Product
impl Unpin for Product
impl UnwindSafe for Product
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more