-
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 #2003, add the Series-Analysis config file used by the new test i…
…n unit_climatology.xml
- Loading branch information
1 parent
807a120
commit b1ca99c
Showing
1 changed file
with
157 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,157 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Series-Analysis configuration file. | ||
// | ||
// For additional information, please see the MET User's Guide. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Output model name to be written | ||
// | ||
model = "SREF"; | ||
|
||
// | ||
// Output description to be written | ||
// | ||
desc = "NA"; | ||
|
||
// | ||
// Output observation type to be written | ||
// | ||
obtype = "GFSANL"; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Verification grid | ||
// | ||
regrid = { | ||
to_grid = FCST; | ||
method = BILIN; | ||
width = 2; | ||
vld_thresh = 0.5; | ||
shape = SQUARE; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
censor_thresh = []; | ||
censor_val = []; | ||
cat_thresh = []; | ||
cnt_thresh = [ NA ]; | ||
cnt_logic = UNION; | ||
|
||
// | ||
// Forecast and observation fields to be verified | ||
// | ||
fcst = { | ||
cat_thresh = ==0.1; | ||
|
||
field = [ | ||
{ | ||
name = "PROB"; level = "Z2"; | ||
prob = { name = "TMP"; thresh_hi = 273.0; }; | ||
} | ||
]; | ||
} | ||
obs = { | ||
cat_thresh = <273.0; | ||
|
||
field = [ | ||
{ | ||
name = "TMP"; level = "Z2"; | ||
} | ||
]; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Climatology data | ||
// | ||
climo_mean = obs; | ||
climo_mean = { | ||
|
||
file_name = [ ${CLIMO_MEAN_FILE_LIST} ]; | ||
|
||
regrid = { | ||
method = BILIN; | ||
width = 2; | ||
vld_thresh = 0.5; | ||
} | ||
|
||
time_interp_method = DW_MEAN; | ||
day_interval = 1; | ||
hour_interval = 6; | ||
} | ||
|
||
climo_stdev = climo_mean; | ||
climo_stdev = { | ||
file_name = [ ${CLIMO_STDEV_FILE_LIST} ]; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Confidence interval settings | ||
// | ||
ci_alpha = [ 0.05 ]; | ||
|
||
boot = { | ||
interval = PCTILE; | ||
rep_prop = 1.0; | ||
n_rep = 0; | ||
rng = "mt19937"; | ||
seed = "1"; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Verification masking regions | ||
// | ||
mask = { | ||
grid = ""; | ||
poly = ""; | ||
} | ||
|
||
// | ||
// Number of grid points to be processed concurrently. Set smaller to use | ||
// less memory but increase the number of passes through the data. | ||
// | ||
block_size = 150000; | ||
|
||
// | ||
// Ratio of valid matched pairs to compute statistics for a grid point | ||
// | ||
vld_thresh = 0.5; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Statistical output types | ||
// | ||
output_stats = { | ||
fho = [ ]; | ||
ctc = [ ]; | ||
cts = [ ]; | ||
mctc = [ ]; | ||
mcts = [ ]; | ||
cnt = [ ]; | ||
sl1l2 = [ ]; | ||
sal1l2 = [ ]; | ||
pct = [ ]; | ||
pstd = [ "TOTAL", "ROC_AUC", "BRIER", "BRIERCL", "BSS", "BSS_SMPL" ]; | ||
pjc = [ ]; | ||
prc = [ ]; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
hss_ec_value = NA; | ||
rank_corr_flag = FALSE; | ||
tmp_dir = "/tmp"; | ||
version = "V10.1.0"; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// |