We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0344b0 commit 516acafCopy full SHA for 516acaf
js/tracker.js
@@ -2714,6 +2714,12 @@ function updateReceivers(r) {
2714
2715
if(lat < -90 || lat > 90 || lon < -180 || lon > 180) continue;
2716
2717
+ // Filter out any receivers that are from the TTN Bridge code, and that are older than 1 hour.
2718
+ // This helps de-clutter the map during launches utilising TTN, and that result in *many* new
2719
+ // receivers showing up on the map.
2720
+ var age = parseFloat(r[i].tdiff_hours); // Grab age of the receiver.
2721
+ if(r[i].description.includes('TTN_LORAWAN_GW') && age > 1.0) continue;
2722
+
2723
var r_index = $.inArray(r[i].name, receiver_names);
2724
2725
if(r_index == -1) {
0 commit comments