Struct sounding_base::DataRow[][src]

pub struct DataRow {
    pub pressure: Optioned<f64>,
    pub temperature: Optioned<f64>,
    pub wet_bulb: Optioned<f64>,
    pub dew_point: Optioned<f64>,
    pub theta_e: Optioned<f64>,
    pub direction: Optioned<f64>,
    pub speed: Optioned<f64>,
    pub omega: Optioned<f64>,
    pub height: Optioned<f64>,
    pub cloud_fraction: Optioned<f64>,
}

A copy of a row of the sounding data.

Fields

Pressure in hPa

Temperature in C

Wet bulb temperature in C

Dew point in C

Equivalent potential temperature in Kelvin

Wind direction (from) in degrees.

Wind speed in knots

Pressure vertical velocity in Pa/sec

Geopotential Height in meters

Cloud fraction in percent

Trait Implementations

impl Clone for DataRow
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for DataRow
[src]

Returns the "default value" for a type. Read more

impl Copy for DataRow
[src]

impl Debug for DataRow
[src]

Formats the value using the given formatter. Read more

impl PartialEq for DataRow
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for DataRow

impl Sync for DataRow