Create a GUI that allows the user to enter min/max values for Mean Motion. Make a "Find" button that when pressed has the user select an output file and finds satellites with Mean Motion within the specified range and prints them to the screen and writes them to the selected file.
from tkinter import *
root = Tk()
mn=Label(root, text='Enter min value: ').grid(row=0)
mx=Label(root, text='Enter max value: ').grid(row=1)
e1 = Entry(root)
e2 = Entry(root)
e1.grid(row=0, column=1)
e2.grid(row=1, column=1)
Button(root,text="Find").grid(row=3,column=0)
mainloop()
Comments
Leave a comment