-
Notifications
You must be signed in to change notification settings - Fork 159
/
airport-statistics-time.php
106 lines (98 loc) · 4.73 KB
/
airport-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
<?php
require_once('require/class.Connection.php');
require_once('require/class.Spotter.php');
require_once('require/class.Stats.php');
require_once('require/class.Language.php');
if (!isset($_GET['airport'])) {
header('Location: '.$globalURL.'/airport');
die();
}
$airport = filter_input(INPUT_GET,'airport',FILTER_SANITIZE_STRING);
$Spotter = new Spotter();
$spotter_array = $Spotter->getSpotterDataByAirport($airport,"0,1","");
$airport_array = $Spotter->getAllAirportInfo($airport);
if (!empty($airport_array))
{
$title = sprintf(_("Most Common Time of Day to/from %s, %s (%s)"),$airport_array[0]['city'],$airport_array[0]['name'],$airport_array[0]['icao']);
require_once('header.php');
print '<div class="select-item">';
print '<form action="'.$globalURL.'/airport" method="post">';
print '<select name="airport" class="selectpicker" data-live-search="true">';
print '<option></option>';
$Stats = new Stats();
$airport_names = $Stats->getAllAirportNames();
if (empty($airport_names)) $airport_names = $Spotter->getAllAirportNames();
ksort($airport_names);
foreach($airport_names as $airport_name)
{
if($airport == $airport_name['airport_icao'])
{
print '<option value="'.$airport_name['airport_icao'].'" selected="selected">'.$airport_name['airport_city'].', '.$airport_name['airport_name'].', '.$airport_name['airport_country'].' ('.$airport_name['airport_icao'].')</option>';
} else {
print '<option value="'.$airport_name['airport_icao'].'">'.$airport_name['airport_city'].', '.$airport_name['airport_name'].', '.$airport_name['airport_country'].' ('.$airport_name['airport_icao'].')</option>';
}
}
print '</select>';
print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
print '</form>';
print '</div>';
if ($airport != "NA")
{
print '<div class="info column">';
print '<h1>'.$airport_array[0]['city'].', '.$airport_array[0]['name'].' ('.$airport_array[0]['icao'].')</h1>';
print '<div><span class="label">'._("Name").'</span>'.$airport_array[0]['name'].'</div>';
print '<div><span class="label">'._("City").'</span>'.$airport_array[0]['city'].'</div>';
print '<div><span class="label">'._("Country").'</span>'.$airport_array[0]['country'].'</div>';
print '<div><span class="label">'._("ICAO").'</span>'.$airport_array[0]['icao'].'</div>';
print '<div><span class="label">'._("IATA").'</span>'.$airport_array[0]['iata'].'</div>';
print '<div><span class="label">'._("Altitude").'</span>'.$airport_array[0]['altitude'].'</div>';
print '<div><span class="label">'._("Coordinates").'</span><a href="http://maps.google.ca/maps?z=10&t=k&q='.$airport_array[0]['latitude'].','.$airport_array[0]['longitude'].'" target="_blank">Google Map<i class="fa fa-angle-double-right"></i></a></div>';
print '</div>';
} else {
print '<div class="alert alert-warning">'._("This special airport profile shows all flights that do <u>not</u> have a departure and/or arrival airport associated with them.").'</div>';
}
include('airport-sub-menu.php');
print '<div class="column">';
print '<h2>'._("Most Common Time of Day").'</h2>';
print '<p>'.sprintf(_("The statistic below shows the most common time of day to/from <strong>%s, %s (%s)</strong>."),$airport_array[0]['city'],$airport_array[0]['name'],$airport_array[0]['icao']).'</p>';
$hour_array = $Spotter->countAllHoursByAirport($airport);
print '<script type="text/javascript" src="https://www.google.com/jsapi"></script>';
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 = _("Airport");
require_once('header.php');
print '<h1>'._("Error").'</h1>';
print '<p>'._("Sorry, the airport does not exist in this database. :(").'</p>';
}
require_once('footer.php');
?>