Level

Type Alias Level 

Source
pub type Level = DataRow;
Expand description

A level in the atmosphere is described by a DataRow from a sounding.

Aliased Type§

pub struct Level {
    pub pressure: Optioned<HectoPascal>,
    pub temperature: Optioned<Celsius>,
    pub wet_bulb: Optioned<Celsius>,
    pub dew_point: Optioned<Celsius>,
    pub theta_e: Optioned<Kelvin>,
    pub wind: Optioned<WindSpdDir<Knots>>,
    pub pvv: Optioned<PaPS>,
    pub height: Optioned<Meters>,
    pub cloud_fraction: Optioned<f64>,
}

Fields§

§pressure: Optioned<HectoPascal>

Pressure in hPa

§temperature: Optioned<Celsius>

Temperature in C

§wet_bulb: Optioned<Celsius>

Wet bulb temperature in C

§dew_point: Optioned<Celsius>

Dew point in C

§theta_e: Optioned<Kelvin>

Equivalent potential temperature in Kelvin

§wind: Optioned<WindSpdDir<Knots>>

Wind

§pvv: Optioned<PaPS>

Pressure vertical velocity in Pa/sec

§height: Optioned<Meters>

Geopotential Height in meters

§cloud_fraction: Optioned<f64>

Cloud fraction in percent