From 074799d1471df407663931d6654847fa38484a3e Mon Sep 17 00:00:00 2001 From: Shadify Date: Mon, 4 Dec 2017 10:01:06 +0100 Subject: Fixed breakpoint in AQI calculation --- web/js/realtime.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'web') diff --git a/web/js/realtime.js b/web/js/realtime.js index 27cb25c..e090d05 100644 --- a/web/js/realtime.js +++ b/web/js/realtime.js @@ -30,12 +30,12 @@ function calculateAQI(gasName, concentration) { var bpLowIndex, bpHiIndex; table[gasName].breakpoints.forEach(function(value, index) { - if(value < concentration && table[gasName].breakpoints[index + 1] > concentration) { + if(value <= concentration && table[gasName].breakpoints[index + 1] >= concentration) { bpLow = value; bpLowIndex = index; } - if(value > concentration && table[gasName].breakpoints[index - 1] < concentration) { + if(value >= concentration && table[gasName].breakpoints[index - 1] <= concentration) { bpHi = value; bpHiIndex = index; } @@ -75,6 +75,7 @@ function update() { indexes.push(NO); indexes.push(SO); + var max = arrayMax(indexes); document.querySelector("#aq").innerHTML = `The current air quality index is ${max}`; -- cgit v1.2.3