Skip to content

Commit

Permalink
added default config for wavelet_stat
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Nov 16, 2023
1 parent f4f5760 commit 18a6b18
Showing 1 changed file with 143 additions and 0 deletions.
143 changes: 143 additions & 0 deletions parm/met_config/WaveletStatConfig_wrapped
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";

////////////////////////////////////////////////////////////////////////////////

0 comments on commit 18a6b18

Please sign in to comment.