From 322b79babf45b1bff0d219cfbf10524b975075fd Mon Sep 17 00:00:00 2001 From: marcinzelent Date: Thu, 7 Dec 2017 12:38:55 +0100 Subject: Split all data and data from last week, moved chart to the right side of the page. --- src/AppBundle/Controller/LastWeekData.php | 72 ------------------------------- 1 file changed, 72 deletions(-) delete mode 100644 src/AppBundle/Controller/LastWeekData.php (limited to 'src/AppBundle/Controller/LastWeekData.php') diff --git a/src/AppBundle/Controller/LastWeekData.php b/src/AppBundle/Controller/LastWeekData.php deleted file mode 100644 index 24086c8..0000000 --- a/src/AppBundle/Controller/LastWeekData.php +++ /dev/null @@ -1,72 +0,0 @@ - $item) - { - $data[$index]['TimeStamp'] = gmdate('d F l', $item['TimeStamp']); - $readings[$data[$index]['TimeStamp']][] = $data[$index]; - } - - - - $gasAverage = array('Co' => 0, 'No' => 0, 'So' => 0); - foreach($readings as $key => $item) - { - foreach($readings[$key] as $index => $values) - { - - $gasAverage['Co'] += $readings[$key][$index]['Co']; - $gasAverage['No'] += $readings[$key][$index]['No']; - $gasAverage['So'] += $readings[$key][$index]['So']; - - if($index === count($readings[$key]) - 1) - { - $gasAverage['Co'] /= $index + 1; - $gasAverage['No'] /= $index + 1; - $gasAverage['So'] /= $index + 1; - } - } - - $readings[$key] = $gasAverage; - - } - - - $data = json_encode($readings); - - - $response = new Response($data); - $response->headers->set('Content-Type', 'application/json'); - return $response; - - - } -} \ No newline at end of file -- cgit v1.2.3