speed from gps is in miles! whatever, just scale

This commit is contained in:
rgarcia-herrera 2020-09-03 14:16:11 -05:00
parent c96e6a7ef9
commit 7ac6322a29

View File

@ -183,7 +183,7 @@ class FlockompassApp(App):
dest_distance = "%0.1f km" % dest_distance
self.dest_distance = "Destino: %s\nVel: %0.1f km/h" % (dest_distance,
self.gps_data['speed'])
self.gps_data['speed'] * 1.609344)
def center_map_on_gps(self):