pub fn temperature_from_theta<P, T>(theta: T, pressure: P) -> Kelvinwhere
    P: Pressure,
    T: Temperature,
    HectoPascal: From<P>,
    Kelvin: From<T>,
Expand description

Given a potential temperature and pressure, calculate the temperature.

Returns: The temperature.