Partial fix for runway leg courses.
Don’t assume runway leg course matches the runway heading. Full fix means generating separate entry/exit turns for runways.
This commit is contained in:
parent
5c659b3970
commit
dbc47efa18
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ public:
|
||||||
pos = wpt->position();
|
pos = wpt->position();
|
||||||
posValid = true;
|
posValid = true;
|
||||||
|
|
||||||
if ((ty == "runway") || (ty == "hold")) {
|
if (ty == "hold") {
|
||||||
legCourseTrue = wpt->headingRadialDeg() + magVarFor(pos);
|
legCourseTrue = wpt->headingRadialDeg() + magVarFor(pos);
|
||||||
legCourseValid = true;
|
legCourseValid = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue