Struct sounding_base::Sounding [] [src]

pub struct Sounding {
    pub num: i32,
    pub valid_time: NaiveDateTime,
    pub lead_time: i32,
    pub lat: f32,
    pub lon: f32,
    pub elevation: f32,
    pub show: f32,
    pub li: f32,
    pub swet: f32,
    pub kinx: f32,
    pub lclp: f32,
    pub pwat: f32,
    pub totl: f32,
    pub cape: f32,
    pub lclt: f32,
    pub cins: f32,
    pub eqlv: f32,
    pub lfc: f32,
    pub brch: f32,
    pub pressure: Vec<f32>,
    pub temperature: Vec<f32>,
    pub wet_bulb: Vec<f32>,
    pub dew_point: Vec<f32>,
    pub theta_e: Vec<f32>,
    pub direction: Vec<f32>,
    pub speed: Vec<f32>,
    pub omega: Vec<f32>,
    pub height: Vec<f32>,
    pub cloud_fraction: Vec<f32>,
    pub mslp: f32,
    pub station_pres: f32,
    pub low_cloud: f32,
    pub mid_cloud: f32,
    pub hi_cloud: f32,
    pub uwind: f32,
    pub vwind: f32,
}

All the variables stored in the sounding.

Missing values are -9999.0. The upper air profile variables are stored in parallel vectors. If a profile lacks a certain variable, e.g. cloud fraction, that whole vector has length 0 instead of being full of missing values.

Fields

station number, USAF number, eg 727730

Valid time of sounding

Difference in model initialization time and valid_time in hours.

Latitude of grid point used to make sounding.

Longitude of grid point used to make sounding.

Elevation of grid point in meters, this is in model terrain, not necessarily the same as the real world.

Showalter index

Lifted index

Severe Weather Threat Index

K-index

Lifting Condensation Level, or LCL (hPa), pressure vertical coordinate.

Precipitable Water (mm)

Total-Totals

Convective Available Potential Energy, or CAPE. (J/kg)

Temperature at LCL (K)

Convective Inhibitive Energy, or CIN (J/kg)

Equilibrium Level (hPa), pressure vertical coordinate

Level of Free Convection (hPa), pressure vertical coordinate

Bulk Richardson Number

Pressure (hPa) profile

Temperature (c) profile

Wet-bulb (c) profile

Dew Point (C) profile

Equivalent Potential Temperature (K) profile

Wind direction (degrees) profile

Wind speed (knots) profile

Vertical velocity (Pa/sec), pressure vertical coordinate

Geopotential Height (m) profile

Cloud coverage fraction in percent

Surface pressure reduce to mean sea level (hPa)

Surface pressure (hPa)

Low cloud fraction

Mid cloud fraction

Hi cloud fraction

U - wind speed (m/s) (West -> East is positive)

V - wind speed (m/s) (South -> North is positive)