From 662e8c9bdf4f9e80a130208e4cf216a7f0681350 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Sun, 19 Sep 2021 19:01:44 -0400 Subject: [PATCH] added mh to lat/lon call --- groundstation/loc-add-foxtelem.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/groundstation/loc-add-foxtelem.py b/groundstation/loc-add-foxtelem.py index d09b104a..844773c5 100644 --- a/groundstation/loc-add-foxtelem.py +++ b/groundstation/loc-add-foxtelem.py @@ -6,6 +6,7 @@ import requests from os import system import re import sys +import maidenhead as mh latitude = 0 longitude = 0 @@ -35,6 +36,7 @@ if (choice == '2'): if re.search(regex, grid): print("grid is valid!") + print mh.to_location(grid) break else: print("grid is not valid!")