forked from Ysurac/FlightAirMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountry-statistics-departure-airport.php
134 lines (124 loc) · 4.8 KB
/
country-statistics-departure-airport.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
require_once('require/class.Connection.php');
require_once('require/class.Spotter.php');
require_once('require/class.Language.php');
if (!isset($_GET['country'])) {
header('Location: '.$globalURL.'/country');
die();
}
$Spotter = new Spotter();
$country = ucwords(str_replace("-", " ", filter_input(INPUT_GET,'country',FILTER_SANITIZE_STRING)));
$sort = filter_input(INPUT_GET,'sort',FILTER_SANITIZE_STRING);
if (isset($_GET['sort'])) {
$spotter_array = $Spotter->getSpotterDataByCountry($country, "0,1", $sort);
} else {
$spotter_array = $Spotter->getSpotterDataByCountry($country, "0,1", '');
}
if (!empty($spotter_array))
{
$title = sprintf(_("Most Common Departure Airports from %s"),$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>'.sprintf(_("Airports & Airlines from %s"),$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 Departure Airports").'</h2>';
print '<p>'.sprintf(_("The statistic below shows all departure airports of flights of airports & airlines from <strong>%s</strong>."),$country).'</p>';
$airport_airport_array = $Spotter->countAllDepartureAirportsByCountry($country);
print '<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script>
google.load("visualization", "1", {packages:["geochart"]});
google.setOnLoadCallback(drawCharts);
$(window).resize(function(){
drawCharts();
});
function drawCharts() {
var data = google.visualization.arrayToDataTable([
["'._("Airport").'", "'._("# of times").'"],';
$airport_data = '';
foreach($airport_airport_array as $airport_item)
{
$name = $airport_item['airport_departure_city'].', '.$airport_item['airport_departure_country'].' ('.$airport_item['airport_departure_icao'].')';
$name = str_replace("'", "", $name);
$name = str_replace('"', "", $name);
$airport_data .= '[ "'.$name.'",'.$airport_item['airport_departure_icao_count'].'],';
}
$airport_data = substr($airport_data, 0, -1);
print $airport_data;
?>
]);
var options = {
legend: {position: "none"},
chartArea: {"width": "80%", "height": "60%"},
height:500,
displayMode: "markers",
colors: ["#8BA9D0","#1a3151"]
};
var chart = new google.visualization.GeoChart(document.getElementById("chartAirport"));
chart.draw(data, options);
}
</script>
<div id="chartAirport" class="chart" width="100%"></div>
<?php
print '<div class="table-responsive">';
print '<table class="common-airport table-striped">';
print '<thead>';
print '<th></th>';
print '<th>'._("Airport").'</th>';
print '<th>'._("Country").'</th>';
print '<th>'._("# of times").'</th>';
print '</thead>';
print '<tbody>';
$i = 1;
foreach($airport_airport_array as $airport_item)
{
print '<tr>';
print '<td><strong>'.$i.'</strong></td>';
print '<td>';
print '<a href="'.$globalURL.'/airport/'.$airport_item['airport_departure_icao'].'">'.$airport_item['airport_departure_city'].', '.$airport_item['airport_departure_country'].' ('.$airport_item['airport_departure_icao'].')</a>';
print '</td>';
print '<td>';
print '<a href="'.$globalURL.'/country/'.strtolower(str_replace(" ", "-", $airport_item['airport_departure_country'])).'">'.$airport_item['airport_departure_country'].'</a>';
print '</td>';
print '<td>';
print $airport_item['airport_departure_icao_count'];
print '</td>';
print '</tr>';
$i++;
}
print '<tbody>';
print '</table>';
print '</div>';
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>';
}
require_once('footer.php');
?>