Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jlu/observe/data_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def download_for_mulab(instrument, date, cookie_file):
inst_upp = instrument.upper()

date_hyphens = date
date_nohyphs = date.replace("_", "")
date_nohyphs = date.replace("-", "")

data_dir = f'/g/lu/data/KECK/{date_nohyphs}_{inst_upp}/'
data_table = data_dir + 'data.tbl'
Expand Down
2 changes: 1 addition & 1 deletion jlu/observe/skycalc.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def plot_airmass(ra, dec, year, months, days, observatory, outfile='plot_airmass
if proposal_cycle == 'A':
text_offset = 1.1
else:
text_offset = 1.3
text_offset = 1.1
py.text(-3.5,
text_offset + (ii*0.1),
labels[ii], color=colors[ii], fontsize=20)
Expand Down
Loading