From 9f0c6194f92fb542cd5889d055ede50770d5111a Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sun, 19 Sep 2021 19:06:51 -0400 Subject: [PATCH] print lat lon as tuples --- groundstation/loc-add-foxtelem.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/groundstation/loc-add-foxtelem.py b/groundstation/loc-add-foxtelem.py index aa61a55a..336e164c 100644 --- a/groundstation/loc-add-foxtelem.py +++ b/groundstation/loc-add-foxtelem.py @@ -36,7 +36,8 @@ if (choice == '2'): if re.search(regex, grid): print("grid is valid!") - print (mh.to_location(grid)) + print (mh.to_location(grid)[0]) + print (mh.to_location(grid)[1]) break else: print("grid is not valid!")