-
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 #2339, add unit tests to demonstrate processing SEEPS with Stat-A…
…nalysis.
- Loading branch information
1 parent
bff919d
commit 2a523df
Showing
2 changed files
with
135 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,118 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// STAT-Analysis configuration file. | ||
// | ||
// For additional information, please see the MET User's Guide. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Filtering input STAT lines by the contents of each column | ||
// | ||
model = []; | ||
desc = []; | ||
|
||
fcst_lead = []; | ||
obs_lead = []; | ||
|
||
fcst_valid_beg = ""; | ||
fcst_valid_end = ""; | ||
fcst_valid_inc = []; | ||
fcst_valid_exc = []; | ||
fcst_valid_hour = []; | ||
|
||
obs_valid_beg = ""; | ||
obs_valid_end = ""; | ||
obs_valid_inc = []; | ||
obs_valid_exc = []; | ||
obs_valid_hour = []; | ||
|
||
fcst_init_beg = ""; | ||
fcst_init_end = ""; | ||
fcst_init_inc = []; | ||
fcst_init_exc = []; | ||
fcst_init_hour = []; | ||
|
||
obs_init_beg = ""; | ||
obs_init_end = ""; | ||
obs_init_inc = []; | ||
obs_init_exc = []; | ||
obs_init_hour = []; | ||
|
||
fcst_var = []; | ||
obs_var = []; | ||
|
||
fcst_lev = []; | ||
obs_lev = []; | ||
|
||
obtype = []; | ||
|
||
vx_mask = []; | ||
|
||
interp_mthd = []; | ||
|
||
interp_pnts = []; | ||
|
||
fcst_thresh = []; | ||
obs_thresh = []; | ||
cov_thresh = []; | ||
|
||
alpha = []; | ||
|
||
line_type = []; | ||
|
||
column = []; | ||
|
||
weight = []; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Array of STAT-Analysis jobs to be performed on the filtered data | ||
// | ||
// Job 1 = filter SEEPS lines | ||
// Job 2 = aggregate SEEPS_MPR lines by interpolation (output equals Job 1) | ||
// Job 3 = aggregate SEEPS lines | ||
// Job 4 = aggregate all SEEPS_MPR lines (output equals Job 3) | ||
// Job 5 = summarize SEEPS_MPR scores | ||
// | ||
jobs = [ | ||
"-job filter -line_type SEEPS -dump_row ${OUTPUT_DIR}/CONFIG_POINT_STAT_filter_seeps.stat", | ||
"-job aggregate_stat -line_type SEEPS_MPR -out_line_type SEEPS -by INTERP_MTHD,INTERP_PNTS", | ||
"-job aggregate -line_type SEEPS", | ||
"-job aggregate_stat -line_type SEEPS_MPR -out_line_type SEEPS", | ||
"-job summary -line_type SEEPS_MPR -column SEEPS -by INTERP_MTHD,INTERP_PNTS" | ||
]; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Confidence interval settings | ||
// | ||
out_alpha = 0.05; | ||
|
||
boot = { | ||
interval = PCTILE; | ||
rep_prop = 1.0; | ||
n_rep = 1000; | ||
rng = "mt19937"; | ||
seed = "1"; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Skill score index options | ||
// | ||
ss_index_name = "SS_INDEX"; | ||
ss_index_vld_thresh = 1.0; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
hss_ec_value = NA; | ||
rank_corr_flag = TRUE; | ||
vif_flag = FALSE; | ||
tmp_dir = "/tmp"; | ||
version = "V11.0.0"; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// |
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