forked from Ysurac/FlightAirMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
aircraft-statistics-airline-country.php
138 lines (132 loc) · 5.81 KB
/
aircraft-statistics-airline-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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<?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');
$Spotter = new Spotter();
if (!isset($_GET['aircraft_type'])) {
header('Location: '.$globalURL.'/aircraft');
die();
}
$aircraft_type = filter_input(INPUT_GET,'aircraft_type',FILTER_SANITIZE_STRING);
$spotter_array = $Spotter->getSpotterDataByAircraft($aircraft_type,"0,1","");
if (!empty($spotter_array))
{
$title = sprintf(_("Most Common Airlines by Country from %s (%s)"),$spotter_array[0]['aircraft_name'],$spotter_array[0]['aircraft_type']);
require_once('header.php');
print '<div class="select-item">';
print '<form action="'.$globalURL.'/aircraft" method="get">';
print '<select name="aircraft_type" class="selectpicker" data-live-search="true">';
print '<option></option>';
$Stats = new Stats();
$aircraft_types = $Stats->getAllAircraftTypes();
if (empty($aircraft_types)) $aircraft_types = $Spotter->getAllAircraftTypes();
foreach($aircraft_types as $aircrafttype)
{
if($aircraft_type == $aircrafttype['aircraft_icao'])
{
print '<option value="'.$aircrafttype['aircraft_icao'].'" selected="selected">'.$aircrafttype['aircraft_name'].' ('.$aircrafttype['aircraft_icao'].')</option>';
} else {
print '<option value="'.$aircrafttype['aircraft_icao'].'">'.$aircrafttype['aircraft_name'].' ('.$aircrafttype['aircraft_icao'].')</option>';
}
}
print '</select>';
print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
print '</form>';
print '</div>';
print '<br />';
if ($aircraft_type != "NA")
{
print '<div class="info column">';
print '<h1>'.$spotter_array[0]['aircraft_name'].' ('.$spotter_array[0]['aircraft_type'].')</h1>';
print '<div><span class="label">Name</span>'.$spotter_array[0]['aircraft_name'].'</div>';
print '<div><span class="label">ICAO</span>'.$spotter_array[0]['aircraft_type'].'</div>';
print '<div><span class="label">Manufacturer</span><a href="'.$globalURL.'/manufacturer/'.strtolower(str_replace(" ", "-", $spotter_array[0]['aircraft_manufacturer'])).'">'.$spotter_array[0]['aircraft_manufacturer'].'</a></div>';
print '</div>';
} else {
print '<div class="alert alert-warning">'._("This special aircraft profile shows all flights in where the aircraft type is unknown.").'</div>';
}
include('aircraft-sub-menu.php');
print '<div class="column">';
print '<h2>'._("Most Common Airlines by Country").'</h2>';
print '<p>'.sprintf(_("The statistic below shows the most common airlines by Country of origin of flights from <strong>%s (%s)</strong>."),$spotter_array[0]['aircraft_name'],$spotter_array[0]['aircraft_type']).'</p>';
$airline_array = $Spotter->countAllAirlineCountriesByAircraft($aircraft_type);
print '<script type="text/javascript" src="'.$globalURL.'/js/d3.min.js"></script>';
print '<script type="text/javascript" src="'.$globalURL.'/js/topojson.v2.min.js"></script>';
print '<script type="text/javascript" src="'.$globalURL.'/js/datamaps.world.min.js"></script>';
print '<div id="chartCountry" class="chart" width="100%"></div><script>';
print 'var series = [';
$country_data = '';
foreach($airline_array as $airline_item)
{
$country_data .= '[ "'.$airline_item['airline_country_iso3'].'",'.$airline_item['airline_country_count'].'],';
}
$country_data = substr($country_data, 0, -1);
print $country_data;
print '];';
print 'var dataset = {};var onlyValues = series.map(function(obj){ return obj[1]; });var minValue = Math.min.apply(null, onlyValues), maxValue = Math.max.apply(null, onlyValues);';
print 'var paletteScale = d3.scale.log().domain([minValue,maxValue]).range(["#EFEFFF","#001830"]);';
print 'series.forEach(function(item){var iso = item[0], value = item[1]; dataset[iso] = { numberOfThings: value, fillColor: paletteScale(value) };});';
print 'new Datamap({
element: document.getElementById("chartCountry"),
projection: "mercator", // big world map
fills: { defaultFill: "#F5F5F5" },
data: dataset,
responsive: true,
geographyConfig: {
borderColor: "#DEDEDE",
highlightBorderWidth: 2,
highlightFillColor: function(geo) {
return geo["fillColor"] || "#F5F5F5";
},
highlightBorderColor: "#B7B7B7",
done: function(datamap) {
datamap.svg.call(d3.behavior.zoom().on("zoom", redraw));
function redraw() {
datamap.svg.selectAll("g").attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
}
},
popupTemplate: function(geo, data) {
if (!data) { return ; }
return ['."'".'<div class="hoverinfo">'."','<strong>', geo.properties.name, '</strong>','<br>Count: <strong>', data.numberOfThings, '</strong>','</div>'].join('');
}
}
});";
print '</script>';
if (!empty($airline_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($airline_array as $airline_item)
{
print '<tr>';
print '<td><strong>'.$i.'</strong></td>';
print '<td>';
print '<a href="'.$globalURL.'/country/'.strtolower(str_replace(" ", "-", $airline_item['airline_country'])).'">'.$airline_item['airline_country'].'</a>';
print '</td>';
print '<td>';
print $airline_item['airline_country_count'];
print '</td>';
print '</tr>';
$i++;
}
print '<tbody>';
print '</table>';
print '</div>';
}
print '</div>';
} else {
$title = _("Aircraft Type");
require_once('header.php');
print '<h1>'._("Error").'</h1>';
print '<p>'._("Sorry, the aircraft type does not exist in this database. :(").'</p>';
}
require_once('footer.php');
?>