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.
2 parents 41dc13a + 7450182 commit 1758886Copy full SHA for 1758886
js/tracker.js
@@ -2723,6 +2723,12 @@ function updateReceivers(r) {
2723
2724
if(lat < -90 || lat > 90 || lon < -180 || lon > 180) continue;
2725
2726
+ // Filter out any receivers that are from the TTN Bridge code, and that are older than 1 hour.
2727
+ // This helps de-clutter the map during launches utilising TTN, and that result in *many* new
2728
+ // receivers showing up on the map.
2729
+ var age = parseFloat(r[i].tdiff_hours); // Grab age of the receiver.
2730
+ if(r[i].description.includes('TTN_LORAWAN_GW') && age > 1.0) continue;
2731
+
2732
var r_index = $.inArray(r[i].name, receiver_names);
2733
2734
if(r_index == -1) {
0 commit comments