Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature 1907 warn ensstat genensprod #2032

Merged
merged 1 commit into from
Jan 31, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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