Skip to content

Commit

Permalink
Per issue #1858 added vx_pd.set_obs_qty_exc_filt. SL
Browse files Browse the repository at this point in the history
  • Loading branch information
Seth Linden committed Sep 8, 2021
1 parent f82966e commit 9c9d11c
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions met/src/tools/core/point_stat/point_stat_conf_info.cc
Original file line number Diff line number Diff line change
Expand Up @@ -931,16 +931,15 @@ void PointStatVxOpt::process_config(GrdFileType ftype,
<< "\" is deprecated "
<< "use \"" << conf_key_obs_qty_inc << "\" instead.\n\n";

vx_pd.set_obs_qty_filt(parse_conf_obs_qty(&odict));
vx_pd.set_obs_qty_inc_filt(parse_conf_obs_qty(&odict));

} else {
cout << "Using " << conf_key_obs_qty_inc << "\n";
vx_pd.set_obs_qty_filt(parse_conf_obs_qty_inc(&odict));
vx_pd.set_obs_qty_inc_filt(parse_conf_obs_qty_inc(&odict));
}


// Conf: obs_qty_exc

// Conf: obs_qty_exc
vx_pd.set_obs_qty_exc_filt(parse_conf_obs_qty_exc(&odict));

return;
}
Expand Down

0 comments on commit 9c9d11c

Please sign in to comment.