-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Per issue #1858: replaced obs_quality with obs_quality_inc and added …
…obs_quality_exc. SL
- Loading branch information
Seth Linden
committed
Sep 10, 2021
1 parent
a914a4c
commit 8554dec
Showing
2 changed files
with
466 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,233 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Ensemble-Stat configuration file. | ||
// | ||
// For additional information, please see the MET User's Guide. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Output model name to be written | ||
// | ||
model = "WRF"; | ||
|
||
// | ||
// Output description to be written | ||
// May be set separately in each "obs.field" entry | ||
// | ||
desc = "NA"; | ||
|
||
// | ||
// Output observation type to be written | ||
// | ||
obtype = "ANALYS"; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Verification grid | ||
// | ||
regrid = { | ||
to_grid = NONE; | ||
method = NEAREST; | ||
width = 1; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Ensemble product fields to be processed | ||
// | ||
ens = { | ||
ens_thresh = 1.0; | ||
vld_thresh = 1.0; | ||
|
||
field = [ | ||
{ | ||
name = "TMP"; | ||
level = [ "Z2" ]; | ||
cat_thresh = [ <=273, >273 ]; | ||
} | ||
]; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Neighborhood ensemble probabilities | ||
// | ||
nbrhd_prob = { | ||
width = [ 5 ]; | ||
shape = CIRCLE; | ||
vld_thresh = 0.0; | ||
} | ||
|
||
// | ||
// NMEP smoothing methods | ||
// | ||
nmep_smooth = { | ||
vld_thresh = 0.0; | ||
shape = CIRCLE; | ||
gaussian_dx = 81.27; | ||
gaussian_radius = 120; | ||
type = [ | ||
{ | ||
method = GAUSSIAN; | ||
width = 1; | ||
} | ||
]; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Forecast and observation fields to be verified | ||
// | ||
fcst = { | ||
message_type = [ "ADPSFC" ]; | ||
sid_inc = []; | ||
sid_exc = []; | ||
|
||
field = [ | ||
{ | ||
name = "TMP"; | ||
level = [ "Z2" ]; | ||
obs_quality_inc = []; | ||
obs_quality_exc = [ ${OBS_QUALITY_EXC} ]; | ||
} | ||
]; | ||
} | ||
obs = fcst; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Point observation filtering options | ||
// May be set separately in each "obs.field" entry | ||
// | ||
obs_thresh = [ NA ]; | ||
duplicate_flag = NONE; | ||
obs_summary = NONE; | ||
obs_perc_value = 50; | ||
skip_const = FALSE; | ||
|
||
// | ||
// Observation error options | ||
// Set dist_type to NONE to use the observation error table instead | ||
// May be set separately in each "obs.field" entry | ||
// | ||
obs_error = { | ||
flag = FALSE; | ||
dist_type = NONE; | ||
dist_parm = []; | ||
inst_bias_scale = 1.0; | ||
inst_bias_offset = 0.0; | ||
min = NA; | ||
max = NA; | ||
} | ||
|
||
// | ||
// Ensemble bin sizes | ||
// May be set separately in each "obs.field" entry | ||
// | ||
ens_ssvar_bin_size = 1.0; | ||
ens_phist_bin_size = 0.05; | ||
|
||
// | ||
// Categorical thresholds to define ensemble probabilities | ||
// May be set separately in each "fcst.field" entry | ||
// | ||
prob_cat_thresh = []; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Point observation time window | ||
// | ||
obs_window = { | ||
beg = -5400; | ||
end = 5400; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Verification masking regions | ||
// | ||
mask = { | ||
grid = [ "FULL" ]; | ||
poly = []; | ||
sid = []; | ||
llpnt = []; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Interpolation methods | ||
// | ||
interp = { | ||
field = BOTH; | ||
vld_thresh = 1.0; | ||
|
||
type = [ | ||
{ | ||
method = NEAREST; | ||
width = 1; | ||
} | ||
]; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Statistical output types | ||
// | ||
output_flag = { | ||
ecnt = BOTH; | ||
rps = NONE; | ||
rhist = BOTH; | ||
phist = BOTH; | ||
orank = BOTH; | ||
ssvar = BOTH; | ||
relp = BOTH; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Ensemble product output types | ||
// | ||
ensemble_flag = { | ||
mean = TRUE; | ||
stdev = TRUE; | ||
minus = TRUE; | ||
plus = TRUE; | ||
min = TRUE; | ||
max = TRUE; | ||
range = TRUE; | ||
vld_count = TRUE; | ||
frequency = TRUE; | ||
nep = FALSE; | ||
nmep = FALSE; | ||
rank = TRUE; | ||
weight = FALSE; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Random number generator | ||
// | ||
rng = { | ||
type = "mt19937"; | ||
seed = "1"; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
grid_weight_flag = NONE; | ||
output_prefix = "${OUTPUT_PREFIX}"; | ||
version = "V10.1.0"; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// |
Oops, something went wrong.