Commit a8bfae97 by Corey Koval

Preparing for program expansion

parent cca17660
...@@ -54,7 +54,6 @@ class receiver: ...@@ -54,7 +54,6 @@ class receiver:
self.confidence = int(xml_conf.text) self.confidence = int(xml_conf.text)
except: except:
print("Problem connecting to receiver.") print("Problem connecting to receiver.")
pass
latitude = 0.0 latitude = 0.0
longitude = 0.0 longitude = 0.0
...@@ -252,7 +251,9 @@ if __name__ == '__main__': ...@@ -252,7 +251,9 @@ if __name__ == '__main__':
avg_list = [] avg_list = []
average_intersects = np.array([]).reshape(0,2) average_intersects = np.array([]).reshape(0,2)
while True: receiving = True
while receiving:
print("Receiving" + dots*'.') print("Receiving" + dots*'.')
print("Press Control+C to process data and exit.") print("Press Control+C to process data and exit.")
intersect_list = np.array([]).reshape(0,3) intersect_list = np.array([]).reshape(0,3)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment