Struct sounding_analysis::Layer [−][src]
A layer in the atmosphere described by the values at the top and bottom.
Fields
bottom: DataRow
Pressure at the bottom of the layer.
top: DataRow
Pressure at the top of the layer.
Methods
impl Layer[src]
impl Layerpub fn lapse_rate(&self) -> Result<f64>[src]
pub fn lapse_rate(&self) -> Result<f64>Get the average lapse rate in C/km
pub fn height_thickness(&self) -> Result<f64>[src]
pub fn height_thickness(&self) -> Result<f64>Get the height thickness in meters
pub fn pressure_thickness(&self) -> Result<f64>[src]
pub fn pressure_thickness(&self) -> Result<f64>Get the pressure thickness.
pub fn wind_shear(&self) -> Result<(f64, f64)>[src]
pub fn wind_shear(&self) -> Result<(f64, f64)>Get the bulk wind shear (spd kts, direction degrees)
Trait Implementations
impl Debug for Layer[src]
impl Debug for Layerfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Layer[src]
impl Clone for Layerfn clone(&self) -> Layer[src]
fn clone(&self) -> LayerReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Copy for Layer[src]
impl Copy for Layer