sounding-analysis 0.8.4

Analysis capability for the sounding-base crate.
Documentation
//! Indexes that are specific to a sounding, but not a particular parcel analysis of that sounding.
use sounding_base::{Profile, Sounding};

use error::*;
use interpolation::linear_interpolate_sounding;
use metfor::vapor_pressure_liquid_water;

/// The Total Totals index
pub fn total_totals(snd: &Sounding) -> Result<f64> {
    let h5 = linear_interpolate_sounding(snd, 500.0)?;
    let h85 = linear_interpolate_sounding(snd, 850.0)?;
    let t_500 = h5.temperature.ok_or(AnalysisError::MissingValue)?;
    let t_850 = h85.temperature.ok_or(AnalysisError::MissingValue)?;
    let td_850 = h85.dew_point.ok_or(AnalysisError::MissingValue)?;

    let cross_totals = td_850 - t_500;
    let vertical_totals = t_850 - t_500;

    Ok(cross_totals + vertical_totals)
}

/// The SWeT (Severe Weather Threat) index
#[inline]
pub fn swet(snd: &Sounding) -> Result<f64> {
    let h5 = linear_interpolate_sounding(snd, 500.0)?;
    let h85 = linear_interpolate_sounding(snd, 850.0)?;

    let mut td_850 = h85.dew_point.ok_or(AnalysisError::MissingValue)?;
    if td_850 < 0.0 {
        td_850 = 0.0;
    }

    let v_850 = h85.speed.ok_or(AnalysisError::MissingValue)?;
    let d_850 = h85.direction.ok_or(AnalysisError::MissingValue)?;

    let v_500 = h5.speed.ok_or(AnalysisError::MissingValue)?;
    let d_500 = h5.direction.ok_or(AnalysisError::MissingValue)?;

    let mut total_totals = total_totals(snd)?;
    if total_totals < 49.0 {
        total_totals = 49.0;
    }

    let mut dir_component = (d_500 - d_850).to_radians().sin();
    if dir_component < 0.0
        || (d_850 >= 130.0 && d_850 <= 250.0)
        || (d_500 >= 210.0 && d_500 <= 310.0)
        || (d_500 - d_850) >= 0.0
        || (v_850 >= 15.0 && v_500 >= 15.0)
    {
        dir_component = 0.0;
    } else {
        dir_component = 125.0 * (dir_component + 0.2);
    }

    Ok(12.0 * td_850 + 20.0 * (total_totals - 49.0) + 2.0 * v_850 + v_500 + dir_component)
}

/// The K-index
#[inline]
pub fn kindex(snd: &Sounding) -> Result<f64> {
    let h5 = linear_interpolate_sounding(snd, 500.0)?;
    let h7 = linear_interpolate_sounding(snd, 700.0)?;
    let h85 = linear_interpolate_sounding(snd, 850.0)?;

    let t5 = h5.temperature.ok_or(AnalysisError::MissingValue)?;
    let t7 = h7.temperature.ok_or(AnalysisError::MissingValue)?;
    let t85 = h85.temperature.ok_or(AnalysisError::MissingValue)?;

    let td7 = h7.dew_point.ok_or(AnalysisError::MissingValue)?;
    let td85 = h85.dew_point.ok_or(AnalysisError::MissingValue)?;

    Ok(t85 - t5 + td85 - t7 + td7)
}

/// Precipitable water (mm)
#[inline]
pub fn precipitable_water(snd: &Sounding) -> Result<f64> {
    let p_profile = snd.get_profile(Profile::Pressure);
    let dp_profile = snd.get_profile(Profile::DewPoint);

    let (integrated_mw, _, _) = izip!(p_profile, dp_profile)
        .filter_map(|pair| {
            let (p, dp) = pair;
            if p.is_some() && dp.is_some() {
                Some((p.unpack(), dp.unpack()))
            } else {
                None
            }
        }).filter_map(|(p, dp)| {
            ::metfor::mixing_ratio(dp, p)
                .ok()
                .and_then(|mw| Some((p, mw)))
        }).fold((0.0, 0.0, 0.0), |(mut acc_mw, prev_p, prev_mw), (p, mw)| {
            let dp = prev_p - p;
            if dp > 0.0 {
                acc_mw += (mw + prev_mw) * dp;
            }

            (acc_mw, p, mw)
        });

    Ok(integrated_mw / 9.81 / 997.0 * 100_000.0 / 2.0)
}

/// The Haines index for fire weather.
#[inline]
pub fn haines(snd: &Sounding) -> Result<f64> {
    snd.get_station_info()
        .elevation()
        .into_option()
        .ok_or(AnalysisError::MissingValue)
        .and_then(|elev_meters| {
            if elev_meters <= 304.8 {
                haines_low(snd)
            } else if elev_meters <= 914.4 {
                haines_mid(snd)
            } else {
                haines_high(snd)
            }
        })
}

/// The low level version of the Haines index for fire weather.
#[inline]
pub fn haines_low(snd: &Sounding) -> Result<f64> {
    let level1 =
        linear_interpolate_sounding(snd, 950.0).map_err(|_| AnalysisError::MissingValue)?;
    let level2 =
        linear_interpolate_sounding(snd, 850.0).map_err(|_| AnalysisError::MissingValue)?;

    let t_low = level1.temperature.ok_or(AnalysisError::MissingValue)?;
    let t_hi = level2.temperature.ok_or(AnalysisError::MissingValue)?;
    let dp_hi = level2.dew_point.ok_or(AnalysisError::MissingValue)?;

    let stability_term = (t_low - t_hi).round();
    let stability_term = if stability_term >= 8.0 {
        3.0
    } else if stability_term > 3.0 {
        2.0
    } else {
        1.0
    };

    let moisture_term = (t_hi - dp_hi).round();
    let moisture_term = if moisture_term >= 10.0 {
        3.0
    } else if moisture_term > 5.0 {
        2.0
    } else {
        1.0
    };

    Ok(stability_term + moisture_term)
}

/// The mid level version of the Haines index for fire weather.
#[inline]
pub fn haines_mid(snd: &Sounding) -> Result<f64> {
    let level1 =
        linear_interpolate_sounding(snd, 850.0).map_err(|_| AnalysisError::MissingValue)?;
    let level2 =
        linear_interpolate_sounding(snd, 700.0).map_err(|_| AnalysisError::MissingValue)?;

    let t_low = level1.temperature.ok_or(AnalysisError::MissingValue)?;
    let t_hi = level2.temperature.ok_or(AnalysisError::MissingValue)?;
    let dp_low = level1.dew_point.ok_or(AnalysisError::MissingValue)?;

    let stability_term = (t_low - t_hi).round();
    let stability_term = if stability_term >= 11.0 {
        3.0
    } else if stability_term > 5.0 {
        2.0
    } else {
        1.0
    };

    let moisture_term = (t_low - dp_low).round();
    let moisture_term = if moisture_term >= 13.0 {
        3.0
    } else if moisture_term > 5.0 {
        2.0
    } else {
        1.0
    };

    Ok(stability_term + moisture_term)
}

/// The high level version of the Haines index for fire weather.
#[inline]
pub fn haines_high(snd: &Sounding) -> Result<f64> {
    let level1 =
        linear_interpolate_sounding(snd, 700.0).map_err(|_| AnalysisError::MissingValue)?;
    let level2 =
        linear_interpolate_sounding(snd, 500.0).map_err(|_| AnalysisError::MissingValue)?;

    let t_low = level1.temperature.ok_or(AnalysisError::MissingValue)?;
    let t_hi = level2.temperature.ok_or(AnalysisError::MissingValue)?;
    let dp_low = level1.dew_point.ok_or(AnalysisError::MissingValue)?;

    let stability_term = (t_low - t_hi).round();
    let stability_term = if stability_term >= 22.0 {
        3.0
    } else if stability_term > 17.0 {
        2.0
    } else {
        1.0
    };

    let moisture_term = (t_low - dp_low).round();
    let moisture_term = if moisture_term >= 21.0 {
        3.0
    } else if moisture_term > 14.0 {
        2.0
    } else {
        1.0
    };

    Ok(stability_term + moisture_term)
}

/// The Hot-Dry-Windy index
#[inline]
pub fn hot_dry_windy(snd: &Sounding) -> Result<f64> {
    let elevation = if let Some(sfc_h) = snd.get_station_info().elevation().into_option() {
        sfc_h
    } else if let Some(lowest_h) = snd
        .get_profile(Profile::GeopotentialHeight)
        .iter()
        .filter_map(|optd| optd.into_option())
        .nth(0)
    {
        lowest_h
    } else {
        return Err(AnalysisError::NotEnoughData);
    };

    let h_profile = snd.get_profile(Profile::GeopotentialHeight); // Meters
    let t_profile = snd.get_profile(Profile::Temperature); // C
    let dp_profile = snd.get_profile(Profile::DewPoint); // C
    let ws_profile = snd.get_profile(Profile::WindSpeed); // in knots

    let (vpd, ws) = izip!(h_profile, t_profile, dp_profile, ws_profile)
        // Remove rows with missing data
        .filter_map(|(h, t, dp, ws)| {
            if h.is_some() && t.is_some() && dp.is_some() && ws.is_some() {
                Some((h.unpack(), t.unpack(), dp.unpack(), ws.unpack()))
            } else {
                None
            }
        })
        // Only look up to 500 m above AGL
        .take_while(|(h, _, _, _)| *h <= elevation + 500.0)
        // Convert t and dp to VPD
        .filter_map(|(_, t, dp, ws)| match vapor_pressure_liquid_water(t) {
            Ok(sat_vap) => match vapor_pressure_liquid_water(dp) {
                Ok(vap) => Some((sat_vap - vap, ws)),
                Err(_) => None,
            },
            Err(_) => None,
        })
        // Convert knots to m/s
        .map(|(vpd, ws)| (vpd, ws * 0.514_444))
        // Choose the max.
        .fold((0.0, 0.0), |(vpd_max, ws_max), (vpd, ws)| {
            (vpd.max(vpd_max), ws.max(ws_max))
        });

    Ok(vpd * ws)
}