Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[develop] Add precipitation-type verification for MET #757

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion parm/metplus/Pb2nc_obs.conf
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ PB2NC_QUALITY_MARK_THRESH = 9
PB2NC_PB_REPORT_TYPE = 120, 220, 221, 122, 222, 223, 224, 131, 133, 233, 153, 156, 157, 188, 288, 180, 280, 181, 182, 281, 282, 183, 284, 187, 287

# Leave empty to process all
PB2NC_OBS_BUFR_VAR_LIST = PMO, ZOB, TOB, D_DPT, QOB, UOB, VOB, PWO, TOCC, D_RH, HOVI, CEILING, D_PBL, D_CAPE, MXGS, D_WIND, D_PRMSL
PB2NC_OBS_BUFR_VAR_LIST = PMO, ZOB, TOB, D_DPT, QOB, UOB, VOB, PWO, TOCC, D_RH, HOVI, CEILING, D_PBL, D_CAPE, MXGS, D_WIND, D_PRMSL, PRWE

# Mapping of input BUFR variable names to output variables names.
# The default PREPBUFR map, obs_prepbufr_map, is appended to this map.
Expand Down
31 changes: 31 additions & 0 deletions parm/metplus/PointStat_SFC.conf
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,37 @@ OBS_VAR11_THRESH = <152, <305, <914, <1520, <3040, >=914
BOTH_VAR12_NAME = SPFH
BOTH_VAR12_LEVELS = Z2

FCST_VAR13_NAME = CRAIN
FCST_VAR13_LEVELS = L0
FCST_VAR13_THRESH = >=1.0

OBS_VAR13_NAME = PRWE
OBS_VAR13_LEVELS = Z0
OBS_VAR13_THRESH = >=161&&<=163

FCST_VAR14_NAME = CSNOW
FCST_VAR14_LEVELS = L0
FCST_VAR14_THRESH = >=1.0

OBS_VAR14_NAME = PRWE
OBS_VAR14_LEVELS = Z0
OBS_VAR14_THRESH = >=171&&<=173

FCST_VAR15_NAME = CFRZR
FCST_VAR15_LEVELS = L0
FCST_VAR15_THRESH = >=1.0

OBS_VAR15_NAME = PRWE
OBS_VAR15_LEVELS = Z0
OBS_VAR15_THRESH = >=164&&<=166

FCST_VAR16_NAME = CICEP
FCST_VAR16_LEVELS = L0
FCST_VAR16_THRESH = >=1.0

OBS_VAR16_NAME = PRWE
OBS_VAR16_LEVELS = Z0
OBS_VAR16_THRESH = >=174&&<=176

# End of [config] section and start of [dir] section.
[dir]
Expand Down