|
@@ -191,6 +191,9 @@ class Inbound:
|
|
arrivalRoute[-1].FlightTime = timedelta(seconds = flightTimeSeconds)
|
|
arrivalRoute[-1].FlightTime = timedelta(seconds = flightTimeSeconds)
|
|
arrivalRoute[-1].ETA = self.ReportTime + arrivalRoute[-1].FlightTime
|
|
arrivalRoute[-1].ETA = self.ReportTime + arrivalRoute[-1].FlightTime
|
|
arrivalRoute[-1].PTA = arrivalRoute[-1].ETA
|
|
arrivalRoute[-1].PTA = arrivalRoute[-1].ETA
|
|
|
|
+ arrivalRoute[-1].Altitude = currentPosition[0]
|
|
|
|
+ arrivalRoute[-1].IndicatedAirspeed = currentIAS
|
|
|
|
+ arrivalRoute[-1].GroundSpeed = currentPosition[1]
|
|
|
|
|
|
# check if a skip from base to final turn waypoints is needed
|
|
# check if a skip from base to final turn waypoints is needed
|
|
if -1 != turnIndices[0] and nextWaypointIndex > turnIndices[0] and nextWaypointIndex < turnIndices[1]:
|
|
if -1 != turnIndices[0] and nextWaypointIndex > turnIndices[0] and nextWaypointIndex < turnIndices[1]:
|