Skip to content

Commit

Permalink
Update gs to 100kts
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmilshtein committed Oct 23, 2023
1 parent 6d8d368 commit 438e597
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export class GuidanceController {
private updateEfisData(activeLeg: Leg) {
const gs = SimVar.GetSimVarValue('GPS GROUND SPEED', 'Knots');
const flightPhase = getFlightPhaseManager().phase;
const etaComputable = flightPhase >= FmgcFlightPhase.Takeoff && gs > 95;
const etaComputable = flightPhase >= FmgcFlightPhase.Takeoff && gs > 100;
if (activeLeg) {
const termination = activeLeg instanceof XFLeg ? activeLeg.fix.infos.coordinates : activeLeg.getPathEndPoint();
const ppos = this.lnavDriver.ppos;
Expand Down

0 comments on commit 438e597

Please sign in to comment.