-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathmanufacturer-statistics-departure-airport.php
140 lines (135 loc) · 6.08 KB
/
manufacturer-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
135
136
137
138
139
140
<?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['aircraft_manufacturer'])) {
header('Location: '.$globalURL.'/manufacturer');
die();
}
$Spotter = new Spotter();
$manufacturer = ucwords(str_replace("-", " ", urldecode(filter_input(INPUT_GET,'aircraft_manufacturer',FILTER_SANITIZE_STRING))));
$sort = filter_input(INPUT_GET,'sort',FILTER_SANITIZE_STRING);
$spotter_array = $Spotter->getSpotterDataByManufacturer($manufacturer,"0,1", $sort);
if (!empty($spotter_array))
{
$title = sprintf(_("Most Common Departure Airports from %s"),$manufacturer);
require_once('header.php');
print '<div class="select-item">';
print '<form action="'.$globalURL.'/manufacturer" method="post">';
print '<select name="aircraft_manufacturer" class="selectpicker" data-live-search="true">';
$Stats = new Stats();
$all_manufacturers = $Stats->getAllManufacturers();
if (empty($all_manufacturers)) $all_manufacturers = $Spotter->getAllManufacturers();
foreach($all_manufacturers as $all_manufacturer)
{
if($_GET['aircraft_manufacturer'] == strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])))
{
print '<option value="'.strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])).'" selected="selected">'.$all_manufacturer['aircraft_manufacturer'].'</option>';
} else {
print '<option value="'.strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])).'">'.$all_manufacturer['aircraft_manufacturer'].'</option>';
}
}
print '</select>';
print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
print '</form>';
print '</div>';
print '<div class="info column">';
print '<h1>'.$manufacturer.'</h1>';
print '</div>';
include('manufacturer-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 from <strong>%s</strong>."),$manufacturer).'</p>';
$airport_airport_array = $Spotter->countAllDepartureAirportsByManufacturer($manufacturer);
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="chartAirport" class="chart" width="100%"></div>';
print '<script>';
print 'var series = [';
$airport_data = '';
foreach($airport_airport_array as $airport_item)
{
$airport_data .= '[ "'.$airport_item['airport_departure_icao_count'].'", "'.$airport_item['airport_departure_icao'].'",'.$airport_item['airport_departure_latitude'].','.$airport_item['airport_departure_longitude'].'],';
}
$airport_data = substr($airport_data, 0, -1);
print $airport_data;
print '];'."\n";
print 'var onlyValues = series.map(function(obj){ return obj[0]; });var minValue = Math.min.apply(null, onlyValues), maxValue = Math.max.apply(null, onlyValues);'."\n";
print 'var paletteScale = d3.scale.log().domain([minValue,maxValue]).range(["#EFEFFF","#001830"]);'."\n";
print 'var radiusScale = d3.scale.log().domain([minValue,maxValue]).range([0,10]);'."\n";
print 'var dataset = [];'."\n";
print 'var colorset = [];'."\n";
print 'colorset["defaultFill"] = "#F5F5F5";';
print 'series.forEach(function(item){'."\n";
print 'var cnt = item[0], nm = item[1], lat = item[2], long = item[3];'."\n";
print 'colorset[nm] = paletteScale(cnt);';
print 'dataset.push({ count: cnt, name: nm, radius: Math.floor(radiusScale(cnt)), latitude: lat, longitude: long, fillKey: nm });'."\n";
print '});'."\n";
print 'var bbl = new Datamap({
element: document.getElementById("chartAirport"),
projection: "mercator", // big world map
fills: colorset,
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 + ")");
}
}
});
bbl.bubbles(dataset,{
popupTemplate: function(geo, data) {
if (!data) { return ; }
return ['."'".'<div class="hoverinfo">'."','<strong>', data.name, '</strong>','<br>Count: <strong>', data.count, '</strong>','</div>'].join('');
}
});";
print '</script>';
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 '<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_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 '<td><a href="'.$globalURL.'/search?departure_airport_route='.$airport_item['airport_departure_icao'].'&manufacturer='.$manufacturer.'">'._("Search flights").'</a></td>';
print '</tr>';
$i++;
}
print '<tbody>';
print '</table>';
print '</div>';
print '</div>';
} else {
$title = _("Manufacturer");
require_once('header.php');
print '<h1>'._("Error").'</h1>';
print '<p>'._("Sorry, the aircraft manufacturer does not exist in this database. :(").'</p>';
}
require_once('footer.php');
?>