Completed
Push — master ( 73f088...7f17b6 )
by Yannick
07:13
created
country-statistics-time.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@  discard block
 block discarded – undo
3 3
 require_once('require/class.Spotter.php');
4 4
 require_once('require/class.Language.php');
5 5
 if (!isset($_GET['country'])) {
6
-        header('Location: '.$globalURL.'/country');
7
-        die();
6
+		header('Location: '.$globalURL.'/country');
7
+		die();
8 8
 }
9 9
 $Spotter = new Spotter();
10 10
 $country = ucwords(str_replace("-", " ", filter_input(INPUT_GET,'country',FILTER_SANITIZE_STRING)));
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
           function drawChart() {
62 62
             var data = google.visualization.arrayToDataTable([
63 63
             	["'._("Hour").'", "'._("# of Flights").'"], ';
64
-            	$hour_data = '';
64
+				$hour_data = '';
65 65
 	foreach($hour_array as $hour_item)
66 66
 	{
67 67
 		$hour_data .= '[ "'.date("ga", strtotime($hour_item['hour_name'].":00")).'",'.$hour_item['hour_count'].'],';
Please login to merge, or discard this patch.
live-geojson.php 2 patches
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@  discard block
 block discarded – undo
11 11
 $Common = new Common();
12 12
 
13 13
 if (isset($_GET['download'])) {
14
-    if ($_GET['download'] == "true")
15
-    {
14
+	if ($_GET['download'] == "true")
15
+	{
16 16
 	header('Content-disposition: attachment; filename="flightairmap.json"');
17
-    }
17
+	}
18 18
 }
19 19
 header('Content-Type: text/javascript');
20 20
 
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 				}
114 114
 
115 115
 				//waypoint plotting
116
-                /*
116
+				/*
117 117
 				$output .= '{';
118 118
 					$output .= '"type": "Feature",';
119 119
 						$output .= '"properties": {';
@@ -343,29 +343,29 @@  discard block
 block discarded – undo
343 343
 				if ((isset($_COOKIE['flightpath']) && $_COOKIE['flightpath'] == 'true') || (!isset($_COOKIE['flightpath']) && (!isset($globalMapHistory) || $globalMapHistory || $allhistory) 
344 344
 				|| (isset($history) && $history != '' && $history != 'NA' && ($history == $spotter_item['ident'] || $history == $spotter_item['flightaware_id']))) 
345 345
 				|| (isset($history) && $history == '' && isset($_GET['flightaware_id']) && $_GET['flightaware_id'] == $spotter_item['flightaware_id'])) {
346
-                                    if ($from_archive) {
347
-					    $spotter_history_array = $SpotterArchive->getAllArchiveSpotterDataById($spotter_item['flightaware_id']);
348
-                                    } else {
349
-					    $spotter_history_array = $SpotterLive->getAllLiveSpotterDataById($spotter_item['flightaware_id']);
350
-                                    }
351
-                            	$d = false;
346
+									if ($from_archive) {
347
+						$spotter_history_array = $SpotterArchive->getAllArchiveSpotterDataById($spotter_item['flightaware_id']);
348
+									} else {
349
+						$spotter_history_array = $SpotterLive->getAllLiveSpotterDataById($spotter_item['flightaware_id']);
350
+									}
351
+								$d = false;
352 352
 				foreach ($spotter_history_array as $key => $spotter_history)
353 353
 				{
354
-				    /*
354
+					/*
355 355
 				    if (abs($spotter_history['longitude']-$spotter_item['longitude']) > 200 || $d==true) {
356 356
 					if ($d == false) $d = true;
357 357
 				    } else {
358 358
 				    */
359 359
 					$alt = round($spotter_history['altitude']/10)*10;
360 360
 					if (!isset($prev_alt) || $prev_alt != $alt) {
361
-					    if (isset($prev_alt)) {
361
+						if (isset($prev_alt)) {
362 362
 						//$output_history .= '['.$spotter_history['longitude'].', '.$spotter_history['latitude'].','.$spotter_history['altitude'].']';
363 363
 						$output_history .= '['.$spotter_history['longitude'].', '.$spotter_history['latitude'].']';
364 364
 						$output_history .= ']}},';
365 365
 						$output .= $output_history;
366
-					    }
367
-					    if ($compress) $output_history = '{"type": "Feature","properties": {"c": "'.$spotter_item['ident'].'","t": "history","a": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
368
-					    else $output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history","altitude": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
366
+						}
367
+						if ($compress) $output_history = '{"type": "Feature","properties": {"c": "'.$spotter_item['ident'].'","t": "history","a": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
368
+						else $output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history","altitude": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
369 369
 					}
370 370
 					$output_history .= '[';
371 371
 					$output_history .=  $spotter_history['longitude'].', ';
@@ -373,41 +373,41 @@  discard block
 block discarded – undo
373 373
 					//$output_history .=  $spotter_history['altitude'];
374 374
 					$output_history .= '],';
375 375
 					$prev_alt = $alt;
376
-				    //}
376
+					//}
377 377
 				}
378 378
 				if (isset($output_history)) {
379
-				    $output_history  = substr($output_history, 0, -1);
380
-				    $output_history .= ']}},';
381
-				    $output .= $output_history;
382
-				    unset($prev_alt);
383
-				    unset($output_history);
379
+					$output_history  = substr($output_history, 0, -1);
380
+					$output_history .= ']}},';
381
+					$output .= $output_history;
382
+					unset($prev_alt);
383
+					unset($output_history);
384 384
 				}
385 385
 				}
386 386
 				
387 387
 				if (isset($history) && $history == $spotter_item['ident'] && isset($spotter_item['departure_airport']) && $spotter_item['departure_airport'] != 'NA' && isset($spotter_item['arrival_airport']) && $spotter_item['arrival_airport'] != 'NA' && ((isset($_COOKIE['MapRoute']) && $_COOKIE['MapRoute'] == "true") || (!isset($_COOKIE['MapRoute']) && (!isset($globalMapRoute) || (isset($globalMapRoute) && $globalMapRoute))))) {
388
-				    $output_air = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "route"},"geometry": {"type": "LineString","coordinates": [';
389
-				    if (isset($spotter_item['departure_airport_latitude'])) {
388
+					$output_air = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "route"},"geometry": {"type": "LineString","coordinates": [';
389
+					if (isset($spotter_item['departure_airport_latitude'])) {
390 390
 					$output_air .= '['.$spotter_item['departure_airport_longitude'].','.$spotter_item['departure_airport_latitude'].'],';
391
-				    } elseif (isset($spotter_item['departure_airport']) && $spotter_item['departure_airport'] != 'NA') {
391
+					} elseif (isset($spotter_item['departure_airport']) && $spotter_item['departure_airport'] != 'NA') {
392 392
 					$dairport = $Spotter->getAllAirportInfo($spotter_item['departure_airport']);
393 393
 					//print_r($dairport);
394 394
 					//echo $spotter_item['departure_airport'];
395 395
 					if (isset($dairport[0]['latitude'])) {
396
-					    $output_air .= '['.$dairport[0]['longitude'].','.$dairport[0]['latitude'].'],';
396
+						$output_air .= '['.$dairport[0]['longitude'].','.$dairport[0]['latitude'].'],';
397 397
 					}
398
-				    }
399
-				    if (isset($spotter_item['arrival_airport_latitude'])) {
398
+					}
399
+					if (isset($spotter_item['arrival_airport_latitude'])) {
400 400
 					$output_air .= '['.$spotter_item['arrival_airport_longitude'].','.$spotter_item['arrival_airport_latitude'].']';
401
-				    } elseif (isset($spotter_item['arrival_airport']) && $spotter_item['arrival_airport'] != 'NA') {
401
+					} elseif (isset($spotter_item['arrival_airport']) && $spotter_item['arrival_airport'] != 'NA') {
402 402
 					//print_r($aairport);
403 403
 					$aairport = $Spotter->getAllAirportInfo($spotter_item['arrival_airport']);
404 404
 					if (isset($aairport[0]['latitude'])) {
405
-					    $output_air .= '['.$aairport[0]['longitude'].','.$aairport[0]['latitude'].']';
405
+						$output_air .= '['.$aairport[0]['longitude'].','.$aairport[0]['latitude'].']';
406
+					}
406 407
 					}
407
-				    }
408
-				    $output_air .= ']}},';
409
-				    $output .= $output_air;
410
-				    unset($output_air);
408
+					$output_air .= ']}},';
409
+					$output .= $output_air;
410
+					unset($output_air);
411 411
 				}
412 412
 			}
413 413
 			$output  = substr($output, 0, -1);
Please login to merge, or discard this patch.
Braces   +128 added lines, -49 removed lines patch added patch discarded remove patch
@@ -18,21 +18,40 @@  discard block
 block discarded – undo
18 18
 }
19 19
 header('Content-Type: text/javascript');
20 20
 
21
-if (!isset($globalJsonCompress)) $compress = true;
22
-else $compress = $globalJsonCompress;
21
+if (!isset($globalJsonCompress)) {
22
+	$compress = true;
23
+} else {
24
+	$compress = $globalJsonCompress;
25
+}
23 26
 
24 27
 $from_archive = false;
25 28
 $min = false;
26 29
 $allhistory = false;
27 30
 $filter['source'] = array();
28
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalVATSIM) && $globalVATSIM && isset($_COOKIE['ShowVATSIM']) && $_COOKIE['ShowVATSIM'] == 'true') $filter['source'] = array_merge($filter['source'],array('vatsimtxt'));
29
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalIVAO) && $globalIVAO && isset($_COOKIE['ShowIVAO']) && $_COOKIE['ShowIVAO'] == 'true') $filter['source'] = array_merge($filter['source'],array('whazzup'));
30
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalphpVMS) && $globalphpVMS && isset($_COOKIE['ShowVMS']) && $_COOKIE['ShowVMS'] == 'true') $filter['source'] = array_merge($filter['source'],array('phpvmacars'));
31
-if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalSBS1) && $globalSBS1 && isset($_COOKIE['ShowSBS1']) && $_COOKIE['ShowSBS1'] == 'true') $filter['source'] = array_merge($filter['source'],array('sbs'));
32
-if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalAPRS) && $globalAPRS && isset($_COOKIE['ShowAPRS']) && $_COOKIE['ShowAPRS'] == 'true') $filter['source'] = array_merge($filter['source'],array('aprs'));
33
-if (isset($_COOKIE['Airlines']) && $_COOKIE['Airlines'] != '') $filter['airlines'] = explode(',',$_COOKIE['Airlines']);
34
-if (isset($_COOKIE['Sources']) && $_COOKIE['Sources'] != '') $filter['source_aprs'] = explode(',',$_COOKIE['Sources']);
35
-if (isset($_COOKIE['airlinestype']) && $_COOKIE['airlinestype'] != 'all') $filter['airlinestype'] = $_COOKIE['airlinestype'];
31
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalVATSIM) && $globalVATSIM && isset($_COOKIE['ShowVATSIM']) && $_COOKIE['ShowVATSIM'] == 'true') {
32
+	$filter['source'] = array_merge($filter['source'],array('vatsimtxt'));
33
+}
34
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalIVAO) && $globalIVAO && isset($_COOKIE['ShowIVAO']) && $_COOKIE['ShowIVAO'] == 'true') {
35
+	$filter['source'] = array_merge($filter['source'],array('whazzup'));
36
+}
37
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalphpVMS) && $globalphpVMS && isset($_COOKIE['ShowVMS']) && $_COOKIE['ShowVMS'] == 'true') {
38
+	$filter['source'] = array_merge($filter['source'],array('phpvmacars'));
39
+}
40
+if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalSBS1) && $globalSBS1 && isset($_COOKIE['ShowSBS1']) && $_COOKIE['ShowSBS1'] == 'true') {
41
+	$filter['source'] = array_merge($filter['source'],array('sbs'));
42
+}
43
+if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalAPRS) && $globalAPRS && isset($_COOKIE['ShowAPRS']) && $_COOKIE['ShowAPRS'] == 'true') {
44
+	$filter['source'] = array_merge($filter['source'],array('aprs'));
45
+}
46
+if (isset($_COOKIE['Airlines']) && $_COOKIE['Airlines'] != '') {
47
+	$filter['airlines'] = explode(',',$_COOKIE['Airlines']);
48
+}
49
+if (isset($_COOKIE['Sources']) && $_COOKIE['Sources'] != '') {
50
+	$filter['source_aprs'] = explode(',',$_COOKIE['Sources']);
51
+}
52
+if (isset($_COOKIE['airlinestype']) && $_COOKIE['airlinestype'] != 'all') {
53
+	$filter['airlinestype'] = $_COOKIE['airlinestype'];
54
+}
36 55
 
37 56
 if (isset($globalMapPopup) && !$globalMapPopup && !(isset($_COOKIE['flightpopup']) && $_COOKIE['flightpopup'] == 'true')) {
38 57
 	$min = true;
@@ -83,8 +102,12 @@  discard block
 block discarded – undo
83 102
 	} else {
84 103
 		$flightcnt = $SpotterLive->getLiveSpotterCount($filter);
85 104
 	}
86
-	if ($flightcnt == '') $flightcnt = 0;
87
-} else $flightcnt = 0;
105
+	if ($flightcnt == '') {
106
+		$flightcnt = 0;
107
+	}
108
+	} else {
109
+	$flightcnt = 0;
110
+}
88 111
 
89 112
 $sqltime = round(microtime(true)-$begintime,2);
90 113
 
@@ -92,8 +115,11 @@  discard block
 block discarded – undo
92 115
 
93 116
 $output = '{';
94 117
 	$output .= '"type": "FeatureCollection",';
95
-		if ($min) $output .= '"minimal": "true",';
96
-		else $output .= '"minimal": "false",';
118
+		if ($min) {
119
+			$output .= '"minimal": "true",';
120
+		} else {
121
+			$output .= '"minimal": "false",';
122
+		}
97 123
 		$output .= '"fc": "'.$flightcnt.'",';
98 124
 		$output .= '"sqt": "'.$sqltime.'",';
99 125
 
@@ -162,11 +188,16 @@  discard block
 block discarded – undo
162 188
 						//$output .= '"fc": "'.$flightcnt.'",';
163 189
 						//$output .= '"sqt": "'.$sqltime.'",';
164 190
 						$output .= '"properties": {';
165
-							if ($compress) $output .= '"fi": "'.$spotter_item['flightaware_id'].'",';
166
-							else $output .= '"flightaware_id": "'.$spotter_item['flightaware_id'].'",';
191
+							if ($compress) {
192
+								$output .= '"fi": "'.$spotter_item['flightaware_id'].'",';
193
+							} else {
194
+								$output .= '"flightaware_id": "'.$spotter_item['flightaware_id'].'",';
195
+							}
167 196
 							$output .= '"fc": "'.$flightcnt.'",';
168 197
 							$output .= '"sqt": "'.$sqltime.'",';
169
-							if (isset($begindate)) $output .= '"archive_date": "'.$begindate.'",';
198
+							if (isset($begindate)) {
199
+								$output .= '"archive_date": "'.$begindate.'",';
200
+							}
170 201
 
171 202
 /*
172 203
 							if ($min) $output .= '"minimal": "true",';
@@ -174,13 +205,21 @@  discard block
 block discarded – undo
174 205
 */
175 206
 							//$output .= '"fc": "'.$spotter_item['nb'].'",';
176 207
 						if (isset($spotter_item['ident']) && $spotter_item['ident'] != '') {
177
-							if ($compress) $output .= '"c": "'.$spotter_item['ident'].'",';
178
-							else $output .= '"callsign": "'.$spotter_item['ident'].'",';
208
+							if ($compress) {
209
+								$output .= '"c": "'.$spotter_item['ident'].'",';
210
+							} else {
211
+								$output .= '"callsign": "'.$spotter_item['ident'].'",';
212
+							}
179 213
 						} else {
180
-							if ($compress) $output .= '"c": "NA",';
181
-							else $output .= '"callsign": "NA",';
214
+							if ($compress) {
215
+								$output .= '"c": "NA",';
216
+							} else {
217
+								$output .= '"callsign": "NA",';
218
+							}
219
+						}
220
+						if (isset($spotter_item['registration'])) {
221
+							$output .= '"registration": "'.$spotter_item['registration'].'",';
182 222
 						}
183
-						if (isset($spotter_item['registration'])) $output .= '"registration": "'.$spotter_item['registration'].'",';
184 223
 						if (isset($spotter_item['aircraft_name']) && isset($spotter_item['aircraft_type'])) {
185 224
 							$output .= '"aircraft_name": "'.$spotter_item['aircraft_name'].' ('.$spotter_item['aircraft_type'].')",';
186 225
 							$output .= '"aircraft_wiki": "http://'.strtolower($globalLanguage).'.wikipedia.org/wiki/'.urlencode(str_replace(' ','_',$spotter_item['aircraft_name'])).'",';
@@ -193,19 +232,29 @@  discard block
 block discarded – undo
193 232
 							$output .= '"aircraft_icao": "'.$spotter_item['aircraft_icao'].'",';
194 233
 						}
195 234
 						if (!isset($spotter_item['aircraft_shadow'])) {
196
-							if (!isset($spotter_item['aircraft_icao']) || $spotter_item['aircraft_icao'] == '') $spotter_item['aircraft_shadow'] = '';
197
-							else {
235
+							if (!isset($spotter_item['aircraft_icao']) || $spotter_item['aircraft_icao'] == '') {
236
+								$spotter_item['aircraft_shadow'] = '';
237
+							} else {
198 238
 								$aircraft_info = $Spotter->getAllAircraftInfo($spotter_item['aircraft_icao']);
199
-								if (count($aircraft_info) > 0) $spotter_item['aircraft_shadow'] = $aircraft_info[0]['aircraft_shadow'];
200
-								else $spotter_item['aircraft_shadow'] = '';
239
+								if (count($aircraft_info) > 0) {
240
+									$spotter_item['aircraft_shadow'] = $aircraft_info[0]['aircraft_shadow'];
241
+								} else {
242
+									$spotter_item['aircraft_shadow'] = '';
243
+								}
201 244
 							}
202 245
 						}
203 246
 						if ($spotter_item['aircraft_shadow'] == '') {
204
-							if ($compress) $output .= '"as": "default.png",';
205
-							else $output .= '"aircraft_shadow": "default.png",';
247
+							if ($compress) {
248
+								$output .= '"as": "default.png",';
249
+							} else {
250
+								$output .= '"aircraft_shadow": "default.png",';
251
+							}
206 252
 						} else {
207
-							if ($compress) $output .= '"as": "'.$spotter_item['aircraft_shadow'].'",';
208
-							else $output .= '"aircraft_shadow": "'.$spotter_item['aircraft_shadow'].'",';
253
+							if ($compress) {
254
+								$output .= '"as": "'.$spotter_item['aircraft_shadow'].'",';
255
+							} else {
256
+								$output .= '"aircraft_shadow": "'.$spotter_item['aircraft_shadow'].'",';
257
+							}
209 258
 						}
210 259
 						if (isset($spotter_item['airline_name'])) {
211 260
 							$output .= '"airline_name": "'.$spotter_item['airline_name'].'",';
@@ -213,8 +262,11 @@  discard block
 block discarded – undo
213 262
 							$output .= '"airline_name": "NA",';
214 263
 						}
215 264
 						if (isset($spotter_item['departure_airport'])) {
216
-							if ($compress) $output .= '"dac": "'.$spotter_item['departure_airport'].'",';
217
-							else $output .= '"departure_airport_code": "'.$spotter_item['departure_airport'].'",';
265
+							if ($compress) {
266
+								$output .= '"dac": "'.$spotter_item['departure_airport'].'",';
267
+							} else {
268
+								$output .= '"departure_airport_code": "'.$spotter_item['departure_airport'].'",';
269
+							}
218 270
 						}
219 271
 						if (isset($spotter_item['departure_airport_city'])) {
220 272
 							$output .= '"departure_airport": "'.$spotter_item['departure_airport_city'].', '.$spotter_item['departure_airport_country'].'",';
@@ -226,8 +278,11 @@  discard block
 block discarded – undo
226 278
 							$output .= '"arrival_airport_time": "'.$spotter_item['arrival_airport_time'].'",';
227 279
 						}
228 280
 						if (isset($spotter_item['arrival_airport'])) {
229
-							if ($compress) $output .= '"aac": "'.$spotter_item['arrival_airport'].'",';
230
-							else $output .= '"arrival_airport_code": "'.$spotter_item['arrival_airport'].'",';
281
+							if ($compress) {
282
+								$output .= '"aac": "'.$spotter_item['arrival_airport'].'",';
283
+							} else {
284
+								$output .= '"arrival_airport_code": "'.$spotter_item['arrival_airport'].'",';
285
+							}
231 286
 						}
232 287
 						if (isset($spotter_item['arrival_airport_city'])) {
233 288
 							$output .= '"arrival_airport": "'.$spotter_item['arrival_airport_city'].', '.$spotter_item['arrival_airport_country'].'",';
@@ -245,18 +300,29 @@  discard block
 block discarded – undo
245 300
 							$output .= '"ground_speed": "'.$spotter_item['ground_speed'].'",';
246 301
 						}
247 302
 						
248
-						if ($compress) $output .= '"a": "'.$spotter_item['altitude'].'",';
249
-						else $output .= '"altitude": "'.$spotter_item['altitude'].'",';
250
-						if ($compress)$output .= '"h": "'.$spotter_item['heading'].'",';
251
-						else $output .= '"heading": "'.$spotter_item['heading'].'",';
303
+						if ($compress) {
304
+							$output .= '"a": "'.$spotter_item['altitude'].'",';
305
+						} else {
306
+							$output .= '"altitude": "'.$spotter_item['altitude'].'",';
307
+						}
308
+						if ($compress) {
309
+							$output .= '"h": "'.$spotter_item['heading'].'",';
310
+						} else {
311
+							$output .= '"heading": "'.$spotter_item['heading'].'",';
312
+						}
252 313
 						
253
-						if (isset($archivespeed)) $nextcoord = $Common->nextcoord($spotter_item['latitude'],$spotter_item['longitude'],$spotter_item['ground_speed'],$spotter_item['heading'],$archivespeed);
254
-						else $nextcoord = $Common->nextcoord($spotter_item['latitude'],$spotter_item['longitude'],$spotter_item['ground_speed'],$spotter_item['heading']);
314
+						if (isset($archivespeed)) {
315
+							$nextcoord = $Common->nextcoord($spotter_item['latitude'],$spotter_item['longitude'],$spotter_item['ground_speed'],$spotter_item['heading'],$archivespeed);
316
+						} else {
317
+							$nextcoord = $Common->nextcoord($spotter_item['latitude'],$spotter_item['longitude'],$spotter_item['ground_speed'],$spotter_item['heading']);
318
+						}
255 319
 						//$output .= '"nextlatitude": "'.$nextcoord['latitude'].'",';
256 320
 						//$output .= '"nextlongitude": "'.$nextcoord['longitude'].'",';
257 321
 						$output .= '"nextlatlon": ['.$nextcoord['latitude'].','.$nextcoord['longitude'].'],';
258 322
 
259
-						if (!$min) $output .= '"image": "'.$image.'",';
323
+						if (!$min) {
324
+							$output .= '"image": "'.$image.'",';
325
+						}
260 326
 						if (isset($spotter_item['image_copyright']) && $spotter_item['image_copyright'] != '') {
261 327
 							$output .= '"image_copyright": "'.str_replace('"',"'",trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'',$spotter_item['image_copyright']))).'",';
262 328
 						}
@@ -264,8 +330,11 @@  discard block
 block discarded – undo
264 330
 							$output .= '"image_source_website": "'.urlencode($spotter_item['image_source_website']).'",';
265 331
 						}
266 332
 						if (isset($spotter_item['squawk'])) {
267
-							if ($compress) $output .= '"sq": "'.$spotter_item['squawk'].'",';
268
-							else $output .= '"squawk": "'.$spotter_item['squawk'].'",';
333
+							if ($compress) {
334
+								$output .= '"sq": "'.$spotter_item['squawk'].'",';
335
+							} else {
336
+								$output .= '"squawk": "'.$spotter_item['squawk'].'",';
337
+							}
269 338
 						}
270 339
 						if (isset($spotter_item['squawk_usage'])) {
271 340
 							$output .= '"squawk_usage": "'.$spotter_item['squawk_usage'].'",';
@@ -283,8 +352,11 @@  discard block
 block discarded – undo
283 352
 							$output .= '"acars": "'.trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"), '<br />',$spotter_item['acars']['message'])).'",';
284 353
 						}
285 354
 							// FIXME : type when not aircraft ?
286
-						if ($compress) $output .= '"t": "aircraft"';
287
-						else $output .= '"type": "aircraft"';
355
+						if ($compress) {
356
+							$output .= '"t": "aircraft"';
357
+						} else {
358
+							$output .= '"type": "aircraft"';
359
+						}
288 360
 						$output .= '},';
289 361
 						$output .= '"geometry": {';
290 362
 							$output .= '"type": "Point",';
@@ -339,7 +411,9 @@  discard block
 block discarded – undo
339 411
 				//if ((isset($_COOKIE['flightpath']) && $_COOKIE['flightpath'] == 'true') || (!isset($_COOKIE['flightpath']) && (!isset($globalMapHistory) || $globalMapHistory || $allhistory) || (isset($_GET['history']) && $_GET['history'] != '' && $_GET['history'] != 'NA' && ($_GET['history'] == $spotter_item['ident'] || $_GET['history'] == $spotter_item['flightaware_id'])))) {
340 412
 				//if ((isset($_COOKIE['flightpath']) && $_COOKIE['flightpath'] == 'true') || (!isset($_COOKIE['flightpath']) && (!isset($globalMapHistory) || $globalMapHistory || $allhistory) || (isset($_GET['history']) && $_GET['history'] != '' && $_GET['history'] != 'NA' && ($_GET['history'] == $spotter_item['ident'] || $_GET['history'] == $spotter_item['flightaware_id']))) || (isset($_GET['history']) && $_GET['history'] == '' && isset($_GET['flightaware_id']) && $_GET['flightaware_id'] == $spotter_item['flightaware_id'])) {
341 413
 				$history = filter_input(INPUT_GET,'history',FILTER_SANITIZE_STRING);
342
-				if ($history == '' && isset($_COOKIE['history'])) $history = $_COOKIE['history'];
414
+				if ($history == '' && isset($_COOKIE['history'])) {
415
+					$history = $_COOKIE['history'];
416
+				}
343 417
 				if ((isset($_COOKIE['flightpath']) && $_COOKIE['flightpath'] == 'true') || (!isset($_COOKIE['flightpath']) && (!isset($globalMapHistory) || $globalMapHistory || $allhistory) 
344 418
 				|| (isset($history) && $history != '' && $history != 'NA' && ($history == $spotter_item['ident'] || $history == $spotter_item['flightaware_id']))) 
345 419
 				|| (isset($history) && $history == '' && isset($_GET['flightaware_id']) && $_GET['flightaware_id'] == $spotter_item['flightaware_id'])) {
@@ -364,8 +438,11 @@  discard block
 block discarded – undo
364 438
 						$output_history .= ']}},';
365 439
 						$output .= $output_history;
366 440
 					    }
367
-					    if ($compress) $output_history = '{"type": "Feature","properties": {"c": "'.$spotter_item['ident'].'","t": "history","a": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
368
-					    else $output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history","altitude": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
441
+					    if ($compress) {
442
+					    	$output_history = '{"type": "Feature","properties": {"c": "'.$spotter_item['ident'].'","t": "history","a": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
443
+					    } else {
444
+					    	$output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history","altitude": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
445
+					    }
369 446
 					}
370 447
 					$output_history .= '[';
371 448
 					$output_history .=  $spotter_history['longitude'].', ';
@@ -414,7 +491,9 @@  discard block
 block discarded – undo
414 491
 			$output .= ']';
415 492
 			$output .= ',"initial_sqltime": "'.$sqltime.'",';
416 493
 			$output .= '"totaltime": "'.round(microtime(true)-$begintime,2).'",';
417
-			if (isset($begindate)) $output .= '"archive_date": "'.$begindate.'",';
494
+			if (isset($begindate)) {
495
+				$output .= '"archive_date": "'.$begindate.'",';
496
+			}
418 497
 			$output .= '"fc": "'.$j.'"';
419 498
 		} else {
420 499
 			$output .= '"features": ';
Please login to merge, or discard this patch.
tv.php 1 patch
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -41,7 +41,9 @@  discard block
 block discarded – undo
41 41
 {
42 42
 	if (isset($globalTimezone)) {
43 43
 		date_default_timezone_set($globalTimezone);
44
-	} else date_default_timezone_set('UTC');
44
+	} else {
45
+		date_default_timezone_set('UTC');
46
+	}
45 47
 	print '<tr>';
46 48
 	if (isset($_GET['image']) && $_GET['image'] == "true")
47 49
 	{
@@ -98,10 +100,14 @@  discard block
 block discarded – undo
98 100
 	print '</div>';
99 101
 	print '<div class="other2">';
100 102
 	print '<span><i class="fa fa-arrow-up"></i> '.$spotter_item['departure_airport_city'].', '.$spotter_item['departure_airport_name'].', '.$spotter_item['departure_airport_country'];
101
-	if (isset($spotter_item['departure_airport_time']) && $spotter_item['departure_airport_time'] != '') print ' ('.$spotter_item['departure_airport_time'].')';
103
+	if (isset($spotter_item['departure_airport_time']) && $spotter_item['departure_airport_time'] != '') {
104
+		print ' ('.$spotter_item['departure_airport_time'].')';
105
+	}
102 106
 	print '</span>';
103 107
 	print '<span><i class="fa fa-arrow-down"></i> '.$spotter_item['arrival_airport_city'].', '.$spotter_item['arrival_airport_name'].', '.$spotter_item['arrival_airport_country'];
104
-	if (isset($spotter_item['arrival_airport_time']) && $spotter_item['arrival_airport_time'] != '') print ' ('.$spotter_item['arrival_airport_time'].')';
108
+	if (isset($spotter_item['arrival_airport_time']) && $spotter_item['arrival_airport_time'] != '') {
109
+		print ' ('.$spotter_item['arrival_airport_time'].')';
110
+	}
105 111
 	print '</span>';
106 112
 	print '</div>';
107 113
 	print '<div class="other3">';
Please login to merge, or discard this patch.
flightid-overview.php 2 patches
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -51,7 +51,9 @@  discard block
 block discarded – undo
51 51
 		
52 52
 		if (isset($globalTimezone)) {
53 53
 			date_default_timezone_set($globalTimezone);
54
-		} else date_default_timezone_set('UTC');
54
+		} else {
55
+			date_default_timezone_set('UTC');
56
+		}
55 57
 		
56 58
 		//date_default_timezone_set('UTC');
57 59
 		if (is_array($all_data) && count($all_data) > 0) {
@@ -300,9 +302,13 @@  discard block
 block discarded – undo
300 302
 			print '<div>';
301 303
 			if (isset($spotter_item['pilot_id']) && $spotter_item['pilot_id'] != "")
302 304
 			{
303
-				if ($spotter_item['format_source'] == 'whazzup') print '<a href="https://www.ivao.aero/Member.aspx?ID='.$spotter_item['pilot_id'].'">'.$spotter_item['pilot_name'].' ('.$spotter_item['pilot_id'].')</a>';
304
-				elseif ($spotter_item['format_source'] == 'vatsimtxt') print '<a href="http://www.vataware.com/pilot/'.$spotter_item['pilot_id'].'">'.$spotter_item['pilot_name'].' ('.$spotter_item['pilot_id'].')</a>';
305
-				else print $spotter_item['pilot_name'].' ('.$spotter_item['pilot_id'].')';
305
+				if ($spotter_item['format_source'] == 'whazzup') {
306
+					print '<a href="https://www.ivao.aero/Member.aspx?ID='.$spotter_item['pilot_id'].'">'.$spotter_item['pilot_name'].' ('.$spotter_item['pilot_id'].')</a>';
307
+				} elseif ($spotter_item['format_source'] == 'vatsimtxt') {
308
+					print '<a href="http://www.vataware.com/pilot/'.$spotter_item['pilot_id'].'">'.$spotter_item['pilot_name'].' ('.$spotter_item['pilot_id'].')</a>';
309
+				} else {
310
+					print $spotter_item['pilot_name'].' ('.$spotter_item['pilot_id'].')';
311
+				}
306 312
 			} else {
307 313
 				if (isset($spotter_item['pilot_name']) && $spotter_item['pilot_name'] != "")
308 314
 				{
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
                       function drawChart6() {
90 90
                         var data = google.visualization.arrayToDataTable([
91 91
                             ["Hour","'._("Altitude").'","'._("Speed").'"], ';
92
-                            $altitude_data = '';
92
+							$altitude_data = '';
93 93
 				foreach($all_data as $data)
94 94
 				{
95 95
 					$altitude_data .= '[ "'.date("G:i",strtotime($data['date']." UTC")).'",'.$data['altitude'].','.$data['ground_speed'].'],';
Please login to merge, or discard this patch.
airport-statistics-time.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@  discard block
 block discarded – undo
3 3
 require_once('require/class.Spotter.php');
4 4
 require_once('require/class.Language.php');
5 5
 if (!isset($_GET['airport'])) {
6
-        header('Location: '.$globalURL.'/airport');
7
-        die();
6
+		header('Location: '.$globalURL.'/airport');
7
+		die();
8 8
 }
9 9
 $airport = filter_input(INPUT_GET,'airport',FILTER_SANITIZE_STRING);
10 10
 $Spotter = new Spotter();
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
           function drawChart() {
67 67
             var data = google.visualization.arrayToDataTable([
68 68
             	["'._("Hour").'", "'._("# of Flights").'"], ';
69
-            $hour_data = '';
69
+			$hour_data = '';
70 70
 	foreach($hour_array as $hour_item)
71 71
 	{
72 72
 		$hour_data .= '[ "'.date("ga", strtotime($hour_item['hour_name'].":00")).'",'.$hour_item['hour_count'].'],';
Please login to merge, or discard this patch.
aircraft-statistics-arrival-airport-country.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@  discard block
 block discarded – undo
3 3
 require_once('require/class.Spotter.php');
4 4
 require_once('require/class.Language.php');
5 5
 if (!isset($_GET['aircraft_type'])) {
6
-        header('Location: '.$globalURL.'/aircraft');
7
-        die();
6
+		header('Location: '.$globalURL.'/aircraft');
7
+		die();
8 8
 }
9 9
 
10 10
 $aircraft_type = filter_input(FILTER_INPUT,'aircraft_type',FILTER_SANITIZE_STRING);
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
           function drawChart() {
61 61
             var data = google.visualization.arrayToDataTable([
62 62
             	["'._("Country").'", "'._("# of times").'"], ';
63
-        $country_data = '';
63
+		$country_data = '';
64 64
 	foreach($airport_country_array as $airport_item)
65 65
 	{
66 66
 		$country_data .= '[ "'.$airport_item['arrival_airport_country'].'",'.$airport_item['airport_arrival_country_count'].'],';
Please login to merge, or discard this patch.
ident-detailed.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
                       function drawChart6() {
90 90
                         var data = google.visualization.arrayToDataTable([
91 91
                             ["Hour","'._("Altitude").'","'._("Speed").'"], ';
92
-                            $altitude_data = '';
92
+							$altitude_data = '';
93 93
 				foreach($all_data as $data)
94 94
 				{
95 95
 					$altitude_data .= '[ "'.date("G:i",strtotime($data['date']." UTC")).'",'.$data['altitude'].','.$data['ground_speed'].'],';
Please login to merge, or discard this patch.
Braces   +9 added lines, -3 removed lines patch added patch discarded remove patch
@@ -71,8 +71,12 @@  discard block
 block discarded – undo
71 71
 	{
72 72
 		$title = sprintf(_("Detailed View for %s"),$spotter_array[0]['ident']);
73 73
 		$ident = $spotter_array[0]['ident'];
74
-		if (isset($spotter_array[0]['latitude'])) $latitude = $spotter_array[0]['latitude'];
75
-		if (isset($spotter_array[0]['longitude'])) $longitude = $spotter_array[0]['longitude'];
74
+		if (isset($spotter_array[0]['latitude'])) {
75
+			$latitude = $spotter_array[0]['latitude'];
76
+		}
77
+		if (isset($spotter_array[0]['longitude'])) {
78
+			$longitude = $spotter_array[0]['longitude'];
79
+		}
76 80
 		require_once('header.php');
77 81
 		if (isset($globalArchive) && $globalArchive) {
78 82
 			// Requirement for altitude graph
@@ -80,7 +84,9 @@  discard block
 block discarded – undo
80 84
 			$all_data = $SpotterArchive->getAltitudeSpeedArchiveSpotterDataById($spotter_array[0]['flightaware_id']);
81 85
 			if (isset($globalTimezone)) {
82 86
 				date_default_timezone_set($globalTimezone);
83
-			} else date_default_timezone_set('UTC');
87
+			} else {
88
+				date_default_timezone_set('UTC');
89
+			}
84 90
 			if (count($all_data) > 0) {
85 91
 				print '<div id="chart6" class="chart" width="100%"></div>
86 92
                     <script> 
Please login to merge, or discard this patch.
about.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 <div class="info column">
12 12
     <h1>About <?php print $globalName; ?></h1>
13 13
 <?php
14
-    if ($globalName == 'FlightAirMap') {
14
+	if ($globalName == 'FlightAirMap') {
15 15
 ?>
16 16
     <p>This is an open source project displaying <u>most</u> (mostly <a href="http://en.wikipedia.org/wiki/Instrument_flight_rules" target="_blank">IFR</a>) flights that have flown near this site area.
17 17
     <?php if ($globalADSBHUB) { ?> Some ADS-B sources come from <a href="http://www.adsbhub.net">ADSBHUB.net</a>.<?php } ?>
@@ -27,18 +27,18 @@  discard block
 block discarded – undo
27 27
 
28 28
     <br /><br />
29 29
 <?php
30
-    } else {
30
+	} else {
31 31
 ?>
32 32
      <p>This project use <a href="http://www.flightairmap.fr/">FlightAirMap</a> (<a href="https://github.com/Ysurac/FlightAirMap/">source</a>) by Ycarus from <a href="http://www.zugaina.com/">Zugaina</a>.</p>
33 33
 <?php
34
-    }
34
+	}
35 35
 ?>
36 36
     <a name="source"></a>
37 37
     <h3>Source &amp; Credits</h3>
38 38
 
39 39
     <?php
40 40
 	if ($globalFlightAware) { 
41
-    ?>
41
+	?>
42 42
     <p>The data from FlightAware is coming from multiple sources. Not every aircraft is tracked on FlightAware, especially not older aircrafts as well as government aircrafts, however most modern airliners will work. You can learn more about how it works on <a href="http://flightaware.com/adsb/" target="_blank">FlightAware's ADS-B</a> page. Also, not every aircraft is shown to have flown exactly at that minute as seen on this site (aka real-time). There is a 5 minute delay on some of the sources.</p>
43 43
     <?php } ?>
44 44
     <p>None of this project would have been possible without the help and contributions of these organizations and people:</p>
Please login to merge, or discard this patch.
search-csv.php 2 patches
Indentation   +75 added lines, -75 removed lines patch added patch discarded remove patch
@@ -5,55 +5,55 @@  discard block
 block discarded – undo
5 5
 $Spotter = new Spotter();
6 6
 
7 7
 if (isset($_GET['start_date'])) {
8
-        //for the date manipulation into the query
9
-        if($_GET['start_date'] != "" && $_GET['end_date'] != ""){
10
-                $start_date = $_GET['start_date'].":00";
11
-                $end_date = $_GET['end_date'].":00";
12
-                $sql_date = $start_date.",".$end_date;
13
-        } else if($_GET['start_date'] != ""){
14
-                $start_date = $_GET['start_date'].":00";
15
-                $sql_date = $start_date;
16
-        } else if($_GET['start_date'] == "" && $_GET['end_date'] != ""){
17
-                $end_date = date("Y-m-d H:i:s", strtotime("2014-04-12")).",".$_GET['end_date'].":00";
18
-                $sql_date = $end_date;
19
-        } else $sql_date = '';
8
+		//for the date manipulation into the query
9
+		if($_GET['start_date'] != "" && $_GET['end_date'] != ""){
10
+				$start_date = $_GET['start_date'].":00";
11
+				$end_date = $_GET['end_date'].":00";
12
+				$sql_date = $start_date.",".$end_date;
13
+		} else if($_GET['start_date'] != ""){
14
+				$start_date = $_GET['start_date'].":00";
15
+				$sql_date = $start_date;
16
+		} else if($_GET['start_date'] == "" && $_GET['end_date'] != ""){
17
+				$end_date = date("Y-m-d H:i:s", strtotime("2014-04-12")).",".$_GET['end_date'].":00";
18
+				$sql_date = $end_date;
19
+		} else $sql_date = '';
20 20
 } else $sql_date = '';
21 21
 
22 22
 if (isset($_GET['highest_altitude'])) {
23
-        //for altitude manipulation
24
-        if($_GET['highest_altitude'] != "" && $_GET['lowest_altitude'] != ""){
25
-                $end_altitude = $_GET['highest_altitude'];
26
-                $start_altitude = $_GET['lowest_altitude'];
27
-                $sql_altitude = $start_altitude.",".$end_altitude;
28
-        } else if($_GET['highest_altitude'] != ""){
29
-                $end_altitude = $_GET['highest_altitude'];
30
-                $sql_altitude = $end_altitude;
31
-        } else if($_GET['highest_altitude'] == "" && $_GET['lowest_altitude'] != ""){
32
-                $start_altitude = $_GET['lowest_altitude'].",60000";
33
-                $sql_altitude = $start_altitude;
34
-        } else $sql_altitude = '';
23
+		//for altitude manipulation
24
+		if($_GET['highest_altitude'] != "" && $_GET['lowest_altitude'] != ""){
25
+				$end_altitude = $_GET['highest_altitude'];
26
+				$start_altitude = $_GET['lowest_altitude'];
27
+				$sql_altitude = $start_altitude.",".$end_altitude;
28
+		} else if($_GET['highest_altitude'] != ""){
29
+				$end_altitude = $_GET['highest_altitude'];
30
+				$sql_altitude = $end_altitude;
31
+		} else if($_GET['highest_altitude'] == "" && $_GET['lowest_altitude'] != ""){
32
+				$start_altitude = $_GET['lowest_altitude'].",60000";
33
+				$sql_altitude = $start_altitude;
34
+		} else $sql_altitude = '';
35 35
 } else $sql_altitude = '';
36 36
 
37 37
 //calculuation for the pagination
38 38
 if(!isset($_GET['limit']))
39 39
 {
40
-        if (!isset($_GET['number_results']))
41
-        {
42
-                $limit_start = 0;
43
-                $limit_end = 25;
44
-                $absolute_difference = 25;
45
-        } else {
46
-                if ($_GET['number_results'] > 1000){
47
-                        $_GET['number_results'] = 1000;
48
-                }
49
-                $limit_start = 0;
50
-                $limit_end = $_GET['number_results'];
51
-                $absolute_difference = $_GET['number_results'];
52
-        }
40
+		if (!isset($_GET['number_results']))
41
+		{
42
+				$limit_start = 0;
43
+				$limit_end = 25;
44
+				$absolute_difference = 25;
45
+		} else {
46
+				if ($_GET['number_results'] > 1000){
47
+						$_GET['number_results'] = 1000;
48
+				}
49
+				$limit_start = 0;
50
+				$limit_end = $_GET['number_results'];
51
+				$absolute_difference = $_GET['number_results'];
52
+		}
53 53
 }  else {
54
-        $limit_explode = explode(",", $_GET['limit']);
55
-        $limit_start = $limit_explode[0];
56
-        $limit_end = $limit_explode[1];
54
+		$limit_explode = explode(",", $_GET['limit']);
55
+		$limit_start = $limit_explode[0];
56
+		$limit_end = $limit_explode[1];
57 57
 }
58 58
 $absolute_difference = abs($limit_start - $limit_end);
59 59
 $limit_next = $limit_end + $absolute_difference;
@@ -96,41 +96,41 @@  discard block
 block discarded – undo
96 96
   foreach($spotter_array as $spotter_item)
97 97
   {
98 98
        	
99
-    $output .= $spotter_item['spotter_id'].',';
100
-    $output .= $spotter_item['ident'].',';
101
-    $output .= $spotter_item['registration'].',';
102
-    $output .= $spotter_item['aircraft_type'].',';
103
-    $output .= $spotter_item['aircraft_name'].',';
104
-    $output .= $spotter_item['aircraft_manufacturer'].',';
105
-    $output .= $spotter_item['airline_name'].',';
106
-    $output .= $spotter_item['airline_icao'].',';
107
-    $output .= $spotter_item['airline_iata'].',';
108
-    $output .= $spotter_item['airline_country'].',';
109
-    $output .= $spotter_item['airline_callsign'].',';
110
-    $output .= $spotter_item['airline_type'].',';
111
-    $output .= $spotter_item['departure_airport_city'].',';
112
-    $output .= $spotter_item['departure_airport_country'].',';
113
-    $output .= $spotter_item['departure_airport_iata'].',';
114
-    $output .= $spotter_item['departure_airport_icao'].',';
115
-    $output .= $spotter_item['departure_airport_latitude'].',';
116
-    $output .= $spotter_item['departure_airport_longitude'].',';
117
-    $output .= $spotter_item['departure_airport_altitude'].',';
118
-    $output .= $spotter_item['arrival_airport_city'].',';
119
-    $output .= $spotter_item['arrival_airport_country'].',';
120
-    $output .= $spotter_item['arrival_airport_iata'].',';
121
-    $output .= $spotter_item['arrival_airport_icao'].',';
122
-    $output .= $spotter_item['arrival_airport_latitude'].',';
123
-    $output .= $spotter_item['arrival_airport_longitude'].',';
124
-    $output .= $spotter_item['arrival_airport_altitude'].',';
125
-    $output .= $spotter_item['latitude'].',';
126
-    $output .= $spotter_item['longitude'].',';
127
-    $output .= $spotter_item['altitude'].',';
128
-    $output .= $spotter_item['ground_speed'].',';
129
-    $output .= $spotter_item['heading'].',';
130
-    $output .= $spotter_item['heading_name'].',';
131
-    $output .= $spotter_item['waypoints'].',';
132
-    $output .= date("c", strtotime($spotter_item['date_iso_8601']));
133
-    $output .= "\n";
99
+	$output .= $spotter_item['spotter_id'].',';
100
+	$output .= $spotter_item['ident'].',';
101
+	$output .= $spotter_item['registration'].',';
102
+	$output .= $spotter_item['aircraft_type'].',';
103
+	$output .= $spotter_item['aircraft_name'].',';
104
+	$output .= $spotter_item['aircraft_manufacturer'].',';
105
+	$output .= $spotter_item['airline_name'].',';
106
+	$output .= $spotter_item['airline_icao'].',';
107
+	$output .= $spotter_item['airline_iata'].',';
108
+	$output .= $spotter_item['airline_country'].',';
109
+	$output .= $spotter_item['airline_callsign'].',';
110
+	$output .= $spotter_item['airline_type'].',';
111
+	$output .= $spotter_item['departure_airport_city'].',';
112
+	$output .= $spotter_item['departure_airport_country'].',';
113
+	$output .= $spotter_item['departure_airport_iata'].',';
114
+	$output .= $spotter_item['departure_airport_icao'].',';
115
+	$output .= $spotter_item['departure_airport_latitude'].',';
116
+	$output .= $spotter_item['departure_airport_longitude'].',';
117
+	$output .= $spotter_item['departure_airport_altitude'].',';
118
+	$output .= $spotter_item['arrival_airport_city'].',';
119
+	$output .= $spotter_item['arrival_airport_country'].',';
120
+	$output .= $spotter_item['arrival_airport_iata'].',';
121
+	$output .= $spotter_item['arrival_airport_icao'].',';
122
+	$output .= $spotter_item['arrival_airport_latitude'].',';
123
+	$output .= $spotter_item['arrival_airport_longitude'].',';
124
+	$output .= $spotter_item['arrival_airport_altitude'].',';
125
+	$output .= $spotter_item['latitude'].',';
126
+	$output .= $spotter_item['longitude'].',';
127
+	$output .= $spotter_item['altitude'].',';
128
+	$output .= $spotter_item['ground_speed'].',';
129
+	$output .= $spotter_item['heading'].',';
130
+	$output .= $spotter_item['heading_name'].',';
131
+	$output .= $spotter_item['waypoints'].',';
132
+	$output .= date("c", strtotime($spotter_item['date_iso_8601']));
133
+	$output .= "\n";
134 134
   }
135 135
  }
136 136
 
Please login to merge, or discard this patch.
Braces   +18 added lines, -7 removed lines patch added patch discarded remove patch
@@ -15,8 +15,12 @@  discard block
 block discarded – undo
15 15
         } else if($_GET['start_date'] == "" && $_GET['end_date'] != ""){
16 16
                 $end_date = date("Y-m-d H:i:s", strtotime("2014-04-12")).",".$_GET['end_date'].":00";
17 17
                 $sql_date = $end_date;
18
-        } else $sql_date = '';
19
-} else $sql_date = '';
18
+        } else {
19
+        	$sql_date = '';
20
+        }
21
+        } else {
22
+	$sql_date = '';
23
+}
20 24
 
21 25
 if (isset($_GET['highest_altitude'])) {
22 26
         //for altitude manipulation
@@ -30,8 +34,12 @@  discard block
 block discarded – undo
30 34
         } else if($_GET['highest_altitude'] == "" && $_GET['lowest_altitude'] != ""){
31 35
                 $start_altitude = $_GET['lowest_altitude'].",60000";
32 36
                 $sql_altitude = $start_altitude;
33
-        } else $sql_altitude = '';
34
-} else $sql_altitude = '';
37
+        } else {
38
+        	$sql_altitude = '';
39
+        }
40
+        } else {
41
+	$sql_altitude = '';
42
+}
35 43
 
36 44
 //calculuation for the pagination
37 45
 if(!isset($_GET['limit']))
@@ -49,7 +57,7 @@  discard block
 block discarded – undo
49 57
                 $limit_end = $_GET['number_results'];
50 58
                 $absolute_difference = $_GET['number_results'];
51 59
         }
52
-}  else {
60
+} else {
53 61
         $limit_explode = explode(",", $_GET['limit']);
54 62
         $limit_start = $limit_explode[0];
55 63
         $limit_end = $limit_explode[1];
@@ -67,8 +75,11 @@  discard block
 block discarded – undo
67 75
 
68 76
 header("Content-type: text/yaml");
69 77
 
70
-if (isset($_GET['sort'])) $sort = $_GET['sort'];
71
-else $sort = '';
78
+if (isset($_GET['sort'])) {
79
+	$sort = $_GET['sort'];
80
+} else {
81
+	$sort = '';
82
+}
72 83
 $q = filter_input(INPUT_GET,'q',FILTER_SANITIZE_STRING);
73 84
 $registration = filter_input(INPUT_GET,'registratrion',FILTER_SANITIZE_STRING);
74 85
 $aircraft = filter_input(INPUT_GET,'aircraft',FILTER_SANITIZE_STRING);
Please login to merge, or discard this patch.