Struct sounding_analysis::parcel::ParcelProfile[][src]

pub struct ParcelProfile {
    pub pressure: Vec<f64>,
    pub height: Vec<f64>,
    pub parcel_t: Vec<f64>,
    pub environment_t: Vec<f64>,
    pub parcel: Parcel,
}

Hold profiles for a parcel and it's environment.

Fields

Pressure profile

Height profile

Parcel temperature profile

Environment temperature profile

The original parcel

Trait Implementations

impl Debug for ParcelProfile
[src]

Formats the value using the given formatter. Read more

impl Clone for ParcelProfile
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations