From dc3c6f637c2724ad78a60f925e154a7ef4c38947 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sun, 13 Mar 2022 09:22:25 -0400 Subject: [PATCH] typo in times --- groundstation/tago-upload.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/groundstation/tago-upload.py b/groundstation/tago-upload.py index f89f798b..7690b317 100644 --- a/groundstation/tago-upload.py +++ b/groundstation/tago-upload.py @@ -15,7 +15,8 @@ while (True): lat = float(telem_json['entries'][0]['lat']) lon = float(telem_json['entries'][0]['lng']) telem_string = telem_json['entries'][0]['comment'] - times = int(telem_json['timestamp']) + times = int(telem_json['entries'][0]['time']) + print(lat) print(lon)