forked from Ysurac/FlightAirMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdate-statistics-arrival-airport-country.php
112 lines (92 loc) · 3.81 KB
/
date-statistics-arrival-airport-country.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
108
109
110
111
112
<?php
require('require/class.Connection.php');
require('require/class.Spotter.php');
$spotter_array = Spotter::getSpotterDataByDate($_GET['date'],"0,1", $_GET['sort']);
if (!empty($spotter_array))
{
date_default_timezone_set('America/Toronto');
$title = 'Most Common Arrival Airports by Country on '.date("l F j, Y", strtotime($spotter_array[0]['date_iso_8601']));
require('header.php');
print '<div class="select-item">';
print '<form action="'.$globalURL.'/date" method="post">';
print '<label for="date">Select a Date</label>';
print '<input type="text" id="date" name="date" value="'.$_GET['date'].'" size="8" readonly="readonly" class="custom" />';
print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
print '</form>';
print '</div>';
print '<div class="info column">';
print '<h1>Flights from '.date("l F j, Y", strtotime($spotter_array[0]['date_iso_8601'])).'</h1>';
print '</div>';
include('date-sub-menu.php');
print '<div class="column">';
print '<h2>Most Common Arrival Airports by Country</h2>';
?>
<p>The statistic below shows all arrival airports by Country of origin of flights on <strong><?php print date("l F j, Y", strtotime($spotter_array[0]['date_iso_8601'])); ?></strong>.</p>
<?php
$airport_country_array = Spotter::countAllArrivalAirportCountriesByDate($_GET['date']);
print '<div id="chartCountry" class="chart" width="100%"></div>
<script>
google.load("visualization", "1", {packages:["geochart"]});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
["Country", "# of Times"], ';
foreach($airport_country_array as $airport_item)
{
$country_data .= '[ "'.$airport_item['arrival_airport_country'].'",'.$airport_item['airport_arrival_country_count'].'],';
}
$country_data = substr($country_data, 0, -1);
print $country_data;
print ']);
var options = {
legend: {position: "none"},
chartArea: {"width": "80%", "height": "60%"},
height:500,
colors: ["#8BA9D0","#1a3151"]
};
var chart = new google.visualization.GeoChart(document.getElementById("chartCountry"));
chart.draw(data, options);
}
$(window).resize(function(){
drawChart();
});
</script>';
if (!empty($airport_country_array))
{
print '<div class="table-responsive">';
print '<table class="common-country">';
print '<thead>';
print '<th></th>';
print '<th>Country</th>';
print '<th># of times</th>';
print '</thead>';
print '<tbody>';
$i = 1;
foreach($airport_country_array as $airport_item)
{
print '<tr>';
print '<td><strong>'.$i.'</strong></td>';
print '<td>';
print '<a href="'.$globalURL.'/country/'.strtolower(str_replace(" ", "-", $airport_item['arrival_airport_country'])).'">'.$airport_item['arrival_airport_country'].'</a>';
print '</td>';
print '<td>';
print $airport_item['airport_arrival_country_count'];
print '</td>';
print '</tr>';
$i++;
}
print '<tbody>';
print '</table>';
print '</div>';
}
print '</div>';
} else {
$title = "Unknown Date";
require('header.php');
print '<h1>Error</h1>';
print '<p>Sorry, this date does not exist in this database. :(</p>';
}
?>
<?php
require('footer.php');
?>