aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadify <boomkin1234@hotmail.com>2017-12-04 10:01:06 +0100
committerShadify <boomkin1234@hotmail.com>2017-12-04 10:01:06 +0100
commit074799d1471df407663931d6654847fa38484a3e (patch)
treec6dc3169407077e4aee786a5b52a7d5637c4d2f3
parentccf443791736af36391e9274a5633ef2269ecfc0 (diff)
Fixed breakpoint in AQI calculation
-rw-r--r--src/AppBundle/Controller/NewDataController.php1
-rw-r--r--src/AppBundle/Utils/Aqi.php4
-rw-r--r--web/js/realtime.js5
3 files changed, 5 insertions, 5 deletions
diff --git a/src/AppBundle/Controller/NewDataController.php b/src/AppBundle/Controller/NewDataController.php
index ecb1be9..5dd440f 100644
--- a/src/AppBundle/Controller/NewDataController.php
+++ b/src/AppBundle/Controller/NewDataController.php
@@ -36,7 +36,6 @@ class NewDataController extends Controller
$response = new Response($data);
$response->headers->set('Content-Type', 'application/json');
-
return $response;
}
diff --git a/src/AppBundle/Utils/Aqi.php b/src/AppBundle/Utils/Aqi.php
index 6451c77..1b324a8 100644
--- a/src/AppBundle/Utils/Aqi.php
+++ b/src/AppBundle/Utils/Aqi.php
@@ -19,12 +19,12 @@ class Aqi {
$arr = $table ->{$gasName} ->{'breakpoints'};
foreach ($arr as $index => $value) {
- 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;
}
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 <strong>${max}</strong>`;