@@ -7,14 +7,14 @@ discard block |
||
7 | 7 | //require_once('require/class.SpotterLive.php'); |
8 | 8 | require_once('require/class.SpotterArchive.php'); |
9 | 9 | |
10 | -if (!isset($_GET['pilot'])){ |
|
10 | +if (!isset($_GET['pilot'])) { |
|
11 | 11 | header('Location: '.$globalURL.'/'); |
12 | 12 | } else { |
13 | 13 | $Spotter = new Spotter(); |
14 | 14 | $SpotterArchive = new SpotterArchive(); |
15 | 15 | $Translation = new Translation(); |
16 | 16 | //calculuation for the pagination |
17 | - if(!isset($_GET['limit'])) |
|
17 | + if (!isset($_GET['limit'])) |
|
18 | 18 | { |
19 | 19 | $limit_start = 0; |
20 | 20 | $limit_end = 25; |
@@ -35,29 +35,29 @@ discard block |
||
35 | 35 | |
36 | 36 | $page_url = $globalURL.'/pilot/'.$_GET['pilot']; |
37 | 37 | |
38 | - $pilot = filter_input(INPUT_GET,'pilot',FILTER_SANITIZE_STRING); |
|
39 | - $sort = filter_input(INPUT_GET,'sort',FILTER_SANITIZE_STRING); |
|
40 | - $year = filter_input(INPUT_GET,'year',FILTER_SANITIZE_NUMBER_INT); |
|
41 | - $month = filter_input(INPUT_GET,'month',FILTER_SANITIZE_NUMBER_INT); |
|
38 | + $pilot = filter_input(INPUT_GET, 'pilot', FILTER_SANITIZE_STRING); |
|
39 | + $sort = filter_input(INPUT_GET, 'sort', FILTER_SANITIZE_STRING); |
|
40 | + $year = filter_input(INPUT_GET, 'year', FILTER_SANITIZE_NUMBER_INT); |
|
41 | + $month = filter_input(INPUT_GET, 'month', FILTER_SANITIZE_NUMBER_INT); |
|
42 | 42 | $filter = array(); |
43 | - if ($year != '') $filter = array_merge($filter,array('year' => $year)); |
|
44 | - if ($month != '') $filter = array_merge($filter,array('month' => $month)); |
|
43 | + if ($year != '') $filter = array_merge($filter, array('year' => $year)); |
|
44 | + if ($month != '') $filter = array_merge($filter, array('month' => $month)); |
|
45 | 45 | if ($sort != '') |
46 | 46 | { |
47 | - $spotter_array = $Spotter->getSpotterDataByPilot($pilot,$limit_start.",".$absolute_difference, $sort,$filter); |
|
47 | + $spotter_array = $Spotter->getSpotterDataByPilot($pilot, $limit_start.",".$absolute_difference, $sort, $filter); |
|
48 | 48 | if (empty($spotter_array)) { |
49 | - $spotter_array = $SpotterArchive->getSpotterDataByPilot($pilot,$limit_start.",".$absolute_difference, $sort,$filter); |
|
49 | + $spotter_array = $SpotterArchive->getSpotterDataByPilot($pilot, $limit_start.",".$absolute_difference, $sort, $filter); |
|
50 | 50 | } |
51 | 51 | } else { |
52 | - $spotter_array = $Spotter->getSpotterDataByPilot($pilot,$limit_start.",".$absolute_difference,'',$filter); |
|
52 | + $spotter_array = $Spotter->getSpotterDataByPilot($pilot, $limit_start.",".$absolute_difference, '', $filter); |
|
53 | 53 | if (empty($spotter_array)) { |
54 | - $spotter_array = $SpotterArchive->getSpotterDataByPilot($pilot,$limit_start.",".$absolute_difference,'',$filter); |
|
54 | + $spotter_array = $SpotterArchive->getSpotterDataByPilot($pilot, $limit_start.",".$absolute_difference, '', $filter); |
|
55 | 55 | } |
56 | 56 | } |
57 | 57 | |
58 | 58 | if (!empty($spotter_array)) |
59 | 59 | { |
60 | - $title = sprintf(_("Detailed View for %s"),$spotter_array[0]['pilot_name']); |
|
60 | + $title = sprintf(_("Detailed View for %s"), $spotter_array[0]['pilot_name']); |
|
61 | 61 | $ident = $spotter_array[0]['ident']; |
62 | 62 | if (isset($spotter_array[0]['latitude'])) $latitude = $spotter_array[0]['latitude']; |
63 | 63 | if (isset($spotter_array[0]['longitude'])) $longitude = $spotter_array[0]['longitude']; |
@@ -118,23 +118,23 @@ discard block |
||
118 | 118 | $Stats = new Stats(); |
119 | 119 | $flights = $Stats->getStatsPilot($pilot); |
120 | 120 | } else $flights = 0; |
121 | - if ($flights == 0) $flights = $Spotter->countFlightsByPilot($pilot,$filter); |
|
121 | + if ($flights == 0) $flights = $Spotter->countFlightsByPilot($pilot, $filter); |
|
122 | 122 | print '<div><span class="label">'._("Flights").'</span>'.$flights.'</div>'; |
123 | - $aircraft_type = count($Spotter->countAllAircraftTypesByPilot($pilot,$filter)); |
|
123 | + $aircraft_type = count($Spotter->countAllAircraftTypesByPilot($pilot, $filter)); |
|
124 | 124 | print '<div><span class="label">'._("Aircrafts type").'</span>'.$aircraft_type.'</div>'; |
125 | - $aircraft_registration = count($Spotter->countAllAircraftRegistrationByPilot($pilot,$filter)); |
|
125 | + $aircraft_registration = count($Spotter->countAllAircraftRegistrationByPilot($pilot, $filter)); |
|
126 | 126 | print '<div><span class="label">'._("Aircrafts").'</span>'.$aircraft_registration.'</div>'; |
127 | - $aircraft_manufacturer = count($Spotter->countAllAircraftManufacturerByPilot($pilot,$filter)); |
|
127 | + $aircraft_manufacturer = count($Spotter->countAllAircraftManufacturerByPilot($pilot, $filter)); |
|
128 | 128 | print '<div><span class="label">'._("Manufacturers").'</span>'.$aircraft_manufacturer.'</div>'; |
129 | - $airlines = count($Spotter->countAllAirlinesByPilot($pilot,$filter)); |
|
129 | + $airlines = count($Spotter->countAllAirlinesByPilot($pilot, $filter)); |
|
130 | 130 | print '<div><span class="label">'._("Airlines").'</span>'.$airlines.'</div>'; |
131 | - $duration = $Spotter->getFlightDurationByPilot($pilot,$filter); |
|
131 | + $duration = $Spotter->getFlightDurationByPilot($pilot, $filter); |
|
132 | 132 | if ($duration != '0') print '<div><span class="label">'._("Total flights spotted duration").'</span>'.$duration.'</div>'; |
133 | 133 | print '</div>'; |
134 | 134 | |
135 | 135 | include('owner-sub-menu.php'); |
136 | 136 | print '<div class="table column">'; |
137 | - print '<p>'.sprintf(_("The table below shows the detailed information of all flights with the pilot <strong>%s</strong>."),$spotter_array[0]['pilot_name']).'</p>'; |
|
137 | + print '<p>'.sprintf(_("The table below shows the detailed information of all flights with the pilot <strong>%s</strong>."), $spotter_array[0]['pilot_name']).'</p>'; |
|
138 | 138 | |
139 | 139 | include('table-output.php'); |
140 | 140 | print '<div class="pagination">'; |
@@ -90,8 +90,7 @@ discard block |
||
90 | 90 | |
91 | 91 | |
92 | 92 | private function urshift($n, $s) { |
93 | - return ($n >= 0) ? ($n >> $s) : |
|
94 | - (($n & 0x7fffffff) >> $s) | |
|
93 | + return ($n >= 0) ? ($n >> $s) : (($n&0x7fffffff) >> $s)| |
|
95 | 94 | (0x40000000 >> ($s - 1)); |
96 | 95 | } |
97 | 96 | |
@@ -103,7 +102,7 @@ discard block |
||
103 | 102 | //$split_input = str_split($input); |
104 | 103 | |
105 | 104 | /* Find the end of header checking for NULL bytes while doing it. */ |
106 | - $splitpos = strpos($input,':'); |
|
105 | + $splitpos = strpos($input, ':'); |
|
107 | 106 | |
108 | 107 | /* Check that end was found and body has at least one byte. */ |
109 | 108 | if ($splitpos == 0 || $splitpos + 1 == $input_len || $splitpos === FALSE) { |
@@ -113,15 +112,15 @@ discard block |
||
113 | 112 | |
114 | 113 | if ($debug) echo 'input : '.$input."\n"; |
115 | 114 | /* Save header and body. */ |
116 | - $body = substr($input,$splitpos+1,$input_len); |
|
115 | + $body = substr($input, $splitpos + 1, $input_len); |
|
117 | 116 | $body_len = strlen($body); |
118 | - $header = substr($input,0,$splitpos); |
|
117 | + $header = substr($input, 0, $splitpos); |
|
119 | 118 | //$header_len = strlen($header); |
120 | 119 | if ($debug) echo 'header : '.$header."\n"; |
121 | 120 | |
122 | 121 | /* Parse source, target and path. */ |
123 | 122 | //FLRDF0A52>APRS,qAS,LSTB |
124 | - if (preg_match('/^([A-Z0-9\\-]{1,9})>(.*)$/',$header,$matches)) { |
|
123 | + if (preg_match('/^([A-Z0-9\\-]{1,9})>(.*)$/', $header, $matches)) { |
|
125 | 124 | $ident = $matches[1]; |
126 | 125 | $all_elements = $matches[2]; |
127 | 126 | if ($ident == 'AIRCRAFT') { |
@@ -135,14 +134,14 @@ discard block |
||
135 | 134 | $result['ident'] = $ident; |
136 | 135 | } |
137 | 136 | } else return false; |
138 | - $elements = explode(',',$all_elements); |
|
137 | + $elements = explode(',', $all_elements); |
|
139 | 138 | $source = end($elements); |
140 | 139 | $result['source'] = $source; |
141 | 140 | foreach ($elements as $element) { |
142 | - if (preg_match('/^([a-zA-Z0-9-]{1,9})([*]?)$/',$element)) { |
|
141 | + if (preg_match('/^([a-zA-Z0-9-]{1,9})([*]?)$/', $element)) { |
|
143 | 142 | //echo "ok"; |
144 | 143 | //if ($element == 'TCPIP*') return false; |
145 | - } elseif (!preg_match('/^([0-9A-F]{32})$/',$element)) { |
|
144 | + } elseif (!preg_match('/^([0-9A-F]{32})$/', $element)) { |
|
146 | 145 | if ($debug) echo 'element : '.$element."\n"; |
147 | 146 | return false; |
148 | 147 | } |
@@ -155,14 +154,14 @@ discard block |
||
155 | 154 | */ |
156 | 155 | } |
157 | 156 | |
158 | - $type = substr($body,0,1); |
|
157 | + $type = substr($body, 0, 1); |
|
159 | 158 | if ($debug) echo 'type : '.$type."\n"; |
160 | 159 | if ($type == ';') { |
161 | 160 | if (isset($result['source_type']) && $result['source_type'] == 'modes') { |
162 | - $result['address'] = trim(substr($body,1,9)); |
|
161 | + $result['address'] = trim(substr($body, 1, 9)); |
|
163 | 162 | } elseif (isset($result['source_type']) && $result['source_type'] == 'ais') { |
164 | - $result['mmsi'] = trim(substr($body,1,9)); |
|
165 | - } else $result['ident'] = trim(substr($body,1,9)); |
|
163 | + $result['mmsi'] = trim(substr($body, 1, 9)); |
|
164 | + } else $result['ident'] = trim(substr($body, 1, 9)); |
|
166 | 165 | } elseif ($type == ',') { |
167 | 166 | // Invalid data or test data |
168 | 167 | return false; |
@@ -170,24 +169,24 @@ discard block |
||
170 | 169 | |
171 | 170 | // Check for Timestamp |
172 | 171 | $find = false; |
173 | - $body_parse = substr($body,1); |
|
172 | + $body_parse = substr($body, 1); |
|
174 | 173 | //echo 'Body : '.$body."\n"; |
175 | - if (preg_match('/^;(.){9}\*/',$body,$matches)) { |
|
176 | - $body_parse = substr($body_parse,10); |
|
174 | + if (preg_match('/^;(.){9}\*/', $body, $matches)) { |
|
175 | + $body_parse = substr($body_parse, 10); |
|
177 | 176 | $find = true; |
178 | 177 | //echo $body_parse."\n"; |
179 | 178 | } |
180 | - if (preg_match('/^`(.*)\//',$body,$matches)) { |
|
181 | - $body_parse = substr($body_parse,strlen($matches[1])-1); |
|
179 | + if (preg_match('/^`(.*)\//', $body, $matches)) { |
|
180 | + $body_parse = substr($body_parse, strlen($matches[1]) - 1); |
|
182 | 181 | $find = true; |
183 | 182 | //echo $body_parse."\n"; |
184 | 183 | } |
185 | - if (preg_match("/^'(.*)\//",$body,$matches)) { |
|
186 | - $body_parse = substr($body_parse,strlen($matches[1])-1); |
|
184 | + if (preg_match("/^'(.*)\//", $body, $matches)) { |
|
185 | + $body_parse = substr($body_parse, strlen($matches[1]) - 1); |
|
187 | 186 | $find = true; |
188 | 187 | //echo $body_parse."\n"; |
189 | 188 | } |
190 | - if (preg_match('/^([0-9]{2})([0-9]{2})([0-9]{2})([zh\\/])/',$body_parse,$matches)) { |
|
189 | + if (preg_match('/^([0-9]{2})([0-9]{2})([0-9]{2})([zh\\/])/', $body_parse, $matches)) { |
|
191 | 190 | $find = true; |
192 | 191 | //print_r($matches); |
193 | 192 | $timestamp = $matches[0]; |
@@ -202,19 +201,19 @@ discard block |
||
202 | 201 | // This work or not ? |
203 | 202 | $timestamp = strtotime(date('Ym').$matches[1].' '.$matches[2].':'.$matches[3]); |
204 | 203 | } |
205 | - $body_parse = substr($body_parse,7); |
|
204 | + $body_parse = substr($body_parse, 7); |
|
206 | 205 | $result['timestamp'] = $timestamp; |
207 | 206 | //echo date('Ymd H:i:s',$timestamp); |
208 | 207 | } |
209 | - if (preg_match('/^([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})/',$body_parse,$matches)) { |
|
208 | + if (preg_match('/^([0-9]{2})([0-9]{2})([0-9]{2})([0-9]{2})/', $body_parse, $matches)) { |
|
210 | 209 | $find = true; |
211 | 210 | $timestamp = strtotime(date('Y').$matches[1].$matches[2].' '.$matches[3].':'.$matches[4]); |
212 | - $body_parse = substr($body_parse,8); |
|
211 | + $body_parse = substr($body_parse, 8); |
|
213 | 212 | $result['timestamp'] = $timestamp; |
214 | 213 | //echo date('Ymd H:i:s',$timestamp); |
215 | 214 | } |
216 | 215 | //if (strlen($body_parse) > 19) { |
217 | - if (preg_match('/^([0-9]{2})([0-7 ][0-9 ]\\.[0-9 ]{2})([NnSs])(.)([0-9]{3})([0-7 ][0-9 ]\\.[0-9 ]{2})([EeWw])(.)/',$body_parse,$matches)) { |
|
216 | + if (preg_match('/^([0-9]{2})([0-7 ][0-9 ]\\.[0-9 ]{2})([NnSs])(.)([0-9]{3})([0-7 ][0-9 ]\\.[0-9 ]{2})([EeWw])(.)/', $body_parse, $matches)) { |
|
218 | 217 | $find = true; |
219 | 218 | // 4658.70N/00707.78Ez |
220 | 219 | //print_r(str_split($body_parse)); |
@@ -240,11 +239,11 @@ discard block |
||
240 | 239 | */ |
241 | 240 | $latitude = $lat + floatval($lat_min)/60; |
242 | 241 | $longitude = $lon + floatval($lon_min)/60; |
243 | - if ($sind == 'S') $latitude = 0-$latitude; |
|
244 | - if ($wind == 'W') $longitude = 0-$longitude; |
|
242 | + if ($sind == 'S') $latitude = 0 - $latitude; |
|
243 | + if ($wind == 'W') $longitude = 0 - $longitude; |
|
245 | 244 | $result['latitude'] = $latitude; |
246 | 245 | $result['longitude'] = $longitude; |
247 | - $body_parse = substr($body_parse,18); |
|
246 | + $body_parse = substr($body_parse, 18); |
|
248 | 247 | $body_parse_len = strlen($body_parse); |
249 | 248 | } |
250 | 249 | $body_parse_len = strlen($body_parse); |
@@ -272,7 +271,7 @@ discard block |
||
272 | 271 | //echo $body_parse; |
273 | 272 | //if ($type != ';' && $type != '>') { |
274 | 273 | if ($type != '') { |
275 | - $body_parse = substr($body_parse,1); |
|
274 | + $body_parse = substr($body_parse, 1); |
|
276 | 275 | $body_parse_len = strlen($body_parse); |
277 | 276 | $result['symbol_code'] = $symbol_code; |
278 | 277 | if (isset($this->symbols[$symbol_code])) $result['symbol'] = $this->symbols[$symbol_code]; |
@@ -283,16 +282,16 @@ discard block |
||
283 | 282 | //$body_parse_len = strlen($body_parse); |
284 | 283 | if ($body_parse_len >= 7) { |
285 | 284 | |
286 | - if (preg_match('/^([0-9\\. ]{3})\\/([0-9\\. ]{3})/',$body_parse)) { |
|
287 | - $course = substr($body_parse,0,3); |
|
285 | + if (preg_match('/^([0-9\\. ]{3})\\/([0-9\\. ]{3})/', $body_parse)) { |
|
286 | + $course = substr($body_parse, 0, 3); |
|
288 | 287 | $tmp_s = intval($course); |
289 | 288 | if ($tmp_s >= 1 && $tmp_s <= 360) $result['heading'] = intval($course); |
290 | - $speed = substr($body_parse,4,3); |
|
289 | + $speed = substr($body_parse, 4, 3); |
|
291 | 290 | if ($speed != '...') { |
292 | 291 | //$result['speed'] = round($speed*1.852); |
293 | 292 | $result['speed'] = intval($speed); |
294 | 293 | } |
295 | - $body_parse = substr($body_parse,7); |
|
294 | + $body_parse = substr($body_parse, 7); |
|
296 | 295 | } |
297 | 296 | // Check PHGR, PHG, RNG |
298 | 297 | } |
@@ -302,12 +301,12 @@ discard block |
||
302 | 301 | } |
303 | 302 | */ |
304 | 303 | if (strlen($body_parse) > 0) { |
305 | - if (preg_match('/\\/A=(-[0-9]{5}|[0-9]{6})/',$body_parse,$matches)) { |
|
304 | + if (preg_match('/\\/A=(-[0-9]{5}|[0-9]{6})/', $body_parse, $matches)) { |
|
306 | 305 | $altitude = intval($matches[1]); |
307 | 306 | //$result['altitude'] = round($altitude*0.3048); |
308 | 307 | $result['altitude'] = $altitude; |
309 | 308 | //$body_parse = trim(substr($body_parse,strlen($matches[0]))); |
310 | - $body_parse = trim(preg_replace('/\\/A=(-[0-9]{5}|[0-9]{6})/','',$body_parse)); |
|
309 | + $body_parse = trim(preg_replace('/\\/A=(-[0-9]{5}|[0-9]{6})/', '', $body_parse)); |
|
311 | 310 | } |
312 | 311 | } |
313 | 312 | |
@@ -319,13 +318,13 @@ discard block |
||
319 | 318 | */ |
320 | 319 | // DAO |
321 | 320 | |
322 | - if (preg_match('/^!([0-9A-Z]{3})/',$body_parse,$matches)) { |
|
321 | + if (preg_match('/^!([0-9A-Z]{3})/', $body_parse, $matches)) { |
|
323 | 322 | |
324 | 323 | $dao = $matches[1]; |
325 | - if (preg_match('/^([A-Z])([0-9]{2})/',$dao)) { |
|
324 | + if (preg_match('/^([A-Z])([0-9]{2})/', $dao)) { |
|
326 | 325 | $dao_split = str_split($dao); |
327 | - $lat_off = (($dao_split[1])-48.0)*0.001/60.0; |
|
328 | - $lon_off = (($dao_split[2])-48.0)*0.001/60.0; |
|
326 | + $lat_off = (($dao_split[1]) - 48.0)*0.001/60.0; |
|
327 | + $lon_off = (($dao_split[2]) - 48.0)*0.001/60.0; |
|
329 | 328 | |
330 | 329 | if ($result['latitude'] < 0) $result['latitude'] -= $lat_off; |
331 | 330 | else $result['latitude'] += $lat_off; |
@@ -333,50 +332,50 @@ discard block |
||
333 | 332 | else $result['longitude'] += $lon_off; |
334 | 333 | } |
335 | 334 | |
336 | - $body_parse = substr($body_parse,6); |
|
335 | + $body_parse = substr($body_parse, 6); |
|
337 | 336 | } |
338 | 337 | |
339 | - if (preg_match('/CS=([0-9A-Z_]*)/',$body_parse,$matches)) { |
|
340 | - $result['ident'] = str_replace('_',' ',$matches[1]); |
|
338 | + if (preg_match('/CS=([0-9A-Z_]*)/', $body_parse, $matches)) { |
|
339 | + $result['ident'] = str_replace('_', ' ', $matches[1]); |
|
341 | 340 | } |
342 | - if (preg_match('/SQ=([0-9]{4})/',$body_parse,$matches)) { |
|
341 | + if (preg_match('/SQ=([0-9]{4})/', $body_parse, $matches)) { |
|
343 | 342 | $result['squawk'] = $matches[1]; |
344 | 343 | } |
345 | - if (preg_match('/AI=([0-9A-Z]{4})/',$body_parse,$matches)) { |
|
344 | + if (preg_match('/AI=([0-9A-Z]{4})/', $body_parse, $matches)) { |
|
346 | 345 | $result['aircraft_icao'] = $matches[1]; |
347 | 346 | } |
348 | - if (preg_match('/VR=([0-9]*)/',$body_parse,$matches)) { |
|
347 | + if (preg_match('/VR=([0-9]*)/', $body_parse, $matches)) { |
|
349 | 348 | $result['verticalrate'] = $matches[1]; |
350 | 349 | } |
351 | - if (preg_match('/TI=([0-9]*)/',$body_parse,$matches)) { |
|
350 | + if (preg_match('/TI=([0-9]*)/', $body_parse, $matches)) { |
|
352 | 351 | $result['typeid'] = $matches[1]; |
353 | 352 | } |
354 | - if (preg_match('/SI=([0-9]*)/',$body_parse,$matches)) { |
|
353 | + if (preg_match('/SI=([0-9]*)/', $body_parse, $matches)) { |
|
355 | 354 | $result['statusid'] = $matches[1]; |
356 | 355 | } |
357 | - if (preg_match('/IMO=([0-9]{7})/',$body_parse,$matches)) { |
|
356 | + if (preg_match('/IMO=([0-9]{7})/', $body_parse, $matches)) { |
|
358 | 357 | $result['imo'] = $matches[1]; |
359 | 358 | } |
360 | - if (preg_match('/AD=([0-9]*)/',$body_parse,$matches)) { |
|
359 | + if (preg_match('/AD=([0-9]*)/', $body_parse, $matches)) { |
|
361 | 360 | $result['arrival_date'] = $matches[1]; |
362 | 361 | } |
363 | - if (preg_match('/AC=([0-9A-Z_]*)/',$body_parse,$matches)) { |
|
364 | - $result['arrival_code'] = str_replace('_',' ',$matches[1]); |
|
362 | + if (preg_match('/AC=([0-9A-Z_]*)/', $body_parse, $matches)) { |
|
363 | + $result['arrival_code'] = str_replace('_', ' ', $matches[1]); |
|
365 | 364 | } |
366 | 365 | // OGN comment |
367 | 366 | // echo "Before OGN : ".$body_parse."\n"; |
368 | 367 | //if (preg_match('/^id([0-9A-F]{8}) ([+-])([0-9]{3,4})fpm ([+-])([0-9.]{3,4})rot (.*)$/',$body_parse,$matches)) { |
369 | - if (preg_match('/^id([0-9A-F]{8})/',$body_parse,$matches)) { |
|
368 | + if (preg_match('/^id([0-9A-F]{8})/', $body_parse, $matches)) { |
|
370 | 369 | $id = $matches[1]; |
371 | 370 | //$mode = substr($id,0,2); |
372 | - $address = substr($id,2); |
|
371 | + $address = substr($id, 2); |
|
373 | 372 | //print_r($matches); |
374 | - $addressType = (intval(substr($id,0,2),16))&3; |
|
373 | + $addressType = (intval(substr($id, 0, 2), 16))&3; |
|
375 | 374 | if ($addressType == 0) $result['addresstype'] = "RANDOM"; |
376 | 375 | elseif ($addressType == 1) $result['addresstype'] = "ICAO"; |
377 | 376 | elseif ($addressType == 2) $result['addresstype'] = "FLARM"; |
378 | 377 | elseif ($addressType == 3) $result['addresstype'] = "OGN"; |
379 | - $aircraftType = $this->urshift(((intval(substr($id,0,2),16)) & 0b1111100),2); |
|
378 | + $aircraftType = $this->urshift(((intval(substr($id, 0, 2), 16))&0b1111100), 2); |
|
380 | 379 | $result['aircrafttype_code'] = $aircraftType; |
381 | 380 | if ($aircraftType == 0) $result['aircrafttype'] = "UNKNOWN"; |
382 | 381 | elseif ($aircraftType == 1) $result['aircrafttype'] = "GLIDER"; |
@@ -393,7 +392,7 @@ discard block |
||
393 | 392 | elseif ($aircraftType == 12) $result['aircrafttype'] = "AIRSHIP"; |
394 | 393 | elseif ($aircraftType == 13) $result['aircrafttype'] = "UAV"; |
395 | 394 | elseif ($aircraftType == 15) $result['aircrafttype'] = "STATIC_OBJECT"; |
396 | - $stealth = (intval(substr($id,0,2), 16) & 0b10000000) != 0; |
|
395 | + $stealth = (intval(substr($id, 0, 2), 16)&0b10000000) != 0; |
|
397 | 396 | $result['stealth'] = $stealth; |
398 | 397 | $result['address'] = $address; |
399 | 398 | } |
@@ -405,77 +404,77 @@ discard block |
||
405 | 404 | //$body_parse = substr($body_parse,1); |
406 | 405 | //$body_parse_len = strlen($body_parse); |
407 | 406 | |
408 | - if (preg_match('/^_{0,1}([0-9 \\.\\-]{3})\\/([0-9 \\.]{3})g([0-9 \\.]+)t(-{0,1}[0-9 \\.]+)/',$body_parse,$matches)) { |
|
407 | + if (preg_match('/^_{0,1}([0-9 \\.\\-]{3})\\/([0-9 \\.]{3})g([0-9 \\.]+)t(-{0,1}[0-9 \\.]+)/', $body_parse, $matches)) { |
|
409 | 408 | $result['wind_dir'] = intval($matches[1]); |
410 | - $result['wind_speed'] = round(intval($matches[2])*1.60934,1); |
|
411 | - $result['wind_gust'] = round(intval($matches[3])*1.60934,1); |
|
412 | - $result['temp'] = round(5/9*((intval($matches[4]))-32),1); |
|
413 | - $body_parse = substr($body_parse,strlen($matches[0])+1); |
|
414 | - } elseif (preg_match('/^_{0,1}c([0-9 \\.\\-]{3})s([0-9 \\.]{3})g([0-9 \\.]+)t(-{0,1}[0-9 \\.]+)/',$body_parse,$matches)) { |
|
409 | + $result['wind_speed'] = round(intval($matches[2])*1.60934, 1); |
|
410 | + $result['wind_gust'] = round(intval($matches[3])*1.60934, 1); |
|
411 | + $result['temp'] = round(5/9*((intval($matches[4])) - 32), 1); |
|
412 | + $body_parse = substr($body_parse, strlen($matches[0]) + 1); |
|
413 | + } elseif (preg_match('/^_{0,1}c([0-9 \\.\\-]{3})s([0-9 \\.]{3})g([0-9 \\.]+)t(-{0,1}[0-9 \\.]+)/', $body_parse, $matches)) { |
|
415 | 414 | $result['wind_dir'] = intval($matches[1]); |
416 | - $result['wind_speed'] = round($matches[2]*1.60934,1); |
|
417 | - $result['wind_gust'] = round($matches[3]*1.60934,1); |
|
418 | - $result['temp'] = round(5/9*(($matches[4])-32),1); |
|
419 | - $body_parse = substr($body_parse,strlen($matches[0])+1); |
|
420 | - } elseif (preg_match('/^_{0,1}([0-9 \\.\\-]{3})\\/([0-9 \\.]{3})t(-{0,1}[0-9 \\.]+)/',$body_parse,$matches)) { |
|
415 | + $result['wind_speed'] = round($matches[2]*1.60934, 1); |
|
416 | + $result['wind_gust'] = round($matches[3]*1.60934, 1); |
|
417 | + $result['temp'] = round(5/9*(($matches[4]) - 32), 1); |
|
418 | + $body_parse = substr($body_parse, strlen($matches[0]) + 1); |
|
419 | + } elseif (preg_match('/^_{0,1}([0-9 \\.\\-]{3})\\/([0-9 \\.]{3})t(-{0,1}[0-9 \\.]+)/', $body_parse, $matches)) { |
|
421 | 420 | $result['wind_dir'] = intval($matches[1]); |
422 | - $result['wind_speed'] = round($matches[2]*1.60934,1); |
|
423 | - $result['wind_gust'] = round($matches[3]*1.60934,1); |
|
424 | - $body_parse = substr($body_parse,strlen($matches[0])+1); |
|
425 | - } elseif (preg_match('/^_{0,1}([0-9 \\.\\-]{3})\\/([0-9 \\.]{3})g([0-9 \\.]+)/',$body_parse,$matches)) { |
|
421 | + $result['wind_speed'] = round($matches[2]*1.60934, 1); |
|
422 | + $result['wind_gust'] = round($matches[3]*1.60934, 1); |
|
423 | + $body_parse = substr($body_parse, strlen($matches[0]) + 1); |
|
424 | + } elseif (preg_match('/^_{0,1}([0-9 \\.\\-]{3})\\/([0-9 \\.]{3})g([0-9 \\.]+)/', $body_parse, $matches)) { |
|
426 | 425 | $result['wind_dir'] = intval($matches[1]); |
427 | - $result['wind_speed'] = round($matches[2]*1.60934,1); |
|
428 | - $result['wind_gust'] = round($matches[3]*1.60934,1); |
|
429 | - $body_parse = substr($body_parse,strlen($matches[0])+1); |
|
426 | + $result['wind_speed'] = round($matches[2]*1.60934, 1); |
|
427 | + $result['wind_gust'] = round($matches[3]*1.60934, 1); |
|
428 | + $body_parse = substr($body_parse, strlen($matches[0]) + 1); |
|
430 | 429 | } |
431 | - if (!isset($result['temp']) && strlen($body_parse) > 0 && preg_match('/^g([0-9]+)t(-?[0-9 \\.]{1,3})/',$body_parse,$matches)) { |
|
432 | - $result['temp'] = round(5/9*(($matches[1])-32),1); |
|
430 | + if (!isset($result['temp']) && strlen($body_parse) > 0 && preg_match('/^g([0-9]+)t(-?[0-9 \\.]{1,3})/', $body_parse, $matches)) { |
|
431 | + $result['temp'] = round(5/9*(($matches[1]) - 32), 1); |
|
433 | 432 | } |
434 | 433 | } |
435 | 434 | } else $result['comment'] = trim($body_parse); |
436 | 435 | |
437 | 436 | } |
438 | 437 | //} |
439 | - if (isset($result['latitude'])) $result['latitude'] = round($result['latitude'],4); |
|
440 | - if (isset($result['longitude'])) $result['longitude'] = round($result['longitude'],4); |
|
438 | + if (isset($result['latitude'])) $result['latitude'] = round($result['latitude'], 4); |
|
439 | + if (isset($result['longitude'])) $result['longitude'] = round($result['longitude'], 4); |
|
441 | 440 | if ($debug) print_r($result); |
442 | 441 | return $result; |
443 | 442 | } |
444 | 443 | |
445 | 444 | public function connect() { |
446 | - global $globalAPRSversion, $globalServerAPRSssid, $globalServerAPRSpass,$globalName, $globalServerAPRShost, $globalServerAPRSport; |
|
445 | + global $globalAPRSversion, $globalServerAPRSssid, $globalServerAPRSpass, $globalName, $globalServerAPRShost, $globalServerAPRSport; |
|
447 | 446 | $aprs_connect = 0; |
448 | 447 | $aprs_keep = 120; |
449 | 448 | $aprs_last_tx = time(); |
450 | 449 | if (isset($globalAPRSversion)) $aprs_version = $globalAPRSversion; |
451 | - else $aprs_version = 'FlightAirMap '.str_replace(' ','_',$globalName); |
|
450 | + else $aprs_version = 'FlightAirMap '.str_replace(' ', '_', $globalName); |
|
452 | 451 | if (isset($globalServerAPRSssid)) $aprs_ssid = $globalServerAPRSssid; |
453 | - else $aprs_ssid = substr('FAM'.strtoupper(str_replace(' ','_',$globalName)),0,8); |
|
452 | + else $aprs_ssid = substr('FAM'.strtoupper(str_replace(' ', '_', $globalName)), 0, 8); |
|
454 | 453 | if (isset($globalServerAPRSpass)) $aprs_pass = $globalServerAPRSpass; |
455 | 454 | else $aprs_pass = '-1'; |
456 | 455 | |
457 | - $aprs_filter = ''; |
|
456 | + $aprs_filter = ''; |
|
458 | 457 | $aprs_login = "user {$aprs_ssid} pass {$aprs_pass} vers {$aprs_version}\n"; |
459 | 458 | $Common = new Common(); |
460 | - $s = $Common->create_socket($globalServerAPRShost,$globalServerAPRSport,$errno,$errstr); |
|
459 | + $s = $Common->create_socket($globalServerAPRShost, $globalServerAPRSport, $errno, $errstr); |
|
461 | 460 | if ($s !== false) { |
462 | 461 | echo 'Connected to APRS server! '."\n"; |
463 | 462 | $authstart = time(); |
464 | 463 | $this->socket = $s; |
465 | - $send = socket_send( $this->socket , $aprs_login , strlen($aprs_login) , 0 ); |
|
466 | - while ($msgin = socket_read($this->socket, 1000,PHP_NORMAL_READ)) { |
|
464 | + $send = socket_send($this->socket, $aprs_login, strlen($aprs_login), 0); |
|
465 | + while ($msgin = socket_read($this->socket, 1000, PHP_NORMAL_READ)) { |
|
467 | 466 | if (strpos($msgin, "$aprs_ssid verified") !== FALSE) { |
468 | 467 | echo 'APRS user verified !'."\n"; |
469 | 468 | $this->connected = true; |
470 | 469 | return true; |
471 | 470 | break; |
472 | 471 | } |
473 | - if (time()-$authstart > 5) { |
|
472 | + if (time() - $authstart > 5) { |
|
474 | 473 | echo 'APRS timeout'."\n"; |
475 | 474 | break; |
476 | 475 | } |
477 | 476 | } |
478 | - socket_set_option($this->socket,SOL_SOCKET,SO_KEEPALIVE); |
|
477 | + socket_set_option($this->socket, SOL_SOCKET, SO_KEEPALIVE); |
|
479 | 478 | } |
480 | 479 | } |
481 | 480 | |
@@ -485,7 +484,7 @@ discard block |
||
485 | 484 | |
486 | 485 | public function send($data) { |
487 | 486 | if ($this->connected === false) $this->connect(); |
488 | - $send = socket_send( $this->socket , $data , strlen($data),0); |
|
487 | + $send = socket_send($this->socket, $data, strlen($data), 0); |
|
489 | 488 | if ($send === FALSE) { |
490 | 489 | socket_close($this->socket); |
491 | 490 | $this->connect(); |
@@ -494,14 +493,14 @@ discard block |
||
494 | 493 | } |
495 | 494 | |
496 | 495 | class APRSSpotter extends APRS { |
497 | - public function addLiveSpotterData($id,$ident,$aircraft_icao,$departure_airport,$arrival_airport,$latitude,$longitude,$waypoints,$altitude,$altitude_real,$heading,$speed,$datetime,$departure_airport_time,$arrival_airport_time,$squawk,$route_stop,$hex,$putinarchive,$registration,$pilot_id,$pilot_name, $verticalrate, $noarchive, $ground,$format_source,$source_name,$over_country) { |
|
496 | + public function addLiveSpotterData($id, $ident, $aircraft_icao, $departure_airport, $arrival_airport, $latitude, $longitude, $waypoints, $altitude, $altitude_real, $heading, $speed, $datetime, $departure_airport_time, $arrival_airport_time, $squawk, $route_stop, $hex, $putinarchive, $registration, $pilot_id, $pilot_name, $verticalrate, $noarchive, $ground, $format_source, $source_name, $over_country) { |
|
498 | 497 | $Common = new Common(); |
499 | 498 | if ($latitude != '' && $longitude != '') { |
500 | - $latitude = $Common->convertDM($latitude,'latitude'); |
|
501 | - $longitude = $Common->convertDM($longitude,'longitude'); |
|
502 | - $coordinate = sprintf("%02d",$latitude['deg']).str_pad(number_format($latitude['min'],2,'.',''),5,'0',STR_PAD_LEFT).$latitude['NSEW'].'/'.sprintf("%03d",$longitude['deg']).str_pad(number_format($longitude['min'],2,'.',''),5,'0',STR_PAD_LEFT).$longitude['NSEW']; |
|
503 | - $w1 = abs(ceil(($latitude['min'] - number_format($latitude['min'],2,'.',''))*1000)); |
|
504 | - $w2 = abs(ceil(($longitude['min'] - number_format($longitude['min'],2,'.',''))*1000)); |
|
499 | + $latitude = $Common->convertDM($latitude, 'latitude'); |
|
500 | + $longitude = $Common->convertDM($longitude, 'longitude'); |
|
501 | + $coordinate = sprintf("%02d", $latitude['deg']).str_pad(number_format($latitude['min'], 2, '.', ''), 5, '0', STR_PAD_LEFT).$latitude['NSEW'].'/'.sprintf("%03d", $longitude['deg']).str_pad(number_format($longitude['min'], 2, '.', ''), 5, '0', STR_PAD_LEFT).$longitude['NSEW']; |
|
502 | + $w1 = abs(ceil(($latitude['min'] - number_format($latitude['min'], 2, '.', ''))*1000)); |
|
503 | + $w2 = abs(ceil(($longitude['min'] - number_format($longitude['min'], 2, '.', ''))*1000)); |
|
505 | 504 | $w = $w1.$w2; |
506 | 505 | //$w = '00'; |
507 | 506 | $custom = ''; |
@@ -522,25 +521,25 @@ discard block |
||
522 | 521 | $custom .= 'AI='.$aircraft_icao; |
523 | 522 | } |
524 | 523 | if ($custom != '') $custom = ' '.$custom; |
525 | - $this->send('AIRCRAFT>APRS,TCPIP*:;'.$hex.' *'.date('His',strtotime($datetime)).'h'.$coordinate.'^'.str_pad($heading,3,'0',STR_PAD_LEFT).'/'.str_pad($speed,3,'0',STR_PAD_LEFT).'/A='.str_pad($altitude_real,6,'0',STR_PAD_LEFT).' !W'.$w.'!'.$custom."\n"); |
|
524 | + $this->send('AIRCRAFT>APRS,TCPIP*:;'.$hex.' *'.date('His', strtotime($datetime)).'h'.$coordinate.'^'.str_pad($heading, 3, '0', STR_PAD_LEFT).'/'.str_pad($speed, 3, '0', STR_PAD_LEFT).'/A='.str_pad($altitude_real, 6, '0', STR_PAD_LEFT).' !W'.$w.'!'.$custom."\n"); |
|
526 | 525 | } |
527 | 526 | } |
528 | 527 | } |
529 | 528 | class APRSMarine extends APRS { |
530 | - public function addLiveMarineData($id, $ident, $latitude, $longitude, $heading, $speed,$datetime, $putinarchive,$mmsi,$type,$typeid,$imo,$callsign,$arrival_code,$arrival_date,$status,$statusid,$noarchive,$format_source,$source_name,$over_country) { |
|
529 | + public function addLiveMarineData($id, $ident, $latitude, $longitude, $heading, $speed, $datetime, $putinarchive, $mmsi, $type, $typeid, $imo, $callsign, $arrival_code, $arrival_date, $status, $statusid, $noarchive, $format_source, $source_name, $over_country) { |
|
531 | 530 | $Common = new Common(); |
532 | 531 | if ($latitude != '' && $longitude != '') { |
533 | - $latitude = $Common->convertDM($latitude,'latitude'); |
|
534 | - $longitude = $Common->convertDM($longitude,'longitude'); |
|
535 | - $coordinate = sprintf("%02d",$latitude['deg']).str_pad(number_format($latitude['min'],2,'.',''),5,'0',STR_PAD_LEFT).$latitude['NSEW'].'/'.sprintf("%03d",$longitude['deg']).str_pad(number_format($longitude['min'],2,'.',''),5,'0',STR_PAD_LEFT).$longitude['NSEW']; |
|
536 | - $w1 = abs(ceil(($latitude['min'] - number_format($latitude['min'],2,'.',''))*1000)); |
|
537 | - $w2 = abs(ceil(($longitude['min'] - number_format($longitude['min'],2,'.',''))*1000)); |
|
532 | + $latitude = $Common->convertDM($latitude, 'latitude'); |
|
533 | + $longitude = $Common->convertDM($longitude, 'longitude'); |
|
534 | + $coordinate = sprintf("%02d", $latitude['deg']).str_pad(number_format($latitude['min'], 2, '.', ''), 5, '0', STR_PAD_LEFT).$latitude['NSEW'].'/'.sprintf("%03d", $longitude['deg']).str_pad(number_format($longitude['min'], 2, '.', ''), 5, '0', STR_PAD_LEFT).$longitude['NSEW']; |
|
535 | + $w1 = abs(ceil(($latitude['min'] - number_format($latitude['min'], 2, '.', ''))*1000)); |
|
536 | + $w2 = abs(ceil(($longitude['min'] - number_format($longitude['min'], 2, '.', ''))*1000)); |
|
538 | 537 | $w = $w1.$w2; |
539 | 538 | //$w = '00'; |
540 | 539 | $custom = ''; |
541 | 540 | if ($ident != '') { |
542 | 541 | if ($custom != '') $custom .= '/'; |
543 | - $custom .= 'CS='.str_replace(' ','_',$ident); |
|
542 | + $custom .= 'CS='.str_replace(' ', '_', $ident); |
|
544 | 543 | } |
545 | 544 | if ($typeid != '') { |
546 | 545 | if ($custom != '') $custom .= '/'; |
@@ -560,11 +559,11 @@ discard block |
||
560 | 559 | } |
561 | 560 | if ($arrival_code != '') { |
562 | 561 | if ($custom != '') $custom .= '/'; |
563 | - $custom .= 'AC='.str_replace(' ','_',$arrival_code); |
|
562 | + $custom .= 'AC='.str_replace(' ', '_', $arrival_code); |
|
564 | 563 | } |
565 | 564 | if ($custom != '') $custom = ' '.$custom; |
566 | 565 | $altitude = 0; |
567 | - $this->send('MARINE>APRS,TCPIP*:;'.$mmsi.'*'.date('His',strtotime($datetime)).'h'.$coordinate.'s'.str_pad($heading,3,'0',STR_PAD_LEFT).'/'.str_pad($speed,3,'0',STR_PAD_LEFT).'/A='.str_pad($altitude,6,'0',STR_PAD_LEFT).' !W'.$w.'!'.$custom."\n"); |
|
566 | + $this->send('MARINE>APRS,TCPIP*:;'.$mmsi.'*'.date('His', strtotime($datetime)).'h'.$coordinate.'s'.str_pad($heading, 3, '0', STR_PAD_LEFT).'/'.str_pad($speed, 3, '0', STR_PAD_LEFT).'/A='.str_pad($altitude, 6, '0', STR_PAD_LEFT).' !W'.$w.'!'.$custom."\n"); |
|
568 | 567 | } |
569 | 568 | } |
570 | 569 | } |
@@ -6,83 +6,83 @@ discard block |
||
6 | 6 | // Not yet finished, no CRC checks |
7 | 7 | //echo $buffer."\n"; |
8 | 8 | $data = array(); |
9 | - $typehex = substr($buffer,0,1); |
|
10 | - if ($typehex == '*' || $typehex == ':') $hex = substr($buffer,1,-1); |
|
11 | - elseif ($typehex == '@' || $typehex == '%') $hex = substr($buffer,13,-13); |
|
12 | - else $hex = substr($buffer,1,-1); |
|
13 | - $bin = gmp_strval( gmp_init($hex,16), 2); |
|
9 | + $typehex = substr($buffer, 0, 1); |
|
10 | + if ($typehex == '*' || $typehex == ':') $hex = substr($buffer, 1, -1); |
|
11 | + elseif ($typehex == '@' || $typehex == '%') $hex = substr($buffer, 13, -13); |
|
12 | + else $hex = substr($buffer, 1, -1); |
|
13 | + $bin = gmp_strval(gmp_init($hex, 16), 2); |
|
14 | 14 | //if (strlen($hex) == 28 && $this->parityCheck($hex,$bin)) { |
15 | 15 | if (strlen($hex) == 28) { |
16 | - $df = intval(substr($bin,0,5),2); |
|
16 | + $df = intval(substr($bin, 0, 5), 2); |
|
17 | 17 | //$ca = intval(substr($bin,5,3),2); |
18 | 18 | // Only support DF17 for now |
19 | 19 | //if ($df == 17 || ($df == 18 && ($ca == 0 || $ca == 1 || $ca == 6))) { |
20 | - if (($df == 17 || $df == 18) && ($this->parityCheck($hex,$bin) || $typehex == '@')) { |
|
21 | - $icao = substr($hex,2,6); |
|
20 | + if (($df == 17 || $df == 18) && ($this->parityCheck($hex, $bin) || $typehex == '@')) { |
|
21 | + $icao = substr($hex, 2, 6); |
|
22 | 22 | $data['hex'] = $icao; |
23 | - $tc = intval(substr($bin,32,5),2); |
|
23 | + $tc = intval(substr($bin, 32, 5), 2); |
|
24 | 24 | if ($tc >= 1 && $tc <= 4) { |
25 | 25 | //callsign |
26 | - $csbin = substr($bin,40,56); |
|
26 | + $csbin = substr($bin, 40, 56); |
|
27 | 27 | $charset = str_split('#ABCDEFGHIJKLMNOPQRSTUVWXYZ#####_###############0123456789######'); |
28 | 28 | $cs = ''; |
29 | - $cs .= $charset[intval(substr($csbin,0,6),2)]; |
|
30 | - $cs .= $charset[intval(substr($csbin,6,6),2)]; |
|
31 | - $cs .= $charset[intval(substr($csbin,12,6),2)]; |
|
32 | - $cs .= $charset[intval(substr($csbin,18,6),2)]; |
|
33 | - $cs .= $charset[intval(substr($csbin,24,6),2)]; |
|
34 | - $cs .= $charset[intval(substr($csbin,30,6),2)]; |
|
35 | - $cs .= $charset[intval(substr($csbin,36,6),2)]; |
|
36 | - $cs .= $charset[intval(substr($csbin,42,6),2)]; |
|
37 | - $cs = str_replace('_','',$cs); |
|
38 | - $cs = str_replace('#','',$cs); |
|
29 | + $cs .= $charset[intval(substr($csbin, 0, 6), 2)]; |
|
30 | + $cs .= $charset[intval(substr($csbin, 6, 6), 2)]; |
|
31 | + $cs .= $charset[intval(substr($csbin, 12, 6), 2)]; |
|
32 | + $cs .= $charset[intval(substr($csbin, 18, 6), 2)]; |
|
33 | + $cs .= $charset[intval(substr($csbin, 24, 6), 2)]; |
|
34 | + $cs .= $charset[intval(substr($csbin, 30, 6), 2)]; |
|
35 | + $cs .= $charset[intval(substr($csbin, 36, 6), 2)]; |
|
36 | + $cs .= $charset[intval(substr($csbin, 42, 6), 2)]; |
|
37 | + $cs = str_replace('_', '', $cs); |
|
38 | + $cs = str_replace('#', '', $cs); |
|
39 | 39 | $callsign = $cs; |
40 | 40 | $data['ident'] = $callsign; |
41 | 41 | } elseif ($tc >= 9 && $tc <= 18) { |
42 | 42 | // Check Q-bit |
43 | - $q = substr($bin,47,1); |
|
43 | + $q = substr($bin, 47, 1); |
|
44 | 44 | if ($q) { |
45 | - $n = intval(substr($bin,40,7).substr($bin,48,4),2); |
|
46 | - $alt = $n*25-1000; |
|
45 | + $n = intval(substr($bin, 40, 7).substr($bin, 48, 4), 2); |
|
46 | + $alt = $n*25 - 1000; |
|
47 | 47 | $data['altitude'] = $alt; |
48 | 48 | } |
49 | 49 | // Check odd/even flag |
50 | - $oe = substr($bin,53,1); |
|
50 | + $oe = substr($bin, 53, 1); |
|
51 | 51 | //if ($oe) => odd else even |
52 | 52 | // 131072 is 2^17 since CPR latitude and longitude are encoded in 17 bits. |
53 | - $cprlat = intval(substr($bin,54,17),2)/131072.0; |
|
54 | - $cprlon = intval(substr($bin,71,17),2)/131072.0; |
|
55 | - if ($oe == 0) $this::$latlon[$icao] = array('latitude' => $cprlat,'longitude' => $cprlon,'created' => time()); |
|
53 | + $cprlat = intval(substr($bin, 54, 17), 2)/131072.0; |
|
54 | + $cprlon = intval(substr($bin, 71, 17), 2)/131072.0; |
|
55 | + if ($oe == 0) $this::$latlon[$icao] = array('latitude' => $cprlat, 'longitude' => $cprlon, 'created' => time()); |
|
56 | 56 | elseif (isset($this::$latlon[$icao]) && (time() - $this::$latlon[$icao]['created']) < 10) { |
57 | 57 | $cprlat_odd = $cprlat; |
58 | 58 | $cprlon_odd = $cprlon; |
59 | 59 | $cprlat_even = $this::$latlon[$icao]['latitude']; |
60 | 60 | $cprlon_even = $this::$latlon[$icao]['longitude']; |
61 | 61 | |
62 | - $j = 59*$cprlat_even-60*$cprlat_odd+0.5; |
|
63 | - $lat_even = (360.0/60)*($j%60+$cprlat_even); |
|
64 | - $lat_odd = (360.0/59)*($j%59+$cprlat_odd); |
|
62 | + $j = 59*$cprlat_even - 60*$cprlat_odd + 0.5; |
|
63 | + $lat_even = (360.0/60)*($j%60 + $cprlat_even); |
|
64 | + $lat_odd = (360.0/59)*($j%59 + $cprlat_odd); |
|
65 | 65 | if ($lat_even >= 270) $lat_even = $lat_even - 360; |
66 | 66 | if ($lat_odd >= 270) $lat_odd = $lat_odd - 360; |
67 | 67 | // check latitude zone |
68 | 68 | if ($this->cprNL($lat_even) == $this->cprNL($lat_odd)) { |
69 | 69 | if ($this::$latlon[$icao]['created'] > time()) { |
70 | - $ni = $this->cprN($lat_even,0); |
|
71 | - $m = floor($cprlon_even*($this->cprNL($lat_even)-1) - $cprlon_odd * $this->cprNL($lat_even)+0.5); |
|
72 | - $lon = (360.0/$ni)*($m%$ni+$cprlon_even); |
|
70 | + $ni = $this->cprN($lat_even, 0); |
|
71 | + $m = floor($cprlon_even*($this->cprNL($lat_even) - 1) - $cprlon_odd*$this->cprNL($lat_even) + 0.5); |
|
72 | + $lon = (360.0/$ni)*($m%$ni + $cprlon_even); |
|
73 | 73 | $lat = $lat_even; |
74 | - if ($lon > 180) $lon = $lon -360; |
|
74 | + if ($lon > 180) $lon = $lon - 360; |
|
75 | 75 | if ($lat > -91 && $lat < 91 && $lon > -181 && $lon < 181) { |
76 | 76 | //if ($globalDebug) echo 'cs : '.$cs.' - hex : '.$hex.' - lat : '.$lat.' - lon : '.$lon; |
77 | 77 | $data['latitude'] = $lat; |
78 | 78 | $data['longitude'] = $lon; |
79 | 79 | } |
80 | 80 | } else { |
81 | - $ni = $this->cprN($lat_odd,1); |
|
82 | - $m = floor($cprlon_even*($this->cprNL($lat_odd)-1) - $cprlon_odd * $this->cprNL($lat_odd)+0.5); |
|
83 | - $lon = (360.0/$ni)*($m%$ni+$cprlon_odd); |
|
81 | + $ni = $this->cprN($lat_odd, 1); |
|
82 | + $m = floor($cprlon_even*($this->cprNL($lat_odd) - 1) - $cprlon_odd*$this->cprNL($lat_odd) + 0.5); |
|
83 | + $lon = (360.0/$ni)*($m%$ni + $cprlon_odd); |
|
84 | 84 | $lat = $lat_odd; |
85 | - if ($lon > 180) $lon = $lon -360; |
|
85 | + if ($lon > 180) $lon = $lon - 360; |
|
86 | 86 | if ($lat > -91 && $lat < 91 && $lon > -181 && $lon < 181) { |
87 | 87 | //if ($globalDebug) echo 'icao : '.$icao.' - hex : '.$hex.' - lat : '.$lat.' - lon : '.$lon.' second'."\n"; |
88 | 88 | $data['latitude'] = $lat; |
@@ -94,15 +94,15 @@ discard block |
||
94 | 94 | } |
95 | 95 | } elseif ($tc == 19) { |
96 | 96 | // speed & heading |
97 | - $v_ew_dir = intval(substr($bin,45,1)); |
|
98 | - $v_ew = intval(substr($bin,46,10),2); |
|
99 | - $v_ns_dir = intval(substr($bin,56,1)); |
|
100 | - $v_ns = intval(substr($bin,57,10),2); |
|
97 | + $v_ew_dir = intval(substr($bin, 45, 1)); |
|
98 | + $v_ew = intval(substr($bin, 46, 10), 2); |
|
99 | + $v_ns_dir = intval(substr($bin, 56, 1)); |
|
100 | + $v_ns = intval(substr($bin, 57, 10), 2); |
|
101 | 101 | if ($v_ew_dir) $v_ew = -1*$v_ew; |
102 | 102 | if ($v_ns_dir) $v_ns = -1*$v_ns; |
103 | - $speed = sqrt($v_ns*$v_ns+$v_ew*$v_ew); |
|
104 | - $heading = atan2($v_ew,$v_ns)*360.0/(2*pi()); |
|
105 | - if ($heading <0) $heading = $heading+360; |
|
103 | + $speed = sqrt($v_ns*$v_ns + $v_ew*$v_ew); |
|
104 | + $heading = atan2($v_ew, $v_ns)*360.0/(2*pi()); |
|
105 | + if ($heading < 0) $heading = $heading + 360; |
|
106 | 106 | $data['speed'] = $speed; |
107 | 107 | $data['heading'] = $heading; |
108 | 108 | } |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | |
118 | 118 | public function cprNL($lat) { |
119 | 119 | //Lookup table to convert the latitude to index. |
120 | - if ($lat < 0) $lat = -$lat; // Table is simmetric about the equator. |
|
120 | + if ($lat < 0) $lat = -$lat; // Table is simmetric about the equator. |
|
121 | 121 | if ($lat < 10.47047130) return 59; |
122 | 122 | if ($lat < 14.82817437) return 58; |
123 | 123 | if ($lat < 18.18626357) return 57; |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | return 1; |
180 | 180 | } |
181 | 181 | |
182 | - public function cprN($lat,$isodd) { |
|
182 | + public function cprN($lat, $isodd) { |
|
183 | 183 | $nl = $this->cprNL($lat) - $isodd; |
184 | 184 | if ($nl > 1) return $nl; |
185 | 185 | else return 1; |
@@ -205,10 +205,10 @@ discard block |
||
205 | 205 | ); |
206 | 206 | |
207 | 207 | $crc = 0; |
208 | - $checksum = intval(substr($msg,22,6),16); |
|
208 | + $checksum = intval(substr($msg, 22, 6), 16); |
|
209 | 209 | |
210 | 210 | for ($j = 0; $j < strlen($bin); $j++) { |
211 | - if ($bin[$j]) $crc = $crc^intval($modes_checksum_table[$j],0); |
|
211 | + if ($bin[$j]) $crc = $crc^intval($modes_checksum_table[$j], 0); |
|
212 | 212 | } |
213 | 213 | if ($crc == $checksum) return true; |
214 | 214 | else { |
@@ -227,10 +227,10 @@ discard block |
||
227 | 227 | $msg['aircraftid'] = hexdec($data['address']); |
228 | 228 | $msg['hex'] = $data['address']; |
229 | 229 | $msg['flightid'] = hexdec($data['address']); |
230 | - $msg['date_gen'] = date('Y/m/d',$data['timestamp']); |
|
231 | - $msg['time_gen'] = date('H:i:s',$data['timestamp']).'.180'; |
|
232 | - $msg['date_log'] = date('Y/m/d',$data['timestamp']); |
|
233 | - $msg['time_log'] = date('H:i:s',$data['timestamp']).'.180'; |
|
230 | + $msg['date_gen'] = date('Y/m/d', $data['timestamp']); |
|
231 | + $msg['time_gen'] = date('H:i:s', $data['timestamp']).'.180'; |
|
232 | + $msg['date_log'] = date('Y/m/d', $data['timestamp']); |
|
233 | + $msg['time_log'] = date('H:i:s', $data['timestamp']).'.180'; |
|
234 | 234 | $msg['callsign'] = $data['ident']; |
235 | 235 | $msg['altitude'] = ''; |
236 | 236 | $msg['speed'] = ''; |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | $msg['emergency'] = ''; |
244 | 244 | $msg['SPI'] = ''; |
245 | 245 | $msg['ground'] = ''; |
246 | - $result[] = implode(',',$msg); |
|
246 | + $result[] = implode(',', $msg); |
|
247 | 247 | } |
248 | 248 | if (isset($data['latitude']) && $data['latitude'] != 0) { |
249 | 249 | $msg = array(); |
@@ -253,10 +253,10 @@ discard block |
||
253 | 253 | $msg['aircraftid'] = hexdec($data['address']); |
254 | 254 | $msg['hex'] = $data['address']; |
255 | 255 | $msg['flightid'] = hexdec($data['address']); |
256 | - $msg['date_gen'] = date('Y/m/d',$data['timestamp']); |
|
257 | - $msg['time_gen'] = date('H:i:s',$data['timestamp']).'.180'; |
|
258 | - $msg['date_log'] = date('Y/m/d',$data['timestamp']); |
|
259 | - $msg['time_log'] = date('H:i:s',$data['timestamp']).'.180'; |
|
256 | + $msg['date_gen'] = date('Y/m/d', $data['timestamp']); |
|
257 | + $msg['time_gen'] = date('H:i:s', $data['timestamp']).'.180'; |
|
258 | + $msg['date_log'] = date('Y/m/d', $data['timestamp']); |
|
259 | + $msg['time_log'] = date('H:i:s', $data['timestamp']).'.180'; |
|
260 | 260 | $msg['callsign'] = ''; |
261 | 261 | if (isset($data['altitude'])) $msg['altitude'] = $data['altitude']; |
262 | 262 | else $msg['altitude'] = ''; |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | $msg['SPI'] = 0; |
275 | 275 | if (isset($data['ground'])) $msg['ground'] = 1; |
276 | 276 | else $msg['ground'] = 0; |
277 | - $result[] = implode(',',$msg); |
|
277 | + $result[] = implode(',', $msg); |
|
278 | 278 | } |
279 | 279 | return $result; |
280 | 280 | } |
@@ -13,33 +13,33 @@ discard block |
||
13 | 13 | * @param Array $filter the filter |
14 | 14 | * @return Array the SQL part |
15 | 15 | */ |
16 | - public function getFilter($filter = array(),$where = false,$and = false) { |
|
16 | + public function getFilter($filter = array(), $where = false, $and = false) { |
|
17 | 17 | global $globalFilter, $globalStatsFilters, $globalFilterName, $globalDBdriver; |
18 | 18 | $filters = array(); |
19 | 19 | if (is_array($globalStatsFilters) && isset($globalStatsFilters[$globalFilterName])) { |
20 | 20 | if (isset($globalStatsFilters[$globalFilterName][0]['source'])) { |
21 | 21 | $filters = $globalStatsFilters[$globalFilterName]; |
22 | 22 | } else { |
23 | - $filter = array_merge($filter,$globalStatsFilters[$globalFilterName]); |
|
23 | + $filter = array_merge($filter, $globalStatsFilters[$globalFilterName]); |
|
24 | 24 | } |
25 | 25 | } |
26 | 26 | if (isset($filter[0]['source'])) { |
27 | - $filters = array_merge($filters,$filter); |
|
27 | + $filters = array_merge($filters, $filter); |
|
28 | 28 | } |
29 | - if (is_array($globalFilter)) $filter = array_merge($filter,$globalFilter); |
|
29 | + if (is_array($globalFilter)) $filter = array_merge($filter, $globalFilter); |
|
30 | 30 | $filter_query_join = ''; |
31 | 31 | $filter_query_where = ''; |
32 | - foreach($filters as $flt) { |
|
32 | + foreach ($filters as $flt) { |
|
33 | 33 | if (isset($flt['idents']) && !empty($flt['idents'])) { |
34 | 34 | if (isset($flt['source'])) { |
35 | - $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.ident IN ('".implode("','",$flt['idents'])."') AND tracker_archive_output.format_source IN ('".implode("','",$flt['source'])."')) spid ON spid.famtrackid = tracker_archive.famtrackid"; |
|
35 | + $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.ident IN ('".implode("','", $flt['idents'])."') AND tracker_archive_output.format_source IN ('".implode("','", $flt['source'])."')) spid ON spid.famtrackid = tracker_archive.famtrackid"; |
|
36 | 36 | } else { |
37 | - $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.ident IN ('".implode("','",$flt['idents'])."')) spid ON spid.famtrackid = tracker_archive.famtrackid"; |
|
37 | + $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.ident IN ('".implode("','", $flt['idents'])."')) spid ON spid.famtrackid = tracker_archive.famtrackid"; |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | } |
41 | 41 | if (isset($filter['source']) && !empty($filter['source'])) { |
42 | - $filter_query_where .= " AND format_source IN ('".implode("','",$filter['source'])."')"; |
|
42 | + $filter_query_where .= " AND format_source IN ('".implode("','", $filter['source'])."')"; |
|
43 | 43 | } |
44 | 44 | if (isset($filter['ident']) && !empty($filter['ident'])) { |
45 | 45 | $filter_query_where .= " AND ident = '".$filter['ident']."'"; |
@@ -67,38 +67,38 @@ discard block |
||
67 | 67 | $filter_query_date .= " AND EXTRACT(DAY FROM tracker_archive_output.date) = '".$filter['day']."'"; |
68 | 68 | } |
69 | 69 | } |
70 | - $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output".preg_replace('/^ AND/',' WHERE',$filter_query_date).") sd ON sd.famtrackid = tracker_archive.famtrackid"; |
|
70 | + $filter_query_join .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output".preg_replace('/^ AND/', ' WHERE', $filter_query_date).") sd ON sd.famtrackid = tracker_archive.famtrackid"; |
|
71 | 71 | } |
72 | 72 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
73 | - $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
73 | + $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
74 | 74 | } |
75 | 75 | if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE'; |
76 | 76 | elseif ($filter_query_where != '' && $and) $filter_query_where .= ' AND'; |
77 | 77 | if ($filter_query_where != '') { |
78 | - $filter_query_where = preg_replace('/^ AND/',' WHERE',$filter_query_where); |
|
78 | + $filter_query_where = preg_replace('/^ AND/', ' WHERE', $filter_query_where); |
|
79 | 79 | } |
80 | 80 | $filter_query = $filter_query_join.$filter_query_where; |
81 | 81 | return $filter_query; |
82 | 82 | } |
83 | 83 | |
84 | 84 | // tracker_archive |
85 | - public function addTrackerArchiveData($famtrackid = '', $ident = '', $latitude = '', $longitude = '', $altitude = '', $heading = '', $groundspeed = '', $date = '', $putinarchive = false, $comment = '', $type = '',$noarchive = false,$format_source = '', $source_name = '', $over_country = '') { |
|
85 | + public function addTrackerArchiveData($famtrackid = '', $ident = '', $latitude = '', $longitude = '', $altitude = '', $heading = '', $groundspeed = '', $date = '', $putinarchive = false, $comment = '', $type = '', $noarchive = false, $format_source = '', $source_name = '', $over_country = '') { |
|
86 | 86 | require_once(dirname(__FILE__).'/class.Tracker.php'); |
87 | 87 | if ($over_country == '') { |
88 | 88 | $Tracker = new Tracker($this->db); |
89 | - $data_country = $Tracker->getCountryFromLatitudeLongitude($latitude,$longitude); |
|
89 | + $data_country = $Tracker->getCountryFromLatitudeLongitude($latitude, $longitude); |
|
90 | 90 | if (!empty($data_country)) $country = $data_country['iso2']; |
91 | 91 | else $country = ''; |
92 | 92 | } else $country = $over_country; |
93 | 93 | // Route is not added in tracker_archive |
94 | - $query = 'INSERT INTO tracker_archive (famtrackid, ident, latitude, longitude, altitude, heading, ground_speed, date, format_source, source_name, over_country, comment, type) |
|
94 | + $query = 'INSERT INTO tracker_archive (famtrackid, ident, latitude, longitude, altitude, heading, ground_speed, date, format_source, source_name, over_country, comment, type) |
|
95 | 95 | VALUES (:famtrackid,:ident,:latitude,:longitude,:altitude,:heading,:groundspeed,:date,:format_source, :source_name, :over_country,:comment,:type)'; |
96 | - $query_values = array(':famtrackid' => $famtrackid,':ident' => $ident,':latitude' => $latitude,':longitude' => $longitude,':altitude' => $altitude,':heading' => $heading,':groundspeed' => $groundspeed,':date' => $date, ':format_source' => $format_source, ':source_name' => $source_name, ':over_country' => $over_country,':comment' => $comment,':type' => $type); |
|
96 | + $query_values = array(':famtrackid' => $famtrackid, ':ident' => $ident, ':latitude' => $latitude, ':longitude' => $longitude, ':altitude' => $altitude, ':heading' => $heading, ':groundspeed' => $groundspeed, ':date' => $date, ':format_source' => $format_source, ':source_name' => $source_name, ':over_country' => $over_country, ':comment' => $comment, ':type' => $type); |
|
97 | 97 | try { |
98 | 98 | $sth = $this->db->prepare($query); |
99 | 99 | $sth->execute($query_values); |
100 | 100 | $sth->closeCursor(); |
101 | - } catch(PDOException $e) { |
|
101 | + } catch (PDOException $e) { |
|
102 | 102 | return "error : ".$e->getMessage(); |
103 | 103 | } |
104 | 104 | return "success"; |
@@ -118,9 +118,9 @@ discard block |
||
118 | 118 | |
119 | 119 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
120 | 120 | //$query = "SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.ident = :ident GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate LIMIT 1"; |
121 | - $query = "SELECT tracker_archive.* FROM tracker_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
121 | + $query = "SELECT tracker_archive.* FROM tracker_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
122 | 122 | |
123 | - $spotter_array = $Tracker->getDataFromDB($query,array(':ident' => $ident)); |
|
123 | + $spotter_array = $Tracker->getDataFromDB($query, array(':ident' => $ident)); |
|
124 | 124 | |
125 | 125 | return $spotter_array; |
126 | 126 | } |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
140 | 140 | //$query = TrackerArchive->$global_query." WHERE tracker_archive.famtrackid = :id"; |
141 | 141 | //$query = "SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.famtrackid = :id GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate LIMIT 1"; |
142 | - $query = "SELECT * FROM tracker_archive WHERE famtrackid = :id ORDER BY date DESC LIMIT 1"; |
|
142 | + $query = "SELECT * FROM tracker_archive WHERE famtrackid = :id ORDER BY date DESC LIMIT 1"; |
|
143 | 143 | |
144 | 144 | // $spotter_array = Tracker->getDataFromDB($query,array(':id' => $id)); |
145 | 145 | /* |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | } |
153 | 153 | $spotter_array = $sth->fetchAll(PDO->FETCH_ASSOC); |
154 | 154 | */ |
155 | - $spotter_array = $Tracker->getDataFromDB($query,array(':id' => $id)); |
|
155 | + $spotter_array = $Tracker->getDataFromDB($query, array(':id' => $id)); |
|
156 | 156 | |
157 | 157 | return $spotter_array; |
158 | 158 | } |
@@ -167,14 +167,14 @@ discard block |
||
167 | 167 | { |
168 | 168 | date_default_timezone_set('UTC'); |
169 | 169 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
170 | - $query = $this->global_query." WHERE tracker_archive.famtrackid = :id ORDER BY date"; |
|
170 | + $query = $this->global_query." WHERE tracker_archive.famtrackid = :id ORDER BY date"; |
|
171 | 171 | |
172 | 172 | // $spotter_array = Tracker->getDataFromDB($query,array(':id' => $id)); |
173 | 173 | |
174 | 174 | try { |
175 | 175 | $sth = $this->db->prepare($query); |
176 | 176 | $sth->execute(array(':id' => $id)); |
177 | - } catch(PDOException $e) { |
|
177 | + } catch (PDOException $e) { |
|
178 | 178 | echo $e->getMessage(); |
179 | 179 | die; |
180 | 180 | } |
@@ -193,14 +193,14 @@ discard block |
||
193 | 193 | { |
194 | 194 | date_default_timezone_set('UTC'); |
195 | 195 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
196 | - $query = "SELECT tracker_archive.latitude, tracker_archive.longitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id"; |
|
196 | + $query = "SELECT tracker_archive.latitude, tracker_archive.longitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id"; |
|
197 | 197 | |
198 | 198 | // $spotter_array = Tracker->getDataFromDB($query,array(':id' => $id)); |
199 | 199 | |
200 | 200 | try { |
201 | 201 | $sth = $this->db->prepare($query); |
202 | 202 | $sth->execute(array(':id' => $id)); |
203 | - } catch(PDOException $e) { |
|
203 | + } catch (PDOException $e) { |
|
204 | 204 | echo $e->getMessage(); |
205 | 205 | die; |
206 | 206 | } |
@@ -222,12 +222,12 @@ discard block |
||
222 | 222 | date_default_timezone_set('UTC'); |
223 | 223 | |
224 | 224 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
225 | - $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.ident = :ident AND tracker_archive.latitude <> 0 AND tracker_archive.longitude <> 0 ORDER BY date"; |
|
225 | + $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.ident = :ident AND tracker_archive.latitude <> 0 AND tracker_archive.longitude <> 0 ORDER BY date"; |
|
226 | 226 | |
227 | 227 | try { |
228 | 228 | $sth = $this->db->prepare($query); |
229 | 229 | $sth->execute(array(':ident' => $ident)); |
230 | - } catch(PDOException $e) { |
|
230 | + } catch (PDOException $e) { |
|
231 | 231 | echo $e->getMessage(); |
232 | 232 | die; |
233 | 233 | } |
@@ -248,12 +248,12 @@ discard block |
||
248 | 248 | date_default_timezone_set('UTC'); |
249 | 249 | |
250 | 250 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
251 | - $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id AND tracker_archive.latitude <> 0 AND tracker_archive.longitude <> 0 ORDER BY date"; |
|
251 | + $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id AND tracker_archive.latitude <> 0 AND tracker_archive.longitude <> 0 ORDER BY date"; |
|
252 | 252 | |
253 | 253 | try { |
254 | 254 | $sth = $this->db->prepare($query); |
255 | 255 | $sth->execute(array(':id' => $id)); |
256 | - } catch(PDOException $e) { |
|
256 | + } catch (PDOException $e) { |
|
257 | 257 | echo $e->getMessage(); |
258 | 258 | die; |
259 | 259 | } |
@@ -274,12 +274,12 @@ discard block |
||
274 | 274 | date_default_timezone_set('UTC'); |
275 | 275 | |
276 | 276 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
277 | - $query = "SELECT tracker_archive.altitude, tracker_archive.ground_speed, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id ORDER BY date"; |
|
277 | + $query = "SELECT tracker_archive.altitude, tracker_archive.ground_speed, tracker_archive.date FROM tracker_archive WHERE tracker_archive.famtrackid = :id ORDER BY date"; |
|
278 | 278 | |
279 | 279 | try { |
280 | 280 | $sth = $this->db->prepare($query); |
281 | 281 | $sth->execute(array(':id' => $id)); |
282 | - } catch(PDOException $e) { |
|
282 | + } catch (PDOException $e) { |
|
283 | 283 | echo $e->getMessage(); |
284 | 284 | die; |
285 | 285 | } |
@@ -301,13 +301,13 @@ discard block |
||
301 | 301 | date_default_timezone_set('UTC'); |
302 | 302 | |
303 | 303 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
304 | - $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.ident = :ident GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate LIMIT 1"; |
|
304 | + $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.ident = :ident GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate LIMIT 1"; |
|
305 | 305 | // $query = "SELECT tracker_archive.altitude, tracker_archive.date FROM tracker_archive WHERE tracker_archive.ident = :ident"; |
306 | 306 | |
307 | 307 | try { |
308 | 308 | $sth = $this->db->prepare($query); |
309 | 309 | $sth->execute(array(':ident' => $ident)); |
310 | - } catch(PDOException $e) { |
|
310 | + } catch (PDOException $e) { |
|
311 | 311 | echo $e->getMessage(); |
312 | 312 | die; |
313 | 313 | } |
@@ -324,13 +324,13 @@ discard block |
||
324 | 324 | * @return Array the spotter information |
325 | 325 | * |
326 | 326 | */ |
327 | - public function getTrackerArchiveData($ident,$famtrackid,$date) |
|
327 | + public function getTrackerArchiveData($ident, $famtrackid, $date) |
|
328 | 328 | { |
329 | 329 | $Tracker = new Tracker($this->db); |
330 | 330 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
331 | - $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.famtrackid = :famtrackid AND l.date LIKE :date GROUP BY l.famtrackid) s on spotter_live.famtrackid = s.famtrackid AND spotter_live.date = s.maxdate"; |
|
331 | + $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.famtrackid = :famtrackid AND l.date LIKE :date GROUP BY l.famtrackid) s on spotter_live.famtrackid = s.famtrackid AND spotter_live.date = s.maxdate"; |
|
332 | 332 | |
333 | - $spotter_array = $Tracker->getDataFromDB($query,array(':ident' => $ident,':famtrackid' => $famtrackid,':date' => $date.'%')); |
|
333 | + $spotter_array = $Tracker->getDataFromDB($query, array(':ident' => $ident, ':famtrackid' => $famtrackid, ':date' => $date.'%')); |
|
334 | 334 | |
335 | 335 | return $spotter_array; |
336 | 336 | } |
@@ -343,7 +343,7 @@ discard block |
||
343 | 343 | try { |
344 | 344 | $sth = $this->db->prepare($query); |
345 | 345 | $sth->execute(); |
346 | - } catch(PDOException $e) { |
|
346 | + } catch (PDOException $e) { |
|
347 | 347 | echo $e->getMessage(); |
348 | 348 | die; |
349 | 349 | } |
@@ -355,24 +355,24 @@ discard block |
||
355 | 355 | * @return Array the spotter information |
356 | 356 | * |
357 | 357 | */ |
358 | - public function getMinLiveTrackerData($begindate,$enddate,$filter = array()) |
|
358 | + public function getMinLiveTrackerData($begindate, $enddate, $filter = array()) |
|
359 | 359 | { |
360 | 360 | global $globalDBdriver, $globalLiveInterval; |
361 | 361 | date_default_timezone_set('UTC'); |
362 | 362 | |
363 | 363 | $filter_query = ''; |
364 | 364 | if (isset($filter['source']) && !empty($filter['source'])) { |
365 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
365 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
366 | 366 | } |
367 | 367 | // Use spotter_output also ? |
368 | 368 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
369 | - $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
369 | + $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
370 | 370 | } |
371 | 371 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
372 | 372 | $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.famtrackid = tracker_archive.famtrackid "; |
373 | 373 | } |
374 | 374 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
375 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
375 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
376 | 376 | } |
377 | 377 | |
378 | 378 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -391,14 +391,14 @@ discard block |
||
391 | 391 | GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid |
392 | 392 | AND tracker_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON tracker_archive.aircraft_icao = a.icao'; |
393 | 393 | */ |
394 | - $query = 'SELECT tracker_archive.date,tracker_archive.famtrackid, tracker_archive.ident, tracker_archive.aircraft_icao, tracker_archive.departure_airport_icao as departure_airport, tracker_archive.arrival_airport_icao as arrival_airport, tracker_archive.latitude, tracker_archive.longitude, tracker_archive.altitude, tracker_archive.heading, tracker_archive.ground_speed, tracker_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
394 | + $query = 'SELECT tracker_archive.date,tracker_archive.famtrackid, tracker_archive.ident, tracker_archive.aircraft_icao, tracker_archive.departure_airport_icao as departure_airport, tracker_archive.arrival_airport_icao as arrival_airport, tracker_archive.latitude, tracker_archive.longitude, tracker_archive.altitude, tracker_archive.heading, tracker_archive.ground_speed, tracker_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
395 | 395 | FROM tracker_archive |
396 | 396 | INNER JOIN (SELECT * FROM aircraft) a on tracker_archive.aircraft_icao = a.icao |
397 | 397 | WHERE tracker_archive.date BETWEEN '."'".$begindate."'".' AND '."'".$begindate."'".' |
398 | 398 | '.$filter_query.' ORDER BY famtrackid'; |
399 | 399 | } else { |
400 | 400 | //$query = 'SELECT tracker_archive.ident, tracker_archive.famtrackid, tracker_archive.aircraft_icao, tracker_archive.departure_airport_icao as departure_airport, tracker_archive.arrival_airport_icao as arrival_airport, tracker_archive.latitude, tracker_archive.longitude, tracker_archive.altitude, tracker_archive.heading, tracker_archive.ground_speed, tracker_archive.squawk, a.aircraft_shadow FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$globalLiveInterval.' SECOND) <= l.date GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate '.$filter_query.'INNER JOIN (SELECT * FROM aircraft) a on tracker_archive.aircraft_icao = a.icao'; |
401 | - $query = 'SELECT tracker_archive.date,tracker_archive.famtrackid, tracker_archive.ident, tracker_archive.aircraft_icao, tracker_archive.departure_airport_icao as departure_airport, tracker_archive.arrival_airport_icao as arrival_airport, tracker_archive.latitude, tracker_archive.longitude, tracker_archive.altitude, tracker_archive.heading, tracker_archive.ground_speed, tracker_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
401 | + $query = 'SELECT tracker_archive.date,tracker_archive.famtrackid, tracker_archive.ident, tracker_archive.aircraft_icao, tracker_archive.departure_airport_icao as departure_airport, tracker_archive.arrival_airport_icao as arrival_airport, tracker_archive.latitude, tracker_archive.longitude, tracker_archive.altitude, tracker_archive.heading, tracker_archive.ground_speed, tracker_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
402 | 402 | FROM tracker_archive |
403 | 403 | INNER JOIN (SELECT * FROM aircraft) a on tracker_archive.aircraft_icao = a.icao |
404 | 404 | WHERE tracker_archive.date >= '."'".$begindate."'".' AND tracker_archive.date <= '."'".$enddate."'".' |
@@ -408,7 +408,7 @@ discard block |
||
408 | 408 | try { |
409 | 409 | $sth = $this->db->prepare($query); |
410 | 410 | $sth->execute(); |
411 | - } catch(PDOException $e) { |
|
411 | + } catch (PDOException $e) { |
|
412 | 412 | echo $e->getMessage(); |
413 | 413 | die; |
414 | 414 | } |
@@ -423,24 +423,24 @@ discard block |
||
423 | 423 | * @return Array the spotter information |
424 | 424 | * |
425 | 425 | */ |
426 | - public function getMinLiveTrackerDataPlayback($begindate,$enddate,$filter = array()) |
|
426 | + public function getMinLiveTrackerDataPlayback($begindate, $enddate, $filter = array()) |
|
427 | 427 | { |
428 | 428 | global $globalDBdriver, $globalLiveInterval; |
429 | 429 | date_default_timezone_set('UTC'); |
430 | 430 | |
431 | 431 | $filter_query = ''; |
432 | 432 | if (isset($filter['source']) && !empty($filter['source'])) { |
433 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
433 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
434 | 434 | } |
435 | 435 | // Should use spotter_output also ? |
436 | 436 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
437 | - $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
437 | + $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
438 | 438 | } |
439 | 439 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
440 | 440 | $filter_query .= " INNER JOIN (SELECT famtrackid FROM tracker_archive_output WHERE tracker_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.famtrackid = tracker_archive.famtrackid "; |
441 | 441 | } |
442 | 442 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
443 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
443 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
444 | 444 | } |
445 | 445 | |
446 | 446 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -450,7 +450,7 @@ discard block |
||
450 | 450 | FROM tracker_archive |
451 | 451 | INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE (l.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON tracker_archive.aircraft_icao = a.icao'; |
452 | 452 | */ |
453 | - $query = 'SELECT a.aircraft_shadow, tracker_archive_output.ident, tracker_archive_output.famtrackid, tracker_archive_output.aircraft_icao, tracker_archive_output.departure_airport_icao as departure_airport, tracker_archive_output.arrival_airport_icao as arrival_airport, tracker_archive_output.latitude, tracker_archive_output.longitude, tracker_archive_output.altitude, tracker_archive_output.heading, tracker_archive_output.ground_speed, tracker_archive_output.squawk |
|
453 | + $query = 'SELECT a.aircraft_shadow, tracker_archive_output.ident, tracker_archive_output.famtrackid, tracker_archive_output.aircraft_icao, tracker_archive_output.departure_airport_icao as departure_airport, tracker_archive_output.arrival_airport_icao as arrival_airport, tracker_archive_output.latitude, tracker_archive_output.longitude, tracker_archive_output.altitude, tracker_archive_output.heading, tracker_archive_output.ground_speed, tracker_archive_output.squawk |
|
454 | 454 | FROM tracker_archive_output |
455 | 455 | LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON tracker_archive_output.aircraft_icao = a.icao |
456 | 456 | WHERE (tracker_archive_output.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') |
@@ -465,7 +465,7 @@ discard block |
||
465 | 465 | WHERE tracker_archive_output.date >= '."'".$begindate."'".' AND tracker_archive_output.date <= '."'".$enddate."'".' |
466 | 466 | '.$filter_query.' GROUP BY tracker_archive_output.famtrackid, tracker_archive_output.ident, tracker_archive_output.aircraft_icao, tracker_archive_output.departure_airport_icao, tracker_archive_output.arrival_airport_icao, tracker_archive_output.latitude, tracker_archive_output.longitude, tracker_archive_output.altitude, tracker_archive_output.heading, tracker_archive_output.ground_speed, tracker_archive_output.squawk, a.aircraft_shadow'; |
467 | 467 | */ |
468 | - $query = 'SELECT DISTINCT tracker_archive_output.famtrackid, tracker_archive_output.ident, tracker_archive_output.aircraft_icao, tracker_archive_output.departure_airport_icao as departure_airport, tracker_archive_output.arrival_airport_icao as arrival_airport, tracker_archive_output.latitude, tracker_archive_output.longitude, tracker_archive_output.altitude, tracker_archive_output.heading, tracker_archive_output.ground_speed, tracker_archive_output.squawk, a.aircraft_shadow |
|
468 | + $query = 'SELECT DISTINCT tracker_archive_output.famtrackid, tracker_archive_output.ident, tracker_archive_output.aircraft_icao, tracker_archive_output.departure_airport_icao as departure_airport, tracker_archive_output.arrival_airport_icao as arrival_airport, tracker_archive_output.latitude, tracker_archive_output.longitude, tracker_archive_output.altitude, tracker_archive_output.heading, tracker_archive_output.ground_speed, tracker_archive_output.squawk, a.aircraft_shadow |
|
469 | 469 | FROM tracker_archive_output |
470 | 470 | INNER JOIN (SELECT * FROM aircraft) a on tracker_archive_output.aircraft_icao = a.icao |
471 | 471 | WHERE tracker_archive_output.date >= '."'".$begindate."'".' AND tracker_archive_output.date <= '."'".$enddate."'".' |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | try { |
478 | 478 | $sth = $this->db->prepare($query); |
479 | 479 | $sth->execute(); |
480 | - } catch(PDOException $e) { |
|
480 | + } catch (PDOException $e) { |
|
481 | 481 | echo $e->getMessage(); |
482 | 482 | die; |
483 | 483 | } |
@@ -492,23 +492,23 @@ discard block |
||
492 | 492 | * @return Array the spotter information |
493 | 493 | * |
494 | 494 | */ |
495 | - public function getLiveTrackerCount($begindate,$enddate,$filter = array()) |
|
495 | + public function getLiveTrackerCount($begindate, $enddate, $filter = array()) |
|
496 | 496 | { |
497 | 497 | global $globalDBdriver, $globalLiveInterval; |
498 | 498 | date_default_timezone_set('UTC'); |
499 | 499 | |
500 | 500 | $filter_query = ''; |
501 | 501 | if (isset($filter['source']) && !empty($filter['source'])) { |
502 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
502 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
503 | 503 | } |
504 | 504 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
505 | - $filter_query .= " INNER JOIN (SELECT famtrackid FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
505 | + $filter_query .= " INNER JOIN (SELECT famtrackid FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.famtrackid = tracker_archive.famtrackid "; |
|
506 | 506 | } |
507 | 507 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
508 | 508 | $filter_query .= " INNER JOIN (SELECT famtrackid FROM spotter_output WHERE spotter_output.airline_type = '".$filter['airlinestype']."') sa ON sa.famtrackid = tracker_archive.famtrackid "; |
509 | 509 | } |
510 | 510 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
511 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
511 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
512 | 512 | } |
513 | 513 | |
514 | 514 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -523,7 +523,7 @@ discard block |
||
523 | 523 | try { |
524 | 524 | $sth = $this->db->prepare($query); |
525 | 525 | $sth->execute(); |
526 | - } catch(PDOException $e) { |
|
526 | + } catch (PDOException $e) { |
|
527 | 527 | echo $e->getMessage(); |
528 | 528 | die; |
529 | 529 | } |
@@ -543,7 +543,7 @@ discard block |
||
543 | 543 | * @return Array the spotter information |
544 | 544 | * |
545 | 545 | */ |
546 | - public function searchTrackerData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '',$pilot_id = '',$pilot_name = '',$altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '',$origLat = '',$origLon = '',$dist = '', $filters=array()) |
|
546 | + public function searchTrackerData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '', $pilot_id = '', $pilot_name = '', $altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '', $origLat = '', $origLon = '', $dist = '', $filters = array()) |
|
547 | 547 | { |
548 | 548 | global $globalTimezone, $globalDBdriver; |
549 | 549 | require_once(dirname(__FILE__).'/class.Translation.php'); |
@@ -565,7 +565,7 @@ discard block |
||
565 | 565 | |
566 | 566 | $q_array = explode(" ", $q); |
567 | 567 | |
568 | - foreach ($q_array as $q_item){ |
|
568 | + foreach ($q_array as $q_item) { |
|
569 | 569 | $additional_query .= " AND ("; |
570 | 570 | $additional_query .= "(tracker_archive_output.spotter_id like '%".$q_item."%') OR "; |
571 | 571 | $additional_query .= "(tracker_archive_output.aircraft_icao like '%".$q_item."%') OR "; |
@@ -597,7 +597,7 @@ discard block |
||
597 | 597 | |
598 | 598 | if ($registration != "") |
599 | 599 | { |
600 | - $registration = filter_var($registration,FILTER_SANITIZE_STRING); |
|
600 | + $registration = filter_var($registration, FILTER_SANITIZE_STRING); |
|
601 | 601 | if (!is_string($registration)) |
602 | 602 | { |
603 | 603 | return false; |
@@ -608,7 +608,7 @@ discard block |
||
608 | 608 | |
609 | 609 | if ($aircraft_icao != "") |
610 | 610 | { |
611 | - $aircraft_icao = filter_var($aircraft_icao,FILTER_SANITIZE_STRING); |
|
611 | + $aircraft_icao = filter_var($aircraft_icao, FILTER_SANITIZE_STRING); |
|
612 | 612 | if (!is_string($aircraft_icao)) |
613 | 613 | { |
614 | 614 | return false; |
@@ -619,7 +619,7 @@ discard block |
||
619 | 619 | |
620 | 620 | if ($aircraft_manufacturer != "") |
621 | 621 | { |
622 | - $aircraft_manufacturer = filter_var($aircraft_manufacturer,FILTER_SANITIZE_STRING); |
|
622 | + $aircraft_manufacturer = filter_var($aircraft_manufacturer, FILTER_SANITIZE_STRING); |
|
623 | 623 | if (!is_string($aircraft_manufacturer)) |
624 | 624 | { |
625 | 625 | return false; |
@@ -640,7 +640,7 @@ discard block |
||
640 | 640 | |
641 | 641 | if ($airline_icao != "") |
642 | 642 | { |
643 | - $airline_icao = filter_var($airline_icao,FILTER_SANITIZE_STRING); |
|
643 | + $airline_icao = filter_var($airline_icao, FILTER_SANITIZE_STRING); |
|
644 | 644 | if (!is_string($airline_icao)) |
645 | 645 | { |
646 | 646 | return false; |
@@ -651,7 +651,7 @@ discard block |
||
651 | 651 | |
652 | 652 | if ($airline_country != "") |
653 | 653 | { |
654 | - $airline_country = filter_var($airline_country,FILTER_SANITIZE_STRING); |
|
654 | + $airline_country = filter_var($airline_country, FILTER_SANITIZE_STRING); |
|
655 | 655 | if (!is_string($airline_country)) |
656 | 656 | { |
657 | 657 | return false; |
@@ -662,7 +662,7 @@ discard block |
||
662 | 662 | |
663 | 663 | if ($airline_type != "") |
664 | 664 | { |
665 | - $airline_type = filter_var($airline_type,FILTER_SANITIZE_STRING); |
|
665 | + $airline_type = filter_var($airline_type, FILTER_SANITIZE_STRING); |
|
666 | 666 | if (!is_string($airline_type)) |
667 | 667 | { |
668 | 668 | return false; |
@@ -684,7 +684,7 @@ discard block |
||
684 | 684 | |
685 | 685 | if ($airport != "") |
686 | 686 | { |
687 | - $airport = filter_var($airport,FILTER_SANITIZE_STRING); |
|
687 | + $airport = filter_var($airport, FILTER_SANITIZE_STRING); |
|
688 | 688 | if (!is_string($airport)) |
689 | 689 | { |
690 | 690 | return false; |
@@ -695,7 +695,7 @@ discard block |
||
695 | 695 | |
696 | 696 | if ($airport_country != "") |
697 | 697 | { |
698 | - $airport_country = filter_var($airport_country,FILTER_SANITIZE_STRING); |
|
698 | + $airport_country = filter_var($airport_country, FILTER_SANITIZE_STRING); |
|
699 | 699 | if (!is_string($airport_country)) |
700 | 700 | { |
701 | 701 | return false; |
@@ -706,7 +706,7 @@ discard block |
||
706 | 706 | |
707 | 707 | if ($callsign != "") |
708 | 708 | { |
709 | - $callsign = filter_var($callsign,FILTER_SANITIZE_STRING); |
|
709 | + $callsign = filter_var($callsign, FILTER_SANITIZE_STRING); |
|
710 | 710 | if (!is_string($callsign)) |
711 | 711 | { |
712 | 712 | return false; |
@@ -714,7 +714,7 @@ discard block |
||
714 | 714 | $translate = $Translation->ident2icao($callsign); |
715 | 715 | if ($translate != $callsign) { |
716 | 716 | $additional_query .= " AND (tracker_archive_output.ident = :callsign OR tracker_archive_output.ident = :translate)"; |
717 | - $query_values = array_merge($query_values,array(':callsign' => $callsign,':translate' => $translate)); |
|
717 | + $query_values = array_merge($query_values, array(':callsign' => $callsign, ':translate' => $translate)); |
|
718 | 718 | } else { |
719 | 719 | $additional_query .= " AND (tracker_archive_output.ident = '".$callsign."')"; |
720 | 720 | } |
@@ -723,7 +723,7 @@ discard block |
||
723 | 723 | |
724 | 724 | if ($owner != "") |
725 | 725 | { |
726 | - $owner = filter_var($owner,FILTER_SANITIZE_STRING); |
|
726 | + $owner = filter_var($owner, FILTER_SANITIZE_STRING); |
|
727 | 727 | if (!is_string($owner)) |
728 | 728 | { |
729 | 729 | return false; |
@@ -734,7 +734,7 @@ discard block |
||
734 | 734 | |
735 | 735 | if ($pilot_name != "") |
736 | 736 | { |
737 | - $pilot_name = filter_var($pilot_name,FILTER_SANITIZE_STRING); |
|
737 | + $pilot_name = filter_var($pilot_name, FILTER_SANITIZE_STRING); |
|
738 | 738 | if (!is_string($pilot_name)) |
739 | 739 | { |
740 | 740 | return false; |
@@ -745,7 +745,7 @@ discard block |
||
745 | 745 | |
746 | 746 | if ($pilot_id != "") |
747 | 747 | { |
748 | - $pilot_id = filter_var($pilot_id,FILTER_SANITIZE_NUMBER_INT); |
|
748 | + $pilot_id = filter_var($pilot_id, FILTER_SANITIZE_NUMBER_INT); |
|
749 | 749 | if (!is_string($pilot_id)) |
750 | 750 | { |
751 | 751 | return false; |
@@ -756,7 +756,7 @@ discard block |
||
756 | 756 | |
757 | 757 | if ($departure_airport_route != "") |
758 | 758 | { |
759 | - $departure_airport_route = filter_var($departure_airport_route,FILTER_SANITIZE_STRING); |
|
759 | + $departure_airport_route = filter_var($departure_airport_route, FILTER_SANITIZE_STRING); |
|
760 | 760 | if (!is_string($departure_airport_route)) |
761 | 761 | { |
762 | 762 | return false; |
@@ -767,7 +767,7 @@ discard block |
||
767 | 767 | |
768 | 768 | if ($arrival_airport_route != "") |
769 | 769 | { |
770 | - $arrival_airport_route = filter_var($arrival_airport_route,FILTER_SANITIZE_STRING); |
|
770 | + $arrival_airport_route = filter_var($arrival_airport_route, FILTER_SANITIZE_STRING); |
|
771 | 771 | if (!is_string($arrival_airport_route)) |
772 | 772 | { |
773 | 773 | return false; |
@@ -780,8 +780,8 @@ discard block |
||
780 | 780 | { |
781 | 781 | $altitude_array = explode(",", $altitude); |
782 | 782 | |
783 | - $altitude_array[0] = filter_var($altitude_array[0],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
784 | - $altitude_array[1] = filter_var($altitude_array[1],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
783 | + $altitude_array[0] = filter_var($altitude_array[0], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
784 | + $altitude_array[1] = filter_var($altitude_array[1], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
785 | 785 | |
786 | 786 | |
787 | 787 | if ($altitude_array[1] != "") |
@@ -799,8 +799,8 @@ discard block |
||
799 | 799 | { |
800 | 800 | $date_array = explode(",", $date_posted); |
801 | 801 | |
802 | - $date_array[0] = filter_var($date_array[0],FILTER_SANITIZE_STRING); |
|
803 | - $date_array[1] = filter_var($date_array[1],FILTER_SANITIZE_STRING); |
|
802 | + $date_array[0] = filter_var($date_array[0], FILTER_SANITIZE_STRING); |
|
803 | + $date_array[1] = filter_var($date_array[1], FILTER_SANITIZE_STRING); |
|
804 | 804 | |
805 | 805 | if ($globalTimezone != '') { |
806 | 806 | date_default_timezone_set($globalTimezone); |
@@ -832,8 +832,8 @@ discard block |
||
832 | 832 | { |
833 | 833 | $limit_array = explode(",", $limit); |
834 | 834 | |
835 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
836 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
835 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
836 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
837 | 837 | |
838 | 838 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
839 | 839 | { |
@@ -844,8 +844,8 @@ discard block |
||
844 | 844 | |
845 | 845 | |
846 | 846 | if ($origLat != "" && $origLon != "" && $dist != "") { |
847 | - $dist = number_format($dist*0.621371,2,'.',''); |
|
848 | - $query="SELECT tracker_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(tracker_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(tracker_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(tracker_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
847 | + $dist = number_format($dist*0.621371, 2, '.', ''); |
|
848 | + $query = "SELECT tracker_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(tracker_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(tracker_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(tracker_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
849 | 849 | FROM tracker_archive_output, tracker_archive WHERE spotter_output_archive.famtrackid = tracker_archive.famtrackid AND spotter_output.ident <> '' ".$additional_query."AND CAST(tracker_archive.longitude as double precision) between ($origLon-$dist/ABS(cos(radians($origLat))*69)) and ($origLon+$dist/ABS(cos(radians($origLat))*69)) and CAST(tracker_archive.latitude as double precision) between ($origLat-($dist/69)) and ($origLat+($dist/69)) |
850 | 850 | AND (3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(tracker_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(tracker_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(tracker_archive.longitude as double precision))*pi()/180/2),2)))) < $dist".$filter_query." ORDER BY distance"; |
851 | 851 | } else { |
@@ -862,12 +862,12 @@ discard block |
||
862 | 862 | $additional_query .= " AND (tracker_archive_output.waypoints <> '')"; |
863 | 863 | } |
864 | 864 | |
865 | - $query = "SELECT tracker_archive_output.* FROM tracker_archive_output |
|
865 | + $query = "SELECT tracker_archive_output.* FROM tracker_archive_output |
|
866 | 866 | WHERE tracker_archive_output.ident <> '' |
867 | 867 | ".$additional_query." |
868 | 868 | ".$filter_query.$orderby_query; |
869 | 869 | } |
870 | - $spotter_array = $Tracker->getDataFromDB($query, $query_values,$limit_query); |
|
870 | + $spotter_array = $Tracker->getDataFromDB($query, $query_values, $limit_query); |
|
871 | 871 | |
872 | 872 | return $spotter_array; |
873 | 873 | } |
@@ -884,7 +884,7 @@ discard block |
||
884 | 884 | try { |
885 | 885 | $sth = $this->db->prepare($query); |
886 | 886 | $sth->execute(); |
887 | - } catch(PDOException $e) { |
|
887 | + } catch (PDOException $e) { |
|
888 | 888 | return "error"; |
889 | 889 | } |
890 | 890 | } |
@@ -921,8 +921,8 @@ discard block |
||
921 | 921 | { |
922 | 922 | $limit_array = explode(",", $limit); |
923 | 923 | |
924 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
925 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
924 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
925 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
926 | 926 | |
927 | 927 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
928 | 928 | { |
@@ -963,7 +963,7 @@ discard block |
||
963 | 963 | $query_values = array(); |
964 | 964 | $limit_query = ''; |
965 | 965 | $additional_query = ''; |
966 | - $filter_query = $this->getFilter($filter,true,true); |
|
966 | + $filter_query = $this->getFilter($filter, true, true); |
|
967 | 967 | |
968 | 968 | if ($owner != "") |
969 | 969 | { |
@@ -980,8 +980,8 @@ discard block |
||
980 | 980 | { |
981 | 981 | $limit_array = explode(",", $limit); |
982 | 982 | |
983 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
984 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
983 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
984 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
985 | 985 | |
986 | 986 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
987 | 987 | { |
@@ -1021,7 +1021,7 @@ discard block |
||
1021 | 1021 | $query_values = array(); |
1022 | 1022 | $limit_query = ''; |
1023 | 1023 | $additional_query = ''; |
1024 | - $filter_query = $this->getFilter($filter,true,true); |
|
1024 | + $filter_query = $this->getFilter($filter, true, true); |
|
1025 | 1025 | |
1026 | 1026 | if ($pilot != "") |
1027 | 1027 | { |
@@ -1033,8 +1033,8 @@ discard block |
||
1033 | 1033 | { |
1034 | 1034 | $limit_array = explode(",", $limit); |
1035 | 1035 | |
1036 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1037 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1036 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
1037 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1038 | 1038 | |
1039 | 1039 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
1040 | 1040 | { |
@@ -1064,7 +1064,7 @@ discard block |
||
1064 | 1064 | * @return Array the airline country list |
1065 | 1065 | * |
1066 | 1066 | */ |
1067 | - public function countAllFlightOverCountries($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
1067 | + public function countAllFlightOverCountries($limit = true, $olderthanmonths = 0, $sincedate = '') |
|
1068 | 1068 | { |
1069 | 1069 | global $globalDBdriver; |
1070 | 1070 | /* |
@@ -1093,7 +1093,7 @@ discard block |
||
1093 | 1093 | $flight_array = array(); |
1094 | 1094 | $temp_array = array(); |
1095 | 1095 | |
1096 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1096 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1097 | 1097 | { |
1098 | 1098 | $temp_array['flight_count'] = $row['nb']; |
1099 | 1099 | $temp_array['flight_country'] = $row['name']; |
@@ -1110,7 +1110,7 @@ discard block |
||
1110 | 1110 | * @return Array the airline country list |
1111 | 1111 | * |
1112 | 1112 | */ |
1113 | - public function countAllFlightOverCountriesByAirlines($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
1113 | + public function countAllFlightOverCountriesByAirlines($limit = true, $olderthanmonths = 0, $sincedate = '') |
|
1114 | 1114 | { |
1115 | 1115 | global $globalDBdriver; |
1116 | 1116 | /* |
@@ -1139,7 +1139,7 @@ discard block |
||
1139 | 1139 | $flight_array = array(); |
1140 | 1140 | $temp_array = array(); |
1141 | 1141 | |
1142 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1142 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1143 | 1143 | { |
1144 | 1144 | $temp_array['airline_icao'] = $row['airline_icao']; |
1145 | 1145 | $temp_array['flight_count'] = $row['nb']; |
@@ -1157,14 +1157,14 @@ discard block |
||
1157 | 1157 | * @return Array the spotter information |
1158 | 1158 | * |
1159 | 1159 | */ |
1160 | - public function getDateArchiveTrackerDataById($id,$date) |
|
1160 | + public function getDateArchiveTrackerDataById($id, $date) |
|
1161 | 1161 | { |
1162 | 1162 | $Tracker = new Tracker($this->db); |
1163 | 1163 | date_default_timezone_set('UTC'); |
1164 | 1164 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
1165 | - $query = 'SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.famtrackid = :id AND l.date <= :date GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate ORDER BY tracker_archive.date DESC'; |
|
1166 | - $date = date('c',$date); |
|
1167 | - $spotter_array = $Tracker->getDataFromDB($query,array(':id' => $id,':date' => $date)); |
|
1165 | + $query = 'SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.famtrackid = :id AND l.date <= :date GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate ORDER BY tracker_archive.date DESC'; |
|
1166 | + $date = date('c', $date); |
|
1167 | + $spotter_array = $Tracker->getDataFromDB($query, array(':id' => $id, ':date' => $date)); |
|
1168 | 1168 | return $spotter_array; |
1169 | 1169 | } |
1170 | 1170 | |
@@ -1174,14 +1174,14 @@ discard block |
||
1174 | 1174 | * @return Array the spotter information |
1175 | 1175 | * |
1176 | 1176 | */ |
1177 | - public function getDateArchiveTrackerDataByIdent($ident,$date) |
|
1177 | + public function getDateArchiveTrackerDataByIdent($ident, $date) |
|
1178 | 1178 | { |
1179 | 1179 | $Tracker = new Tracker($this->db); |
1180 | 1180 | date_default_timezone_set('UTC'); |
1181 | 1181 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
1182 | - $query = 'SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.ident = :ident AND l.date <= :date GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate ORDER BY tracker_archive.date DESC'; |
|
1183 | - $date = date('c',$date); |
|
1184 | - $spotter_array = $Tracker->getDataFromDB($query,array(':ident' => $ident,':date' => $date)); |
|
1182 | + $query = 'SELECT tracker_archive.* FROM tracker_archive INNER JOIN (SELECT l.famtrackid, max(l.date) as maxdate FROM tracker_archive l WHERE l.ident = :ident AND l.date <= :date GROUP BY l.famtrackid) s on tracker_archive.famtrackid = s.famtrackid AND tracker_archive.date = s.maxdate ORDER BY tracker_archive.date DESC'; |
|
1183 | + $date = date('c', $date); |
|
1184 | + $spotter_array = $Tracker->getDataFromDB($query, array(':ident' => $ident, ':date' => $date)); |
|
1185 | 1185 | return $spotter_array; |
1186 | 1186 | } |
1187 | 1187 | |
@@ -1191,7 +1191,7 @@ discard block |
||
1191 | 1191 | * @return Array the spotter information |
1192 | 1192 | * |
1193 | 1193 | */ |
1194 | - public function getTrackerDataByAirport($airport = '', $limit = '', $sort = '',$filters = array()) |
|
1194 | + public function getTrackerDataByAirport($airport = '', $limit = '', $sort = '', $filters = array()) |
|
1195 | 1195 | { |
1196 | 1196 | global $global_query; |
1197 | 1197 | $Tracker = new Tracker(); |
@@ -1199,7 +1199,7 @@ discard block |
||
1199 | 1199 | $query_values = array(); |
1200 | 1200 | $limit_query = ''; |
1201 | 1201 | $additional_query = ''; |
1202 | - $filter_query = $this->getFilter($filters,true,true); |
|
1202 | + $filter_query = $this->getFilter($filters, true, true); |
|
1203 | 1203 | |
1204 | 1204 | if ($airport != "") |
1205 | 1205 | { |
@@ -1216,8 +1216,8 @@ discard block |
||
1216 | 1216 | { |
1217 | 1217 | $limit_array = explode(",", $limit); |
1218 | 1218 | |
1219 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1220 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1219 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
1220 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1221 | 1221 | |
1222 | 1222 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
1223 | 1223 | { |
@@ -13,33 +13,33 @@ discard block |
||
13 | 13 | * @param Array $filter the filter |
14 | 14 | * @return Array the SQL part |
15 | 15 | */ |
16 | - public function getFilter($filter = array(),$where = false,$and = false) { |
|
16 | + public function getFilter($filter = array(), $where = false, $and = false) { |
|
17 | 17 | global $globalFilter, $globalStatsFilters, $globalFilterName, $globalDBdriver; |
18 | 18 | $filters = array(); |
19 | 19 | if (is_array($globalStatsFilters) && isset($globalStatsFilters[$globalFilterName])) { |
20 | 20 | if (isset($globalStatsFilters[$globalFilterName][0]['source'])) { |
21 | 21 | $filters = $globalStatsFilters[$globalFilterName]; |
22 | 22 | } else { |
23 | - $filter = array_merge($filter,$globalStatsFilters[$globalFilterName]); |
|
23 | + $filter = array_merge($filter, $globalStatsFilters[$globalFilterName]); |
|
24 | 24 | } |
25 | 25 | } |
26 | 26 | if (isset($filter[0]['source'])) { |
27 | - $filters = array_merge($filters,$filter); |
|
27 | + $filters = array_merge($filters, $filter); |
|
28 | 28 | } |
29 | - if (is_array($globalFilter)) $filter = array_merge($filter,$globalFilter); |
|
29 | + if (is_array($globalFilter)) $filter = array_merge($filter, $globalFilter); |
|
30 | 30 | $filter_query_join = ''; |
31 | 31 | $filter_query_where = ''; |
32 | - foreach($filters as $flt) { |
|
32 | + foreach ($filters as $flt) { |
|
33 | 33 | if (isset($flt['idents']) && !empty($flt['idents'])) { |
34 | 34 | if (isset($flt['source'])) { |
35 | - $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.ident IN ('".implode("','",$flt['idents'])."') AND marine_archive_output.format_source IN ('".implode("','",$flt['source'])."')) spid ON spid.fammarine_id = marine_archive.fammarine_id"; |
|
35 | + $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.ident IN ('".implode("','", $flt['idents'])."') AND marine_archive_output.format_source IN ('".implode("','", $flt['source'])."')) spid ON spid.fammarine_id = marine_archive.fammarine_id"; |
|
36 | 36 | } else { |
37 | - $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.ident IN ('".implode("','",$flt['idents'])."')) spid ON spid.fammarine_id = marine_archive.fammarine_id"; |
|
37 | + $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.ident IN ('".implode("','", $flt['idents'])."')) spid ON spid.fammarine_id = marine_archive.fammarine_id"; |
|
38 | 38 | } |
39 | 39 | } |
40 | 40 | } |
41 | 41 | if (isset($filter['source']) && !empty($filter['source'])) { |
42 | - $filter_query_where .= " AND format_source IN ('".implode("','",$filter['source'])."')"; |
|
42 | + $filter_query_where .= " AND format_source IN ('".implode("','", $filter['source'])."')"; |
|
43 | 43 | } |
44 | 44 | if (isset($filter['ident']) && !empty($filter['ident'])) { |
45 | 45 | $filter_query_where .= " AND ident = '".$filter['ident']."'"; |
@@ -67,43 +67,43 @@ discard block |
||
67 | 67 | $filter_query_date .= " AND EXTRACT(DAY FROM marine_archive_output.date) = '".$filter['day']."'"; |
68 | 68 | } |
69 | 69 | } |
70 | - $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output".preg_replace('/^ AND/',' WHERE',$filter_query_date).") sd ON sd.fammarine_id = marine_archive.fammarine_id"; |
|
70 | + $filter_query_join .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output".preg_replace('/^ AND/', ' WHERE', $filter_query_date).") sd ON sd.fammarine_id = marine_archive.fammarine_id"; |
|
71 | 71 | } |
72 | 72 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
73 | - $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
73 | + $filter_query_where .= " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
74 | 74 | } |
75 | 75 | if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE'; |
76 | 76 | elseif ($filter_query_where != '' && $and) $filter_query_where .= ' AND'; |
77 | 77 | if ($filter_query_where != '') { |
78 | - $filter_query_where = preg_replace('/^ AND/',' WHERE',$filter_query_where); |
|
78 | + $filter_query_where = preg_replace('/^ AND/', ' WHERE', $filter_query_where); |
|
79 | 79 | } |
80 | 80 | $filter_query = $filter_query_join.$filter_query_where; |
81 | 81 | return $filter_query; |
82 | 82 | } |
83 | 83 | |
84 | 84 | // marine_archive |
85 | - public function addMarineArchiveData($fammarine_id = '', $ident = '', $latitude = '', $longitude = '', $heading = '', $groundspeed = '', $date = '', $putinarchive = false, $mmsi = '',$type = '',$typeid = '',$imo = '', $callsign = '',$arrival_code = '',$arrival_date = '',$status = '',$statusid = '',$noarchive = false,$format_source = '', $source_name = '', $over_country = '') { |
|
85 | + public function addMarineArchiveData($fammarine_id = '', $ident = '', $latitude = '', $longitude = '', $heading = '', $groundspeed = '', $date = '', $putinarchive = false, $mmsi = '', $type = '', $typeid = '', $imo = '', $callsign = '', $arrival_code = '', $arrival_date = '', $status = '', $statusid = '', $noarchive = false, $format_source = '', $source_name = '', $over_country = '') { |
|
86 | 86 | |
87 | 87 | require_once(dirname(__FILE__).'/class.Marine.php'); |
88 | 88 | if ($over_country == '') { |
89 | 89 | $Marine = new Marine($this->db); |
90 | - $data_country = $Marine->getCountryFromLatitudeLongitude($latitude,$longitude); |
|
90 | + $data_country = $Marine->getCountryFromLatitudeLongitude($latitude, $longitude); |
|
91 | 91 | if (!empty($data_country)) $country = $data_country['iso2']; |
92 | 92 | else $country = ''; |
93 | 93 | } else $country = $over_country; |
94 | 94 | |
95 | 95 | //$country = $over_country; |
96 | 96 | // Route is not added in marine_archive |
97 | - $query = 'INSERT INTO marine_archive (fammarine_id, ident, latitude, longitude, heading, ground_speed, date, format_source, source_name, over_country, mmsi, type,status,imo,arrival_port_name,arrival_port_date) |
|
97 | + $query = 'INSERT INTO marine_archive (fammarine_id, ident, latitude, longitude, heading, ground_speed, date, format_source, source_name, over_country, mmsi, type,status,imo,arrival_port_name,arrival_port_date) |
|
98 | 98 | VALUES (:fammarine_id,:ident,:latitude,:longitude,:heading,:groundspeed,:date,:format_source, :source_name, :over_country,:mmsi,:type,:status,:imo,:arrival_port_name,:arrival_port_date)'; |
99 | 99 | |
100 | - $query_values = array(':fammarine_id' => $fammarine_id,':ident' => $ident,':latitude' => $latitude,':longitude' => $longitude,':heading' => $heading,':groundspeed' => $groundspeed,':date' => $date, ':format_source' => $format_source, ':source_name' => $source_name, ':over_country' => $over_country,':mmsi' => $mmsi,':type' => $type,':status' => $status,':imo' => $imo,':arrival_port_name' => $arrival_code,':arrival_port_date' => $arrival_date); |
|
100 | + $query_values = array(':fammarine_id' => $fammarine_id, ':ident' => $ident, ':latitude' => $latitude, ':longitude' => $longitude, ':heading' => $heading, ':groundspeed' => $groundspeed, ':date' => $date, ':format_source' => $format_source, ':source_name' => $source_name, ':over_country' => $over_country, ':mmsi' => $mmsi, ':type' => $type, ':status' => $status, ':imo' => $imo, ':arrival_port_name' => $arrival_code, ':arrival_port_date' => $arrival_date); |
|
101 | 101 | |
102 | 102 | try { |
103 | 103 | $sth = $this->db->prepare($query); |
104 | 104 | $sth->execute($query_values); |
105 | 105 | $sth->closeCursor(); |
106 | - } catch(PDOException $e) { |
|
106 | + } catch (PDOException $e) { |
|
107 | 107 | return "error : ".$e->getMessage(); |
108 | 108 | } |
109 | 109 | return "success"; |
@@ -123,9 +123,9 @@ discard block |
||
123 | 123 | |
124 | 124 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
125 | 125 | //$query = "SELECT marine_archive.* FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.ident = :ident GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate LIMIT 1"; |
126 | - $query = "SELECT marine_archive.* FROM marine_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
126 | + $query = "SELECT marine_archive.* FROM marine_archive WHERE ident = :ident ORDER BY date DESC LIMIT 1"; |
|
127 | 127 | |
128 | - $spotter_array = $Marine->getDataFromDB($query,array(':ident' => $ident)); |
|
128 | + $spotter_array = $Marine->getDataFromDB($query, array(':ident' => $ident)); |
|
129 | 129 | |
130 | 130 | return $spotter_array; |
131 | 131 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
145 | 145 | //$query = MarineArchive->$global_query." WHERE marine_archive.fammarine_id = :id"; |
146 | 146 | //$query = "SELECT marine_archive.* FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.fammarine_id = :id GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate LIMIT 1"; |
147 | - $query = "SELECT * FROM marine_archive WHERE fammarine_id = :id ORDER BY date DESC LIMIT 1"; |
|
147 | + $query = "SELECT * FROM marine_archive WHERE fammarine_id = :id ORDER BY date DESC LIMIT 1"; |
|
148 | 148 | |
149 | 149 | // $spotter_array = Marine->getDataFromDB($query,array(':id' => $id)); |
150 | 150 | /* |
@@ -157,7 +157,7 @@ discard block |
||
157 | 157 | } |
158 | 158 | $spotter_array = $sth->fetchAll(PDO->FETCH_ASSOC); |
159 | 159 | */ |
160 | - $spotter_array = $Marine->getDataFromDB($query,array(':id' => $id)); |
|
160 | + $spotter_array = $Marine->getDataFromDB($query, array(':id' => $id)); |
|
161 | 161 | |
162 | 162 | return $spotter_array; |
163 | 163 | } |
@@ -172,14 +172,14 @@ discard block |
||
172 | 172 | { |
173 | 173 | date_default_timezone_set('UTC'); |
174 | 174 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
175 | - $query = $this->global_query." WHERE marine_archive.fammarine_id = :id ORDER BY date"; |
|
175 | + $query = $this->global_query." WHERE marine_archive.fammarine_id = :id ORDER BY date"; |
|
176 | 176 | |
177 | 177 | // $spotter_array = Marine->getDataFromDB($query,array(':id' => $id)); |
178 | 178 | |
179 | 179 | try { |
180 | 180 | $sth = $this->db->prepare($query); |
181 | 181 | $sth->execute(array(':id' => $id)); |
182 | - } catch(PDOException $e) { |
|
182 | + } catch (PDOException $e) { |
|
183 | 183 | echo $e->getMessage(); |
184 | 184 | die; |
185 | 185 | } |
@@ -198,14 +198,14 @@ discard block |
||
198 | 198 | { |
199 | 199 | date_default_timezone_set('UTC'); |
200 | 200 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
201 | - $query = "SELECT marine_archive.latitude, marine_archive.longitude, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id"; |
|
201 | + $query = "SELECT marine_archive.latitude, marine_archive.longitude, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id"; |
|
202 | 202 | |
203 | 203 | // $spotter_array = Marine->getDataFromDB($query,array(':id' => $id)); |
204 | 204 | |
205 | 205 | try { |
206 | 206 | $sth = $this->db->prepare($query); |
207 | 207 | $sth->execute(array(':id' => $id)); |
208 | - } catch(PDOException $e) { |
|
208 | + } catch (PDOException $e) { |
|
209 | 209 | echo $e->getMessage(); |
210 | 210 | die; |
211 | 211 | } |
@@ -227,12 +227,12 @@ discard block |
||
227 | 227 | date_default_timezone_set('UTC'); |
228 | 228 | |
229 | 229 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
230 | - $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive WHERE marine_archive.ident = :ident AND marine_archive.latitude <> 0 AND marine_archive.longitude <> 0 ORDER BY date"; |
|
230 | + $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive WHERE marine_archive.ident = :ident AND marine_archive.latitude <> 0 AND marine_archive.longitude <> 0 ORDER BY date"; |
|
231 | 231 | |
232 | 232 | try { |
233 | 233 | $sth = $this->db->prepare($query); |
234 | 234 | $sth->execute(array(':ident' => $ident)); |
235 | - } catch(PDOException $e) { |
|
235 | + } catch (PDOException $e) { |
|
236 | 236 | echo $e->getMessage(); |
237 | 237 | die; |
238 | 238 | } |
@@ -253,12 +253,12 @@ discard block |
||
253 | 253 | date_default_timezone_set('UTC'); |
254 | 254 | |
255 | 255 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
256 | - $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id AND marine_archive.latitude <> 0 AND marine_archive.longitude <> 0 ORDER BY date"; |
|
256 | + $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id AND marine_archive.latitude <> 0 AND marine_archive.longitude <> 0 ORDER BY date"; |
|
257 | 257 | |
258 | 258 | try { |
259 | 259 | $sth = $this->db->prepare($query); |
260 | 260 | $sth->execute(array(':id' => $id)); |
261 | - } catch(PDOException $e) { |
|
261 | + } catch (PDOException $e) { |
|
262 | 262 | echo $e->getMessage(); |
263 | 263 | die; |
264 | 264 | } |
@@ -279,12 +279,12 @@ discard block |
||
279 | 279 | date_default_timezone_set('UTC'); |
280 | 280 | |
281 | 281 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
282 | - $query = "SELECT marine_archive.altitude, marine_archive.ground_speed, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id ORDER BY date"; |
|
282 | + $query = "SELECT marine_archive.altitude, marine_archive.ground_speed, marine_archive.date FROM marine_archive WHERE marine_archive.fammarine_id = :id ORDER BY date"; |
|
283 | 283 | |
284 | 284 | try { |
285 | 285 | $sth = $this->db->prepare($query); |
286 | 286 | $sth->execute(array(':id' => $id)); |
287 | - } catch(PDOException $e) { |
|
287 | + } catch (PDOException $e) { |
|
288 | 288 | echo $e->getMessage(); |
289 | 289 | die; |
290 | 290 | } |
@@ -306,13 +306,13 @@ discard block |
||
306 | 306 | date_default_timezone_set('UTC'); |
307 | 307 | |
308 | 308 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
309 | - $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.ident = :ident GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate LIMIT 1"; |
|
309 | + $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.ident = :ident GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate LIMIT 1"; |
|
310 | 310 | // $query = "SELECT marine_archive.altitude, marine_archive.date FROM marine_archive WHERE marine_archive.ident = :ident"; |
311 | 311 | |
312 | 312 | try { |
313 | 313 | $sth = $this->db->prepare($query); |
314 | 314 | $sth->execute(array(':ident' => $ident)); |
315 | - } catch(PDOException $e) { |
|
315 | + } catch (PDOException $e) { |
|
316 | 316 | echo $e->getMessage(); |
317 | 317 | die; |
318 | 318 | } |
@@ -329,13 +329,13 @@ discard block |
||
329 | 329 | * @return Array the spotter information |
330 | 330 | * |
331 | 331 | */ |
332 | - public function getMarineArchiveData($ident,$fammarine_id,$date) |
|
332 | + public function getMarineArchiveData($ident, $fammarine_id, $date) |
|
333 | 333 | { |
334 | 334 | $Marine = new Marine($this->db); |
335 | 335 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
336 | - $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.fammarine_id = :fammarine_id AND l.date LIKE :date GROUP BY l.fammarine_id) s on spotter_live.fammarine_id = s.fammarine_id AND spotter_live.date = s.maxdate"; |
|
336 | + $query = "SELECT spotter_live.* FROM spotter_live INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM spotter_live l WHERE l.ident = :ident AND l.fammarine_id = :fammarine_id AND l.date LIKE :date GROUP BY l.fammarine_id) s on spotter_live.fammarine_id = s.fammarine_id AND spotter_live.date = s.maxdate"; |
|
337 | 337 | |
338 | - $spotter_array = $Marine->getDataFromDB($query,array(':ident' => $ident,':fammarine_id' => $fammarine_id,':date' => $date.'%')); |
|
338 | + $spotter_array = $Marine->getDataFromDB($query, array(':ident' => $ident, ':fammarine_id' => $fammarine_id, ':date' => $date.'%')); |
|
339 | 339 | |
340 | 340 | return $spotter_array; |
341 | 341 | } |
@@ -348,7 +348,7 @@ discard block |
||
348 | 348 | try { |
349 | 349 | $sth = $this->db->prepare($query); |
350 | 350 | $sth->execute(); |
351 | - } catch(PDOException $e) { |
|
351 | + } catch (PDOException $e) { |
|
352 | 352 | echo $e->getMessage(); |
353 | 353 | die; |
354 | 354 | } |
@@ -360,24 +360,24 @@ discard block |
||
360 | 360 | * @return Array the spotter information |
361 | 361 | * |
362 | 362 | */ |
363 | - public function getMinLiveMarineData($begindate,$enddate,$filter = array()) |
|
363 | + public function getMinLiveMarineData($begindate, $enddate, $filter = array()) |
|
364 | 364 | { |
365 | 365 | global $globalDBdriver, $globalLiveInterval; |
366 | 366 | date_default_timezone_set('UTC'); |
367 | 367 | |
368 | 368 | $filter_query = ''; |
369 | 369 | if (isset($filter['source']) && !empty($filter['source'])) { |
370 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
370 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
371 | 371 | } |
372 | 372 | // Use spotter_output also ? |
373 | 373 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
374 | - $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
374 | + $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
375 | 375 | } |
376 | 376 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
377 | 377 | $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.fammarine_id = marine_archive.fammarine_id "; |
378 | 378 | } |
379 | 379 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
380 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
380 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
381 | 381 | } |
382 | 382 | |
383 | 383 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -396,14 +396,14 @@ discard block |
||
396 | 396 | GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id |
397 | 397 | AND marine_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON marine_archive.aircraft_icao = a.icao'; |
398 | 398 | */ |
399 | - $query = 'SELECT marine_archive.date,marine_archive.fammarine_id, marine_archive.ident, marine_archive.aircraft_icao, marine_archive.departure_airport_icao as departure_airport, marine_archive.arrival_airport_icao as arrival_airport, marine_archive.latitude, marine_archive.longitude, marine_archive.altitude, marine_archive.heading, marine_archive.ground_speed, marine_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
399 | + $query = 'SELECT marine_archive.date,marine_archive.fammarine_id, marine_archive.ident, marine_archive.aircraft_icao, marine_archive.departure_airport_icao as departure_airport, marine_archive.arrival_airport_icao as arrival_airport, marine_archive.latitude, marine_archive.longitude, marine_archive.altitude, marine_archive.heading, marine_archive.ground_speed, marine_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
400 | 400 | FROM marine_archive |
401 | 401 | INNER JOIN (SELECT * FROM aircraft) a on marine_archive.aircraft_icao = a.icao |
402 | 402 | WHERE marine_archive.date BETWEEN '."'".$begindate."'".' AND '."'".$begindate."'".' |
403 | 403 | '.$filter_query.' ORDER BY fammarine_id'; |
404 | 404 | } else { |
405 | 405 | //$query = 'SELECT marine_archive.ident, marine_archive.fammarine_id, marine_archive.aircraft_icao, marine_archive.departure_airport_icao as departure_airport, marine_archive.arrival_airport_icao as arrival_airport, marine_archive.latitude, marine_archive.longitude, marine_archive.altitude, marine_archive.heading, marine_archive.ground_speed, marine_archive.squawk, a.aircraft_shadow FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$globalLiveInterval.' SECOND) <= l.date GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate '.$filter_query.'INNER JOIN (SELECT * FROM aircraft) a on marine_archive.aircraft_icao = a.icao'; |
406 | - $query = 'SELECT marine_archive.date,marine_archive.fammarine_id, marine_archive.ident, marine_archive.aircraft_icao, marine_archive.departure_airport_icao as departure_airport, marine_archive.arrival_airport_icao as arrival_airport, marine_archive.latitude, marine_archive.longitude, marine_archive.altitude, marine_archive.heading, marine_archive.ground_speed, marine_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
406 | + $query = 'SELECT marine_archive.date,marine_archive.fammarine_id, marine_archive.ident, marine_archive.aircraft_icao, marine_archive.departure_airport_icao as departure_airport, marine_archive.arrival_airport_icao as arrival_airport, marine_archive.latitude, marine_archive.longitude, marine_archive.altitude, marine_archive.heading, marine_archive.ground_speed, marine_archive.squawk, a.aircraft_shadow,a.engine_type, a.engine_count, a.wake_category |
|
407 | 407 | FROM marine_archive |
408 | 408 | INNER JOIN (SELECT * FROM aircraft) a on marine_archive.aircraft_icao = a.icao |
409 | 409 | WHERE marine_archive.date >= '."'".$begindate."'".' AND marine_archive.date <= '."'".$enddate."'".' |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | try { |
414 | 414 | $sth = $this->db->prepare($query); |
415 | 415 | $sth->execute(); |
416 | - } catch(PDOException $e) { |
|
416 | + } catch (PDOException $e) { |
|
417 | 417 | echo $e->getMessage(); |
418 | 418 | die; |
419 | 419 | } |
@@ -428,24 +428,24 @@ discard block |
||
428 | 428 | * @return Array the spotter information |
429 | 429 | * |
430 | 430 | */ |
431 | - public function getMinLiveMarineDataPlayback($begindate,$enddate,$filter = array()) |
|
431 | + public function getMinLiveMarineDataPlayback($begindate, $enddate, $filter = array()) |
|
432 | 432 | { |
433 | 433 | global $globalDBdriver, $globalLiveInterval; |
434 | 434 | date_default_timezone_set('UTC'); |
435 | 435 | |
436 | 436 | $filter_query = ''; |
437 | 437 | if (isset($filter['source']) && !empty($filter['source'])) { |
438 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
438 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
439 | 439 | } |
440 | 440 | // Should use spotter_output also ? |
441 | 441 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
442 | - $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
442 | + $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
443 | 443 | } |
444 | 444 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
445 | 445 | $filter_query .= " INNER JOIN (SELECT fammarine_id FROM marine_archive_output WHERE marine_archive_output.airline_type = '".$filter['airlinestype']."') sa ON sa.fammarine_id = marine_archive.fammarine_id "; |
446 | 446 | } |
447 | 447 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
448 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
448 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
449 | 449 | } |
450 | 450 | |
451 | 451 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -455,7 +455,7 @@ discard block |
||
455 | 455 | FROM marine_archive |
456 | 456 | INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE (l.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate '.$filter_query.'LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON marine_archive.aircraft_icao = a.icao'; |
457 | 457 | */ |
458 | - $query = 'SELECT a.aircraft_shadow, marine_archive_output.ident, marine_archive_output.fammarine_id, marine_archive_output.aircraft_icao, marine_archive_output.departure_airport_icao as departure_airport, marine_archive_output.arrival_airport_icao as arrival_airport, marine_archive_output.latitude, marine_archive_output.longitude, marine_archive_output.altitude, marine_archive_output.heading, marine_archive_output.ground_speed, marine_archive_output.squawk |
|
458 | + $query = 'SELECT a.aircraft_shadow, marine_archive_output.ident, marine_archive_output.fammarine_id, marine_archive_output.aircraft_icao, marine_archive_output.departure_airport_icao as departure_airport, marine_archive_output.arrival_airport_icao as arrival_airport, marine_archive_output.latitude, marine_archive_output.longitude, marine_archive_output.altitude, marine_archive_output.heading, marine_archive_output.ground_speed, marine_archive_output.squawk |
|
459 | 459 | FROM marine_archive_output |
460 | 460 | LEFT JOIN (SELECT aircraft_shadow,icao FROM aircraft) a ON marine_archive_output.aircraft_icao = a.icao |
461 | 461 | WHERE (marine_archive_output.date BETWEEN '."'".$begindate."'".' AND '."'".$enddate."'".') |
@@ -470,7 +470,7 @@ discard block |
||
470 | 470 | WHERE marine_archive_output.date >= '."'".$begindate."'".' AND marine_archive_output.date <= '."'".$enddate."'".' |
471 | 471 | '.$filter_query.' GROUP BY marine_archive_output.fammarine_id, marine_archive_output.ident, marine_archive_output.aircraft_icao, marine_archive_output.departure_airport_icao, marine_archive_output.arrival_airport_icao, marine_archive_output.latitude, marine_archive_output.longitude, marine_archive_output.altitude, marine_archive_output.heading, marine_archive_output.ground_speed, marine_archive_output.squawk, a.aircraft_shadow'; |
472 | 472 | */ |
473 | - $query = 'SELECT DISTINCT marine_archive_output.fammarine_id, marine_archive_output.ident, marine_archive_output.aircraft_icao, marine_archive_output.departure_airport_icao as departure_airport, marine_archive_output.arrival_airport_icao as arrival_airport, marine_archive_output.latitude, marine_archive_output.longitude, marine_archive_output.altitude, marine_archive_output.heading, marine_archive_output.ground_speed, marine_archive_output.squawk, a.aircraft_shadow |
|
473 | + $query = 'SELECT DISTINCT marine_archive_output.fammarine_id, marine_archive_output.ident, marine_archive_output.aircraft_icao, marine_archive_output.departure_airport_icao as departure_airport, marine_archive_output.arrival_airport_icao as arrival_airport, marine_archive_output.latitude, marine_archive_output.longitude, marine_archive_output.altitude, marine_archive_output.heading, marine_archive_output.ground_speed, marine_archive_output.squawk, a.aircraft_shadow |
|
474 | 474 | FROM marine_archive_output |
475 | 475 | INNER JOIN (SELECT * FROM aircraft) a on marine_archive_output.aircraft_icao = a.icao |
476 | 476 | WHERE marine_archive_output.date >= '."'".$begindate."'".' AND marine_archive_output.date <= '."'".$enddate."'".' |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | try { |
483 | 483 | $sth = $this->db->prepare($query); |
484 | 484 | $sth->execute(); |
485 | - } catch(PDOException $e) { |
|
485 | + } catch (PDOException $e) { |
|
486 | 486 | echo $e->getMessage(); |
487 | 487 | die; |
488 | 488 | } |
@@ -497,23 +497,23 @@ discard block |
||
497 | 497 | * @return Array the spotter information |
498 | 498 | * |
499 | 499 | */ |
500 | - public function getLiveMarineCount($begindate,$enddate,$filter = array()) |
|
500 | + public function getLiveMarineCount($begindate, $enddate, $filter = array()) |
|
501 | 501 | { |
502 | 502 | global $globalDBdriver, $globalLiveInterval; |
503 | 503 | date_default_timezone_set('UTC'); |
504 | 504 | |
505 | 505 | $filter_query = ''; |
506 | 506 | if (isset($filter['source']) && !empty($filter['source'])) { |
507 | - $filter_query .= " AND format_source IN ('".implode("','",$filter['source'])."') "; |
|
507 | + $filter_query .= " AND format_source IN ('".implode("','", $filter['source'])."') "; |
|
508 | 508 | } |
509 | 509 | if (isset($filter['airlines']) && !empty($filter['airlines'])) { |
510 | - $filter_query .= " INNER JOIN (SELECT fammarine_id FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','",$filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
510 | + $filter_query .= " INNER JOIN (SELECT fammarine_id FROM spotter_output WHERE spotter_output.airline_icao IN ('".implode("','", $filter['airlines'])."')) so ON so.fammarine_id = marine_archive.fammarine_id "; |
|
511 | 511 | } |
512 | 512 | if (isset($filter['airlinestype']) && !empty($filter['airlinestype'])) { |
513 | 513 | $filter_query .= " INNER JOIN (SELECT fammarine_id FROM spotter_output WHERE spotter_output.airline_type = '".$filter['airlinestype']."') sa ON sa.fammarine_id = marine_archive.fammarine_id "; |
514 | 514 | } |
515 | 515 | if (isset($filter['source_aprs']) && !empty($filter['source_aprs'])) { |
516 | - $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','",$filter['source_aprs'])."')"; |
|
516 | + $filter_query = " AND format_source = 'aprs' AND source_name IN ('".implode("','", $filter['source_aprs'])."')"; |
|
517 | 517 | } |
518 | 518 | |
519 | 519 | //if (!isset($globalLiveInterval)) $globalLiveInterval = '200'; |
@@ -528,7 +528,7 @@ discard block |
||
528 | 528 | try { |
529 | 529 | $sth = $this->db->prepare($query); |
530 | 530 | $sth->execute(); |
531 | - } catch(PDOException $e) { |
|
531 | + } catch (PDOException $e) { |
|
532 | 532 | echo $e->getMessage(); |
533 | 533 | die; |
534 | 534 | } |
@@ -548,7 +548,7 @@ discard block |
||
548 | 548 | * @return Array the spotter information |
549 | 549 | * |
550 | 550 | */ |
551 | - public function searchMarineData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '',$pilot_id = '',$pilot_name = '',$altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '',$origLat = '',$origLon = '',$dist = '', $filters=array()) |
|
551 | + public function searchMarineData($q = '', $registration = '', $aircraft_icao = '', $aircraft_manufacturer = '', $highlights = '', $airline_icao = '', $airline_country = '', $airline_type = '', $airport = '', $airport_country = '', $callsign = '', $departure_airport_route = '', $arrival_airport_route = '', $owner = '', $pilot_id = '', $pilot_name = '', $altitude = '', $date_posted = '', $limit = '', $sort = '', $includegeodata = '', $origLat = '', $origLon = '', $dist = '', $filters = array()) |
|
552 | 552 | { |
553 | 553 | global $globalTimezone, $globalDBdriver; |
554 | 554 | require_once(dirname(__FILE__).'/class.Translation.php'); |
@@ -570,7 +570,7 @@ discard block |
||
570 | 570 | |
571 | 571 | $q_array = explode(" ", $q); |
572 | 572 | |
573 | - foreach ($q_array as $q_item){ |
|
573 | + foreach ($q_array as $q_item) { |
|
574 | 574 | $additional_query .= " AND ("; |
575 | 575 | $additional_query .= "(marine_archive_output.spotter_id like '%".$q_item."%') OR "; |
576 | 576 | $additional_query .= "(marine_archive_output.aircraft_icao like '%".$q_item."%') OR "; |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | |
603 | 603 | if ($registration != "") |
604 | 604 | { |
605 | - $registration = filter_var($registration,FILTER_SANITIZE_STRING); |
|
605 | + $registration = filter_var($registration, FILTER_SANITIZE_STRING); |
|
606 | 606 | if (!is_string($registration)) |
607 | 607 | { |
608 | 608 | return false; |
@@ -613,7 +613,7 @@ discard block |
||
613 | 613 | |
614 | 614 | if ($aircraft_icao != "") |
615 | 615 | { |
616 | - $aircraft_icao = filter_var($aircraft_icao,FILTER_SANITIZE_STRING); |
|
616 | + $aircraft_icao = filter_var($aircraft_icao, FILTER_SANITIZE_STRING); |
|
617 | 617 | if (!is_string($aircraft_icao)) |
618 | 618 | { |
619 | 619 | return false; |
@@ -624,7 +624,7 @@ discard block |
||
624 | 624 | |
625 | 625 | if ($aircraft_manufacturer != "") |
626 | 626 | { |
627 | - $aircraft_manufacturer = filter_var($aircraft_manufacturer,FILTER_SANITIZE_STRING); |
|
627 | + $aircraft_manufacturer = filter_var($aircraft_manufacturer, FILTER_SANITIZE_STRING); |
|
628 | 628 | if (!is_string($aircraft_manufacturer)) |
629 | 629 | { |
630 | 630 | return false; |
@@ -645,7 +645,7 @@ discard block |
||
645 | 645 | |
646 | 646 | if ($airline_icao != "") |
647 | 647 | { |
648 | - $airline_icao = filter_var($airline_icao,FILTER_SANITIZE_STRING); |
|
648 | + $airline_icao = filter_var($airline_icao, FILTER_SANITIZE_STRING); |
|
649 | 649 | if (!is_string($airline_icao)) |
650 | 650 | { |
651 | 651 | return false; |
@@ -656,7 +656,7 @@ discard block |
||
656 | 656 | |
657 | 657 | if ($airline_country != "") |
658 | 658 | { |
659 | - $airline_country = filter_var($airline_country,FILTER_SANITIZE_STRING); |
|
659 | + $airline_country = filter_var($airline_country, FILTER_SANITIZE_STRING); |
|
660 | 660 | if (!is_string($airline_country)) |
661 | 661 | { |
662 | 662 | return false; |
@@ -667,7 +667,7 @@ discard block |
||
667 | 667 | |
668 | 668 | if ($airline_type != "") |
669 | 669 | { |
670 | - $airline_type = filter_var($airline_type,FILTER_SANITIZE_STRING); |
|
670 | + $airline_type = filter_var($airline_type, FILTER_SANITIZE_STRING); |
|
671 | 671 | if (!is_string($airline_type)) |
672 | 672 | { |
673 | 673 | return false; |
@@ -689,7 +689,7 @@ discard block |
||
689 | 689 | |
690 | 690 | if ($airport != "") |
691 | 691 | { |
692 | - $airport = filter_var($airport,FILTER_SANITIZE_STRING); |
|
692 | + $airport = filter_var($airport, FILTER_SANITIZE_STRING); |
|
693 | 693 | if (!is_string($airport)) |
694 | 694 | { |
695 | 695 | return false; |
@@ -700,7 +700,7 @@ discard block |
||
700 | 700 | |
701 | 701 | if ($airport_country != "") |
702 | 702 | { |
703 | - $airport_country = filter_var($airport_country,FILTER_SANITIZE_STRING); |
|
703 | + $airport_country = filter_var($airport_country, FILTER_SANITIZE_STRING); |
|
704 | 704 | if (!is_string($airport_country)) |
705 | 705 | { |
706 | 706 | return false; |
@@ -711,7 +711,7 @@ discard block |
||
711 | 711 | |
712 | 712 | if ($callsign != "") |
713 | 713 | { |
714 | - $callsign = filter_var($callsign,FILTER_SANITIZE_STRING); |
|
714 | + $callsign = filter_var($callsign, FILTER_SANITIZE_STRING); |
|
715 | 715 | if (!is_string($callsign)) |
716 | 716 | { |
717 | 717 | return false; |
@@ -719,7 +719,7 @@ discard block |
||
719 | 719 | $translate = $Translation->ident2icao($callsign); |
720 | 720 | if ($translate != $callsign) { |
721 | 721 | $additional_query .= " AND (marine_archive_output.ident = :callsign OR marine_archive_output.ident = :translate)"; |
722 | - $query_values = array_merge($query_values,array(':callsign' => $callsign,':translate' => $translate)); |
|
722 | + $query_values = array_merge($query_values, array(':callsign' => $callsign, ':translate' => $translate)); |
|
723 | 723 | } else { |
724 | 724 | $additional_query .= " AND (marine_archive_output.ident = '".$callsign."')"; |
725 | 725 | } |
@@ -728,7 +728,7 @@ discard block |
||
728 | 728 | |
729 | 729 | if ($owner != "") |
730 | 730 | { |
731 | - $owner = filter_var($owner,FILTER_SANITIZE_STRING); |
|
731 | + $owner = filter_var($owner, FILTER_SANITIZE_STRING); |
|
732 | 732 | if (!is_string($owner)) |
733 | 733 | { |
734 | 734 | return false; |
@@ -739,7 +739,7 @@ discard block |
||
739 | 739 | |
740 | 740 | if ($pilot_name != "") |
741 | 741 | { |
742 | - $pilot_name = filter_var($pilot_name,FILTER_SANITIZE_STRING); |
|
742 | + $pilot_name = filter_var($pilot_name, FILTER_SANITIZE_STRING); |
|
743 | 743 | if (!is_string($pilot_name)) |
744 | 744 | { |
745 | 745 | return false; |
@@ -750,7 +750,7 @@ discard block |
||
750 | 750 | |
751 | 751 | if ($pilot_id != "") |
752 | 752 | { |
753 | - $pilot_id = filter_var($pilot_id,FILTER_SANITIZE_NUMBER_INT); |
|
753 | + $pilot_id = filter_var($pilot_id, FILTER_SANITIZE_NUMBER_INT); |
|
754 | 754 | if (!is_string($pilot_id)) |
755 | 755 | { |
756 | 756 | return false; |
@@ -761,7 +761,7 @@ discard block |
||
761 | 761 | |
762 | 762 | if ($departure_airport_route != "") |
763 | 763 | { |
764 | - $departure_airport_route = filter_var($departure_airport_route,FILTER_SANITIZE_STRING); |
|
764 | + $departure_airport_route = filter_var($departure_airport_route, FILTER_SANITIZE_STRING); |
|
765 | 765 | if (!is_string($departure_airport_route)) |
766 | 766 | { |
767 | 767 | return false; |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | |
773 | 773 | if ($arrival_airport_route != "") |
774 | 774 | { |
775 | - $arrival_airport_route = filter_var($arrival_airport_route,FILTER_SANITIZE_STRING); |
|
775 | + $arrival_airport_route = filter_var($arrival_airport_route, FILTER_SANITIZE_STRING); |
|
776 | 776 | if (!is_string($arrival_airport_route)) |
777 | 777 | { |
778 | 778 | return false; |
@@ -785,8 +785,8 @@ discard block |
||
785 | 785 | { |
786 | 786 | $altitude_array = explode(",", $altitude); |
787 | 787 | |
788 | - $altitude_array[0] = filter_var($altitude_array[0],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
789 | - $altitude_array[1] = filter_var($altitude_array[1],FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION); |
|
788 | + $altitude_array[0] = filter_var($altitude_array[0], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
789 | + $altitude_array[1] = filter_var($altitude_array[1], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION); |
|
790 | 790 | |
791 | 791 | |
792 | 792 | if ($altitude_array[1] != "") |
@@ -804,8 +804,8 @@ discard block |
||
804 | 804 | { |
805 | 805 | $date_array = explode(",", $date_posted); |
806 | 806 | |
807 | - $date_array[0] = filter_var($date_array[0],FILTER_SANITIZE_STRING); |
|
808 | - $date_array[1] = filter_var($date_array[1],FILTER_SANITIZE_STRING); |
|
807 | + $date_array[0] = filter_var($date_array[0], FILTER_SANITIZE_STRING); |
|
808 | + $date_array[1] = filter_var($date_array[1], FILTER_SANITIZE_STRING); |
|
809 | 809 | |
810 | 810 | if ($globalTimezone != '') { |
811 | 811 | date_default_timezone_set($globalTimezone); |
@@ -837,8 +837,8 @@ discard block |
||
837 | 837 | { |
838 | 838 | $limit_array = explode(",", $limit); |
839 | 839 | |
840 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
841 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
840 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
841 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
842 | 842 | |
843 | 843 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
844 | 844 | { |
@@ -849,8 +849,8 @@ discard block |
||
849 | 849 | |
850 | 850 | |
851 | 851 | if ($origLat != "" && $origLon != "" && $dist != "") { |
852 | - $dist = number_format($dist*0.621371,2,'.',''); |
|
853 | - $query="SELECT marine_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(marine_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(marine_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(marine_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
852 | + $dist = number_format($dist*0.621371, 2, '.', ''); |
|
853 | + $query = "SELECT marine_archive_output.*, 3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(marine_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(marine_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(marine_archive.longitude as double precision))*pi()/180/2),2))) as distance |
|
854 | 854 | FROM marine_archive_output, marine_archive WHERE spotter_output_archive.fammarine_id = marine_archive.fammarine_id AND spotter_output.ident <> '' ".$additional_query."AND CAST(marine_archive.longitude as double precision) between ($origLon-$dist/ABS(cos(radians($origLat))*69)) and ($origLon+$dist/ABS(cos(radians($origLat))*69)) and CAST(marine_archive.latitude as double precision) between ($origLat-($dist/69)) and ($origLat+($dist/69)) |
855 | 855 | AND (3956 * 2 * ASIN(SQRT( POWER(SIN(($origLat - ABS(CAST(marine_archive.latitude as double precision)))*pi()/180/2),2)+COS( $origLat *pi()/180)*COS(ABS(CAST(marine_archive.latitude as double precision))*pi()/180)*POWER(SIN(($origLon-CAST(marine_archive.longitude as double precision))*pi()/180/2),2)))) < $dist".$filter_query." ORDER BY distance"; |
856 | 856 | } else { |
@@ -867,12 +867,12 @@ discard block |
||
867 | 867 | $additional_query .= " AND (marine_archive_output.waypoints <> '')"; |
868 | 868 | } |
869 | 869 | |
870 | - $query = "SELECT marine_archive_output.* FROM marine_archive_output |
|
870 | + $query = "SELECT marine_archive_output.* FROM marine_archive_output |
|
871 | 871 | WHERE marine_archive_output.ident <> '' |
872 | 872 | ".$additional_query." |
873 | 873 | ".$filter_query.$orderby_query; |
874 | 874 | } |
875 | - $spotter_array = $Marine->getDataFromDB($query, $query_values,$limit_query); |
|
875 | + $spotter_array = $Marine->getDataFromDB($query, $query_values, $limit_query); |
|
876 | 876 | |
877 | 877 | return $spotter_array; |
878 | 878 | } |
@@ -889,7 +889,7 @@ discard block |
||
889 | 889 | try { |
890 | 890 | $sth = $this->db->prepare($query); |
891 | 891 | $sth->execute(); |
892 | - } catch(PDOException $e) { |
|
892 | + } catch (PDOException $e) { |
|
893 | 893 | return "error"; |
894 | 894 | } |
895 | 895 | } |
@@ -926,8 +926,8 @@ discard block |
||
926 | 926 | { |
927 | 927 | $limit_array = explode(",", $limit); |
928 | 928 | |
929 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
930 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
929 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
930 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
931 | 931 | |
932 | 932 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
933 | 933 | { |
@@ -968,7 +968,7 @@ discard block |
||
968 | 968 | $query_values = array(); |
969 | 969 | $limit_query = ''; |
970 | 970 | $additional_query = ''; |
971 | - $filter_query = $this->getFilter($filter,true,true); |
|
971 | + $filter_query = $this->getFilter($filter, true, true); |
|
972 | 972 | |
973 | 973 | if ($owner != "") |
974 | 974 | { |
@@ -985,8 +985,8 @@ discard block |
||
985 | 985 | { |
986 | 986 | $limit_array = explode(",", $limit); |
987 | 987 | |
988 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
989 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
988 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
989 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
990 | 990 | |
991 | 991 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
992 | 992 | { |
@@ -1026,7 +1026,7 @@ discard block |
||
1026 | 1026 | $query_values = array(); |
1027 | 1027 | $limit_query = ''; |
1028 | 1028 | $additional_query = ''; |
1029 | - $filter_query = $this->getFilter($filter,true,true); |
|
1029 | + $filter_query = $this->getFilter($filter, true, true); |
|
1030 | 1030 | |
1031 | 1031 | if ($pilot != "") |
1032 | 1032 | { |
@@ -1038,8 +1038,8 @@ discard block |
||
1038 | 1038 | { |
1039 | 1039 | $limit_array = explode(",", $limit); |
1040 | 1040 | |
1041 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1042 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1041 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
1042 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1043 | 1043 | |
1044 | 1044 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
1045 | 1045 | { |
@@ -1069,7 +1069,7 @@ discard block |
||
1069 | 1069 | * @return Array the airline country list |
1070 | 1070 | * |
1071 | 1071 | */ |
1072 | - public function countAllFlightOverCountries($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
1072 | + public function countAllFlightOverCountries($limit = true, $olderthanmonths = 0, $sincedate = '') |
|
1073 | 1073 | { |
1074 | 1074 | global $globalDBdriver; |
1075 | 1075 | /* |
@@ -1098,7 +1098,7 @@ discard block |
||
1098 | 1098 | $flight_array = array(); |
1099 | 1099 | $temp_array = array(); |
1100 | 1100 | |
1101 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1101 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1102 | 1102 | { |
1103 | 1103 | $temp_array['flight_count'] = $row['nb']; |
1104 | 1104 | $temp_array['flight_country'] = $row['name']; |
@@ -1115,7 +1115,7 @@ discard block |
||
1115 | 1115 | * @return Array the airline country list |
1116 | 1116 | * |
1117 | 1117 | */ |
1118 | - public function countAllFlightOverCountriesByAirlines($limit = true,$olderthanmonths = 0,$sincedate = '') |
|
1118 | + public function countAllFlightOverCountriesByAirlines($limit = true, $olderthanmonths = 0, $sincedate = '') |
|
1119 | 1119 | { |
1120 | 1120 | global $globalDBdriver; |
1121 | 1121 | /* |
@@ -1144,7 +1144,7 @@ discard block |
||
1144 | 1144 | $flight_array = array(); |
1145 | 1145 | $temp_array = array(); |
1146 | 1146 | |
1147 | - while($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1147 | + while ($row = $sth->fetch(PDO::FETCH_ASSOC)) |
|
1148 | 1148 | { |
1149 | 1149 | $temp_array['airline_icao'] = $row['airline_icao']; |
1150 | 1150 | $temp_array['flight_count'] = $row['nb']; |
@@ -1162,14 +1162,14 @@ discard block |
||
1162 | 1162 | * @return Array the spotter information |
1163 | 1163 | * |
1164 | 1164 | */ |
1165 | - public function getDateArchiveMarineDataById($id,$date) |
|
1165 | + public function getDateArchiveMarineDataById($id, $date) |
|
1166 | 1166 | { |
1167 | 1167 | $Marine = new Marine($this->db); |
1168 | 1168 | date_default_timezone_set('UTC'); |
1169 | 1169 | $id = filter_var($id, FILTER_SANITIZE_STRING); |
1170 | 1170 | $query = 'SELECT marine_archive.* FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.fammarine_id = :id AND l.date <= :date GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate ORDER BY marine_archive.date DESC'; |
1171 | - $date = date('c',$date); |
|
1172 | - $spotter_array = $Marine->getDataFromDB($query,array(':id' => $id,':date' => $date)); |
|
1171 | + $date = date('c', $date); |
|
1172 | + $spotter_array = $Marine->getDataFromDB($query, array(':id' => $id, ':date' => $date)); |
|
1173 | 1173 | return $spotter_array; |
1174 | 1174 | } |
1175 | 1175 | |
@@ -1179,14 +1179,14 @@ discard block |
||
1179 | 1179 | * @return Array the spotter information |
1180 | 1180 | * |
1181 | 1181 | */ |
1182 | - public function getDateArchiveMarineDataByIdent($ident,$date) |
|
1182 | + public function getDateArchiveMarineDataByIdent($ident, $date) |
|
1183 | 1183 | { |
1184 | 1184 | $Marine = new Marine($this->db); |
1185 | 1185 | date_default_timezone_set('UTC'); |
1186 | 1186 | $ident = filter_var($ident, FILTER_SANITIZE_STRING); |
1187 | 1187 | $query = 'SELECT marine_archive.* FROM marine_archive INNER JOIN (SELECT l.fammarine_id, max(l.date) as maxdate FROM marine_archive l WHERE l.ident = :ident AND l.date <= :date GROUP BY l.fammarine_id) s on marine_archive.fammarine_id = s.fammarine_id AND marine_archive.date = s.maxdate ORDER BY marine_archive.date DESC'; |
1188 | - $date = date('c',$date); |
|
1189 | - $spotter_array = $Marine->getDataFromDB($query,array(':ident' => $ident,':date' => $date)); |
|
1188 | + $date = date('c', $date); |
|
1189 | + $spotter_array = $Marine->getDataFromDB($query, array(':ident' => $ident, ':date' => $date)); |
|
1190 | 1190 | return $spotter_array; |
1191 | 1191 | } |
1192 | 1192 | |
@@ -1196,7 +1196,7 @@ discard block |
||
1196 | 1196 | * @return Array the spotter information |
1197 | 1197 | * |
1198 | 1198 | */ |
1199 | - public function getMarineDataByAirport($airport = '', $limit = '', $sort = '',$filters = array()) |
|
1199 | + public function getMarineDataByAirport($airport = '', $limit = '', $sort = '', $filters = array()) |
|
1200 | 1200 | { |
1201 | 1201 | global $global_query; |
1202 | 1202 | $Marine = new Marine(); |
@@ -1204,7 +1204,7 @@ discard block |
||
1204 | 1204 | $query_values = array(); |
1205 | 1205 | $limit_query = ''; |
1206 | 1206 | $additional_query = ''; |
1207 | - $filter_query = $this->getFilter($filters,true,true); |
|
1207 | + $filter_query = $this->getFilter($filters, true, true); |
|
1208 | 1208 | |
1209 | 1209 | if ($airport != "") |
1210 | 1210 | { |
@@ -1221,8 +1221,8 @@ discard block |
||
1221 | 1221 | { |
1222 | 1222 | $limit_array = explode(",", $limit); |
1223 | 1223 | |
1224 | - $limit_array[0] = filter_var($limit_array[0],FILTER_SANITIZE_NUMBER_INT); |
|
1225 | - $limit_array[1] = filter_var($limit_array[1],FILTER_SANITIZE_NUMBER_INT); |
|
1224 | + $limit_array[0] = filter_var($limit_array[0], FILTER_SANITIZE_NUMBER_INT); |
|
1225 | + $limit_array[1] = filter_var($limit_array[1], FILTER_SANITIZE_NUMBER_INT); |
|
1226 | 1226 | |
1227 | 1227 | if ($limit_array[0] >= 0 && $limit_array[1] >= 0) |
1228 | 1228 | { |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | $Tracker = new Tracker(); |
17 | 17 | } |
18 | 18 | if (!isset($filter_name)) $filter_name = ''; |
19 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
19 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
20 | 20 | if ($airline_icao == '' && isset($globalFilter)) { |
21 | 21 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
22 | 22 | } |
@@ -32,20 +32,20 @@ discard block |
||
32 | 32 | </div> |
33 | 33 | <p>'._("Below is a chart that plots the busiest day during the <strong>last month</strong>.").'</p>'; |
34 | 34 | |
35 | -if ($type == 'aircraft') $date_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name); |
|
35 | +if ($type == 'aircraft') $date_array = $Stats->countAllDatesLastMonth($airline_icao, $filter_name); |
|
36 | 36 | elseif ($type == 'marine') $date_array = $Marine->countAllDatesLastMonth(); |
37 | 37 | elseif ($type == 'tracker') $date_array = $Tracker->countAllDatesLastMonth(); |
38 | 38 | |
39 | 39 | print '<div id="chart" class="chart" width="100%"></div><script>'; |
40 | 40 | $month_data = ''; |
41 | 41 | $month_cnt = ''; |
42 | -foreach($date_array as $month_item) |
|
42 | +foreach ($date_array as $month_item) |
|
43 | 43 | { |
44 | 44 | $month_data .= '"'.$month_item['date_name'].'",'; |
45 | 45 | $month_cnt .= $month_item['date_count'].','; |
46 | 46 | } |
47 | 47 | $month_data = "['x',".substr($month_data, 0, -1)."]"; |
48 | -$month_cnt = "['flights',".substr($month_cnt,0,-1)."]"; |
|
48 | +$month_cnt = "['flights',".substr($month_cnt, 0, -1)."]"; |
|
49 | 49 | print 'c3.generate({ |
50 | 50 | bindto: "#chart", |
51 | 51 | data: { x: "x", |
@@ -56,11 +56,11 @@ discard block |
||
56 | 56 | //$date_array = $Stats->countAllDates(); |
57 | 57 | if (!empty($date_array)) |
58 | 58 | { |
59 | - foreach($date_array as $key => $row) { |
|
59 | + foreach ($date_array as $key => $row) { |
|
60 | 60 | $years[$key] = $row['date_name']; |
61 | 61 | $counts[$key] = $row['date_count']; |
62 | 62 | } |
63 | - array_multisort($counts,SORT_DESC,$date_array); |
|
63 | + array_multisort($counts, SORT_DESC, $date_array); |
|
64 | 64 | print '<div class="table-responsive">'; |
65 | 65 | print '<table class="common-date table-striped">'; |
66 | 66 | print '<thead>'; |
@@ -70,13 +70,13 @@ discard block |
||
70 | 70 | print '</thead>'; |
71 | 71 | print '<tbody>'; |
72 | 72 | $i = 1; |
73 | - foreach($date_array as $date_item) |
|
73 | + foreach ($date_array as $date_item) |
|
74 | 74 | { |
75 | 75 | print '<tr>'; |
76 | 76 | print '<td><strong>'.$i.'</strong></td>'; |
77 | 77 | print '<td>'; |
78 | - if ($type == 'aircraft') print '<a href="'.$globalURL.'/date/'.date('Y-m-d',strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>'; |
|
79 | - else print '<a href="'.$globalURL.'/'.$type.'/date/'.date('Y-m-d',strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>'; |
|
78 | + if ($type == 'aircraft') print '<a href="'.$globalURL.'/date/'.date('Y-m-d', strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>'; |
|
79 | + else print '<a href="'.$globalURL.'/'.$type.'/date/'.date('Y-m-d', strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>'; |
|
80 | 80 | print '</td>'; |
81 | 81 | print '<td>'; |
82 | 82 | print $date_item['date_count']; |
@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | } else { |
20 | 20 | $title = _("Statistics").' - '._("Most common Country a flight was over"); |
21 | 21 | } |
22 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
22 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
23 | 23 | if ($airline_icao == '' && isset($globalFilter)) { |
24 | 24 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
25 | 25 | } |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | } |
49 | 49 | |
50 | 50 | if ($type == 'aircraft') { |
51 | - $flightover_array = $Stats->countAllFlightOverCountries(false,$airline_icao,$filter_name); |
|
51 | + $flightover_array = $Stats->countAllFlightOverCountries(false, $airline_icao, $filter_name); |
|
52 | 52 | } elseif ($type == 'marine') { |
53 | 53 | $flightover_array = $Marine->countAllMarineOverCountries(); |
54 | 54 | } elseif ($type == 'tracker') { |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | print '<div id="chart" class="chart" width="100%"></div><script>'; |
63 | 63 | print 'var series = ['; |
64 | 64 | $flightover_data = ''; |
65 | -foreach($flightover_array as $flightover_item) |
|
65 | +foreach ($flightover_array as $flightover_item) |
|
66 | 66 | { |
67 | 67 | $flightover_data .= '[ "'.$flightover_item['flight_country_iso3'].'",'.$flightover_item['flight_count'].'],'; |
68 | 68 | } |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | print '</thead>'; |
112 | 112 | print '<tbody>'; |
113 | 113 | $i = 1; |
114 | - array_splice($flightover_array,10); |
|
115 | - foreach($flightover_array as $flightover_item) |
|
114 | + array_splice($flightover_array, 10); |
|
115 | + foreach ($flightover_array as $flightover_item) |
|
116 | 116 | { |
117 | 117 | print '<tr>'; |
118 | 118 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | } |
18 | 18 | |
19 | 19 | if (!isset($filter_name)) $filter_name = ''; |
20 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
20 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
21 | 21 | if ($airline_icao == '' && isset($globalFilter)) { |
22 | 22 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
23 | 23 | } |
@@ -33,19 +33,19 @@ discard block |
||
33 | 33 | </div> |
34 | 34 | <p>'._("Below is a list of the most common <strong>time of day</strong>.").'</p>'; |
35 | 35 | |
36 | -if ($type == 'aircraft') $hour_array = $Stats->countAllHours('hour',true,$airline_icao,$filter_name); |
|
37 | -elseif ($type == 'marine') $hour_array = $Marine->countAllHours('hour',true); |
|
38 | -elseif ($type == 'tracker') $hour_array = $Tracker->countAllHours('hour',true); |
|
36 | +if ($type == 'aircraft') $hour_array = $Stats->countAllHours('hour', true, $airline_icao, $filter_name); |
|
37 | +elseif ($type == 'marine') $hour_array = $Marine->countAllHours('hour', true); |
|
38 | +elseif ($type == 'tracker') $hour_array = $Tracker->countAllHours('hour', true); |
|
39 | 39 | print '<div id="chartHour" class="chart" width="100%"></div><script>'; |
40 | 40 | $hour_data = ''; |
41 | 41 | $hour_cnt = ''; |
42 | -foreach($hour_array as $hour_item) |
|
42 | +foreach ($hour_array as $hour_item) |
|
43 | 43 | { |
44 | 44 | $hour_data .= '"'.$hour_item['hour_name'].':00",'; |
45 | 45 | $hour_cnt .= $hour_item['hour_count'].','; |
46 | 46 | } |
47 | 47 | $hour_data = "[".substr($hour_data, 0, -1)."]"; |
48 | -$hour_cnt = "['flights',".substr($hour_cnt,0,-1)."]"; |
|
48 | +$hour_cnt = "['flights',".substr($hour_cnt, 0, -1)."]"; |
|
49 | 49 | print 'c3.generate({ |
50 | 50 | bindto: "#chartHour", |
51 | 51 | data: { |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | axis: { x: { type: "category", categories: '.$hour_data.'},y: { label: "# of Flights"}},legend: { show: false }});'; |
54 | 54 | print '</script>'; |
55 | 55 | |
56 | -if ($type == 'aircraft') $hour_array = $Stats->countAllHours('count',true,$airline_icao,$filter_name); |
|
57 | -elseif ($type == 'marine') $hour_array = $Marine->countAllHours('count',true); |
|
58 | -elseif ($type == 'tracker') $hour_array = $Tracker->countAllHours('count',true); |
|
56 | +if ($type == 'aircraft') $hour_array = $Stats->countAllHours('count', true, $airline_icao, $filter_name); |
|
57 | +elseif ($type == 'marine') $hour_array = $Marine->countAllHours('count', true); |
|
58 | +elseif ($type == 'tracker') $hour_array = $Tracker->countAllHours('count', true); |
|
59 | 59 | if (!empty($hour_array)) |
60 | 60 | { |
61 | 61 | print '<div class="table-responsive">'; |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | print '</thead>'; |
68 | 68 | print '<tbody>'; |
69 | 69 | $i = 1; |
70 | - foreach($hour_array as $hour_item) |
|
70 | + foreach ($hour_array as $hour_item) |
|
71 | 71 | { |
72 | 72 | print '<tr>'; |
73 | 73 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | |
19 | 19 | |
20 | 20 | if (!isset($filter_name)) $filter_name = ''; |
21 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
21 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
22 | 22 | if ($airline_icao == '' && isset($globalFilter)) { |
23 | 23 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
24 | 24 | } |
@@ -33,19 +33,19 @@ discard block |
||
33 | 33 | </div> |
34 | 34 | <p>'._("Below is a chart that plots the busiest month during the <strong>last year</strong>.").'</p>'; |
35 | 35 | |
36 | -if ($type == 'aircraft') $date_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name); |
|
36 | +if ($type == 'aircraft') $date_array = $Stats->countAllMonthsLastYear(true, $airline_icao, $filter_name); |
|
37 | 37 | elseif ($type == 'marine') $date_array = $Marine->countAllMonthsLastYear(true); |
38 | 38 | elseif ($type == 'tracker') $date_array = $Tracker->countAllMonthsLastYear(true); |
39 | 39 | print '<div id="chart" class="chart" width="100%"></div><script>'; |
40 | 40 | $year_data = ''; |
41 | 41 | $year_cnt = ''; |
42 | -foreach($date_array as $year_item) |
|
42 | +foreach ($date_array as $year_item) |
|
43 | 43 | { |
44 | 44 | $year_data .= '"'.$year_item['year_name'].'-'.$year_item['month_name'].'-01'.'",'; |
45 | 45 | $year_cnt .= $year_item['date_count'].','; |
46 | 46 | } |
47 | 47 | $year_data = "['x',".substr($year_data, 0, -1)."]"; |
48 | -$year_cnt = "['flights',".substr($year_cnt,0,-1)."]"; |
|
48 | +$year_cnt = "['flights',".substr($year_cnt, 0, -1)."]"; |
|
49 | 49 | print 'c3.generate({ |
50 | 50 | bindto: "#chart", |
51 | 51 | data: { x: "x", |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | print '</thead>'; |
69 | 69 | print '<tbody>'; |
70 | 70 | $i = 1; |
71 | - foreach($date_array as $date_item) |
|
71 | + foreach ($date_array as $date_item) |
|
72 | 72 | { |
73 | 73 | print '<tr>'; |
74 | 74 | print '<td><strong>'.$i.'</strong></td>'; |