pub fn resolve_station_conditions(
temperature_c: f64,
pressure_hpa: f64,
altitude_m: f64,
) -> (f64, f64)Expand description
Return the station temperature and pressure that calculate_atmosphere will use after
applying the default-at-altitude resolution rules.
A thin, byte-identical delegate to
resolve_station_conditions_with_pressure_mode at PressureReferenceMode::Absolute
(MBA-1397) — kept as a separate name/signature so no existing caller needs to change.