Skip to content

Commit

Permalink
Merge pull request #181 from deshima-dev/hapipapijuris/issue153
Browse files Browse the repository at this point in the history
add  atm-correction for raster
  • Loading branch information
hapipapijuris authored Jul 24, 2024
2 parents 8929ea0 + f271383 commit 90d2375
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 @@ -429,7 +429,8 @@ def raster(
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 90d2375

Please sign in to comment.