Skip to content

Commit

Permalink
Set maximum visibility to 15,000 meters, thus decreasing effects of l…
Browse files Browse the repository at this point in the history
…ow visibility
  • Loading branch information
fboes committed Sep 28, 2019
1 parent 2d7cfa4 commit da0746d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Change log

* 🎁 Add airport names to labels, ignoring extra information while calling APIs
* 🎁 Make GUI sliders snap to next readable value
* 💊 Set maximum visibility to 15,000 meters, thus decreasing effects of low visibility

1.3.0
-----
Expand Down
9 changes: 8 additions & 1 deletion docs/aerofly-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,14 @@ This tool modifies the following settings in Aerofly's `main.mcf`:
Visibility
----------

Visibility tests set maximum visibility in Aerofly FS 2 to 20,000 meters.
Visibility tests with METAR data, webcams and comparison with Aerofly FS2 visbility show this pattern:

| Visibility Real Life | Visibility Aerofly FS 2 |
| -------------------- | ----------------------- |
| 6,000 meters | ~40% |
| 7,500 meters | ~50% |

This in turn sets 100% visibility in Aerolfy FS 2 to a real life visibility of 15,000 meters.

Wind
----
Expand Down
2 changes: 1 addition & 1 deletion src/WettergeraetLib/AeroflyWeather.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class AeroflyWeather
unsigned short maxCloudsDensity = 8; // as given in METAR cloud density
unsigned long maxCloudsHeight = 40000; // ft = 100% Aerofly
double maxWindSpeed = 16; // kt = 100% Aerofly
unsigned long maxVisibility = 20000; // m = 100% Aerofly
unsigned long maxVisibility = 15000; // m = 100% Aerofly
double maxTurbulence = 20; // kt as delta to current wind
double minTemperature = 5; // °C => 0% Aerofly
double maxTemperature = 30; // °C => 100% Aerofly
Expand Down

0 comments on commit da0746d

Please sign in to comment.