Skip to content

Commit

Permalink
#179 Add atmospheric transmission correction to daisy command
Browse files Browse the repository at this point in the history
  • Loading branch information
hapipapijuris committed Jul 29, 2024
1 parent da3a29d commit 85fc8ba
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion decode/qlook.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ def daisy(
kwargs={"fill_value": "extrapolate"},
)
)
da_sub = da_on - da_base.values
t_atm = da_on.temperature
da_sub = t_atm * (da_on - da_base) / (t_atm - da_base)

# make continuum series
weight = get_chan_weight(da_off, method=chan_weight, pwv=pwv)
Expand Down

0 comments on commit 85fc8ba

Please sign in to comment.