From 092205ddd7fabfcebb08aacbedf7f2131004c380 Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Tue, 30 Jul 2024 20:59:08 +0000 Subject: [PATCH] Hotfix to the develop branch for a copy/paste bug introduced by PR #2939 --- src/tools/core/grid_stat/grid_stat.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/core/grid_stat/grid_stat.cc b/src/tools/core/grid_stat/grid_stat.cc index 843344897c..fcd0bc33a9 100644 --- a/src/tools/core/grid_stat/grid_stat.cc +++ b/src/tools/core/grid_stat/grid_stat.cc @@ -1797,7 +1797,7 @@ void process_scores() { ocmn_dp_smooth = ocmn_dp; // Reset forecast climo spread since it does not apply to Fourier decomposition - if(!fcst_dp.is_empty()) fcsd_dp.set_constant(bad_data_double); + if(!fcsd_dp.is_empty()) fcsd_dp.set_constant(bad_data_double); // Reset observation climo spread since it does not apply to Fourier decomposition if(!ocsd_dp.is_empty()) ocsd_dp.set_constant(bad_data_double);