forked from Ysurac/FlightAirMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathident-statistics-arrival-airport.php
121 lines (101 loc) · 4.41 KB
/
ident-statistics-arrival-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
<?php
require('require/class.Connection.php');
require('require/class.Spotter.php');
$spotter_array = Spotter::getSpotterDataByIdent($_GET['ident'],"0,1", $_GET['sort']);
if (!empty($spotter_array))
{
$title = 'Most Common Arrival Airports of '.$spotter_array[0]['ident'];
require('header.php');
date_default_timezone_set('America/Toronto');
print '<div class="info column">';
print '<h1>'.$spotter_array[0]['ident'].'</h1>';
print '<div><span class="label">Ident</span>'.$spotter_array[0]['ident'].'</div>';
print '<div><span class="label">Airline</span><a href="'.$globalURL.'/airline/'.$spotter_array[0]['airline_icao'].'">'.$spotter_array[0]['airline_name'].'</a></div>';
print '<div><span class="label">Flight History</span><a href="http://flightaware.com/live/flight/'.$spotter_array[0]['ident'].'" target="_blank">View the Flight History of this callsign</a></div>';
print '</div>';
include('ident-sub-menu.php');
print '<div class="column">';
print '<h2>Most Common Arrival Airports</h2>';
?>
<p>The statistic below shows all arrival airports of flights with the ident/callsign <strong><?php print $spotter_array[0]['ident']; ?></strong>.</p>
<?php
$airport_airport_array = Spotter::countAllArrivalAirportsByIdent($_GET['ident']);
?>
<script>
google.load("visualization", "1", {packages:["geochart"]});
google.setOnLoadCallback(drawCharts);
$(window).resize(function(){
drawCharts();
});
function drawCharts() {
var data = google.visualization.arrayToDataTable([
["Airport", "# of Times"],
<?php
foreach($airport_airport_array as $airport_item)
{
$name = $airport_item['airport_arrival_city'].', '.$airport_item['airport_arrival_country'].' ('.$airport_item['airport_arrival_icao'].')';
$name = str_replace("'", "", $name);
$name = str_replace('"', "", $name);
$airport_data .= '[ "'.$name.'",'.$airport_item['airport_arrival_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">';
print '<thead>';
print '<th></th>';
print '<th>Airport</th>';
print '<th>Country</th>';
print '<th># of times</th>';
print '<th></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_arrival_icao'].'">'.$airport_item['airport_arrival_city'].', '.$airport_item['airport_arrival_country'].' ('.$airport_item['airport_arrival_icao'].')</a>';
print '</td>';
print '<td>';
print '<a href="'.$globalURL.'/country/'.strtolower(str_replace(" ", "-", $airport_item['airport_arrival_country'])).'">'.$airport_item['airport_arrival_country'].'</a>';
print '</td>';
print '<td>';
print $airport_item['airport_arrival_icao_count'];
print '</td>';
print '<td><a href="'.$globalURL.'/search?arrival_airport_route='.$airport_item['airport_arrival_icao'].'&callsign='.$_GET['ident'].'">Search flights</a></td>';
print '</tr>';
$i++;
}
print '<tbody>';
print '</table>';
print '</div>';
?>
<?php
print '</div>';
} else {
$title = "Ident";
require('header.php');
print '<h1>Error</h1>';
print '<p>Sorry, this ident/callsign is not in the database. :(</p>';
}
?>
<?php
require('footer.php');
?>