@@ -3,8 +3,8 @@ discard block |
||
| 3 | 3 | require_once('require/class.Spotter.php'); |
| 4 | 4 | require_once('require/class.Language.php'); |
| 5 | 5 | if (!isset($_GET['country'])) { |
| 6 | - header('Location: '.$globalURL.'/country'); |
|
| 7 | - die(); |
|
| 6 | + header('Location: '.$globalURL.'/country'); |
|
| 7 | + die(); |
|
| 8 | 8 | } |
| 9 | 9 | $Spotter = new Spotter(); |
| 10 | 10 | $country = ucwords(str_replace("-", " ", filter_input(INPUT_GET,'country',FILTER_SANITIZE_STRING))); |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | function drawChart() { |
| 62 | 62 | var data = google.visualization.arrayToDataTable([ |
| 63 | 63 | ["'._("Hour").'", "'._("# of Flights").'"], '; |
| 64 | - $hour_data = ''; |
|
| 64 | + $hour_data = ''; |
|
| 65 | 65 | foreach($hour_array as $hour_item) |
| 66 | 66 | { |
| 67 | 67 | $hour_data .= '[ "'.date("ga", strtotime($hour_item['hour_name'].":00")).'",'.$hour_item['hour_count'].'],'; |
@@ -7,8 +7,8 @@ discard block |
||
| 7 | 7 | die(); |
| 8 | 8 | } |
| 9 | 9 | $Spotter = new Spotter(); |
| 10 | -$country = ucwords(str_replace("-", " ", filter_input(INPUT_GET,'country',FILTER_SANITIZE_STRING))); |
|
| 11 | -$sort = filter_input(INPUT_GET,'sort',FILTER_SANITIZE_STRING); |
|
| 10 | +$country = ucwords(str_replace("-", " ", filter_input(INPUT_GET, 'country', FILTER_SANITIZE_STRING))); |
|
| 11 | +$sort = filter_input(INPUT_GET, 'sort', FILTER_SANITIZE_STRING); |
|
| 12 | 12 | |
| 13 | 13 | if (isset($_GET['sort'])) { |
| 14 | 14 | $spotter_array = $Spotter->getSpotterDataByCountry($country, "0,1", $sort); |
@@ -18,16 +18,16 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | if (!empty($spotter_array)) |
| 20 | 20 | { |
| 21 | - $title = sprintf(_("Most Common Time of Day from %s"),$country); |
|
| 21 | + $title = sprintf(_("Most Common Time of Day from %s"), $country); |
|
| 22 | 22 | require_once('header.php'); |
| 23 | 23 | print '<div class="select-item">'; |
| 24 | 24 | print '<form action="'.$globalURL.'/country" method="post">'; |
| 25 | 25 | print '<select name="country" class="selectpicker" data-live-search="true">'; |
| 26 | 26 | print '<option></option>'; |
| 27 | 27 | $all_countries = $Spotter->getAllCountries(); |
| 28 | - foreach($all_countries as $all_country) |
|
| 28 | + foreach ($all_countries as $all_country) |
|
| 29 | 29 | { |
| 30 | - if($country == $all_country['country']) |
|
| 30 | + if ($country == $all_country['country']) |
|
| 31 | 31 | { |
| 32 | 32 | print '<option value="'.strtolower(str_replace(" ", "-", $all_country['country'])).'" selected="selected">'.$all_country['country'].'</option>'; |
| 33 | 33 | } else { |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | if ($_GET['country'] != "NA") |
| 43 | 43 | { |
| 44 | 44 | print '<div class="info column">'; |
| 45 | - print '<h1>'.sprintf(_("Airports & Airlines from %s"),$country).'</h1>'; |
|
| 45 | + print '<h1>'.sprintf(_("Airports & Airlines from %s"), $country).'</h1>'; |
|
| 46 | 46 | print '</div>'; |
| 47 | 47 | } else { |
| 48 | 48 | print '<div class="alert alert-warning">'._("This special country profile shows all flights that do <u>not</u> have a country of a airline or departure/arrival airport associated with them.").'</div>'; |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | include('country-sub-menu.php'); |
| 52 | 52 | print '<div class="column">'; |
| 53 | 53 | print '<h2>'._("Most Common Time of Day").'</h2>'; |
| 54 | - print '<p>'.sprintf(_("The statistic below shows the most common time of day of airports & airlines from <strong>%s</strong>."),$country).'</p>'; |
|
| 54 | + print '<p>'.sprintf(_("The statistic below shows the most common time of day of airports & airlines from <strong>%s</strong>."), $country).'</p>'; |
|
| 55 | 55 | $hour_array = $Spotter->countAllHoursByCountry($country); |
| 56 | 56 | print '<script type="text/javascript" src="https://www.google.com/jsapi"></script>'; |
| 57 | 57 | print '<div id="chartHour" class="chart" width="100%"></div> |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | var data = google.visualization.arrayToDataTable([ |
| 63 | 63 | ["'._("Hour").'", "'._("# of Flights").'"], '; |
| 64 | 64 | $hour_data = ''; |
| 65 | - foreach($hour_array as $hour_item) |
|
| 65 | + foreach ($hour_array as $hour_item) |
|
| 66 | 66 | { |
| 67 | 67 | $hour_data .= '[ "'.date("ga", strtotime($hour_item['hour_name'].":00")).'",'.$hour_item['hour_count'].'],'; |
| 68 | 68 | } |
@@ -3,8 +3,8 @@ |
||
| 3 | 3 | require_once('require/class.Spotter.php'); |
| 4 | 4 | require_once('require/class.Language.php'); |
| 5 | 5 | if (!isset($_GET['country'])) { |
| 6 | - header('Location: '.$globalURL.'/country'); |
|
| 7 | - die(); |
|
| 6 | + header('Location: '.$globalURL.'/country'); |
|
| 7 | + die(); |
|
| 8 | 8 | } |
| 9 | 9 | $Spotter = new Spotter(); |
| 10 | 10 | $country = ucwords(str_replace("-", " ", filter_input(INPUT_GET,'country',FILTER_SANITIZE_STRING))); |
@@ -7,8 +7,8 @@ discard block |
||
| 7 | 7 | die(); |
| 8 | 8 | } |
| 9 | 9 | $Spotter = new Spotter(); |
| 10 | -$country = ucwords(str_replace("-", " ", filter_input(INPUT_GET,'country',FILTER_SANITIZE_STRING))); |
|
| 11 | -$sort = filter_input(INPUT_GET,'sort',FILTER_SANITIZE_STRING); |
|
| 10 | +$country = ucwords(str_replace("-", " ", filter_input(INPUT_GET, 'country', FILTER_SANITIZE_STRING))); |
|
| 11 | +$sort = filter_input(INPUT_GET, 'sort', FILTER_SANITIZE_STRING); |
|
| 12 | 12 | |
| 13 | 13 | if (isset($_GET['sort'])) { |
| 14 | 14 | $spotter_array = $Spotter->getSpotterDataByCountry($country, "0,1", $sort); |
@@ -18,16 +18,16 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | if (!empty($spotter_array)) |
| 20 | 20 | { |
| 21 | - $title = sprintf(_("Most Common Departure Airports from %s"),$country); |
|
| 21 | + $title = sprintf(_("Most Common Departure Airports from %s"), $country); |
|
| 22 | 22 | require_once('header.php'); |
| 23 | 23 | print '<div class="select-item">'; |
| 24 | 24 | print '<form action="'.$globalURL.'/country" method="post">'; |
| 25 | 25 | print '<select name="country" class="selectpicker" data-live-search="true">'; |
| 26 | 26 | print '<option></option>'; |
| 27 | 27 | $all_countries = $Spotter->getAllCountries(); |
| 28 | - foreach($all_countries as $all_country) |
|
| 28 | + foreach ($all_countries as $all_country) |
|
| 29 | 29 | { |
| 30 | - if($country == $all_country['country']) |
|
| 30 | + if ($country == $all_country['country']) |
|
| 31 | 31 | { |
| 32 | 32 | print '<option value="'.strtolower(str_replace(" ", "-", $all_country['country'])).'" selected="selected">'.$all_country['country'].'</option>'; |
| 33 | 33 | } else { |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | if ($_GET['country'] != "NA") |
| 42 | 42 | { |
| 43 | 43 | print '<div class="info column">'; |
| 44 | - print '<h1>'.sprintf(_("Airports & Airlines from %s"),$country).'</h1>'; |
|
| 44 | + print '<h1>'.sprintf(_("Airports & Airlines from %s"), $country).'</h1>'; |
|
| 45 | 45 | print '</div>'; |
| 46 | 46 | } else { |
| 47 | 47 | print '<div class="alert alert-warning">'._("This special country profile shows all flights that do <u>not</u> have a country of a airline or departure/arrival airport associated with them.").'</div>'; |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | include('country-sub-menu.php'); |
| 51 | 51 | print '<div class="column">'; |
| 52 | 52 | print '<h2>'._("Most Common Departure Airports").'</h2>'; |
| 53 | - print '<p>'.sprintf(_("The statistic below shows all departure airports of flights of airports & airlines from <strong>%s</strong>."),$country).'</p>'; |
|
| 53 | + print '<p>'.sprintf(_("The statistic below shows all departure airports of flights of airports & airlines from <strong>%s</strong>."), $country).'</p>'; |
|
| 54 | 54 | |
| 55 | 55 | $airport_airport_array = $Spotter->countAllDepartureAirportsByCountry($country); |
| 56 | 56 | print '<script type="text/javascript" src="https://www.google.com/jsapi"></script> |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | ["'._("Airport").'", "'._("# of times").'"],'; |
| 67 | 67 | |
| 68 | 68 | $airport_data = ''; |
| 69 | - foreach($airport_airport_array as $airport_item) |
|
| 69 | + foreach ($airport_airport_array as $airport_item) |
|
| 70 | 70 | { |
| 71 | 71 | $name = $airport_item['airport_departure_city'].', '.$airport_item['airport_departure_country'].' ('.$airport_item['airport_departure_icao'].')'; |
| 72 | 72 | $name = str_replace("'", "", $name); |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | print '</thead>'; |
| 105 | 105 | print '<tbody>'; |
| 106 | 106 | $i = 1; |
| 107 | - foreach($airport_airport_array as $airport_item) |
|
| 107 | + foreach ($airport_airport_array as $airport_item) |
|
| 108 | 108 | { |
| 109 | 109 | print '<tr>'; |
| 110 | 110 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | <?php |
| 30 | 30 | if (isset($_GET['q'])) |
| 31 | 31 | { |
| 32 | - $spotter_array = $Spotter->searchSpotterData($_GET['q'],"","","","","","","","","","","","","","","","","","0,10","",""); |
|
| 32 | + $spotter_array = $Spotter->searchSpotterData($_GET['q'], "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "0,10", "", ""); |
|
| 33 | 33 | } else { |
| 34 | 34 | $spotter_array = $Spotter->getLatestSpotterData("0,10", ""); |
| 35 | 35 | } |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | print '<div class="table-responsive">'; |
| 38 | 38 | print '<table id="table-tv">'; |
| 39 | 39 | print '<tbody>'; |
| 40 | -foreach($spotter_array as $spotter_item) |
|
| 40 | +foreach ($spotter_array as $spotter_item) |
|
| 41 | 41 | { |
| 42 | 42 | if (isset($globalTimezone)) { |
| 43 | 43 | date_default_timezone_set($globalTimezone); |
@@ -7,8 +7,8 @@ discard block |
||
| 7 | 7 | die(); |
| 8 | 8 | } |
| 9 | 9 | $Spotter = new Spotter(); |
| 10 | -$country = ucwords(str_replace("-", " ", filter_input(INPUT_GET,'country',FILTER_SANITIZE_STRING))); |
|
| 11 | -$sort = filter_input(INPUT_GET,'sort',FILTER_SANITIZE_STRING); |
|
| 10 | +$country = ucwords(str_replace("-", " ", filter_input(INPUT_GET, 'country', FILTER_SANITIZE_STRING))); |
|
| 11 | +$sort = filter_input(INPUT_GET, 'sort', FILTER_SANITIZE_STRING); |
|
| 12 | 12 | if (isset($_GET['sort'])) { |
| 13 | 13 | $spotter_array = $Spotter->getSpotterDataByCountry($country, "0,1", $sort); |
| 14 | 14 | } else { |
@@ -17,16 +17,16 @@ discard block |
||
| 17 | 17 | |
| 18 | 18 | if (!empty($spotter_array)) |
| 19 | 19 | { |
| 20 | - $title = sprintf(_("Most Common Aircraft Manufacturer from %s"),$country); |
|
| 20 | + $title = sprintf(_("Most Common Aircraft Manufacturer from %s"), $country); |
|
| 21 | 21 | require_once('header.php'); |
| 22 | 22 | print '<div class="select-item">'; |
| 23 | 23 | print '<form action="'.$globalURL.'/country" method="post">'; |
| 24 | 24 | print '<select name="country" class="selectpicker" data-live-search="true">'; |
| 25 | 25 | print '<option></option>'; |
| 26 | 26 | $all_countries = $Spotter->getAllCountries(); |
| 27 | - foreach($all_countries as $all_country) |
|
| 27 | + foreach ($all_countries as $all_country) |
|
| 28 | 28 | { |
| 29 | - if($country == $all_country['country']) |
|
| 29 | + if ($country == $all_country['country']) |
|
| 30 | 30 | { |
| 31 | 31 | print '<option value="'.strtolower(str_replace(" ", "-", $all_country['country'])).'" selected="selected">'.$all_country['country'].'</option>'; |
| 32 | 32 | } else { |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | if ($_GET['country'] != "NA") |
| 42 | 42 | { |
| 43 | 43 | print '<div class="info column">'; |
| 44 | - print '<h1>'.sprintf(_("Airports & Airlines from %s"),$country).'</h1>'; |
|
| 44 | + print '<h1>'.sprintf(_("Airports & Airlines from %s"), $country).'</h1>'; |
|
| 45 | 45 | print '</div>'; |
| 46 | 46 | } else { |
| 47 | 47 | print '<div class="alert alert-warning">'._("This special country profile shows all flights that do <u>not</u> have a country of a airline or departure/arrival airport associated with them.").'</div>'; |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | include('country-sub-menu.php'); |
| 51 | 51 | print '<div class="column">'; |
| 52 | 52 | print '<h2>'._("Most Common Aircraft Manufacturer").'</h2>'; |
| 53 | - print '<p>'.sprintf(_("The statistic below shows the most common Aircraft Manufacturer of airlines or departure/arrival airports from <strong>%s</strong>."),$country).'</p>'; |
|
| 53 | + print '<p>'.sprintf(_("The statistic below shows the most common Aircraft Manufacturer of airlines or departure/arrival airports from <strong>%s</strong>."), $country).'</p>'; |
|
| 54 | 54 | $manufacturers_array = $Spotter->countAllAircraftManufacturerByCountry($country); |
| 55 | 55 | if (!empty($manufacturers_array)) |
| 56 | 56 | { |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | print '</thead>'; |
| 64 | 64 | print '<tbody>'; |
| 65 | 65 | $i = 1; |
| 66 | - foreach($manufacturers_array as $manufacturer_item) |
|
| 66 | + foreach ($manufacturers_array as $manufacturer_item) |
|
| 67 | 67 | { |
| 68 | 68 | print '<tr>'; |
| 69 | 69 | print '<td><strong>'.$i.'</strong></td>'; |
@@ -3,8 +3,8 @@ |
||
| 3 | 3 | require_once('require/class.Spotter.php'); |
| 4 | 4 | require_once('require/class.Language.php'); |
| 5 | 5 | if (!isset($_GET['country'])) { |
| 6 | - header('Location: '.$globalURL.'/country'); |
|
| 7 | - die(); |
|
| 6 | + header('Location: '.$globalURL.'/country'); |
|
| 7 | + die(); |
|
| 8 | 8 | } |
| 9 | 9 | $Spotter = new Spotter(); |
| 10 | 10 | $country = ucwords(str_replace("-", " ", filter_input(INPUT_GET,'country',FILTER_SANITIZE_STRING))); |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | function drawChart6() { |
| 63 | 63 | var data = google.visualization.arrayToDataTable([ |
| 64 | 64 | ["Hour","Altitude","Speed"], '; |
| 65 | - $altitude_data = ''; |
|
| 65 | + $altitude_data = ''; |
|
| 66 | 66 | foreach($all_data as $data) |
| 67 | 67 | { |
| 68 | 68 | $altitude_data .= '[ "'.date("G:i",strtotime($data['date']." UTC")).'",'.$data['altitude'].','.$data['ground_speed'].'],'; |
@@ -1,5 +1,5 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -$id = filter_input(INPUT_GET,'id',FILTER_SANITIZE_STRING); |
|
| 2 | +$id = filter_input(INPUT_GET, 'id', FILTER_SANITIZE_STRING); |
|
| 3 | 3 | if ($id == "") |
| 4 | 4 | { |
| 5 | 5 | header('Location: /'); |
@@ -16,30 +16,30 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | if (!empty($spotter_array)) |
| 18 | 18 | { |
| 19 | - if(isset($spotter_array[0]['flightaware_id'])) { |
|
| 19 | + if (isset($spotter_array[0]['flightaware_id'])) { |
|
| 20 | 20 | $flightaware_id = $spotter_array[0]['flightaware_id']; |
| 21 | 21 | } |
| 22 | - if(isset($spotter_array[0]['last_latitude']) && $spotter_array[0]['last_latitude'] != '') { |
|
| 22 | + if (isset($spotter_array[0]['last_latitude']) && $spotter_array[0]['last_latitude'] != '') { |
|
| 23 | 23 | $latitude = $spotter_array[0]['last_latitude']; |
| 24 | - } elseif(isset($spotter_array[0]['latitude'])) { |
|
| 24 | + } elseif (isset($spotter_array[0]['latitude'])) { |
|
| 25 | 25 | $latitude = $spotter_array[0]['latitude']; |
| 26 | 26 | } |
| 27 | - if(isset($spotter_array[0]['last_longitude']) && $spotter_array[0]['last_longitude'] != '') { |
|
| 27 | + if (isset($spotter_array[0]['last_longitude']) && $spotter_array[0]['last_longitude'] != '') { |
|
| 28 | 28 | $longitude = $spotter_array[0]['last_longitude']; |
| 29 | - } elseif(isset($spotter_array[0]['longitude'])) { |
|
| 29 | + } elseif (isset($spotter_array[0]['longitude'])) { |
|
| 30 | 30 | $longitude = $spotter_array[0]['longitude']; |
| 31 | 31 | } |
| 32 | 32 | $title = ''; |
| 33 | - if(isset($spotter_array[0]['ident'])) { |
|
| 33 | + if (isset($spotter_array[0]['ident'])) { |
|
| 34 | 34 | $title .= $spotter_array[0]['ident']; |
| 35 | 35 | } |
| 36 | - if(isset($spotter_array[0]['airline_name'])) { |
|
| 36 | + if (isset($spotter_array[0]['airline_name'])) { |
|
| 37 | 37 | $title .= ' - '.$spotter_array[0]['airline_name']; |
| 38 | 38 | } |
| 39 | - if(isset($spotter_array[0]['aircraft_name']) && $spotter_array[0]['aircraft_name'] != 'Not Available') { |
|
| 39 | + if (isset($spotter_array[0]['aircraft_name']) && $spotter_array[0]['aircraft_name'] != 'Not Available') { |
|
| 40 | 40 | $title .= ' - '.$spotter_array[0]['aircraft_name'].' ('.$spotter_array[0]['aircraft_type'].')'; |
| 41 | 41 | } |
| 42 | - if(isset($spotter_array[0]['registration']) && $spotter_array[0]['registration'] != 'NA' && $spotter_array[0]['registration'] != 'N/A') { |
|
| 42 | + if (isset($spotter_array[0]['registration']) && $spotter_array[0]['registration'] != 'NA' && $spotter_array[0]['registration'] != 'N/A') { |
|
| 43 | 43 | $title .= ' - '.$spotter_array[0]['registration']; |
| 44 | 44 | } |
| 45 | 45 | //$facebook_meta_image = $spotter_array[0]['image']; |
@@ -64,9 +64,9 @@ discard block |
||
| 64 | 64 | var data = google.visualization.arrayToDataTable([ |
| 65 | 65 | ["Hour","Altitude","Speed"], '; |
| 66 | 66 | $altitude_data = ''; |
| 67 | - foreach($all_data as $data) |
|
| 67 | + foreach ($all_data as $data) |
|
| 68 | 68 | { |
| 69 | - $altitude_data .= '[ "'.date("G:i",strtotime($data['date']." UTC")).'",'.$data['altitude'].','.$data['ground_speed'].'],'; |
|
| 69 | + $altitude_data .= '[ "'.date("G:i", strtotime($data['date']." UTC")).'",'.$data['altitude'].','.$data['ground_speed'].'],'; |
|
| 70 | 70 | } |
| 71 | 71 | $altitude_data = substr($altitude_data, 0, -1); |
| 72 | 72 | print $altitude_data.']); |
@@ -108,16 +108,16 @@ discard block |
||
| 108 | 108 | print '<a href="'.$globalURL.'/airline/'.$spotter_array[0]['airline_icao'].'">'.$spotter_array[0]['airline_name'].'</a> '; |
| 109 | 109 | } |
| 110 | 110 | } |
| 111 | - if(isset($spotter_array[0]['ident'])) { |
|
| 111 | + if (isset($spotter_array[0]['ident'])) { |
|
| 112 | 112 | print $spotter_array[0]['ident']; |
| 113 | 113 | } |
| 114 | - if(isset($spotter_array[0]['airline_name'])) { |
|
| 114 | + if (isset($spotter_array[0]['airline_name'])) { |
|
| 115 | 115 | print ' - '.$spotter_array[0]['airline_name']; |
| 116 | 116 | } |
| 117 | - if(isset($spotter_array[0]['aircraft_name']) && $spotter_array[0]['aircraft_name'] != 'Not Available') { |
|
| 117 | + if (isset($spotter_array[0]['aircraft_name']) && $spotter_array[0]['aircraft_name'] != 'Not Available') { |
|
| 118 | 118 | print ' - '.$spotter_array[0]['aircraft_name'].' ('.$spotter_array[0]['aircraft_type'].')'; |
| 119 | 119 | } |
| 120 | - if(isset($spotter_array[0]['registration']) && $spotter_array[0]['registration'] != 'NA') { |
|
| 120 | + if (isset($spotter_array[0]['registration']) && $spotter_array[0]['registration'] != 'NA') { |
|
| 121 | 121 | print ' - '.$spotter_array[0]['registration']; |
| 122 | 122 | } |
| 123 | 123 | print '</h1>'; |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | print '</div>'; |
| 272 | 272 | */ |
| 273 | 273 | |
| 274 | - foreach($spotter_array as $spotter_item) |
|
| 274 | + foreach ($spotter_array as $spotter_item) |
|
| 275 | 275 | { |
| 276 | 276 | print '<div class="details">'; |
| 277 | 277 | print '<h3>'._("Flight Information").'</h3>'; |
@@ -371,7 +371,7 @@ discard block |
||
| 371 | 371 | if (isset($spotter_item['departure_airport_time']) && $spotter_item['departure_airport_time'] != '') { |
| 372 | 372 | if ($spotter_item['departure_airport_time'] > 2460) { |
| 373 | 373 | print '<div class="time">'; |
| 374 | - print 'at '.date('H:m',$spotter_item['departure_airport_time']); |
|
| 374 | + print 'at '.date('H:m', $spotter_item['departure_airport_time']); |
|
| 375 | 375 | print '</div>'; |
| 376 | 376 | } else { |
| 377 | 377 | print '<div class="time">'; |
@@ -520,19 +520,19 @@ discard block |
||
| 520 | 520 | $departure_airport_info = $Spotter->getAllAirportInfo($spotter_item['departure_airport']); |
| 521 | 521 | if (isset($spotter_item['last_latitude']) && $spotter_item['last_latitude'] != '') { |
| 522 | 522 | if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'nm') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'nm')) { |
| 523 | - print $Common->distance($spotter_item['last_latitude'],$spotter_item['last_longitude'],$departure_airport_info[0]['latitude'],$departure_airport_info[0]['longitude'],'nm').' nm'; |
|
| 523 | + print $Common->distance($spotter_item['last_latitude'], $spotter_item['last_longitude'], $departure_airport_info[0]['latitude'], $departure_airport_info[0]['longitude'], 'nm').' nm'; |
|
| 524 | 524 | } elseif ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'mi') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'mi')) { |
| 525 | - print $Common->distance($spotter_item['last_latitude'],$spotter_item['last_longitude'],$departure_airport_info[0]['latitude'],$departure_airport_info[0]['longitude'],'mi').' mi'; |
|
| 525 | + print $Common->distance($spotter_item['last_latitude'], $spotter_item['last_longitude'], $departure_airport_info[0]['latitude'], $departure_airport_info[0]['longitude'], 'mi').' mi'; |
|
| 526 | 526 | } else { |
| 527 | - print $Common->distance($spotter_item['last_latitude'],$spotter_item['last_longitude'],$departure_airport_info[0]['latitude'],$departure_airport_info[0]['longitude'],'km').' km'; |
|
| 527 | + print $Common->distance($spotter_item['last_latitude'], $spotter_item['last_longitude'], $departure_airport_info[0]['latitude'], $departure_airport_info[0]['longitude'], 'km').' km'; |
|
| 528 | 528 | } |
| 529 | 529 | } else { |
| 530 | 530 | if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'nm') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'nm')) { |
| 531 | - print $Common->distance($spotter_item['latitude'],$spotter_item['longitude'],$departure_airport_info[0]['latitude'],$departure_airport_info[0]['longitude'],'nm').' nm'; |
|
| 531 | + print $Common->distance($spotter_item['latitude'], $spotter_item['longitude'], $departure_airport_info[0]['latitude'], $departure_airport_info[0]['longitude'], 'nm').' nm'; |
|
| 532 | 532 | } elseif ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'mi') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'mi')) { |
| 533 | - print $Common->distance($spotter_item['latitude'],$spotter_item['longitude'],$departure_airport_info[0]['latitude'],$departure_airport_info[0]['longitude'],'mi').' mi'; |
|
| 533 | + print $Common->distance($spotter_item['latitude'], $spotter_item['longitude'], $departure_airport_info[0]['latitude'], $departure_airport_info[0]['longitude'], 'mi').' mi'; |
|
| 534 | 534 | } else { |
| 535 | - print $Common->distance($spotter_item['latitude'],$spotter_item['longitude'],$departure_airport_info[0]['latitude'],$departure_airport_info[0]['longitude'],'km').' km'; |
|
| 535 | + print $Common->distance($spotter_item['latitude'], $spotter_item['longitude'], $departure_airport_info[0]['latitude'], $departure_airport_info[0]['longitude'], 'km').' km'; |
|
| 536 | 536 | } |
| 537 | 537 | } |
| 538 | 538 | print '</div>'; |
@@ -546,19 +546,19 @@ discard block |
||
| 546 | 546 | $arrival_airport_info = $Spotter->getAllAirportInfo($spotter_item['arrival_airport']); |
| 547 | 547 | if (isset($spotter_item['last_latitude']) && $spotter_item['last_latitude'] != '') { |
| 548 | 548 | if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'nm') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'nm')) { |
| 549 | - print $Common->distance($spotter_item['last_latitude'],$spotter_item['last_longitude'],$arrival_airport_info[0]['latitude'],$arrival_airport_info[0]['longitude'],'nm').' nm'; |
|
| 549 | + print $Common->distance($spotter_item['last_latitude'], $spotter_item['last_longitude'], $arrival_airport_info[0]['latitude'], $arrival_airport_info[0]['longitude'], 'nm').' nm'; |
|
| 550 | 550 | } elseif ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'mi') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'mi')) { |
| 551 | - print $Common->distance($spotter_item['last_latitude'],$spotter_item['last_longitude'],$arrival_airport_info[0]['latitude'],$arrival_airport_info[0]['longitude'],'mi').' mi'; |
|
| 551 | + print $Common->distance($spotter_item['last_latitude'], $spotter_item['last_longitude'], $arrival_airport_info[0]['latitude'], $arrival_airport_info[0]['longitude'], 'mi').' mi'; |
|
| 552 | 552 | } else { |
| 553 | - print $Common->distance($spotter_item['last_latitude'],$spotter_item['last_longitude'],$arrival_airport_info[0]['latitude'],$arrival_airport_info[0]['longitude'],'km').' km'; |
|
| 553 | + print $Common->distance($spotter_item['last_latitude'], $spotter_item['last_longitude'], $arrival_airport_info[0]['latitude'], $arrival_airport_info[0]['longitude'], 'km').' km'; |
|
| 554 | 554 | } |
| 555 | 555 | } else { |
| 556 | 556 | if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'nm') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'nm')) { |
| 557 | - print $Common->distance($spotter_item['latitude'],$spotter_item['longitude'],$arrival_airport_info[0]['latitude'],$arrival_airport_info[0]['longitude'],'nm').' nm'; |
|
| 557 | + print $Common->distance($spotter_item['latitude'], $spotter_item['longitude'], $arrival_airport_info[0]['latitude'], $arrival_airport_info[0]['longitude'], 'nm').' nm'; |
|
| 558 | 558 | } elseif ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'mi') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'mi')) { |
| 559 | - print $Common->distance($spotter_item['latitude'],$spotter_item['longitude'],$arrival_airport_info[0]['latitude'],$arrival_airport_info[0]['longitude'],'mi').' mi'; |
|
| 559 | + print $Common->distance($spotter_item['latitude'], $spotter_item['longitude'], $arrival_airport_info[0]['latitude'], $arrival_airport_info[0]['longitude'], 'mi').' mi'; |
|
| 560 | 560 | } else { |
| 561 | - print $Common->distance($spotter_item['latitude'],$spotter_item['longitude'],$arrival_airport_info[0]['latitude'],$arrival_airport_info[0]['longitude'],'km').' km'; |
|
| 561 | + print $Common->distance($spotter_item['latitude'], $spotter_item['longitude'], $arrival_airport_info[0]['latitude'], $arrival_airport_info[0]['longitude'], 'km').' km'; |
|
| 562 | 562 | } |
| 563 | 563 | } |
| 564 | 564 | print '</div>'; |
@@ -577,7 +577,7 @@ discard block |
||
| 577 | 577 | print '<div class="last-flights">'; |
| 578 | 578 | print '<h3>'._("Last 5 Flights of this Aircraft").' ('.$spotter_array[0]['registration'].')</h3>'; |
| 579 | 579 | $hide_th_links = true; |
| 580 | - $spotter_array = $Spotter->getSpotterDataByRegistration($spotter_array[0]['registration'],"0,5", ""); |
|
| 580 | + $spotter_array = $Spotter->getSpotterDataByRegistration($spotter_array[0]['registration'], "0,5", ""); |
|
| 581 | 581 | include('table-output.php'); |
| 582 | 582 | print '<div class="more">'; |
| 583 | 583 | print '<a href="'.$globalURL.'/registration/'.$spotter_array[0]['registration'].'" class="btn btn-default btn" role="button">See all Flights»</a>'; |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | |
| 9 | 9 | $page_url = $globalURL.'/acars-latest'; |
| 10 | 10 | |
| 11 | -if(!isset($_GET['limit'])) |
|
| 11 | +if (!isset($_GET['limit'])) |
|
| 12 | 12 | { |
| 13 | 13 | $limit_start = 0; |
| 14 | 14 | $limit_end = 25; |
@@ -89,7 +89,7 @@ |
||
| 89 | 89 | function drawChart6() { |
| 90 | 90 | var data = google.visualization.arrayToDataTable([ |
| 91 | 91 | ["Hour","'._("Altitude").'","'._("Speed").'"], '; |
| 92 | - $altitude_data = ''; |
|
| 92 | + $altitude_data = ''; |
|
| 93 | 93 | foreach($all_data as $data) |
| 94 | 94 | { |
| 95 | 95 | $altitude_data .= '[ "'.date("G:i",strtotime($data['date']." UTC")).'",'.$data['altitude'].','.$data['ground_speed'].'],'; |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | require_once('require/class.Language.php'); |
| 4 | 4 | require_once('require/class.Translation.php'); |
| 5 | 5 | $type = ''; |
| 6 | -$ident = urldecode(filter_input(INPUT_GET,'ident',FILTER_SANITIZE_STRING)); |
|
| 6 | +$ident = urldecode(filter_input(INPUT_GET, 'ident', FILTER_SANITIZE_STRING)); |
|
| 7 | 7 | if (isset($_GET['marine'])) { |
| 8 | 8 | require_once('require/class.Marine.php'); |
| 9 | 9 | require_once('require/class.MarineLive.php'); |
@@ -30,12 +30,12 @@ discard block |
||
| 30 | 30 | $page_url = $globalURL.'/ident/'.$_GET['ident']; |
| 31 | 31 | } |
| 32 | 32 | |
| 33 | -if (!isset($_GET['ident'])){ |
|
| 33 | +if (!isset($_GET['ident'])) { |
|
| 34 | 34 | header('Location: '.$globalURL.''); |
| 35 | 35 | } else { |
| 36 | 36 | $Translation = new Translation(); |
| 37 | 37 | //calculuation for the pagination |
| 38 | - if(!isset($_GET['limit'])) |
|
| 38 | + if (!isset($_GET['limit'])) |
|
| 39 | 39 | { |
| 40 | 40 | $limit_start = 0; |
| 41 | 41 | $limit_end = 25; |
@@ -54,18 +54,18 @@ discard block |
||
| 54 | 54 | $limit_previous_1 = $limit_start - $absolute_difference; |
| 55 | 55 | $limit_previous_2 = $limit_end - $absolute_difference; |
| 56 | 56 | |
| 57 | - $sort = filter_input(INPUT_GET,'sort',FILTER_SANITIZE_STRING); |
|
| 57 | + $sort = filter_input(INPUT_GET, 'sort', FILTER_SANITIZE_STRING); |
|
| 58 | 58 | if ($type == 'aircraft') { |
| 59 | 59 | if ($sort != '') |
| 60 | 60 | { |
| 61 | - $spotter_array = $Spotter->getSpotterDataByIdent($ident,$limit_start.",".$absolute_difference, $sort); |
|
| 61 | + $spotter_array = $Spotter->getSpotterDataByIdent($ident, $limit_start.",".$absolute_difference, $sort); |
|
| 62 | 62 | if (empty($spotter_array)) { |
| 63 | - $spotter_array = $SpotterArchive->getSpotterDataByIdent($ident,$limit_start.",".$absolute_difference, $sort); |
|
| 63 | + $spotter_array = $SpotterArchive->getSpotterDataByIdent($ident, $limit_start.",".$absolute_difference, $sort); |
|
| 64 | 64 | } |
| 65 | 65 | } else { |
| 66 | - $spotter_array = $Spotter->getSpotterDataByIdent($ident,$limit_start.",".$absolute_difference); |
|
| 66 | + $spotter_array = $Spotter->getSpotterDataByIdent($ident, $limit_start.",".$absolute_difference); |
|
| 67 | 67 | if (empty($spotter_array)) { |
| 68 | - $spotter_array = $SpotterArchive->getSpotterDataByIdent($ident,$limit_start.",".$absolute_difference); |
|
| 68 | + $spotter_array = $SpotterArchive->getSpotterDataByIdent($ident, $limit_start.",".$absolute_difference); |
|
| 69 | 69 | } |
| 70 | 70 | } |
| 71 | 71 | if (empty($spotter_array)) { |
@@ -74,14 +74,14 @@ discard block |
||
| 74 | 74 | $ident = $new_ident; |
| 75 | 75 | if ($sort != '') |
| 76 | 76 | { |
| 77 | - $spotter_array = $Spotter->getSpotterDataByIdent($ident,$limit_start.",".$absolute_difference, $sort); |
|
| 77 | + $spotter_array = $Spotter->getSpotterDataByIdent($ident, $limit_start.",".$absolute_difference, $sort); |
|
| 78 | 78 | if (empty($spotter_array)) { |
| 79 | - $spotter_array = $SpotterArchive->getSpotterDataByIdent($ident,$limit_start.",".$absolute_difference, $sort); |
|
| 79 | + $spotter_array = $SpotterArchive->getSpotterDataByIdent($ident, $limit_start.",".$absolute_difference, $sort); |
|
| 80 | 80 | } |
| 81 | 81 | } else { |
| 82 | - $spotter_array = $Spotter->getSpotterDataByIdent($ident,$limit_start.",".$absolute_difference); |
|
| 82 | + $spotter_array = $Spotter->getSpotterDataByIdent($ident, $limit_start.",".$absolute_difference); |
|
| 83 | 83 | if (empty($spotter_array)) { |
| 84 | - $spotter_array = $SpotterArchive->getSpotterDataByIdent($ident,$limit_start.",".$absolute_difference); |
|
| 84 | + $spotter_array = $SpotterArchive->getSpotterDataByIdent($ident, $limit_start.",".$absolute_difference); |
|
| 85 | 85 | } |
| 86 | 86 | } |
| 87 | 87 | } |
@@ -89,34 +89,34 @@ discard block |
||
| 89 | 89 | } elseif ($type == 'marine') { |
| 90 | 90 | if ($sort != '') |
| 91 | 91 | { |
| 92 | - $spotter_array = $Marine->getMarineDataByIdent($ident,$limit_start.",".$absolute_difference, $sort); |
|
| 92 | + $spotter_array = $Marine->getMarineDataByIdent($ident, $limit_start.",".$absolute_difference, $sort); |
|
| 93 | 93 | if (empty($spotter_array)) { |
| 94 | - $spotter_array = $MarineArchive->getMarineDataByIdent($ident,$limit_start.",".$absolute_difference, $sort); |
|
| 94 | + $spotter_array = $MarineArchive->getMarineDataByIdent($ident, $limit_start.",".$absolute_difference, $sort); |
|
| 95 | 95 | } |
| 96 | 96 | } else { |
| 97 | - $spotter_array = $Marine->getMarineDataByIdent($ident,$limit_start.",".$absolute_difference); |
|
| 97 | + $spotter_array = $Marine->getMarineDataByIdent($ident, $limit_start.",".$absolute_difference); |
|
| 98 | 98 | if (empty($spotter_array)) { |
| 99 | - $spotter_array = $MarineArchive->getMarineDataByIdent($ident,$limit_start.",".$absolute_difference); |
|
| 99 | + $spotter_array = $MarineArchive->getMarineDataByIdent($ident, $limit_start.",".$absolute_difference); |
|
| 100 | 100 | } |
| 101 | 101 | } |
| 102 | 102 | } elseif ($type == 'tracker') { |
| 103 | 103 | if ($sort != '') |
| 104 | 104 | { |
| 105 | - $spotter_array = $Tracker->getTrackerDataByIdent($ident,$limit_start.",".$absolute_difference, $sort); |
|
| 105 | + $spotter_array = $Tracker->getTrackerDataByIdent($ident, $limit_start.",".$absolute_difference, $sort); |
|
| 106 | 106 | if (empty($spotter_array)) { |
| 107 | - $spotter_array = $TrackerArchive->getTrackerDataByIdent($ident,$limit_start.",".$absolute_difference, $sort); |
|
| 107 | + $spotter_array = $TrackerArchive->getTrackerDataByIdent($ident, $limit_start.",".$absolute_difference, $sort); |
|
| 108 | 108 | } |
| 109 | 109 | } else { |
| 110 | - $spotter_array = $Tracker->getTrackerDataByIdent($ident,$limit_start.",".$absolute_difference); |
|
| 110 | + $spotter_array = $Tracker->getTrackerDataByIdent($ident, $limit_start.",".$absolute_difference); |
|
| 111 | 111 | if (empty($spotter_array)) { |
| 112 | - $spotter_array = $TrackerArchive->getTrackerDataByIdent($ident,$limit_start.",".$absolute_difference); |
|
| 112 | + $spotter_array = $TrackerArchive->getTrackerDataByIdent($ident, $limit_start.",".$absolute_difference); |
|
| 113 | 113 | } |
| 114 | 114 | } |
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | if (!empty($spotter_array)) |
| 118 | 118 | { |
| 119 | - $title = sprintf(_("Detailed View for %s"),$spotter_array[0]['ident']); |
|
| 119 | + $title = sprintf(_("Detailed View for %s"), $spotter_array[0]['ident']); |
|
| 120 | 120 | $ident = $spotter_array[0]['ident']; |
| 121 | 121 | if (isset($spotter_array[0]['latitude'])) $latitude = $spotter_array[0]['latitude']; |
| 122 | 122 | if (isset($spotter_array[0]['longitude'])) $longitude = $spotter_array[0]['longitude']; |
@@ -137,9 +137,9 @@ discard block |
||
| 137 | 137 | var data = google.visualization.arrayToDataTable([ |
| 138 | 138 | ["Hour","'._("Altitude").'","'._("Speed").'"], '; |
| 139 | 139 | $altitude_data = ''; |
| 140 | - foreach($all_data as $data) |
|
| 140 | + foreach ($all_data as $data) |
|
| 141 | 141 | { |
| 142 | - $altitude_data .= '[ "'.date("G:i",strtotime($data['date']." UTC")).'",'.$data['altitude'].','.$data['ground_speed'].'],'; |
|
| 142 | + $altitude_data .= '[ "'.date("G:i", strtotime($data['date']." UTC")).'",'.$data['altitude'].','.$data['ground_speed'].'],'; |
|
| 143 | 143 | } |
| 144 | 144 | $altitude_data = substr($altitude_data, 0, -1); |
| 145 | 145 | print $altitude_data.']); |
@@ -179,9 +179,9 @@ discard block |
||
| 179 | 179 | |
| 180 | 180 | if ($type == 'aircraft') include('ident-sub-menu.php'); |
| 181 | 181 | print '<div class="table column">'; |
| 182 | - if ($type == 'aircraft') print '<p>'.sprintf(_("The table below shows the detailed information of all flights with the ident/callsign of <strong>%s</strong>."),$spotter_array[0]['ident']).'</p>'; |
|
| 183 | - elseif ($type == 'marine') print '<p>'.sprintf(_("The table below shows the detailed information of all vessels with the ident/callsign of <strong>%s</strong>."),$spotter_array[0]['ident']).'</p>'; |
|
| 184 | - elseif ($type == 'tracker') print '<p>'.sprintf(_("The table below shows the detailed information of all trackers with the ident/callsign of <strong>%s</strong>."),$spotter_array[0]['ident']).'</p>'; |
|
| 182 | + if ($type == 'aircraft') print '<p>'.sprintf(_("The table below shows the detailed information of all flights with the ident/callsign of <strong>%s</strong>."), $spotter_array[0]['ident']).'</p>'; |
|
| 183 | + elseif ($type == 'marine') print '<p>'.sprintf(_("The table below shows the detailed information of all vessels with the ident/callsign of <strong>%s</strong>."), $spotter_array[0]['ident']).'</p>'; |
|
| 184 | + elseif ($type == 'tracker') print '<p>'.sprintf(_("The table below shows the detailed information of all trackers with the ident/callsign of <strong>%s</strong>."), $spotter_array[0]['ident']).'</p>'; |
|
| 185 | 185 | |
| 186 | 186 | include('table-output.php'); |
| 187 | 187 | print '<div class="pagination">'; |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | <div class="info column"> |
| 12 | 12 | <h1>About <?php print $globalName; ?></h1> |
| 13 | 13 | <?php |
| 14 | - if ($globalName == 'FlightAirMap') { |
|
| 14 | + if ($globalName == 'FlightAirMap') { |
|
| 15 | 15 | ?> |
| 16 | 16 | <p>This is an open source project displaying <u>most</u> (mostly <a href="http://en.wikipedia.org/wiki/Instrument_flight_rules" target="_blank">IFR</a>) flights that have flown near this site area. |
| 17 | 17 | <?php if ($globalADSBHUB) { ?> Some ADS-B sources come from <a href="http://www.adsbhub.net">ADSBHUB.net</a>.<?php } ?> |
@@ -27,18 +27,18 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | <br /><br /> |
| 29 | 29 | <?php |
| 30 | - } else { |
|
| 30 | + } else { |
|
| 31 | 31 | ?> |
| 32 | 32 | <p>This project use <a href="http://www.flightairmap.fr/">FlightAirMap</a> (<a href="https://github.com/Ysurac/FlightAirMap/">source</a>) by Ycarus from <a href="http://www.zugaina.com/">Zugaina</a>.</p> |
| 33 | 33 | <?php |
| 34 | - } |
|
| 34 | + } |
|
| 35 | 35 | ?> |
| 36 | 36 | <a name="source"></a> |
| 37 | 37 | <h3>Source & Credits</h3> |
| 38 | 38 | |
| 39 | 39 | <?php |
| 40 | 40 | if ($globalFlightAware) { |
| 41 | - ?> |
|
| 41 | + ?> |
|
| 42 | 42 | <p>The data from FlightAware is coming from multiple sources. Not every aircraft is tracked on FlightAware, especially not older aircrafts as well as government aircrafts, however most modern airliners will work. You can learn more about how it works on <a href="http://flightaware.com/adsb/" target="_blank">FlightAware's ADS-B</a> page. Also, not every aircraft is shown to have flown exactly at that minute as seen on this site (aka real-time). There is a 5 minute delay on some of the sources.</p> |
| 43 | 43 | <?php } ?> |
| 44 | 44 | <p>None of this project would have been possible without the help and contributions of these organizations and people:</p> |
@@ -5,55 +5,55 @@ discard block |
||
| 5 | 5 | $Spotter = new Spotter(); |
| 6 | 6 | |
| 7 | 7 | if (isset($_GET['start_date'])) { |
| 8 | - //for the date manipulation into the query |
|
| 9 | - if($_GET['start_date'] != "" && $_GET['end_date'] != ""){ |
|
| 10 | - $start_date = $_GET['start_date'].":00"; |
|
| 11 | - $end_date = $_GET['end_date'].":00"; |
|
| 12 | - $sql_date = $start_date.",".$end_date; |
|
| 13 | - } else if($_GET['start_date'] != ""){ |
|
| 14 | - $start_date = $_GET['start_date'].":00"; |
|
| 15 | - $sql_date = $start_date; |
|
| 16 | - } else if($_GET['start_date'] == "" && $_GET['end_date'] != ""){ |
|
| 17 | - $end_date = date("Y-m-d H:i:s", strtotime("2014-04-12")).",".$_GET['end_date'].":00"; |
|
| 18 | - $sql_date = $end_date; |
|
| 19 | - } else $sql_date = ''; |
|
| 8 | + //for the date manipulation into the query |
|
| 9 | + if($_GET['start_date'] != "" && $_GET['end_date'] != ""){ |
|
| 10 | + $start_date = $_GET['start_date'].":00"; |
|
| 11 | + $end_date = $_GET['end_date'].":00"; |
|
| 12 | + $sql_date = $start_date.",".$end_date; |
|
| 13 | + } else if($_GET['start_date'] != ""){ |
|
| 14 | + $start_date = $_GET['start_date'].":00"; |
|
| 15 | + $sql_date = $start_date; |
|
| 16 | + } else if($_GET['start_date'] == "" && $_GET['end_date'] != ""){ |
|
| 17 | + $end_date = date("Y-m-d H:i:s", strtotime("2014-04-12")).",".$_GET['end_date'].":00"; |
|
| 18 | + $sql_date = $end_date; |
|
| 19 | + } else $sql_date = ''; |
|
| 20 | 20 | } else $sql_date = ''; |
| 21 | 21 | |
| 22 | 22 | if (isset($_GET['highest_altitude'])) { |
| 23 | - //for altitude manipulation |
|
| 24 | - if($_GET['highest_altitude'] != "" && $_GET['lowest_altitude'] != ""){ |
|
| 25 | - $end_altitude = $_GET['highest_altitude']; |
|
| 26 | - $start_altitude = $_GET['lowest_altitude']; |
|
| 27 | - $sql_altitude = $start_altitude.",".$end_altitude; |
|
| 28 | - } else if($_GET['highest_altitude'] != ""){ |
|
| 29 | - $end_altitude = $_GET['highest_altitude']; |
|
| 30 | - $sql_altitude = $end_altitude; |
|
| 31 | - } else if($_GET['highest_altitude'] == "" && $_GET['lowest_altitude'] != ""){ |
|
| 32 | - $start_altitude = $_GET['lowest_altitude'].",60000"; |
|
| 33 | - $sql_altitude = $start_altitude; |
|
| 34 | - } else $sql_altitude = ''; |
|
| 23 | + //for altitude manipulation |
|
| 24 | + if($_GET['highest_altitude'] != "" && $_GET['lowest_altitude'] != ""){ |
|
| 25 | + $end_altitude = $_GET['highest_altitude']; |
|
| 26 | + $start_altitude = $_GET['lowest_altitude']; |
|
| 27 | + $sql_altitude = $start_altitude.",".$end_altitude; |
|
| 28 | + } else if($_GET['highest_altitude'] != ""){ |
|
| 29 | + $end_altitude = $_GET['highest_altitude']; |
|
| 30 | + $sql_altitude = $end_altitude; |
|
| 31 | + } else if($_GET['highest_altitude'] == "" && $_GET['lowest_altitude'] != ""){ |
|
| 32 | + $start_altitude = $_GET['lowest_altitude'].",60000"; |
|
| 33 | + $sql_altitude = $start_altitude; |
|
| 34 | + } else $sql_altitude = ''; |
|
| 35 | 35 | } else $sql_altitude = ''; |
| 36 | 36 | |
| 37 | 37 | //calculuation for the pagination |
| 38 | 38 | if(!isset($_GET['limit'])) |
| 39 | 39 | { |
| 40 | - if (!isset($_GET['number_results'])) |
|
| 41 | - { |
|
| 42 | - $limit_start = 0; |
|
| 43 | - $limit_end = 25; |
|
| 44 | - $absolute_difference = 25; |
|
| 45 | - } else { |
|
| 46 | - if ($_GET['number_results'] > 1000){ |
|
| 47 | - $_GET['number_results'] = 1000; |
|
| 48 | - } |
|
| 49 | - $limit_start = 0; |
|
| 50 | - $limit_end = $_GET['number_results']; |
|
| 51 | - $absolute_difference = $_GET['number_results']; |
|
| 52 | - } |
|
| 40 | + if (!isset($_GET['number_results'])) |
|
| 41 | + { |
|
| 42 | + $limit_start = 0; |
|
| 43 | + $limit_end = 25; |
|
| 44 | + $absolute_difference = 25; |
|
| 45 | + } else { |
|
| 46 | + if ($_GET['number_results'] > 1000){ |
|
| 47 | + $_GET['number_results'] = 1000; |
|
| 48 | + } |
|
| 49 | + $limit_start = 0; |
|
| 50 | + $limit_end = $_GET['number_results']; |
|
| 51 | + $absolute_difference = $_GET['number_results']; |
|
| 52 | + } |
|
| 53 | 53 | } else { |
| 54 | - $limit_explode = explode(",", $_GET['limit']); |
|
| 55 | - $limit_start = $limit_explode[0]; |
|
| 56 | - $limit_end = $limit_explode[1]; |
|
| 54 | + $limit_explode = explode(",", $_GET['limit']); |
|
| 55 | + $limit_start = $limit_explode[0]; |
|
| 56 | + $limit_end = $limit_explode[1]; |
|
| 57 | 57 | } |
| 58 | 58 | $absolute_difference = abs($limit_start - $limit_end); |
| 59 | 59 | $limit_next = $limit_end + $absolute_difference; |
@@ -96,41 +96,41 @@ discard block |
||
| 96 | 96 | foreach($spotter_array as $spotter_item) |
| 97 | 97 | { |
| 98 | 98 | |
| 99 | - $output .= $spotter_item['spotter_id'].','; |
|
| 100 | - $output .= $spotter_item['ident'].','; |
|
| 101 | - $output .= $spotter_item['registration'].','; |
|
| 102 | - $output .= $spotter_item['aircraft_type'].','; |
|
| 103 | - $output .= $spotter_item['aircraft_name'].','; |
|
| 104 | - $output .= $spotter_item['aircraft_manufacturer'].','; |
|
| 105 | - $output .= $spotter_item['airline_name'].','; |
|
| 106 | - $output .= $spotter_item['airline_icao'].','; |
|
| 107 | - $output .= $spotter_item['airline_iata'].','; |
|
| 108 | - $output .= $spotter_item['airline_country'].','; |
|
| 109 | - $output .= $spotter_item['airline_callsign'].','; |
|
| 110 | - $output .= $spotter_item['airline_type'].','; |
|
| 111 | - $output .= $spotter_item['departure_airport_city'].','; |
|
| 112 | - $output .= $spotter_item['departure_airport_country'].','; |
|
| 113 | - $output .= $spotter_item['departure_airport_iata'].','; |
|
| 114 | - $output .= $spotter_item['departure_airport_icao'].','; |
|
| 115 | - $output .= $spotter_item['departure_airport_latitude'].','; |
|
| 116 | - $output .= $spotter_item['departure_airport_longitude'].','; |
|
| 117 | - $output .= $spotter_item['departure_airport_altitude'].','; |
|
| 118 | - $output .= $spotter_item['arrival_airport_city'].','; |
|
| 119 | - $output .= $spotter_item['arrival_airport_country'].','; |
|
| 120 | - $output .= $spotter_item['arrival_airport_iata'].','; |
|
| 121 | - $output .= $spotter_item['arrival_airport_icao'].','; |
|
| 122 | - $output .= $spotter_item['arrival_airport_latitude'].','; |
|
| 123 | - $output .= $spotter_item['arrival_airport_longitude'].','; |
|
| 124 | - $output .= $spotter_item['arrival_airport_altitude'].','; |
|
| 125 | - $output .= $spotter_item['latitude'].','; |
|
| 126 | - $output .= $spotter_item['longitude'].','; |
|
| 127 | - $output .= $spotter_item['altitude'].','; |
|
| 128 | - $output .= $spotter_item['ground_speed'].','; |
|
| 129 | - $output .= $spotter_item['heading'].','; |
|
| 130 | - $output .= $spotter_item['heading_name'].','; |
|
| 131 | - $output .= $spotter_item['waypoints'].','; |
|
| 132 | - $output .= date("c", strtotime($spotter_item['date_iso_8601'])); |
|
| 133 | - $output .= "\n"; |
|
| 99 | + $output .= $spotter_item['spotter_id'].','; |
|
| 100 | + $output .= $spotter_item['ident'].','; |
|
| 101 | + $output .= $spotter_item['registration'].','; |
|
| 102 | + $output .= $spotter_item['aircraft_type'].','; |
|
| 103 | + $output .= $spotter_item['aircraft_name'].','; |
|
| 104 | + $output .= $spotter_item['aircraft_manufacturer'].','; |
|
| 105 | + $output .= $spotter_item['airline_name'].','; |
|
| 106 | + $output .= $spotter_item['airline_icao'].','; |
|
| 107 | + $output .= $spotter_item['airline_iata'].','; |
|
| 108 | + $output .= $spotter_item['airline_country'].','; |
|
| 109 | + $output .= $spotter_item['airline_callsign'].','; |
|
| 110 | + $output .= $spotter_item['airline_type'].','; |
|
| 111 | + $output .= $spotter_item['departure_airport_city'].','; |
|
| 112 | + $output .= $spotter_item['departure_airport_country'].','; |
|
| 113 | + $output .= $spotter_item['departure_airport_iata'].','; |
|
| 114 | + $output .= $spotter_item['departure_airport_icao'].','; |
|
| 115 | + $output .= $spotter_item['departure_airport_latitude'].','; |
|
| 116 | + $output .= $spotter_item['departure_airport_longitude'].','; |
|
| 117 | + $output .= $spotter_item['departure_airport_altitude'].','; |
|
| 118 | + $output .= $spotter_item['arrival_airport_city'].','; |
|
| 119 | + $output .= $spotter_item['arrival_airport_country'].','; |
|
| 120 | + $output .= $spotter_item['arrival_airport_iata'].','; |
|
| 121 | + $output .= $spotter_item['arrival_airport_icao'].','; |
|
| 122 | + $output .= $spotter_item['arrival_airport_latitude'].','; |
|
| 123 | + $output .= $spotter_item['arrival_airport_longitude'].','; |
|
| 124 | + $output .= $spotter_item['arrival_airport_altitude'].','; |
|
| 125 | + $output .= $spotter_item['latitude'].','; |
|
| 126 | + $output .= $spotter_item['longitude'].','; |
|
| 127 | + $output .= $spotter_item['altitude'].','; |
|
| 128 | + $output .= $spotter_item['ground_speed'].','; |
|
| 129 | + $output .= $spotter_item['heading'].','; |
|
| 130 | + $output .= $spotter_item['heading_name'].','; |
|
| 131 | + $output .= $spotter_item['waypoints'].','; |
|
| 132 | + $output .= date("c", strtotime($spotter_item['date_iso_8601'])); |
|
| 133 | + $output .= "\n"; |
|
| 134 | 134 | } |
| 135 | 135 | } |
| 136 | 136 | |
@@ -6,14 +6,14 @@ discard block |
||
| 6 | 6 | |
| 7 | 7 | if (isset($_GET['start_date'])) { |
| 8 | 8 | //for the date manipulation into the query |
| 9 | - if($_GET['start_date'] != "" && $_GET['end_date'] != ""){ |
|
| 9 | + if ($_GET['start_date'] != "" && $_GET['end_date'] != "") { |
|
| 10 | 10 | $start_date = $_GET['start_date'].":00"; |
| 11 | 11 | $end_date = $_GET['end_date'].":00"; |
| 12 | 12 | $sql_date = $start_date.",".$end_date; |
| 13 | - } else if($_GET['start_date'] != ""){ |
|
| 13 | + } else if ($_GET['start_date'] != "") { |
|
| 14 | 14 | $start_date = $_GET['start_date'].":00"; |
| 15 | 15 | $sql_date = $start_date; |
| 16 | - } else if($_GET['start_date'] == "" && $_GET['end_date'] != ""){ |
|
| 16 | + } else if ($_GET['start_date'] == "" && $_GET['end_date'] != "") { |
|
| 17 | 17 | $end_date = date("Y-m-d H:i:s", strtotime("2014-04-12")).",".$_GET['end_date'].":00"; |
| 18 | 18 | $sql_date = $end_date; |
| 19 | 19 | } else $sql_date = ''; |
@@ -21,21 +21,21 @@ discard block |
||
| 21 | 21 | |
| 22 | 22 | if (isset($_GET['highest_altitude'])) { |
| 23 | 23 | //for altitude manipulation |
| 24 | - if($_GET['highest_altitude'] != "" && $_GET['lowest_altitude'] != ""){ |
|
| 24 | + if ($_GET['highest_altitude'] != "" && $_GET['lowest_altitude'] != "") { |
|
| 25 | 25 | $end_altitude = $_GET['highest_altitude']; |
| 26 | 26 | $start_altitude = $_GET['lowest_altitude']; |
| 27 | 27 | $sql_altitude = $start_altitude.",".$end_altitude; |
| 28 | - } else if($_GET['highest_altitude'] != ""){ |
|
| 28 | + } else if ($_GET['highest_altitude'] != "") { |
|
| 29 | 29 | $end_altitude = $_GET['highest_altitude']; |
| 30 | 30 | $sql_altitude = $end_altitude; |
| 31 | - } else if($_GET['highest_altitude'] == "" && $_GET['lowest_altitude'] != ""){ |
|
| 31 | + } else if ($_GET['highest_altitude'] == "" && $_GET['lowest_altitude'] != "") { |
|
| 32 | 32 | $start_altitude = $_GET['lowest_altitude'].",60000"; |
| 33 | 33 | $sql_altitude = $start_altitude; |
| 34 | 34 | } else $sql_altitude = ''; |
| 35 | 35 | } else $sql_altitude = ''; |
| 36 | 36 | |
| 37 | 37 | //calculuation for the pagination |
| 38 | -if(!isset($_GET['limit'])) |
|
| 38 | +if (!isset($_GET['limit'])) |
|
| 39 | 39 | { |
| 40 | 40 | if (!isset($_GET['number_results'])) |
| 41 | 41 | { |
@@ -43,14 +43,14 @@ discard block |
||
| 43 | 43 | $limit_end = 25; |
| 44 | 44 | $absolute_difference = 25; |
| 45 | 45 | } else { |
| 46 | - if ($_GET['number_results'] > 1000){ |
|
| 46 | + if ($_GET['number_results'] > 1000) { |
|
| 47 | 47 | $_GET['number_results'] = 1000; |
| 48 | 48 | } |
| 49 | 49 | $limit_start = 0; |
| 50 | 50 | $limit_end = $_GET['number_results']; |
| 51 | 51 | $absolute_difference = $_GET['number_results']; |
| 52 | 52 | } |
| 53 | -} else { |
|
| 53 | +} else { |
|
| 54 | 54 | $limit_explode = explode(",", $_GET['limit']); |
| 55 | 55 | $limit_start = $limit_explode[0]; |
| 56 | 56 | $limit_end = $limit_explode[1]; |
@@ -70,30 +70,30 @@ discard block |
||
| 70 | 70 | if (isset($_GET['sort'])) $sort = $_GET['sort']; |
| 71 | 71 | else $sort = ''; |
| 72 | 72 | |
| 73 | -$q = filter_input(INPUT_GET,'q',FILTER_SANITIZE_STRING); |
|
| 74 | -$registration = filter_input(INPUT_GET,'registratrion',FILTER_SANITIZE_STRING); |
|
| 75 | -$aircraft = filter_input(INPUT_GET,'aircraft',FILTER_SANITIZE_STRING); |
|
| 76 | -$manufacturer = filter_input(INPUT_GET,'manufacturer',FILTER_SANITIZE_STRING); |
|
| 77 | -$highlights = filter_input(INPUT_GET,'highlights',FILTER_SANITIZE_STRING); |
|
| 78 | -$airline = filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
| 79 | -$airline_country = filter_input(INPUT_GET,'airline_country',FILTER_SANITIZE_STRING); |
|
| 80 | -$airline_type = filter_input(INPUT_GET,'airline_type',FILTER_SANITIZE_STRING); |
|
| 81 | -$airport = filter_input(INPUT_GET,'airport',FILTER_SANITIZE_STRING); |
|
| 82 | -$airport_country = filter_input(INPUT_GET,'airport_country',FILTER_SANITIZE_STRING); |
|
| 83 | -$callsign = filter_input(INPUT_GET,'callsign',FILTER_SANITIZE_STRING); |
|
| 84 | -$pilot_id = filter_input(INPUT_GET,'pilot_id',FILTER_SANITIZE_STRING); |
|
| 85 | -$pilot_name = filter_input(INPUT_GET,'pilot_name',FILTER_SANITIZE_STRING); |
|
| 86 | -$owner = filter_input(INPUT_GET,'owner',FILTER_SANITIZE_STRING); |
|
| 87 | -$departure_airport_route = filter_input(INPUT_GET,'departure_airport_route',FILTER_SANITIZE_STRING); |
|
| 88 | -$arrival_airport_route = filter_input(INPUT_GET,'arrival_airport_route',FILTER_SANITIZE_STRING); |
|
| 89 | -$spotter_array = $Spotter->searchSpotterData($q,$registration,$aircraft,strtolower(str_replace("-", " ", $manufacturer)),$highlights,$airline,$airline_country,$airline_type,$airport,$airport_country,$callsign,$departure_airport_route,$arrival_airport_route,$owner,$pilot_id,$pilot_name,$sql_altitude,$sql_date,$limit_start.",".$absolute_difference,$sort,''); |
|
| 73 | +$q = filter_input(INPUT_GET, 'q', FILTER_SANITIZE_STRING); |
|
| 74 | +$registration = filter_input(INPUT_GET, 'registratrion', FILTER_SANITIZE_STRING); |
|
| 75 | +$aircraft = filter_input(INPUT_GET, 'aircraft', FILTER_SANITIZE_STRING); |
|
| 76 | +$manufacturer = filter_input(INPUT_GET, 'manufacturer', FILTER_SANITIZE_STRING); |
|
| 77 | +$highlights = filter_input(INPUT_GET, 'highlights', FILTER_SANITIZE_STRING); |
|
| 78 | +$airline = filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
| 79 | +$airline_country = filter_input(INPUT_GET, 'airline_country', FILTER_SANITIZE_STRING); |
|
| 80 | +$airline_type = filter_input(INPUT_GET, 'airline_type', FILTER_SANITIZE_STRING); |
|
| 81 | +$airport = filter_input(INPUT_GET, 'airport', FILTER_SANITIZE_STRING); |
|
| 82 | +$airport_country = filter_input(INPUT_GET, 'airport_country', FILTER_SANITIZE_STRING); |
|
| 83 | +$callsign = filter_input(INPUT_GET, 'callsign', FILTER_SANITIZE_STRING); |
|
| 84 | +$pilot_id = filter_input(INPUT_GET, 'pilot_id', FILTER_SANITIZE_STRING); |
|
| 85 | +$pilot_name = filter_input(INPUT_GET, 'pilot_name', FILTER_SANITIZE_STRING); |
|
| 86 | +$owner = filter_input(INPUT_GET, 'owner', FILTER_SANITIZE_STRING); |
|
| 87 | +$departure_airport_route = filter_input(INPUT_GET, 'departure_airport_route', FILTER_SANITIZE_STRING); |
|
| 88 | +$arrival_airport_route = filter_input(INPUT_GET, 'arrival_airport_route', FILTER_SANITIZE_STRING); |
|
| 89 | +$spotter_array = $Spotter->searchSpotterData($q, $registration, $aircraft, strtolower(str_replace("-", " ", $manufacturer)), $highlights, $airline, $airline_country, $airline_type, $airport, $airport_country, $callsign, $departure_airport_route, $arrival_airport_route, $owner, $pilot_id, $pilot_name, $sql_altitude, $sql_date, $limit_start.",".$absolute_difference, $sort, ''); |
|
| 90 | 90 | |
| 91 | 91 | |
| 92 | 92 | $output = "id,ident,registration,aircraft_icao,aircraft_name,aircraft_manufacturer,airline,airline_icao,airline_iata,airline_country,airline_callsign,airline_type,departure_airport_city,departure_airport_country,departure_airport_iata,departure_airport_icao,departure_airport_latitude,departure_airport_longitude,departure_airport_altitude,arrival_airport_city,arrival_airport_country,arrival_airport_iata,arrival_airport_icao,arrival_airport_latitude,arrival_airport_longitude,arrival_airport_altitude,latitude,longitude,altitude,ground_speed,heading,heading_name,waypoints,date\n"; |
| 93 | 93 | |
| 94 | 94 | if (!empty($spotter_array)) |
| 95 | 95 | { |
| 96 | - foreach($spotter_array as $spotter_item) |
|
| 96 | + foreach ($spotter_array as $spotter_item) |
|
| 97 | 97 | { |
| 98 | 98 | |
| 99 | 99 | $output .= $spotter_item['spotter_id'].','; |