mirror of
https://github.com/craigerl/aprsd.git
synced 2024-12-20 16:41:13 -05:00
Fixed latitude reporting in locationPlugin
The latitude was always 0, because it was the altitude.
This commit is contained in:
parent
7e3b95fd01
commit
4ca5c29d49
@ -67,7 +67,7 @@ class LocationPlugin(plugin.APRSDPluginBase):
|
|||||||
searchcall,
|
searchcall,
|
||||||
wx_data["location"]["areaDescription"],
|
wx_data["location"]["areaDescription"],
|
||||||
str(altfeet),
|
str(altfeet),
|
||||||
str(alt),
|
str(lat),
|
||||||
str(lon),
|
str(lon),
|
||||||
str("%.1f" % round(delta_hours, 1)),
|
str("%.1f" % round(delta_hours, 1)),
|
||||||
).rstrip()
|
).rstrip()
|
||||||
|
Loading…
Reference in New Issue
Block a user