Completed
Push — master ( 347b49...ab55a5 )
by Yannick
05:41
created

live-czml.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
require_once('require/class.Connection.php');
3
require_once('require/class.Common.php');
4
require_once('require/class.Spotter.php');
5
require_once('require/class.SpotterLive.php');
6
require_once('require/class.SpotterArchive.php');
7
date_default_timezone_set('UTC');
8
$begintime = microtime(true);
9
$SpotterLive = new SpotterLive();
10
$Spotter = new Spotter();
11
$SpotterArchive = new SpotterArchive();
12
$Common = new Common();
13
14
15
function quaternionrotate($heading, $attitude = 0, $bank = 0) {
16
    // Assuming the angles are in radians.
17
    $c1 = cos($heading/2);
18
    $s1 = sin($heading/2);
19
    $c2 = cos($attitude/2);
20
    $s2 = sin($attitude/2);
21
    $c3 = cos($bank/2);
22
    $s3 = sin($bank/2);
23
    $c1c2 = $c1*$c2;
24
    $s1s2 = $s1*$s2;
25
    $w =$c1c2*$c3 - $s1s2*$s3;
26
    $x =$c1c2*$s3 + $s1s2*$c3;
27
    $y =$s1*$c2*$c3 + $c1*$s2*$s3;
28
    $z =$c1*$s2*$c3 - $s1*$c2*$s3;
29
    return array('x' => $x,'y' => $y,'z' => $z,'w' => $w);
30
//    return array('x' => '0.0','y' => '-0.931','z' => '0.0','w' => '0.365');
31
32
}
33
34
35
if (isset($_GET['download'])) {
36
    if ($_GET['download'] == "true")
37
    {
38
	header('Content-disposition: attachment; filename="flightairmap.json"');
39
    }
40
}
41
header('Content-Type: text/javascript');
42
43
if (!isset($globalJsonCompress)) $compress = true;
44
else $compress = $globalJsonCompress;
45
46
$from_archive = false;
47
$min = false;
48
$allhistory = false;
49
$filter['source'] = array();
50
if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalVATSIM) && $globalVATSIM && isset($_COOKIE['ShowVATSIM']) && $_COOKIE['ShowVATSIM'] == 'true') $filter['source'] = array_merge($filter['source'],array('vatsimtxt'));
51
if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalIVAO) && $globalIVAO && isset($_COOKIE['ShowIVAO']) && $_COOKIE['ShowIVAO'] == 'true') $filter['source'] = array_merge($filter['source'],array('whazzup'));
52
if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalphpVMS) && $globalphpVMS && isset($_COOKIE['ShowVMS']) && $_COOKIE['ShowVMS'] == 'true') $filter['source'] = array_merge($filter['source'],array('phpvmacars'));
53
if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalSBS1) && $globalSBS1 && isset($_COOKIE['ShowSBS1']) && $_COOKIE['ShowSBS1'] == 'true') $filter['source'] = array_merge($filter['source'],array('sbs'));
54
if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalAPRS) && $globalAPRS && isset($_COOKIE['ShowAPRS']) && $_COOKIE['ShowAPRS'] == 'true') $filter['source'] = array_merge($filter['source'],array('aprs'));
55
if (isset($_COOKIE['Airlines']) && $_COOKIE['Airlines'] != '') $filter['airlines'] = explode(',',$_COOKIE['Airlines']);
56
if (isset($_COOKIE['Sources']) && $_COOKIE['Sources'] != '') $filter['source_aprs'] = explode(',',$_COOKIE['Sources']);
57
if (isset($_COOKIE['airlinestype']) && $_COOKIE['airlinestype'] != 'all') $filter['airlinestype'] = $_COOKIE['airlinestype'];
58
/*
59
if (isset($globalMapPopup) && !$globalMapPopup && !(isset($_COOKIE['flightpopup']) && $_COOKIE['flightpopup'] == 'true')) {
60
	$min = true;
61
}
62
63
if (isset($_GET['ident'])) {
64
	$ident = filter_input(INPUT_GET,'ident',FILTER_SANITIZE_STRING);
65
	$spotter_array = $SpotterLive->getLastLiveSpotterDataByIdent($ident);
66
	if (empty($spotter_array)) {
67
		$from_archive = true;
68
		$spotter_array = $SpotterArchive->getLastArchiveSpotterDataByIdent($ident);
69
	}
70
	$allhistory = true;
71
} elseif (isset($_GET['flightaware_id'])) {
72
	$flightaware_id = filter_input(INPUT_GET,'flightaware_id',FILTER_SANITIZE_STRING);
73
	$spotter_array = $SpotterLive->getLastLiveSpotterDataById($flightaware_id);
74
	if (empty($spotter_array)) {
75
		$from_archive = true;
76
		$spotter_array = $SpotterArchive->getLastArchiveSpotterDataById($flightaware_id);
77
	}
78
	$allhistory = true;
79
} elseif (isset($_GET['coord'])) {
80
	$coord = explode(',',$_GET['coord']);
81
	$spotter_array = $SpotterLive->getLiveSpotterDatabyCoord($coord,$filter);
82
} elseif (isset($_GET['archive']) && isset($_GET['begindate']) && isset($_GET['enddate']) && isset($_GET['speed'])) {
83
	$from_archive = true;
84
//	$begindate = filter_input(INPUT_GET,'begindate',FILTER_VALIDATE_REGEXP,array("options"=>array("regexp"=>'~^\d{4}/\d{2}/\d{2}$~')));
85
//	$enddate = filter_input(INPUT_GET,'enddate',FILTER_VALIDATE_REGEXP,array("options"=>array("regexp"=>'~^\d{4}/\d{2}/\d{2}$~')));
86
	$begindate = filter_input(INPUT_GET,'begindate',FILTER_SANITIZE_NUMBER_INT);
87
	$enddate = filter_input(INPUT_GET,'enddate',FILTER_SANITIZE_NUMBER_INT);
88
	$archivespeed = filter_input(INPUT_GET,'speed',FILTER_SANITIZE_NUMBER_INT);
89
	$begindate = date('Y-m-d H:i:s',$begindate);
90
	$enddate = date('Y-m-d H:i:s',$enddate);
91
	$spotter_array = $SpotterArchive->getMinLiveSpotterData($begindate,$enddate,$filter);
92
} elseif ($min) {
93
	//$spotter_array = $SpotterLive->getMinLiveSpotterData($filter);
94
	$spotter_array = $SpotterLive->getMinLastLiveSpotterData($filter);
95
#	$min = true;
96
} else {
97
	$spotter_array = $SpotterLive->getLiveSpotterData('','',$filter);
98
}
99
*/
100
$spotter_array = $SpotterLive->getMinLastLiveSpotterData($filter);
101
102
if (!empty($spotter_array)) {
103
	if (isset($_GET['archive'])) {
104
		$flightcnt = $SpotterArchive->getLiveSpotterCount($begindate,$enddate,$filter);
105
	} else {
106
		$flightcnt = $SpotterLive->getLiveSpotterCount($filter);
107
	}
108
	if ($flightcnt == '') $flightcnt = 0;
109
} else $flightcnt = 0;
110
111
$sqltime = round(microtime(true)-$begintime,2);
112
$minitime = time();
113
114
115
$modelsdb = array();
116
if (file_exists('models/modelsdb')) {
117
	if (($handle = fopen('models/modelsdb','r')) !== FALSE) {
118
		while (($row = fgetcsv($handle,1000)) !== FALSE) {
119
			if (isset($row[1]) ){
120
				$model = $row[0];
121
				$modelsdb[$model] = $row[1];
122
			}
123
		}
124
		fclose($handle);
125
	}
126
}
127
$j = 0;
128
$prev_flightaware_id = '';
129
130
$output = '[';
131
$output .= '{"id" : "document", "name" : "fam","version" : "1.0"';
132
//	$output .= ',"clock": {"interval" : "'.date("c",time()-$globalLiveInterval).'/'.date("c").'","currentTime" : "'.date("c",time() - $globalLiveInterval).'","multiplier" : 1,"range" : "LOOP_STOP","step": "SYSTEM_CLOCK_MULTIPLIER"}';
133
134
//	$output .= ',"clock": {"interval" : "'.date("c",time()-$globalLiveInterval).'/'.date("c").'","currentTime" : "'.date("c",time() - $globalLiveInterval).'","multiplier" : 1,"range" : "UNBOUNDED","step": "SYSTEM_CLOCK_MULTIPLIER"}';
135
//$output .= ',"clock": {"currentTime" : "'.date("c",time() - $globalLiveInterval).'","multiplier" : 1,"range" : "UNBOUNDED","step": "SYSTEM_CLOCK_MULTIPLIER"}';
136
$output .= ',"clock": {"currentTime" : "%minitime%","multiplier" : 1,"range" : "UNBOUNDED","step": "SYSTEM_CLOCK_MULTIPLIER"}';
137
138
//	$output .= ',"clock": {"interval" : "'.date("c",time()-$globalLiveInterval).'/'.date("c").'","currentTime" : "'.date("c",time() - $globalLiveInterval).'","multiplier" : 1,"step": "SYSTEM_CLOCK_MULTIPLIER"}';
139
$output .= '},';
140
if (!empty($spotter_array) && is_array($spotter_array))
141
{
142
	foreach($spotter_array as $spotter_item)
143
	{
144
		$j++;
145
		date_default_timezone_set('UTC');
146
		if (isset($spotter_item['image_thumbnail']) && $spotter_item['image_thumbnail'] != "")
147
		{
148
			$image = $spotter_item['image_thumbnail'];
149
		} else {
150
			$image = "images/placeholder_thumb.png";
151
		}
152
153
154
		if ($prev_flightaware_id != $spotter_item['flightaware_id']) {
155
			if ($prev_flightaware_id != '') {
156
				$output .= ']';
157
				$output .= '}';
158
				//$output .= ', '.$orientation.']}';
159
				$output .= '},';
160
			}
161
			$orientation = '';
162
			$prev_flightaware_id = $spotter_item['flightaware_id'];
163
			$output .= '{';
164
			$output .= '"id": "'.$spotter_item['flightaware_id'].'",';
165
			$output .= '"properties": {';
166
			// Not yet supported in CZML with Cesium
167
			$output .= '},';
168
169
			$output .= '"path" : { ';
170
			$output .= '"show" : false, ';
171
			$output .= '"material" : { ';
172
			$output .= '"polylineOutline" : { ';
173
			$output .= '"color" : { "rgba" : [238, 250, 255, 255] }, ';
174
			$output .= '"outlineColor" : { "rgba" : [200, 209, 214, 255] }, ';
175
			$output .= '"outlineWidth" : 5, ';
176
			$output .= '"polylineGlow" : { "color" : { "rgba" : [214, 208, 214, 255] }, "glowPower" : 3 } ';
177
			$output .= '}';
178
			$output .= '}, ';
179
			$output .= '"width" : 6, "leadTime" : 0, "trailTime" : 1000000, "resolution" : 10 },';
180
				
181
			//$output .= ' "billboard" : {"image" : "data:image/png;base64,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","scale" : 1.5},';
182
			$aircraft_icao = $spotter_item['aircraft_icao'];
183
			$aircraft_shadow = $spotter_item['aircraft_shadow'];
184
185
			if (isset($modelsdb[$aircraft_icao])) {
186
				$output .= '"model": {"gltf" : "'.$globalURL.'/models/'.$modelsdb[$aircraft_icao].'","scale" : 1.0,"minimumPixelSize": 20 },';
187
			} elseif (isset($modelsdb[$aircraft_shadow])) {
188
				$output .= '"model": {"gltf" : "'.$globalURL.'/models/'.$modelsdb[$aircraft_shadow].'","scale" : 1.0,"minimumPixelSize": 20 },';
189
			} elseif ($spotter_item['engine_type'] == 'Jet') {
190
				if ($spotter_item['engine_count'] == '1') {
191
				    if ($spotter_item['wake_category'] == 'M') {
192
					$model = 'J1M';
193
				    } elseif ($spotter_item['wake_category'] == 'L') {
194
					$model = '';
195
				    }
196
				} elseif ($spotter_item['engine_count'] == '2') {
197
				    if ($spotter_item['wake_category'] == 'M') {
198
					$model = 'J2M';
199
				    } elseif ($spotter_item['wake_category'] == 'H') {
200
					$model = 'J2H';
201
				    } elseif ($spotter_item['wake_category'] == 'L') {
202
					$model = 'J2L';
203
				    }
204
				} elseif ($spotter_item['engine_count'] == '3') {
205
				    if ($spotter_item['wake_category'] == 'M') {
206
					$model = 'J3M';
207
				    } elseif ($spotter_item['wake_category'] == 'H') {
208
					$model = 'J3H';
209
				    }
210
				} elseif ($spotter_item['engine_count'] == '4') {
211
				    if ($spotter_item['wake_category'] == 'M') {
212
					$model = 'J4M';
213
				    } elseif ($spotter_item['wake_category'] == 'H') {
214
					$model = 'J4H';
215
				    }
216
				}
217
				if (isset($modelsdb[$model])) {
218
				    $output .= '"model": {"gltf" : "'.$globalURL.'/models/'.$modelsdb[$model].'","scale" : 1.0,"minimumPixelSize": 20 },';
219
				} else {
220
				    $output .= '"model": {"gltf" : "'.$globalURL.'/models/Cesium_Air.glb","scale" : 1.0,"minimumPixelSize": 20 },';
221
				}
222
			} elseif ($spotter_item['engine_type'] == 'Turboprop') {
223
				if ($spotter_item['engine_count'] == '1') {
224
				    if ($spotter_item['wake_category'] == 'L') {
225
					$model = 'T1L';
226
				    }
227
				} elseif ($spotter_item['engine_count'] == '2') {
228
				    if ($spotter_item['wake_category'] == 'M') {
229
					$model = 'T2M';
230
				    } elseif ($spotter_item['wake_category'] == 'L') {
231
					$model = 'T2L';
232
				    }
233
				} elseif ($spotter_item['engine_count'] == '4') {
234
				    if ($spotter_item['wake_category'] == 'M') {
0 ignored issues
show
This if statement is empty and can be removed.

This check looks for the bodies of if statements that have no statements or where all statements have been commented out. This may be the result of changes for debugging or the code may simply be obsolete.

These if bodies can be removed. If you have an empty if but statements in the else branch, consider inverting the condition.

if (rand(1, 6) > 3) {
//print "Check failed";
} else {
    print "Check succeeded";
}

could be turned into

if (rand(1, 6) <= 3) {
    print "Check succeeded";
}

This is much more concise to read.

Loading history...
235
				    } elseif ($spotter_item['wake_category'] == 'H') {
236
					$model = 'T4H';
237
				    }
238
				}
239
				if (isset($modelsdb[$model])) {
240
				    $output .= '"model": {"gltf" : "'.$globalURL.'/models/'.$modelsdb[$model].'","scale" : 1.0,"minimumPixelSize": 20 },';
241
				} else {
242
				    $output .= '"model": {"gltf" : "'.$globalURL.'/models/Cesium_Air.glb","scale" : 1.0,"minimumPixelSize": 20 },';
243
				}
244
			} elseif ($spotter_item['engine_type'] == 'Piston') {
245
				if ($spotter_item['engine_count'] == '1') {
246
				    if ($spotter_item['wake_category'] == 'L') {
247
					$model = 'P1L';
248
				    } elseif ($spotter_item['wake_category'] == 'M') {
249
					$model = 'P1M';
250
				    }
251
				} elseif ($spotter_item['engine_count'] == '2') {
252
				    if ($spotter_item['wake_category'] == 'M') {
253
					$model = 'P2M';
254
				    } elseif ($spotter_item['wake_category'] == 'L') {
255
					$model = 'P2L';
256
				    }
257
				// ju52 = P3M
258
				}
259
				if (isset($modelsdb[$model])) {
260
				    $output .= '"model": {"gltf" : "'.$globalURL.'/models/'.$modelsdb[$model].'","scale" : 1.0,"minimumPixelSize": 20 },';
261
				} else {
262
				    $output .= '"model": {"gltf" : "'.$globalURL.'/models/Cesium_Air.glb","scale" : 1.0,"minimumPixelSize": 20 },';
263
				}
264
			} else {
265
				$output .= '"model": {"gltf" : "'.$globalURL.'/models/Cesium_Air.glb","scale" : 1.0,"minimumPixelSize": 20 },';
266
				if ($spotter_item['aircraft_shadow'] != '') $output .= '"aircraft_shadow": "'.$spotter_item['aircraft_shadow'].'",';
267
				if ($spotter_item['aircraft_icao'] != '') $output .= '"aircraft_icao": "'.$spotter_item['aircraft_icao'].'",';
268
			}
269
	//		$output .= '"heightReference": "CLAMP_TO_GROUND",';
270
			$output .= '"heightReference": "RELATIVE_TO_GROUND",';
271
	//		$output .= '"heightReference": "NONE",';
272
			$output .= '"position": {';
273
			$output .= '"type": "Point",';
274
	//		$output .= '"interpolationAlgorithm" : "LAGRANGE",';
275
	//		$output .= '"interpolationDegree" : 5,';
276
	//		$output .= '"epoch" : "'.date("c",strtotime($spotter_item['date'])).'", ';
277
			$output .= '"cartographicDegrees": [';
278
			if ($minitime > strtotime($spotter_item['date'])) $minitime = strtotime($spotter_item['date']);
279
			$output .= '"'.date("c",strtotime($spotter_item['date'])).'", ';
280
			$output .= $spotter_item['longitude'].', ';
281
			$output .= $spotter_item['latitude'].', ';
282
			$prevlong = $spotter_item['longitude'];
283
			$prevlat = $spotter_item['latitude'];
284
			$output .= round($spotter_item['altitude']*30.48);
285
			$prevalt = round($spotter_item['altitude']*30.48);
286
			//$orientation = '"orientation" : { ';
287
			//$orientation .= '"unitQuaternion": [';
288
			//$quat = quaternionrotate(deg2rad($spotter_item['heading']),deg2rad(0),deg2rad(0));
289
			//$orientation .= '"'.date("c",strtotime($spotter_item['date'])).'",'.$quat['x'].','.$quat['y'].','.$quat['z'].','.$quat['w'];
290
		} else {
291
			$output .= ',"'.date("c",strtotime($spotter_item['date'])).'", ';
292
			if ($spotter_item['ground_speed'] == 0) {
293
				$output .= $prevlong.', ';
294
				$output .= $prevlat.', ';
295
				$output .= $prevalt;
296
			} else {
297
				$output .= $spotter_item['longitude'].', ';
298
				$output .= $spotter_item['latitude'].', ';
299
				if ($spotter_item['altitude'] == '') {
300
					if ($prevalt != '') {
301
						$output .= $prevalt;
302
					} else {
303
						$output .= 0;
304
					}
305
				} else {
306
					$output .= round($spotter_item['altitude']*30.48);
307
				}
308
			}
309
			//$quat = quaternionrotate(deg2rad($spotter_item['heading']),deg2rad(0),deg2rad(0));
310
			//$orientation .= ',"'.date("c",strtotime($spotter_item['date'])).'",'.$quat['x'].','.$quat['y'].','.$quat['z'].','.$quat['w'];
311
		}
312
	}
313
	$output  = substr($output, 0, -1);
314
	$output .= ']}}';
315
} else {
316
	$output  = substr($output, 0, -1);
317
}
318
$output .= ']';
319
$output = str_replace('%minitime%',date("c",$minitime),$output);
320
print $output;
321
?>
322