forked from Ysurac/FlightAirMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountry-statistics-time.php
107 lines (86 loc) · 3.37 KB
/
country-statistics-time.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<?php
require_once('require/class.Connection.php');
require_once('require/class.Spotter.php');
if (!isset($_GET['country'])) {
header('Location: '.$globalURL.'/country');
die();
}
$Spotter = new Spotter();
$country = ucwords(str_replace("-", " ", $_GET['country']));
$spotter_array = $Spotter->getSpotterDataByCountry($country, "0,1", $_GET['sort']);
if (!empty($spotter_array))
{
$title = 'Most Common Time of Day from '.$country;
require_once('header.php');
print '<div class="select-item">';
print '<form action="'.$globalURL.'/country" method="post">';
print '<select name="country" class="selectpicker" data-live-search="true">';
print '<option></option>';
$all_countries = $Spotter->getAllCountries();
foreach($all_countries as $all_country)
{
if($country == $all_country['country'])
{
print '<option value="'.strtolower(str_replace(" ", "-", $all_country['country'])).'" selected="selected">'.$all_country['country'].'</option>';
} else {
print '<option value="'.strtolower(str_replace(" ", "-", $all_country['country'])).'">'.$all_country['country'].'</option>';
}
}
print '</select>';
print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
print '</form>';
print '</div>';
if ($_GET['country'] != "NA")
{
print '<div class="info column">';
print '<h1>Airports & Airlines from '.$country.'</h1>';
print '</div>';
} else {
print '<div class="alert alert-warning">This special country profile shows all flights that do <u>not</u> have a country of a airline or departure/arrival airport associated with them.</div>';
}
include('country-sub-menu.php');
print '<div class="column">';
print '<h2>Most Common Time of Day</h2>';
print '<p>The statistic below shows the most common time of day of airports & airlines from <strong>'.$country.'</strong>.</p>';
$hour_array = $Spotter->countAllHoursByCountry($country);
print '<div id="chartHour" class="chart" width="100%"></div>
<script>
google.load("visualization", "1", {packages:["corechart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
["Hour", "# of Flights"], ';
$hour_data = '';
foreach($hour_array as $hour_item)
{
$hour_data .= '[ "'.date("ga", strtotime($hour_item['hour_name'].":00")).'",'.$hour_item['hour_count'].'],';
}
$hour_data = substr($hour_data, 0, -1);
print $hour_data;
print ']);
var options = {
legend: {position: "none"},
chartArea: {"width": "80%", "height": "60%"},
vAxis: {title: "# of Flights"},
hAxis: {showTextEvery: 2},
height:300,
colors: ["#1a3151"]
};
var chart = new google.visualization.AreaChart(document.getElementById("chartHour"));
chart.draw(data, options);
}
$(window).resize(function(){
drawChart();
});
</script>';
print '</div>';
} else {
$title = "Country";
require_once('header.php');
print '<h1>Error</h1>';
print '<p>Sorry, the country does not exist in this database. :(</p>';
}
?>
<?php
require_once('footer.php');
?>