forked from FOSS/BangleApps
spacer: report details for each system
parent
5b75b82797
commit
9605d0d2bb
|
@ -162,7 +162,7 @@ let skys = {
|
||||||
if (sortedSats[i] && sortedSats[i].snr)
|
if (sortedSats[i] && sortedSats[i].snr)
|
||||||
return "S" + (i+1);
|
return "S" + (i+1);
|
||||||
}
|
}
|
||||||
return "nil";
|
return "U" + this.snum;
|
||||||
},
|
},
|
||||||
satVisibility: [],
|
satVisibility: [],
|
||||||
trackSatelliteVisibility: function() {
|
trackSatelliteVisibility: function() {
|
||||||
|
@ -303,7 +303,8 @@ let sky = {
|
||||||
let r = sys.sent + " ";
|
let r = sys.sent + " ";
|
||||||
// r+= sys.d23 + "D ";
|
// r+= sys.d23 + "D ";
|
||||||
if (sats)
|
if (sats)
|
||||||
r += sats.sats_used + "/" + sats.snum;
|
// r += sats.sats_used + "/" + sats.snum;
|
||||||
|
r += sats.summary();
|
||||||
return r + "\n";
|
return r + "\n";
|
||||||
},
|
},
|
||||||
drawRace: function() {
|
drawRace: function() {
|
||||||
|
|
Loading…
Reference in New Issue