Преглед изворни кода

do not ignore flights that passed the IAF

Sven Czarnian пре 3 година
родитељ
комит
dda7a90ef7
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      aman/sys/Worker.py

+ 1 - 1
aman/sys/Worker.py

@@ -85,7 +85,7 @@ class Worker(Thread):
             for callsign in self.ReportQueue:
             for callsign in self.ReportQueue:
                 report = self.ReportQueue[callsign]
                 report = self.ReportQueue[callsign]
 
 
-                if 0 != report.distanceToIAF and '' != report.initialApproachFix:
+                if '' != report.initialApproachFix:
                     inbound = Inbound(report, self.PerformanceData)
                     inbound = Inbound(report, self.PerformanceData)
                     Node(inbound, inbound.ReportTime, self.WeatherModel, self.Configuration, self.SequencingConfiguration)
                     Node(inbound, inbound.ReportTime, self.WeatherModel, self.Configuration, self.SequencingConfiguration)
                     if None != inbound.InitialArrivalTime:
                     if None != inbound.InitialArrivalTime: