Skip to content

Commit

Permalink
Merge pull request #721 from rzellem/develop
Browse files Browse the repository at this point in the history
v0.45.3: bugfix to custom filter wavelengths
  • Loading branch information
rzellem authored Jun 8, 2021
2 parents 4ae6ef2 + f1326a4 commit 2b6595d
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ There are two ways you can run EXOTIC: either through a web browser interface wi

Read the details of these two approaches below and select the best option for you:

### Google Colab - *RECOMMENDED*:
### Google Colab:

Google Colab is a free facility (available to anyone with a Google account) where you may write and run Python programs in your browser without installing anything on your local machine. Running EXOTIC in the Google Colab is the recommended option for all users as it offers a more user-friendly and interactive experience. It is especially recommended for new EXOTIC users, those who are unfamiliar with using the command line (where you have to type in commands - instead of using the mouse), students and those analysing data via remote observatories.

Expand Down
Binary file not shown.
Binary file not shown.
Binary file removed Documentation/English/How-to-Update-EXOTIC.pdf
Binary file not shown.
21 changes: 2 additions & 19 deletions exotic/exotic_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,23 +462,6 @@ def save_input():
# raise(Exception("feature not supported yet"))
pass

# else:
# root = tk.Tk()
# root.title(f"EXOTIC v{__version__}")
#
# filePath = tk.StringVar()
#
# # # "Directory with FITS files": "sample-data/HatP32Dec202017",
# inits_dir = FileSelect(root, "Please select your initialization file")
# inits_dir.grid(row=0)
#
# # Button for closing
# exit_button = tk.Button(root, text="Next", command=root.destroy)
# # exit_button.pack(pady=20)
# exit_button.grid(row=1, column=3, sticky=tk.W, pady=10)
#
# tk.mainloop()

try:
if filteroptions.get() == "N/A":
root = tk.Tk()
Expand Down Expand Up @@ -509,8 +492,8 @@ def save_input():
i += 1

def save_input():
input_data['filtermax'] = filtermax_entry.get()
input_data['filtermin'] = filtermin_entry.get()
input_data['filtermax'] = float(filtermax_entry.get())
input_data['filtermin'] = float(filtermin_entry.get())
root.destroy()

# Button for closing
Expand Down
2 changes: 1 addition & 1 deletion exotic/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.45.2"
__version__ = "0.45.3"

0 comments on commit 2b6595d

Please sign in to comment.