Skip to content

Commit

Permalink
Merge pull request #139 from GEUS-Glaciology-and-Climate/bug-fix-bav
Browse files Browse the repository at this point in the history
Corrected missing air temp correction for z_stake
  • Loading branch information
BaptisteVandecrux committed May 3, 2023
2 parents 08cd0c8 + ae336f0 commit 5f18934
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pypromice/process/L0toL1.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ def toL1(L0, vars_df, flag_file=None, T_0=273.15, tilt_threshold=-100):
ds.attrs['pt_z_factor'],
ds.attrs['pt_z_coef'],
ds.attrs['pt_z_p_coef'])

ds['z_stake'] = _reformatArray(ds['z_stake']) # Reformat boom height
ds['z_stake'] = ds['z_stake'] * ((ds['t_u'] + T_0)/T_0)**0.5 # Adjust sonic ranger readings for sensitivity to air temperature

elif ds.attrs['number_of_booms']==2: # 2-boom processing
ds['z_boom_l'] = _reformatArray(ds['z_boom_l']) # Reformat boom height
ds['z_boom_l'] = ds['z_boom_l'] * ((ds['t_l'] + T_0)/T_0)**0.5 # Adjust sonic ranger readings for sensitivity to air temperature
Expand Down

0 comments on commit 5f18934

Please sign in to comment.