From dda7a90ef7b6242ee42f03aa402215156e779a5f Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Fri, 17 Dec 2021 13:05:53 +0100 Subject: [PATCH] do not ignore flights that passed the IAF --- aman/sys/Worker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aman/sys/Worker.py b/aman/sys/Worker.py index 4191d5a..b16d6f4 100644 --- a/aman/sys/Worker.py +++ b/aman/sys/Worker.py @@ -85,7 +85,7 @@ class Worker(Thread): for callsign in self.ReportQueue: report = self.ReportQueue[callsign] - if 0 != report.distanceToIAF and '' != report.initialApproachFix: + if '' != report.initialApproachFix: inbound = Inbound(report, self.PerformanceData) Node(inbound, inbound.ReportTime, self.WeatherModel, self.Configuration, self.SequencingConfiguration) if None != inbound.InitialArrivalTime: