-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added default config for wavelet_stat
- Loading branch information
1 parent
f4f5760
commit 18a6b18
Showing
1 changed file
with
143 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,143 @@ | ||
//////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Wavelet-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 | ||
// May be set separately in each "field" entry | ||
// | ||
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 = []; | ||
|
||
// | ||
// Forecast and observation fields to be verified | ||
// | ||
fcst = { | ||
field = [ | ||
{ | ||
name = "APCP"; | ||
level = [ "A03" ]; | ||
cat_thresh = [ >0.0, >=5.0 ]; | ||
} | ||
]; | ||
} | ||
obs = fcst; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Handle missing data | ||
// | ||
mask_missing_flag = NONE; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Decompose the field into dyadic tiles | ||
// | ||
grid_decomp_flag = AUTO; | ||
|
||
tile = { | ||
width = 0; | ||
location = [ | ||
{ | ||
x_ll = 0; | ||
y_ll = 0; | ||
} | ||
]; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Wavelet to be used for the decomposition | ||
// | ||
wavelet = { | ||
type = HAAR; | ||
member = 2; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Statistical output types | ||
// | ||
output_flag = { | ||
isc = NONE; | ||
} | ||
|
||
// | ||
// NetCDF matched pairs and PostScript output files | ||
// | ||
nc_pairs_flag = { | ||
raw = TRUE; | ||
diff = TRUE; | ||
} | ||
ps_plot_flag = TRUE; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
// | ||
// Plotting information | ||
// | ||
met_data_dir = "MET_BASE"; | ||
|
||
fcst_raw_plot = { | ||
color_table = "MET_BASE/colortables/met_default.ctable"; | ||
plot_min = 0.0; | ||
plot_max = 0.0; | ||
} | ||
|
||
obs_raw_plot = { | ||
color_table = "MET_BASE/colortables/met_default.ctable"; | ||
plot_min = 0.0; | ||
plot_max = 0.0; | ||
} | ||
|
||
wvlt_plot = { | ||
color_table = "MET_BASE/colortables/NCL_colortables/BlWhRe.ctable"; | ||
plot_min = 0.0; | ||
plot_max = 0.0; | ||
} | ||
|
||
//////////////////////////////////////////////////////////////////////////////// | ||
|
||
output_prefix = ""; | ||
version = "V11.1.0"; | ||
|
||
//////////////////////////////////////////////////////////////////////////////// |