Skip to content

Commit

Permalink
Per #1907, added warning about switch from Ensemble-Stat to Gen-Ens-Prod
Browse files Browse the repository at this point in the history
  • Loading branch information
Julie Prestopnik committed Jan 28, 2022
1 parent 6e1e209 commit 950c921
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions met/src/tools/core/ensemble_stat/ensemble_stat_conf_info.cc
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,15 @@ void EnsembleStatConfInfo::process_config(GrdFileType etype,
// Determine the number of ensemble fields to be processed
n_ens_var = parse_conf_n_vx(edict);

// Print a warning if the ensemble dictionary is not empty
if(n_ens_var != 0) {
mlog << Warning << "\nEnsembleStatConfInfo::process_config() -> "
<< "Ensemble post-processing should be moved to the "
<< "Gen-Ens-Prod tool, which replaces the logic of the "
<< "\"ens\" dictionary. Support for the \"ens\" dictionary "
<< "will be deprecated and removed." << "\n\n";
}

// Parse the ensemble field information
for(i=0,max_n_thresh=0; i<n_ens_var; i++) {

Expand Down

0 comments on commit 950c921

Please sign in to comment.