Adding more details about stationary markers.

This commit is contained in:
Marat Fayzullin
2022-12-05 22:59:09 -05:00
parent 22a447f590
commit c504589b76
2 changed files with 26 additions and 6 deletions

View File

@ -148,7 +148,7 @@ class AprsLocation(LatLngLocation):
def __dict__(self):
res = super(AprsLocation, self).__dict__()
for key in ["comment", "symbol", "course", "speed", "altitude", "weather", "device"]:
for key in ["comment", "symbol", "course", "speed", "altitude", "weather", "device", "power", "height", "gain", "directivity"]:
if key in self.data:
res[key] = self.data[key]
return res