Fixed incorrect defaults for IFAC size after increase in default values in RNS
This commit is contained in:
parent
7e5948403b
commit
3b7d1b7892
|
@ -2810,6 +2810,11 @@ class SidebandCore():
|
||||||
else:
|
else:
|
||||||
ifac_netkey = self.config["connect_tcp_ifac_passphrase"]
|
ifac_netkey = self.config["connect_tcp_ifac_passphrase"]
|
||||||
|
|
||||||
|
if ifac_netname != None or ifac_netkey != None:
|
||||||
|
ifac_size = 16
|
||||||
|
else:
|
||||||
|
ifac_size = None
|
||||||
|
|
||||||
tcpinterface = RNS.Interfaces.TCPInterface.TCPClientInterface(
|
tcpinterface = RNS.Interfaces.TCPInterface.TCPClientInterface(
|
||||||
RNS.Transport,
|
RNS.Transport,
|
||||||
"TCPClientInterface",
|
"TCPClientInterface",
|
||||||
|
@ -2834,7 +2839,7 @@ class SidebandCore():
|
||||||
else:
|
else:
|
||||||
if_mode = None
|
if_mode = None
|
||||||
|
|
||||||
self.reticulum._add_interface(tcpinterface, mode=if_mode, ifac_netname=ifac_netname, ifac_netkey=ifac_netkey)
|
self.reticulum._add_interface(tcpinterface, mode=if_mode, ifac_netname=ifac_netname, ifac_netkey=ifac_netkey, ifac_size=ifac_size)
|
||||||
self.interface_tcp = tcpinterface
|
self.interface_tcp = tcpinterface
|
||||||
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
@ -2857,6 +2862,11 @@ class SidebandCore():
|
||||||
else:
|
else:
|
||||||
ifac_netkey = self.config["connect_i2p_ifac_passphrase"]
|
ifac_netkey = self.config["connect_i2p_ifac_passphrase"]
|
||||||
|
|
||||||
|
if ifac_netname != None or ifac_netkey != None:
|
||||||
|
ifac_size = 16
|
||||||
|
else:
|
||||||
|
ifac_size = None
|
||||||
|
|
||||||
i2pinterface = RNS.Interfaces.I2PInterface.I2PInterface(
|
i2pinterface = RNS.Interfaces.I2PInterface.I2PInterface(
|
||||||
RNS.Transport,
|
RNS.Transport,
|
||||||
"I2PInterface",
|
"I2PInterface",
|
||||||
|
@ -2880,7 +2890,7 @@ class SidebandCore():
|
||||||
else:
|
else:
|
||||||
if_mode = None
|
if_mode = None
|
||||||
|
|
||||||
self.reticulum._add_interface(i2pinterface, mode = if_mode, ifac_netname=ifac_netname, ifac_netkey=ifac_netkey)
|
self.reticulum._add_interface(i2pinterface, mode = if_mode, ifac_netname=ifac_netname, ifac_netkey=ifac_netkey, ifac_size=ifac_size)
|
||||||
|
|
||||||
for si in RNS.Transport.interfaces:
|
for si in RNS.Transport.interfaces:
|
||||||
if type(si) == RNS.Interfaces.I2PInterface.I2PInterfacePeer:
|
if type(si) == RNS.Interfaces.I2PInterface.I2PInterfacePeer:
|
||||||
|
|
|
@ -290,6 +290,20 @@ def shared_radio_horizon(c1, c2,):
|
||||||
"antenna_distance": antenna_distance
|
"antenna_distance": antenna_distance
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def ghtest():
|
||||||
|
import pygeodesy
|
||||||
|
from pygeodesy.ellipsoidalKarney import LatLon
|
||||||
|
ginterpolator = pygeodesy.GeoidKarney("./assets/geoids/egm2008-5.pgm")
|
||||||
|
|
||||||
|
# Make an example location
|
||||||
|
lat=51.416422
|
||||||
|
lon=-116.217151
|
||||||
|
|
||||||
|
# Get the geoid height
|
||||||
|
single_position=LatLon(lat, lon)
|
||||||
|
h = ginterpolator(single_position)
|
||||||
|
print(h)
|
||||||
|
|
||||||
# def tests():
|
# def tests():
|
||||||
# import RNS
|
# import RNS
|
||||||
# import numpy as np
|
# import numpy as np
|
||||||
|
|
|
@ -282,280 +282,285 @@ class RVDetails(MDRecycleView):
|
||||||
self.data = []
|
self.data = []
|
||||||
|
|
||||||
def update_source(self, rendered_telemetry=None):
|
def update_source(self, rendered_telemetry=None):
|
||||||
if not rendered_telemetry:
|
try:
|
||||||
rendered_telemetry = []
|
if not rendered_telemetry:
|
||||||
|
rendered_telemetry = []
|
||||||
sort = {
|
|
||||||
"Physical Link": 10,
|
sort = {
|
||||||
"Location": 20,
|
"Physical Link": 10,
|
||||||
"Ambient Light": 30,
|
"Location": 20,
|
||||||
"Ambient Temperature": 40,
|
"Ambient Light": 30,
|
||||||
"Relative Humidity": 50,
|
"Ambient Temperature": 40,
|
||||||
"Ambient Pressure": 60,
|
"Relative Humidity": 50,
|
||||||
"Battery": 70,
|
"Ambient Pressure": 60,
|
||||||
"Timestamp": 80,
|
"Battery": 70,
|
||||||
"Received": 90,
|
"Timestamp": 80,
|
||||||
"Information": 5,
|
"Received": 90,
|
||||||
}
|
"Information": 5,
|
||||||
self.entries = []
|
}
|
||||||
rendered_telemetry.sort(key=lambda s: sort[s["name"]] if s["name"] in sort else 1000)
|
self.entries = []
|
||||||
for s in rendered_telemetry:
|
rendered_telemetry.sort(key=lambda s: sort[s["name"]] if s["name"] in sort else 1000)
|
||||||
extra_entries = []
|
for s in rendered_telemetry:
|
||||||
def pass_job(sender=None):
|
extra_entries = []
|
||||||
pass
|
def pass_job(sender=None):
|
||||||
release_function = pass_job
|
pass
|
||||||
formatted_values = None
|
release_function = pass_job
|
||||||
name = s["name"]
|
formatted_values = None
|
||||||
if name == "Timestamp":
|
name = s["name"]
|
||||||
ts = s["values"]["UTC"]
|
if name == "Timestamp":
|
||||||
if ts != None:
|
ts = s["values"]["UTC"]
|
||||||
ts_str = datetime.fromtimestamp(ts).strftime("%Y-%m-%d %H:%M:%S")
|
if ts != None:
|
||||||
formatted_values = f"Recorded [b]{RNS.prettytime(time.time()-ts, compact=True)} ago[/b] ({ts_str})"
|
ts_str = datetime.fromtimestamp(ts).strftime("%Y-%m-%d %H:%M:%S")
|
||||||
def copy_info(e=None):
|
formatted_values = f"Recorded [b]{RNS.prettytime(time.time()-ts, compact=True)} ago[/b] ({ts_str})"
|
||||||
Clipboard.copy(ts_str)
|
def copy_info(e=None):
|
||||||
toast("Copied to clipboard")
|
Clipboard.copy(ts_str)
|
||||||
release_function = copy_info
|
toast("Copied to clipboard")
|
||||||
elif name == "Information":
|
release_function = copy_info
|
||||||
info = s["values"]["contents"]
|
elif name == "Information":
|
||||||
if info != None:
|
info = s["values"]["contents"]
|
||||||
istr = str(info)
|
if info != None:
|
||||||
def copy_info(e=None):
|
istr = str(info)
|
||||||
Clipboard.copy(istr)
|
def copy_info(e=None):
|
||||||
toast("Copied to clipboard")
|
Clipboard.copy(istr)
|
||||||
release_function = copy_info
|
toast("Copied to clipboard")
|
||||||
external_text = escape_markup(istr)
|
release_function = copy_info
|
||||||
formatted_values = f"[b]Information[/b]: {external_text}"
|
external_text = escape_markup(istr)
|
||||||
elif name == "Received":
|
formatted_values = f"[b]Information[/b]: {external_text}"
|
||||||
formatted_values = ""
|
elif name == "Received":
|
||||||
by = s["values"]["by"];
|
formatted_values = ""
|
||||||
via = s["values"]["via"];
|
by = s["values"]["by"];
|
||||||
|
via = s["values"]["via"];
|
||||||
|
|
||||||
if by == self.app.sideband.lxmf_destination.hash:
|
if by == self.app.sideband.lxmf_destination.hash:
|
||||||
if via == self.delegate.object_hash:
|
if via == self.delegate.object_hash:
|
||||||
formatted_values = "Collected directly by [b]this device[/b], directly [b]from emitter[/b]"
|
formatted_values = "Collected directly by [b]this device[/b], directly [b]from emitter[/b]"
|
||||||
|
else:
|
||||||
|
via_str = self.app.sideband.peer_display_name(via)
|
||||||
|
if via_str == None:
|
||||||
|
via_str = "an [b]unknown peer[/b]"
|
||||||
|
formatted_values = f"Collected directly by [b]this device[/b], via {via_str}"
|
||||||
else:
|
else:
|
||||||
via_str = self.app.sideband.peer_display_name(via)
|
if via != None and via == by:
|
||||||
if via_str == None:
|
|
||||||
via_str = "an [b]unknown peer[/b]"
|
|
||||||
formatted_values = f"Collected directly by [b]this device[/b], via {via_str}"
|
|
||||||
else:
|
|
||||||
if via != None and via == by:
|
|
||||||
vstr = self.app.sideband.peer_display_name(via)
|
|
||||||
formatted_values = f"Received from, and collected by [b]{vstr}[/b]"
|
|
||||||
|
|
||||||
else:
|
|
||||||
if via != None:
|
|
||||||
vstr = self.app.sideband.peer_display_name(via)
|
vstr = self.app.sideband.peer_display_name(via)
|
||||||
via_str = f"Received from [b]{vstr}[/b]"
|
formatted_values = f"Received from, and collected by [b]{vstr}[/b]"
|
||||||
else:
|
|
||||||
via_str = "Received from an [b]unknown peer[/b]"
|
|
||||||
|
|
||||||
if by != None:
|
|
||||||
dstr = self.app.sideband.peer_display_name(by)
|
|
||||||
by_str = f", collected by [b]{dstr}[/b]"
|
|
||||||
else:
|
else:
|
||||||
by_str = f", collected by an [b]unknown peer[/b]"
|
if via != None:
|
||||||
|
vstr = self.app.sideband.peer_display_name(via)
|
||||||
formatted_values = f"{via_str}{by_str}"
|
via_str = f"Received from [b]{vstr}[/b]"
|
||||||
|
|
||||||
if formatted_values == "":
|
|
||||||
formatted_values = None
|
|
||||||
|
|
||||||
if not by == self.app.sideband.lxmf_destination.hash and not self.app.sideband.is_trusted(by):
|
|
||||||
extra_entries.append({"icon": "alert", "text": "Collected by a [b]non-trusted[/b] peer"})
|
|
||||||
|
|
||||||
elif name == "Battery":
|
|
||||||
p = s["values"]["percent"]
|
|
||||||
cs = s["values"]["_meta"]
|
|
||||||
if cs != None: cs_str = f" ({cs})"
|
|
||||||
if p != None: formatted_values = f"{name} [b]{p}%[/b]"+cs_str
|
|
||||||
elif name == "Ambient Pressure":
|
|
||||||
p = s["values"]["mbar"]
|
|
||||||
if p != None: formatted_values = f"{name} [b]{p} mbar[/b]"
|
|
||||||
dt = "mbar"
|
|
||||||
if "deltas" in s and dt in s["deltas"] and s["deltas"][dt] != None:
|
|
||||||
d = s["deltas"][dt]
|
|
||||||
formatted_values += f" (Δ = {d} mbar)"
|
|
||||||
elif name == "Ambient Temperature":
|
|
||||||
c = s["values"]["c"]
|
|
||||||
if c != None: formatted_values = f"{name} [b]{c}° C[/b]"
|
|
||||||
dt = "c"
|
|
||||||
if "deltas" in s and dt in s["deltas"] and s["deltas"][dt] != None:
|
|
||||||
d = s["deltas"][dt]
|
|
||||||
formatted_values += f" (Δ = {d}° C)"
|
|
||||||
elif name == "Relative Humidity":
|
|
||||||
r = s["values"]["percent"]
|
|
||||||
if r != None: formatted_values = f"{name} [b]{r}%[/b]"
|
|
||||||
dt = "percent"
|
|
||||||
if "deltas" in s and dt in s["deltas"] and s["deltas"][dt] != None:
|
|
||||||
d = s["deltas"][dt]
|
|
||||||
formatted_values += f" (Δ = {d}%)"
|
|
||||||
elif name == "Physical Link":
|
|
||||||
rssi = s["values"]["rssi"]; rssi_str = None
|
|
||||||
snr = s["values"]["snr"]; snr_str = None
|
|
||||||
q = s["values"]["q"]; q_str = None
|
|
||||||
if q != None: q_str = f"Link Quality [b]{q}%[/b]"
|
|
||||||
if rssi != None:
|
|
||||||
rssi_str = f"RSSI [b]{rssi} dBm[/b]"
|
|
||||||
if q != None: rssi_str = ", "+rssi_str
|
|
||||||
if snr != None:
|
|
||||||
snr_str = f"SNR [b]{snr} dB[/b]"
|
|
||||||
if q != None or rssi != None: snr_str = ", "+snr_str
|
|
||||||
if q_str or rssi_str or snr_str:
|
|
||||||
formatted_values = q_str+rssi_str+snr_str
|
|
||||||
elif name == "Location":
|
|
||||||
lat = s["values"]["latitude"]
|
|
||||||
lon = s["values"]["longitude"]
|
|
||||||
alt = s["values"]["altitude"]
|
|
||||||
speed = s["values"]["speed"]
|
|
||||||
heading = s["values"]["heading"]
|
|
||||||
accuracy = s["values"]["accuracy"]
|
|
||||||
updated = s["values"]["updated"]
|
|
||||||
updated_str = f", logged [b]{RNS.prettytime(time.time()-updated, compact=True)} ago[/b]"
|
|
||||||
|
|
||||||
coords = f"{lat}, {lon}"
|
|
||||||
fcoords = f"{round(lat,4)}, {round(lon,4)}"
|
|
||||||
self.delegate.coords = coords
|
|
||||||
if alt == 0:
|
|
||||||
alt_str = "0"
|
|
||||||
else:
|
|
||||||
alt_str = RNS.prettydistance(alt)
|
|
||||||
formatted_values = f"Coordinates [b]{fcoords}[/b], altitude [b]{alt_str}[/b]"
|
|
||||||
if speed != None:
|
|
||||||
if speed > 0.000001:
|
|
||||||
speed_formatted_values = f"Speed [b]{speed} Km/h[/b], heading [b]{heading}°[/b]"
|
|
||||||
else:
|
|
||||||
speed_formatted_values = f"Speed [b]0 Km/h[/b]"
|
|
||||||
else:
|
|
||||||
speed_formatted_values = None
|
|
||||||
extra_formatted_values = f"Uncertainty [b]{accuracy} meters[/b]"+updated_str
|
|
||||||
|
|
||||||
data = {"icon": s["icon"], "text": f"{formatted_values}"}
|
|
||||||
|
|
||||||
extra_entries.append({"icon": "map-marker-question", "text": extra_formatted_values})
|
|
||||||
if speed_formatted_values != None:
|
|
||||||
extra_entries.append({"icon": "speedometer", "text": speed_formatted_values})
|
|
||||||
|
|
||||||
if "distance" in s:
|
|
||||||
if "orthodromic" in s["distance"]:
|
|
||||||
od = s["distance"]["orthodromic"]
|
|
||||||
if od != None:
|
|
||||||
od_text = f"Geodesic distance [b]{RNS.prettydistance(od)}[/b]"
|
|
||||||
extra_entries.append({"icon": "earth", "text": od_text})
|
|
||||||
|
|
||||||
if "euclidian" in s["distance"]:
|
|
||||||
ed = s["distance"]["euclidian"]
|
|
||||||
if ed != None:
|
|
||||||
ed_text = f"Euclidian distance [b]{RNS.prettydistance(ed)}[/b]"
|
|
||||||
extra_entries.append({"icon": "axis-arrow", "text": ed_text})
|
|
||||||
|
|
||||||
if "vertical" in s["distance"]:
|
|
||||||
vd = s["distance"]["vertical"]
|
|
||||||
if vd != None:
|
|
||||||
if vd < 0:
|
|
||||||
relstr = "lower"
|
|
||||||
vd = abs(vd)
|
|
||||||
else:
|
else:
|
||||||
relstr = "greater"
|
via_str = "Received from an [b]unknown peer[/b]"
|
||||||
vd_text = f"Altitude is [b]{RNS.prettydistance(vd)}[/b] {relstr} than this device"
|
|
||||||
extra_entries.append({"icon": "altimeter", "text": vd_text})
|
if by != None:
|
||||||
|
dstr = self.app.sideband.peer_display_name(by)
|
||||||
|
by_str = f", collected by [b]{dstr}[/b]"
|
||||||
|
else:
|
||||||
|
by_str = f", collected by an [b]unknown peer[/b]"
|
||||||
|
|
||||||
if "angle_to_horizon" in s["values"]:
|
formatted_values = f"{via_str}{by_str}"
|
||||||
oath = s["values"]["angle_to_horizon"]
|
|
||||||
if oath != None:
|
|
||||||
if self.delegate.viewing_self:
|
|
||||||
oath_text = f"Local horizon is at [b]{round(oath,3)}°[/b]"
|
|
||||||
else:
|
|
||||||
oath_text = f"Object's horizon is at [b]{round(oath,3)}°[/b]"
|
|
||||||
extra_entries.append({"icon": "arrow-split-horizontal", "text": oath_text})
|
|
||||||
|
|
||||||
if self.delegate.viewing_self and "radio_horizon" in s["values"]:
|
if formatted_values == "":
|
||||||
orh = s["values"]["radio_horizon"]
|
formatted_values = None
|
||||||
if orh != None:
|
|
||||||
range_text = RNS.prettydistance(orh)
|
|
||||||
rh_formatted_text = f"Radio horizon of [b]{range_text}[/b]"
|
|
||||||
extra_entries.append({"icon": "radio-tower", "text": rh_formatted_text})
|
|
||||||
|
|
||||||
if "azalt" in s and "local_angle_to_horizon" in s["azalt"]:
|
if not by == self.app.sideband.lxmf_destination.hash and not self.app.sideband.is_trusted(by):
|
||||||
lath = s["azalt"]["local_angle_to_horizon"]
|
extra_entries.append({"icon": "alert", "text": "Collected by a [b]non-trusted[/b] peer"})
|
||||||
if lath != None:
|
|
||||||
lath_text = f"Local horizon is at [b]{round(lath,3)}°[/b]"
|
|
||||||
extra_entries.append({"icon": "align-vertical-distribute", "text": lath_text})
|
|
||||||
|
|
||||||
if "azalt" in s:
|
|
||||||
azalt_formatted_text = ""
|
|
||||||
if "azimuth" in s["azalt"]:
|
|
||||||
az = s["azalt"]["azimuth"]
|
|
||||||
az_text = f"Azimuth [b]{round(az,3)}°[/b]"
|
|
||||||
azalt_formatted_text += az_text
|
|
||||||
|
|
||||||
if "altitude" in s["azalt"]:
|
elif name == "Battery":
|
||||||
al = s["azalt"]["altitude"]
|
p = s["values"]["percent"]
|
||||||
al_text = f"altitude [b]{round(al,3)}°[/b]"
|
cs = s["values"]["_meta"]
|
||||||
if len(azalt_formatted_text) != 0: azalt_formatted_text += ", "
|
if cs != None: cs_str = f" ({cs})"
|
||||||
azalt_formatted_text += al_text
|
if p != None: formatted_values = f"{name} [b]{p}%[/b]"+cs_str
|
||||||
|
elif name == "Ambient Pressure":
|
||||||
extra_entries.append({"icon": "compass-rose", "text": azalt_formatted_text})
|
p = s["values"]["mbar"]
|
||||||
|
if p != None: formatted_values = f"{name} [b]{p} mbar[/b]"
|
||||||
if "above_horizon" in s["azalt"]:
|
dt = "mbar"
|
||||||
astr = "above" if s["azalt"]["above_horizon"] == True else "below"
|
|
||||||
dstr = str(round(s["azalt"]["altitude_delta"], 3))
|
|
||||||
ah_text = f"Object is [b]{astr}[/b] the horizon (Δ = {dstr}°)"
|
|
||||||
extra_entries.append({"icon": "angle-acute", "text": ah_text})
|
|
||||||
|
|
||||||
if not self.delegate.viewing_self and "radio_horizon" in s["values"]:
|
|
||||||
orh = s["values"]["radio_horizon"]
|
|
||||||
if orh != None:
|
|
||||||
range_text = RNS.prettydistance(orh)
|
|
||||||
rh_formatted_text = f"Object's radio horizon is [b]{range_text}[/b]"
|
|
||||||
extra_entries.append({"icon": "radio-tower", "text": rh_formatted_text})
|
|
||||||
|
|
||||||
if "radio_horizon" in s:
|
|
||||||
rh_icon = "circle-outline"
|
|
||||||
crange_text = RNS.prettydistance(s["radio_horizon"]["combined_range"])
|
|
||||||
if s["radio_horizon"]["within_range"]:
|
|
||||||
rh_formatted_text = f"[b]Within[/b] shared radio horizon of [b]{crange_text}[/b]"
|
|
||||||
rh_icon = "set-none"
|
|
||||||
else:
|
|
||||||
rh_formatted_text = f"[b]Outside[/b] shared radio horizon of [b]{crange_text}[/b]"
|
|
||||||
|
|
||||||
extra_entries.append({"icon": rh_icon, "text": rh_formatted_text})
|
|
||||||
|
|
||||||
def select(e=None):
|
|
||||||
geo_uri = f"geo:{lat},{lon}"
|
|
||||||
def lj():
|
|
||||||
webbrowser.open(geo_uri)
|
|
||||||
threading.Thread(target=lj, daemon=True).start()
|
|
||||||
|
|
||||||
release_function = select
|
|
||||||
else:
|
|
||||||
formatted_values = f"{name}"
|
|
||||||
for vn in s["values"]:
|
|
||||||
v = s["values"][vn]
|
|
||||||
formatted_values += f" [b]{v} {vn}[/b]"
|
|
||||||
|
|
||||||
dt = vn
|
|
||||||
if "deltas" in s and dt in s["deltas"] and s["deltas"][dt] != None:
|
if "deltas" in s and dt in s["deltas"] and s["deltas"][dt] != None:
|
||||||
d = s["deltas"][dt]
|
d = s["deltas"][dt]
|
||||||
formatted_values += f" (Δ = {d} {vn})"
|
formatted_values += f" (Δ = {d} mbar)"
|
||||||
|
elif name == "Ambient Temperature":
|
||||||
data = None
|
c = s["values"]["c"]
|
||||||
if formatted_values != None:
|
if c != None: formatted_values = f"{name} [b]{c}° C[/b]"
|
||||||
if release_function:
|
dt = "c"
|
||||||
data = {"icon": s["icon"], "text": f"{formatted_values}", "on_release": release_function}
|
if "deltas" in s and dt in s["deltas"] and s["deltas"][dt] != None:
|
||||||
else:
|
d = s["deltas"][dt]
|
||||||
|
formatted_values += f" (Δ = {d}° C)"
|
||||||
|
elif name == "Relative Humidity":
|
||||||
|
r = s["values"]["percent"]
|
||||||
|
if r != None: formatted_values = f"{name} [b]{r}%[/b]"
|
||||||
|
dt = "percent"
|
||||||
|
if "deltas" in s and dt in s["deltas"] and s["deltas"][dt] != None:
|
||||||
|
d = s["deltas"][dt]
|
||||||
|
formatted_values += f" (Δ = {d}%)"
|
||||||
|
elif name == "Physical Link":
|
||||||
|
rssi = s["values"]["rssi"]; rssi_str = None
|
||||||
|
snr = s["values"]["snr"]; snr_str = None
|
||||||
|
q = s["values"]["q"]; q_str = None
|
||||||
|
if q != None: q_str = f"Link Quality [b]{q}%[/b]"
|
||||||
|
if rssi != None:
|
||||||
|
rssi_str = f"RSSI [b]{rssi} dBm[/b]"
|
||||||
|
if q != None: rssi_str = ", "+rssi_str
|
||||||
|
if snr != None:
|
||||||
|
snr_str = f"SNR [b]{snr} dB[/b]"
|
||||||
|
if q != None or rssi != None: snr_str = ", "+snr_str
|
||||||
|
if q_str or rssi_str or snr_str:
|
||||||
|
formatted_values = q_str+rssi_str+snr_str
|
||||||
|
elif name == "Location":
|
||||||
|
lat = s["values"]["latitude"]
|
||||||
|
lon = s["values"]["longitude"]
|
||||||
|
alt = s["values"]["altitude"]
|
||||||
|
speed = s["values"]["speed"]
|
||||||
|
heading = s["values"]["heading"]
|
||||||
|
accuracy = s["values"]["accuracy"]
|
||||||
|
updated = s["values"]["updated"]
|
||||||
|
updated_str = f", logged [b]{RNS.prettytime(time.time()-updated, compact=True)} ago[/b]"
|
||||||
|
|
||||||
|
coords = f"{lat}, {lon}"
|
||||||
|
fcoords = f"{round(lat,4)}, {round(lon,4)}"
|
||||||
|
self.delegate.coords = coords
|
||||||
|
if alt == 0:
|
||||||
|
alt_str = "0"
|
||||||
|
else:
|
||||||
|
alt_str = RNS.prettydistance(alt)
|
||||||
|
formatted_values = f"Coordinates [b]{fcoords}[/b], altitude [b]{alt_str}[/b]"
|
||||||
|
if speed != None:
|
||||||
|
if speed > 0.000001:
|
||||||
|
speed_formatted_values = f"Speed [b]{speed} Km/h[/b], heading [b]{heading}°[/b]"
|
||||||
|
else:
|
||||||
|
speed_formatted_values = f"Speed [b]0 Km/h[/b]"
|
||||||
|
else:
|
||||||
|
speed_formatted_values = None
|
||||||
|
extra_formatted_values = f"Uncertainty [b]{accuracy} meters[/b]"+updated_str
|
||||||
|
|
||||||
data = {"icon": s["icon"], "text": f"{formatted_values}"}
|
data = {"icon": s["icon"], "text": f"{formatted_values}"}
|
||||||
|
|
||||||
if data != None:
|
extra_entries.append({"icon": "map-marker-question", "text": extra_formatted_values})
|
||||||
self.entries.append(data)
|
if speed_formatted_values != None:
|
||||||
for extra in extra_entries:
|
extra_entries.append({"icon": "speedometer", "text": speed_formatted_values})
|
||||||
self.entries.append(extra)
|
|
||||||
|
|
||||||
if len(self.entries) == 0:
|
if "distance" in s:
|
||||||
self.entries.append({"icon": "timeline-question-outline", "text": f"No telemetry available for this device"})
|
if "orthodromic" in s["distance"]:
|
||||||
|
od = s["distance"]["orthodromic"]
|
||||||
|
if od != None:
|
||||||
|
od_text = f"Geodesic distance [b]{RNS.prettydistance(od)}[/b]"
|
||||||
|
extra_entries.append({"icon": "earth", "text": od_text})
|
||||||
|
|
||||||
|
if "euclidian" in s["distance"]:
|
||||||
|
ed = s["distance"]["euclidian"]
|
||||||
|
if ed != None:
|
||||||
|
ed_text = f"Euclidian distance [b]{RNS.prettydistance(ed)}[/b]"
|
||||||
|
extra_entries.append({"icon": "axis-arrow", "text": ed_text})
|
||||||
|
|
||||||
|
if "vertical" in s["distance"]:
|
||||||
|
vd = s["distance"]["vertical"]
|
||||||
|
if vd != None:
|
||||||
|
if vd < 0:
|
||||||
|
relstr = "lower"
|
||||||
|
vd = abs(vd)
|
||||||
|
else:
|
||||||
|
relstr = "greater"
|
||||||
|
vd_text = f"Altitude is [b]{RNS.prettydistance(vd)}[/b] {relstr} than this device"
|
||||||
|
extra_entries.append({"icon": "altimeter", "text": vd_text})
|
||||||
|
|
||||||
self.data = self.entries
|
if "angle_to_horizon" in s["values"]:
|
||||||
|
oath = s["values"]["angle_to_horizon"]
|
||||||
|
if oath != None:
|
||||||
|
if self.delegate.viewing_self:
|
||||||
|
oath_text = f"Local horizon is at [b]{round(oath,3)}°[/b]"
|
||||||
|
else:
|
||||||
|
oath_text = f"Object's horizon is at [b]{round(oath,3)}°[/b]"
|
||||||
|
extra_entries.append({"icon": "arrow-split-horizontal", "text": oath_text})
|
||||||
|
|
||||||
|
if self.delegate.viewing_self and "radio_horizon" in s["values"]:
|
||||||
|
orh = s["values"]["radio_horizon"]
|
||||||
|
if orh != None:
|
||||||
|
range_text = RNS.prettydistance(orh)
|
||||||
|
rh_formatted_text = f"Radio horizon of [b]{range_text}[/b]"
|
||||||
|
extra_entries.append({"icon": "radio-tower", "text": rh_formatted_text})
|
||||||
|
|
||||||
|
if "azalt" in s and "local_angle_to_horizon" in s["azalt"]:
|
||||||
|
lath = s["azalt"]["local_angle_to_horizon"]
|
||||||
|
if lath != None:
|
||||||
|
lath_text = f"Local horizon is at [b]{round(lath,3)}°[/b]"
|
||||||
|
extra_entries.append({"icon": "align-vertical-distribute", "text": lath_text})
|
||||||
|
|
||||||
|
if "azalt" in s:
|
||||||
|
azalt_formatted_text = ""
|
||||||
|
if "azimuth" in s["azalt"]:
|
||||||
|
az = s["azalt"]["azimuth"]
|
||||||
|
az_text = f"Azimuth [b]{round(az,3)}°[/b]"
|
||||||
|
azalt_formatted_text += az_text
|
||||||
|
|
||||||
|
if "altitude" in s["azalt"]:
|
||||||
|
al = s["azalt"]["altitude"]
|
||||||
|
al_text = f"altitude [b]{round(al,3)}°[/b]"
|
||||||
|
if len(azalt_formatted_text) != 0: azalt_formatted_text += ", "
|
||||||
|
azalt_formatted_text += al_text
|
||||||
|
|
||||||
|
extra_entries.append({"icon": "compass-rose", "text": azalt_formatted_text})
|
||||||
|
|
||||||
|
if "above_horizon" in s["azalt"]:
|
||||||
|
astr = "above" if s["azalt"]["above_horizon"] == True else "below"
|
||||||
|
dstr = str(round(s["azalt"]["altitude_delta"], 3))
|
||||||
|
ah_text = f"Object is [b]{astr}[/b] the horizon (Δ = {dstr}°)"
|
||||||
|
extra_entries.append({"icon": "angle-acute", "text": ah_text})
|
||||||
|
|
||||||
|
if not self.delegate.viewing_self and "radio_horizon" in s["values"]:
|
||||||
|
orh = s["values"]["radio_horizon"]
|
||||||
|
if orh != None:
|
||||||
|
range_text = RNS.prettydistance(orh)
|
||||||
|
rh_formatted_text = f"Object's radio horizon is [b]{range_text}[/b]"
|
||||||
|
extra_entries.append({"icon": "radio-tower", "text": rh_formatted_text})
|
||||||
|
|
||||||
|
if "radio_horizon" in s:
|
||||||
|
rh_icon = "circle-outline"
|
||||||
|
crange_text = RNS.prettydistance(s["radio_horizon"]["combined_range"])
|
||||||
|
if s["radio_horizon"]["within_range"]:
|
||||||
|
rh_formatted_text = f"[b]Within[/b] shared radio horizon of [b]{crange_text}[/b]"
|
||||||
|
rh_icon = "set-none"
|
||||||
|
else:
|
||||||
|
rh_formatted_text = f"[b]Outside[/b] shared radio horizon of [b]{crange_text}[/b]"
|
||||||
|
|
||||||
|
extra_entries.append({"icon": rh_icon, "text": rh_formatted_text})
|
||||||
|
|
||||||
|
def select(e=None):
|
||||||
|
geo_uri = f"geo:{lat},{lon}"
|
||||||
|
def lj():
|
||||||
|
webbrowser.open(geo_uri)
|
||||||
|
threading.Thread(target=lj, daemon=True).start()
|
||||||
|
|
||||||
|
release_function = select
|
||||||
|
else:
|
||||||
|
formatted_values = f"{name}"
|
||||||
|
for vn in s["values"]:
|
||||||
|
v = s["values"][vn]
|
||||||
|
formatted_values += f" [b]{v} {vn}[/b]"
|
||||||
|
|
||||||
|
dt = vn
|
||||||
|
if "deltas" in s and dt in s["deltas"] and s["deltas"][dt] != None:
|
||||||
|
d = s["deltas"][dt]
|
||||||
|
formatted_values += f" (Δ = {d} {vn})"
|
||||||
|
|
||||||
|
data = None
|
||||||
|
if formatted_values != None:
|
||||||
|
if release_function:
|
||||||
|
data = {"icon": s["icon"], "text": f"{formatted_values}", "on_release": release_function}
|
||||||
|
else:
|
||||||
|
data = {"icon": s["icon"], "text": f"{formatted_values}"}
|
||||||
|
|
||||||
|
if data != None:
|
||||||
|
self.entries.append(data)
|
||||||
|
for extra in extra_entries:
|
||||||
|
self.entries.append(extra)
|
||||||
|
|
||||||
|
if len(self.entries) == 0:
|
||||||
|
self.entries.append({"icon": "timeline-question-outline", "text": f"No telemetry available for this device"})
|
||||||
|
|
||||||
|
self.data = self.entries
|
||||||
|
except Exception as e:
|
||||||
|
import traceback
|
||||||
|
exception_info = "".join(traceback.TracebackException.from_exception(e).format())
|
||||||
|
RNS.log(f"An {str(type(e))} occurred while updating service telemetry: {str(e)}", RNS.LOG_ERROR)
|
||||||
|
RNS.log(exception_info, RNS.LOG_ERROR)
|
||||||
|
|
||||||
|
|
||||||
layout_object_details = """
|
layout_object_details = """
|
||||||
|
|
Loading…
Reference in New Issue