diff --git a/met/src/tools/core/ensemble_stat/ensemble_stat.cc b/met/src/tools/core/ensemble_stat/ensemble_stat.cc index 117eb90d29..7d296cfa32 100644 --- a/met/src/tools/core/ensemble_stat/ensemble_stat.cc +++ b/met/src/tools/core/ensemble_stat/ensemble_stat.cc @@ -1256,7 +1256,7 @@ void process_point_scores() { shc.set_obs_var(conf_info.vx_opt[i].vx_pd.obs_info->name()); // Store the observation variable units - shc.set_obs_units(na_string); + shc.set_obs_units(conf_info.vx_opt[i].vx_pd.obs_info->units()); // Set the observation level name shc.set_obs_lev(conf_info.vx_opt[i].vx_pd.obs_info->level_name().text()); diff --git a/met/src/tools/core/point_stat/point_stat.cc b/met/src/tools/core/point_stat/point_stat.cc index 23cbe24202..0e1862a16b 100644 --- a/met/src/tools/core/point_stat/point_stat.cc +++ b/met/src/tools/core/point_stat/point_stat.cc @@ -948,7 +948,7 @@ void process_scores() { shc.set_obs_var(conf_info.vx_opt[i].vx_pd.obs_info->name()); // Store the observation variable units - shc.set_obs_units(na_string); + shc.set_obs_units(conf_info.vx_opt[i].vx_pd.obs_info->units()); // Set the observation level name shc.set_obs_lev(conf_info.vx_opt[i].vx_pd.obs_info->level_name().c_str());