-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
76 lines (70 loc) · 1.92 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
function getWeatherData($city = "Ghent")
{
$requestURL = "https://api.openweathermap.org/data/2.5/forecast?q=$city&units=metric&APPID=" . API_KEY;
$respons = file_get_contents($requestURL);
return json_decode($respons);
}
// $responsdata = JSON object
function groupByDay($responsdata)
{
$output = [];
$list = $responsdata->list;
foreach($list as $listitem){
$day = date("N", $listitem->dt);
$dowMap = array('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday','Sunday');
$day = $dowMap[$day -1];
if(!array_key_exists($day, $output)){
$output[$day] = [];
}
array_push($output[$day], $listitem);
}
return $output;
}
// $daily = array
function addDailyMetrics($daily)
{
$output = $daily;
foreach($daily as $day => $timeslot){
$dailyMetrics=[
"max" => round($timeslot[0]->main->temp_max, 2),
"min" => round($timeslot[0]->main->temp_min,2),
];
foreach($timeslot as $item){
if(round($item->main->temp_min,2) < $dailyMetrics["min"]){
$dailyMetrics["min"] = round($item->main->temp_min,2);
}
if(round($item->main->temp_max,2) > $dailyMetrics["max"]){
$dailyMetrics["max"] = round($item->main->temp_max,2);
}
}
array_push($output[$day], $dailyMetrics);
}
return $output;
}
function generateMinMax($fullData, $pop=true)
{
$output = [
"min"=>"",
"max"=>""
];
foreach($fullData as $day => $weather){
if($pop)
{
$metrics = array_pop($weather);
}else{
$metrics = $weather;
}
$output["min"] .= $metrics["min"].",";
$output["max"] .= $metrics["max"].",";
}
return $output;
}
function generateDayLabels($dailyData)
{
$output="";
foreach($dailyData as $day => $data){
$output .= '\''.$day.'\''.',';
}
return $output;
}