From feb9f16410cd4c4aae459f99b6caacd91e283d17 Mon Sep 17 00:00:00 2001 From: ehofman Date: Sat, 28 Feb 2004 12:08:01 +0000 Subject: [PATCH] Revert the previous patch, wind-heading-from is part of a range, not a direction itself. --- src/Environment/environment_ctrl.cxx | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/Environment/environment_ctrl.cxx b/src/Environment/environment_ctrl.cxx index 8e0e5783f..e5114a2a2 100644 --- a/src/Environment/environment_ctrl.cxx +++ b/src/Environment/environment_ctrl.cxx @@ -367,13 +367,8 @@ static void set_dewpoint_at_altitude( float dewpoint_degc, float altitude_ft ) { void FGMetarEnvironmentCtrl::update_env_config () { - double wind_dir1 = fgGetDouble("/environment/metar/base-wind-range-from"); - double wind_dir2 = fgGetDouble("/environment/metar/base-wind-range-to"); - - wind_dir1 = fmod (wind_dir1 + 180.0, 360.0); - wind_dir2 = fmod (wind_dir2 + 180.0, 360.0); - - fgSetupWind( wind_dir1, wind_dir2, + fgSetupWind( fgGetDouble("/environment/metar/base-wind-range-from"), + fgGetDouble("/environment/metar/base-wind-range-to"), fgGetDouble("/environment/metar/base-wind-speed-kt"), fgGetDouble("/environment/metar/gust-wind-speed-kt") );