Skip to content

Commit

Permalink
Update develop-ref after #1927 and #1928 (#1931)
Browse files Browse the repository at this point in the history
Co-authored-by: Seth Linden <[email protected]>
Co-authored-by: John Halley Gotway <[email protected]>
Co-authored-by: Howard Soh <[email protected]>
Co-authored-by: johnhg <[email protected]>
Co-authored-by: Julie.Prestopnik <[email protected]>
Co-authored-by: ericgilleland <[email protected]>
Co-authored-by: George McCabe <[email protected]>
Co-authored-by: John Halley Gotway <[email protected]>
Co-authored-by: jprestop <[email protected]>
Co-authored-by: Julie Prestopnik <[email protected]>
Co-authored-by: hsoh-u <[email protected]>
Co-authored-by: Keith Searight <[email protected]>
Co-authored-by: Seth Linden <[email protected]>
Co-authored-by: MET Tools Test Account <[email protected]>
Co-authored-by: lisagoodrich <[email protected]>
Co-authored-by: MET Tools Test Account <[email protected]>
Co-authored-by: j-opatz <[email protected]>
  • Loading branch information
15 people authored Oct 4, 2021
1 parent 96eb3ea commit 3ab5a66
Show file tree
Hide file tree
Showing 82 changed files with 3,905 additions and 1,678 deletions.
1 change: 1 addition & 0 deletions met/README
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ sub-directory, or the MET Online Tutorial:
command line) will contain 36 executables:
- ascii2nc
- ensemble_stat
- gen_ens_prod
- gen_vx_mask
- grid_stat
- gis_dump_dbf
Expand Down
22 changes: 22 additions & 0 deletions met/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,27 @@ else
AC_MSG_NOTICE([ensemble_stat will not be compiled])
fi

# gen_ens_prod

AC_ARG_ENABLE(gen_ens_prod,
[AS_HELP_STRING([--disable-gen_ens_prod], [Disable compilation of gen_ens_prod])],
[case "${enableval}" in
yes | no ) ENABLE_GEN_ENS_PROD="${enableval}" ;;
*) AC_MSG_ERROR(bad value ${enableval} for --disable-gen_ens_prod) ;;
esac],
[ENABLE_GEN_ENS_PROD="yes"]
)

AM_CONDITIONAL([ENABLE_GEN_ENS_PROD], [test "x$ENABLE_GEN_ENS_PROD" = "xyes"])

if test "x$ENABLE_GEN_ENS_PROD" = "xyes"; then
AC_DEFINE([ENABLE_GEN_ENS_PROD], [], ["build gen_ens_prod"])
AC_MSG_NOTICE([gen_ens_prod will be compiled])
else
AC_MSG_NOTICE([gen_ens_prod will not be compiled])
fi


# gen_vx_mask

AC_ARG_ENABLE(gen_vx_mask,
Expand Down Expand Up @@ -1226,6 +1247,7 @@ AC_CONFIG_FILES([Makefile
src/tools/other/Makefile
src/tools/other/ascii2nc/Makefile
src/tools/other/lidar2nc/Makefile
src/tools/other/gen_ens_prod/Makefile
src/tools/other/gen_vx_mask/Makefile
src/tools/other/gis_utils/Makefile
src/tools/other/ioda2nc/Makefile
Expand Down
141 changes: 141 additions & 0 deletions met/data/config/GenEnsProdConfig_default
Original file line number Diff line number Diff line change
@@ -0,0 +1,141 @@
////////////////////////////////////////////////////////////////////////////////
//
// Gen-Ens-Prod 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";

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

//
// 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 = [];
cat_thresh = [];
nc_var_str = "";

//
// Ensemble fields to be processed
//
ens = {
ens_thresh = 1.0;
vld_thresh = 1.0;

field = [
{
name = "APCP";
level = "A03";
cat_thresh = [ >0.0, >=5.0 ];
}
];
}

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

//
// Neighborhood ensemble probabilities
//
nbrhd_prob = {
width = [ 5 ];
shape = CIRCLE;
vld_thresh = 0.0;
}

//
// NMEP smoothing methods
//
nmep_smooth = {
vld_thresh = 0.0;
shape = CIRCLE;
gaussian_dx = 81.27;
gaussian_radius = 120;
type = [
{
method = GAUSSIAN;
width = 1;
}
];
}

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

//
// Climatology data
//
climo_mean = {

file_name = [];
field = [];

regrid = {
method = NEAREST;
width = 1;
vld_thresh = 0.5;
shape = SQUARE;
}

time_interp_method = DW_MEAN;
day_interval = 31;
hour_interval = 6;
}

climo_stdev = climo_mean;
climo_stdev = {
file_name = [];
}

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

//
// Ensemble product output types
// May be set separately in each "ens.field" entry
//
ensemble_flag = {
latlon = TRUE;
mean = TRUE;
stdev = TRUE;
minus = TRUE;
plus = TRUE;
min = TRUE;
max = TRUE;
range = TRUE;
vld_count = TRUE;
frequency = TRUE;
nep = FALSE;
nmep = FALSE;
climo = FALSE;
climo_cdp = FALSE;
}

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

version = "V10.1.0";

////////////////////////////////////////////////////////////////////////////////
1 change: 1 addition & 0 deletions met/data/config/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ config_DATA = \
ConfigMapData \
Ascii2NcConfig_default \
EnsembleStatConfig_default \
GenEnsProdConfig_default \
GridStatConfig_default \
GridDiagConfig_default \
IODA2NCConfig_default \
Expand Down
7 changes: 7 additions & 0 deletions met/data/config/STATAnalysisConfig_CBS_Index
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,13 @@ weight = [ 6.4, 6.4, 6.4, 6.4, 6.4,

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

//
// Array of STAT-Analysis jobs to be performed on the filtered data
//
jobs = [];

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

//
// Confidence interval settings
//
Expand Down
7 changes: 7 additions & 0 deletions met/data/config/STATAnalysisConfig_GO_Index
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,13 @@ weight = [ 4.0, 3.0, 2.0, 1.0,

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

//
// Array of STAT-Analysis jobs to be performed on the filtered data
//
jobs = [];

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

//
// Confidence interval settings
//
Expand Down
4 changes: 1 addition & 3 deletions met/data/config/STATAnalysisConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,7 @@ weight = [];
//
// Array of STAT-Analysis jobs to be performed on the filtered data
//
jobs = [
"-job filter -dump_row ./filter_job.stat"
];
jobs = [];

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

Expand Down
Binary file modified met/docs/Flowchart/MET_flowchart.pptx
Binary file not shown.
Binary file added met/docs/Flowchart/MET_flowchart_v10.1.0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 3ab5a66

Please sign in to comment.