From ac4fcb239084c2870c1f28e1e94437bc8886f55c Mon Sep 17 00:00:00 2001 From: Molly Smith Date: Thu, 30 Apr 2026 11:58:11 -0600 Subject: [PATCH 1/2] Added two scorecard stats --- .../mats-common/imports/startup/server/data_util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meteor_packages/mats-common/imports/startup/server/data_util.js b/meteor_packages/mats-common/imports/startup/server/data_util.js index f52b936bd..32479d52b 100644 --- a/meteor_packages/mats-common/imports/startup/server/data_util.js +++ b/meteor_packages/mats-common/imports/startup/server/data_util.js @@ -613,7 +613,7 @@ const consolidateContour = function (d, dTemp, statType, xAxisParam, yAxisParam) // which statistics are excluded from scorecards? const excludeStatFromScorecard = function (stat) { const statsToExclude = [ - "Bias (forecast/actual)", + // "Bias (forecast/actual)", "Nlow (Number of obs < threshold (hits + misses))", "Nhigh (Number of obs > threshold (hits + misses))", "All observed yes", @@ -629,7 +629,7 @@ const excludeStatFromScorecard = function (stat) { "N", "Model average", "Obs average", - "Std deviation", + // "Std deviation", "MAE (station plots only)", ]; return statsToExclude.indexOf(stat) !== -1; From 0dd5d0ae919b0811c1223bd51a7212fc1ebb16cf Mon Sep 17 00:00:00 2001 From: Molly Smith Date: Thu, 30 Apr 2026 11:58:44 -0600 Subject: [PATCH 2/2] Removed commented code --- meteor_packages/mats-common/imports/startup/server/data_util.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/meteor_packages/mats-common/imports/startup/server/data_util.js b/meteor_packages/mats-common/imports/startup/server/data_util.js index 32479d52b..f1ec68632 100644 --- a/meteor_packages/mats-common/imports/startup/server/data_util.js +++ b/meteor_packages/mats-common/imports/startup/server/data_util.js @@ -613,7 +613,6 @@ const consolidateContour = function (d, dTemp, statType, xAxisParam, yAxisParam) // which statistics are excluded from scorecards? const excludeStatFromScorecard = function (stat) { const statsToExclude = [ - // "Bias (forecast/actual)", "Nlow (Number of obs < threshold (hits + misses))", "Nhigh (Number of obs > threshold (hits + misses))", "All observed yes", @@ -629,7 +628,6 @@ const excludeStatFromScorecard = function (stat) { "N", "Model average", "Obs average", - // "Std deviation", "MAE (station plots only)", ]; return statsToExclude.indexOf(stat) !== -1;