|
| | root = root |
| |
| | canvas = tk.Canvas(root) |
| |
| | scroll_y = ttk.Scrollbar(root, orient="vertical", command=self.canvas.yview) |
| |
| | scroll_x = ttk.Scrollbar(root, orient="horizontal", command=self.canvas.xview) |
| |
| | frame = ttk.Frame(self.canvas) |
| |
| | catalog_dropdown = ttk.Combobox(input_frame, state="readonly") |
| |
| | fetch_events = "ew") |
| |
| | event_dropdown = ttk.Combobox(input_frame, state="readonly") |
| |
| | fetch_event_details = "ew") |
| |
| | run_dropdown = ttk.Combobox(input_frame, state="readonly") |
| |
| | detector_listbox = tk.Listbox(input_frame, selectmode="multiple", exportselection=False, height=3) |
| |
| | gps_start_entry = ttk.Entry(input_frame, width=20) |
| |
| | gps_end_entry = ttk.Entry(input_frame, width=20) |
| |
| | mode = tk.StringVar(value="gps_to_utc") |
| |
| | convert_entry = ttk.Entry(conversion_frame, width=20) |
| |
| | convert_button = ttk.Button(conversion_frame, text="Convert", command=self.convert_time) |
| |
| | result_label = ttk.Label(conversion_frame, text="Result: ") |
| |
| | toggle_button = ttk.Button(conversion_frame, text="Switch to UTC → GPS", command=self.toggle_mode) |
| |
| | url_dropdown = ttk.Combobox(url_frame, state="readonly") |
| |
| | copy_button = ttk.Button(url_frame, text="Copy URL", command=self.copy_url) |
| |
| | save_button = ttk.Button(input_frame, text="Save Parameters", command=self.save_params) |
| |
| | plot_frame = ttk.Frame(self.frame) |
| |
| | fft_button |
| |
Definition at line 1515 of file GWeasy.py.
◆ __init__()
| GWeasy.FFT.__init__ |
( |
| self, |
|
|
| root ) |
◆ convert_time()
| GWeasy.FFT.convert_time |
( |
| self | ) |
|
◆ copy_url()
| GWeasy.FFT.copy_url |
( |
| self | ) |
|
◆ fetch_event_details()
| GWeasy.FFT.fetch_event_details |
( |
| self, |
|
|
| event = None ) |
◆ fetch_events()
| GWeasy.FFT.fetch_events |
( |
| self, |
|
|
| event = None ) |
◆ fft()
| GWeasy.FFT.fft |
( |
| self, |
|
|
| event_name, |
|
|
| detectors, |
|
|
| gps_start, |
|
|
| gps_end ) |
◆ prefetch_data()
| GWeasy.FFT.prefetch_data |
( |
| self | ) |
|
◆ save_params()
| GWeasy.FFT.save_params |
( |
| self | ) |
|
Overwrite 'gwfparams.csv' with the latest input values, including headers.
Definition at line 1713 of file GWeasy.py.
◆ toggle_mode()
| GWeasy.FFT.toggle_mode |
( |
| self | ) |
|
◆ update_urls()
| GWeasy.FFT.update_urls |
( |
| self, |
|
|
| event = None ) |
◆ canvas
| GWeasy.FFT.canvas = tk.Canvas(root) |
◆ catalog_dropdown
| GWeasy.FFT.catalog_dropdown = ttk.Combobox(input_frame, state="readonly") |
◆ convert_button
| GWeasy.FFT.convert_button = ttk.Button(conversion_frame, text="Convert", command=self.convert_time) |
◆ convert_entry
| GWeasy.FFT.convert_entry = ttk.Entry(conversion_frame, width=20) |
◆ copy_button
| GWeasy.FFT.copy_button = ttk.Button(url_frame, text="Copy URL", command=self.copy_url) |
◆ detector_listbox
| GWeasy.FFT.detector_listbox = tk.Listbox(input_frame, selectmode="multiple", exportselection=False, height=3) |
◆ event_dropdown
| GWeasy.FFT.event_dropdown = ttk.Combobox(input_frame, state="readonly") |
◆ fetch_event_details
| GWeasy.FFT.fetch_event_details = "ew") |
◆ fetch_events
| GWeasy.FFT.fetch_events = "ew") |
◆ fft_button
Initial value:= tk.Button(root, text="Run FFT", command=lambda: self.fft(
self.catalog_dropdown.get(),[self.detector_listbox.get(i) for i in self.detector_listbox.curselection()],float(self.gps_start_entry.get()),float(self.gps_end_entry.get())))
Definition at line 1607 of file GWeasy.py.
◆ frame
| GWeasy.FFT.frame = ttk.Frame(self.canvas) |
◆ gps_end_entry
| GWeasy.FFT.gps_end_entry = ttk.Entry(input_frame, width=20) |
◆ gps_start_entry
| GWeasy.FFT.gps_start_entry = ttk.Entry(input_frame, width=20) |
◆ mode
| GWeasy.FFT.mode = tk.StringVar(value="gps_to_utc") |
◆ plot_frame
| GWeasy.FFT.plot_frame = ttk.Frame(self.frame) |
◆ result_label
| GWeasy.FFT.result_label = ttk.Label(conversion_frame, text="Result: ") |
◆ root
◆ run_dropdown
| GWeasy.FFT.run_dropdown = ttk.Combobox(input_frame, state="readonly") |
◆ save_button
| GWeasy.FFT.save_button = ttk.Button(input_frame, text="Save Parameters", command=self.save_params) |
◆ scroll_x
| GWeasy.FFT.scroll_x = ttk.Scrollbar(root, orient="horizontal", command=self.canvas.xview) |
◆ scroll_y
| GWeasy.FFT.scroll_y = ttk.Scrollbar(root, orient="vertical", command=self.canvas.yview) |
◆ toggle_button
| GWeasy.FFT.toggle_button = ttk.Button(conversion_frame, text="Switch to UTC → GPS", command=self.toggle_mode) |
◆ url_dropdown
| GWeasy.FFT.url_dropdown = ttk.Combobox(url_frame, state="readonly") |
The documentation for this class was generated from the following file: