[][src]Struct sounding_analysis::Layer

pub struct Layer {
    pub bottom: DataRow,
    pub top: DataRow,
}

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]

pub fn lapse_rate(&self) -> Option<CelsiusPKm>
[src]

Get the average lapse rate in C/km

pub fn height_thickness(&self) -> Option<Meters>
[src]

Get the height thickness in meters

pub fn pressure_thickness(&self) -> Option<HectoPascal>
[src]

Get the pressure thickness.

pub fn wind_shear(&self) -> Option<WindUV<MetersPSec>>
[src]

Get the bulk wind shear (spd kts, direction degrees)

Trait Implementations

impl Copy for Layer
[src]

impl Clone for Layer
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Layer
[src]

Auto Trait Implementations

impl Send for Layer

impl Sync for Layer

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]