From 791c9c260576c37909bee66ce2a34d2035b32c1a Mon Sep 17 00:00:00 2001 From: Sven Czarnian Date: Thu, 16 Dec 2021 16:02:08 +0100 Subject: [PATCH] do not filter based on distances --- src/PlugIn.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/PlugIn.cpp b/src/PlugIn.cpp index 2b04d44..abc4d1c 100644 --- a/src/PlugIn.cpp +++ b/src/PlugIn.cpp @@ -336,11 +336,6 @@ void PlugIn::generateAircraftReportMessage(EuroScopePlugIn::CRadarTarget& radarT if (4 != destination.length()) return; - /* filter by distance to destination */ - const double distanceNM = flightPlan.GetDistanceToDestination(); - if (5.0 > distanceNM || 250.0 < distanceNM) - return; - /* filter by airborne identifier (assume a GS>50kn and a big distance to the origin) */ if (50 > radarTarget.GetGS() || 10.0 > flightPlan.GetDistanceFromOrigin()) return;