Skip to content

Commit

Permalink
explicitly set units for obs read via python embedding since PR dtcen…
Browse files Browse the repository at this point in the history
…ter/MET#2288 no longer guesses units based on grib table units (which can be inaccurate of the actual data)
  • Loading branch information
georgemccabe committed Oct 3, 2022
1 parent b8a8aac commit aa39d9a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,20 +70,23 @@ FCST_VAR1_THRESH = <=273, >273
OBS_VAR1_NAME = TMP
OBS_VAR1_LEVELS = P750-900
OBS_VAR1_THRESH = <=273, >273
OBS_VAR1_OPTIONS = set_attr_units = "K"

FCST_VAR2_NAME = UGRD
FCST_VAR2_LEVELS = Z10
FCST_VAR2_THRESH = >=5
OBS_VAR2_NAME = UGRD
OBS_VAR2_LEVELS = Z10
OBS_VAR2_THRESH = >=5
OBS_VAR2_OPTIONS = set_attrs_units = "m/s"

FCST_VAR3_NAME = VGRD
FCST_VAR3_LEVELS = Z10
FCST_VAR3_THRESH = >=5
OBS_VAR3_NAME = VGRD
OBS_VAR3_LEVELS = Z10
OBS_VAR3_THRESH = >=5
OBS_VAR3_OPTIONS = set_attrs_units = "m/s"


###
Expand Down

0 comments on commit aa39d9a

Please sign in to comment.