-
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 #1761: adding new config file for testing dynamic FBIAS val…
…ues. SL
- Loading branch information
Seth Linden
committed
Nov 1, 2021
1 parent
1f3020d
commit dc2a45a
Showing
1 changed file
with
216 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,216 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Grid-Stat configuration file. | ||
// | ||
// For additional information, please see the MET User's Guide. | ||
// | ||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Output model name to be written | ||
// | ||
model = "GFS"; | ||
|
||
// | ||
// 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; | ||
vld_thresh = 0.5; | ||
shape = SQUARE; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// May be set separately in each "field" entry | ||
// | ||
censor_thresh = []; | ||
censor_val = []; | ||
mpr_column = []; | ||
mpr_thresh = []; | ||
cat_thresh = []; | ||
cnt_thresh = [ NA ]; | ||
cnt_logic = UNION; | ||
wind_thresh = [ NA ]; | ||
wind_logic = UNION; | ||
eclv_points = 0.05; | ||
nc_pairs_var_name = ""; | ||
nc_pairs_var_suffix = ""; | ||
hss_ec_value = NA; | ||
rank_corr_flag = FALSE; | ||
|
||
// | ||
// Forecast and observation fields to be verified | ||
// | ||
fcst = { | ||
|
||
field = [ | ||
{ name = "TMP"; level = [ "P500" ]; cat_thresh = [ ==FBIAS0.9, ==FBIAS1.0, ==FBIAS1.1, ==FBIAS0.9, ==FBIAS1.0, ==FBIAS1.1, <243, <243, <243, >253, >253, >253 ]; } | ||
]; | ||
|
||
} | ||
obs = { | ||
|
||
field = [ | ||
{ name = "TMP"; level = [ "P500" ]; cat_thresh = [ <243, <243, <243, >253, >253, >253, ==FBIAS0.9, ==FBIAS1.0, ==FBIAS1.1, ==FBIAS0.9, ==FBIAS1.0, ==FBIAS1.1 ]; } | ||
]; | ||
|
||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Verification masking regions | ||
// | ||
mask = { | ||
grid = [ "FULL" ]; | ||
poly = [ ]; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Confidence interval settings | ||
// | ||
ci_alpha = [ 0.05 ]; | ||
|
||
boot = { | ||
interval = PCTILE; | ||
rep_prop = 1.0; | ||
n_rep = 0; | ||
rng = "mt19937"; | ||
seed = "1"; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Data smoothing methods | ||
// | ||
interp = { | ||
field = FCST; | ||
vld_thresh = 1.0; | ||
shape = SQUARE; | ||
|
||
type = [ | ||
{ method = NEAREST; width = 1; } | ||
]; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Neighborhood methods | ||
// | ||
nbrhd = { | ||
width = [ 3, 5 ]; | ||
cov_thresh = [ >=0.5 ]; | ||
vld_thresh = 1.0; | ||
shape = SQUARE; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Fourier decomposition | ||
// | ||
fourier = { | ||
wave_1d_beg = []; | ||
wave_1d_end = []; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Gradient statistics | ||
// May be set separately in each "obs.field" entry | ||
// | ||
gradient = { | ||
dx = [ 1 ]; | ||
dy = [ 1 ]; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Distance Map statistics | ||
// May be set separately in each "obs.field" entry | ||
// | ||
distance_map = { | ||
baddeley_p = 2; | ||
baddeley_max_dist = NA; | ||
fom_alpha = 0.1; | ||
zhu_weight = 0.5; | ||
beta_value(n) = n * n / 2.0; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Statistical output types | ||
// | ||
output_flag = { | ||
fho = NONE; | ||
ctc = NONE; | ||
cts = BOTH; | ||
mctc = NONE; | ||
mcts = NONE; | ||
cnt = BOTH; | ||
sl1l2 = BOTH; | ||
sal1l2 = NONE; | ||
vl1l2 = NONE; | ||
val1l2 = NONE; | ||
vcnt = NONE; | ||
pct = NONE; | ||
pstd = NONE; | ||
pjc = NONE; | ||
prc = NONE; | ||
eclv = NONE; | ||
nbrctc = NONE; | ||
nbrcts = NONE; | ||
nbrcnt = NONE; | ||
grad = NONE; | ||
dmap = NONE; | ||
} | ||
|
||
// | ||
// NetCDF matched pairs output file | ||
// | ||
nc_pairs_flag = { | ||
latlon = TRUE; | ||
raw = TRUE; | ||
diff = TRUE; | ||
climo = TRUE; | ||
climo_cdp = FALSE; | ||
weight = FALSE; | ||
nbrhd = TRUE; | ||
fourier = FALSE; | ||
gradient = FALSE; | ||
distance_map = FALSE; | ||
apply_mask = TRUE; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
grid_weight_flag = NONE; | ||
tmp_dir = "/tmp"; | ||
output_prefix = "${OUTPUT_PREFIX}"; | ||
version = "V10.1.0"; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// |