Struct sounding_base::DataRow
[−]
[src]
pub struct DataRow {
pub pressure: Option<f64>,
pub temperature: Option<f64>,
pub wet_bulb: Option<f64>,
pub dew_point: Option<f64>,
pub theta_e: Option<f64>,
pub direction: Option<f64>,
pub speed: Option<f64>,
pub omega: Option<f64>,
pub height: Option<f64>,
pub cloud_fraction: Option<f64>,
}A view of a row of the sounding data.
Fields
pressure: Option<f64>
Pressure in hPa
temperature: Option<f64>
Temperature in C
wet_bulb: Option<f64>
Wet bulb temperature in C
dew_point: Option<f64>
Dew point in C
theta_e: Option<f64>
Equivalent potential temperature in Kelvin
direction: Option<f64>
Wind direction (from) in degrees.
speed: Option<f64>
Wind speed in knots
omega: Option<f64>
Pressure vertical velocity in Pa/sec
height: Option<f64>
Geopotential Height in meters
cloud_fraction: Option<f64>
Cloud fraction in percent
Trait Implementations
impl Clone for DataRow[src]
fn clone(&self) -> DataRow[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Default for DataRow[src]
impl Copy for DataRow[src]
impl Debug for DataRow[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more