Revert the previous patch, wind-heading-from is part of a range, not a direction itself.
This commit is contained in:
parent
2c6c83ce9b
commit
feb9f16410
1 changed files with 2 additions and 7 deletions
|
@ -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") );
|
||||
|
||||
|
|
Loading…
Reference in a new issue