Skip to content

Commit

Permalink
a 2 was changed accidentally. changed back to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Esposito authored and Nicholas Esposito committed Nov 13, 2023
1 parent 8985df4 commit 6be3c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ush/ioda/bufr2ioda/bufr2ioda_conventional_prepbufr_ps.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def bufr_to_ioda(config, logger):
tob2 = ma.masked_values(tob2, toborig2.fill_value)
tsen2 = copy.deepcopy(tob2)
tsen2f = ma.array(np.full(tob2.shape[0], tob2.fill_value))
tsen2 = ma.where(((tpc2 >= 2) & (tpc2 < 8)), tob2, tsen2f)
tsen2 = ma.where(((tpc2 >= 1) & (tpc2 < 8)), tob2, tsen2f)
tvo2 = ma.array(np.full(tob2.shape[0], tob2.fill_value))
tvo2f = ma.array(np.full(tob2.shape[0], tob2.fill_value))
tvo2 = ma.where((tpc2 == 8), tob2, tvo2f)
Expand Down

0 comments on commit 6be3c83

Please sign in to comment.