From a3e08f189c404983360f34e09320379635040afd Mon Sep 17 00:00:00 2001 From: pratishta Date: Mon, 12 Feb 2024 11:27:21 -0500 Subject: [PATCH] Update inflation and current year constants --- special-calculations/data/constants.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/special-calculations/data/constants.js b/special-calculations/data/constants.js index 035fe57..fa3e06d 100644 --- a/special-calculations/data/constants.js +++ b/special-calculations/data/constants.js @@ -1,9 +1,9 @@ // constants for use in special calculations -const INFLATION_FACTOR = 1.2543; +const INFLATION_FACTOR = 1.3493; const CORRELATION_COEFFICIENT_CONST = 1.645; const DIFF_PERCENT_THRESHOLD = -0.05; const DESIGN_FACTOR = 1.5; -const CUR_YEAR = 'Y2017-2021'; +const CUR_YEAR = 'Y2018-2028'; const PREV_YEAR = 'Y2006-2010'; // TODO: update with actual previous year const GEOGRAPHY_VERSION = '2023-08-29'; const DECENNIAL_SCHEMA_NAME = 'decennial';