@@ -47,7 +47,7 @@ discard block |
||
| 47 | 47 | if (isset($this->all_tracked[$key]['id'])) { |
| 48 | 48 | //echo $this->all_tracked[$key]['id'].' - '.$this->all_tracked[$key]['latitude'].' '.$this->all_tracked[$key]['longitude']."\n"; |
| 49 | 49 | $Tracker = new Tracker($this->db); |
| 50 | - $Tracker->updateLatestTrackerData($this->all_tracked[$key]['id'],$this->all_tracked[$key]['ident'],$this->all_tracked[$key]['latitude'],$this->all_tracked[$key]['longitude'],$this->all_tracked[$key]['altitude'],$this->all_tracked[$key]['speed'],$this->all_tracked[$key]['datetime']); |
|
| 50 | + $Tracker->updateLatestTrackerData($this->all_tracked[$key]['id'], $this->all_tracked[$key]['ident'], $this->all_tracked[$key]['latitude'], $this->all_tracked[$key]['longitude'], $this->all_tracked[$key]['altitude'], $this->all_tracked[$key]['speed'], $this->all_tracked[$key]['datetime']); |
|
| 51 | 51 | } |
| 52 | 52 | } |
| 53 | 53 | } |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | if ($globalDebug) echo 'Delete old values and update latest data...'."\n"; |
| 59 | 59 | foreach ($this->all_tracked as $key => $flight) { |
| 60 | 60 | if (isset($flight['lastupdate'])) { |
| 61 | - if ($flight['lastupdate'] < (time()-3000)) { |
|
| 61 | + if ($flight['lastupdate'] < (time() - 3000)) { |
|
| 62 | 62 | if (isset($this->all_tracked[$key]['id'])) { |
| 63 | 63 | if ($globalDebug) echo "--- Delete old values with id ".$this->all_tracked[$key]['id']."\n"; |
| 64 | 64 | /* |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | //$real_arrival = $this->arrival($key); |
| 70 | 70 | $Tracker = new Tracker($this->db); |
| 71 | 71 | if ($this->all_tracked[$key]['latitude'] != '' && $this->all_tracked[$key]['longitude'] != '') { |
| 72 | - $result = $Tracker->updateLatestTrackerData($this->all_tracked[$key]['id'],$this->all_tracked[$key]['ident'],$this->all_tracked[$key]['latitude'],$this->all_tracked[$key]['longitude'],$this->all_tracked[$key]['altitude'],$this->all_tracked[$key]['speed']); |
|
| 72 | + $result = $Tracker->updateLatestTrackerData($this->all_tracked[$key]['id'], $this->all_tracked[$key]['ident'], $this->all_tracked[$key]['latitude'], $this->all_tracked[$key]['longitude'], $this->all_tracked[$key]['altitude'], $this->all_tracked[$key]['speed']); |
|
| 73 | 73 | if ($globalDebug && $result != 'success') echo '!!! ERROR : '.$result."\n"; |
| 74 | 74 | } |
| 75 | 75 | // Put in archive |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | $send = false; |
| 90 | 90 | |
| 91 | 91 | // SBS format is CSV format |
| 92 | - if(is_array($line) && isset($line['ident'])) { |
|
| 92 | + if (is_array($line) && isset($line['ident'])) { |
|
| 93 | 93 | //print_r($line); |
| 94 | 94 | if (isset($line['ident'])) { |
| 95 | 95 | |
@@ -113,33 +113,33 @@ discard block |
||
| 113 | 113 | |
| 114 | 114 | if (!isset($this->all_tracked[$id])) { |
| 115 | 115 | $this->all_tracked[$id] = array(); |
| 116 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('addedTracker' => 0)); |
|
| 117 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('ident' => '','latitude' => '', 'longitude' => '', 'speed' => '', 'altitude' => '', 'heading' => '', 'format_source' => '','source_name' => '','comment'=> '','type' => '','noarchive' => false,'putinarchive' => true,'over_country' => '')); |
|
| 118 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('lastupdate' => time())); |
|
| 116 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('addedTracker' => 0)); |
|
| 117 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('ident' => '', 'latitude' => '', 'longitude' => '', 'speed' => '', 'altitude' => '', 'heading' => '', 'format_source' => '', 'source_name' => '', 'comment'=> '', 'type' => '', 'noarchive' => false, 'putinarchive' => true, 'over_country' => '')); |
|
| 118 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('lastupdate' => time())); |
|
| 119 | 119 | if (!isset($line['id'])) { |
| 120 | 120 | if (!isset($globalDaemon)) $globalDaemon = TRUE; |
| 121 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('id' => $id.'-'.date('YmdHi'))); |
|
| 122 | - } else $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('id' => $line['id'])); |
|
| 121 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('id' => $id.'-'.date('YmdHi'))); |
|
| 122 | + } else $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('id' => $line['id'])); |
|
| 123 | 123 | if ($globalAllTracked !== FALSE) $dataFound = true; |
| 124 | 124 | } |
| 125 | 125 | |
| 126 | - if (isset($line['datetime']) && strtotime($line['datetime']) > time()-20*60 && strtotime($line['datetime']) < time()+20*60) { |
|
| 126 | + if (isset($line['datetime']) && strtotime($line['datetime']) > time() - 20*60 && strtotime($line['datetime']) < time() + 20*60) { |
|
| 127 | 127 | if (!isset($this->all_tracked[$id]['datetime']) || strtotime($line['datetime']) >= strtotime($this->all_tracked[$id]['datetime'])) { |
| 128 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('datetime' => $line['datetime'])); |
|
| 128 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('datetime' => $line['datetime'])); |
|
| 129 | 129 | } else { |
| 130 | 130 | if (strtotime($line['datetime']) == strtotime($this->all_tracked[$id]['datetime']) && $globalDebug) echo "!!! Date is the same as previous data for ".$this->all_tracked[$id]['ident']." - format : ".$line['format_source']."\n"; |
| 131 | 131 | elseif (strtotime($line['datetime']) > strtotime($this->all_tracked[$id]['datetime']) && $globalDebug) echo "!!! Date previous latest data (".$line['datetime']." > ".$this->all_tracked[$id]['datetime'].") !!! for ".$this->all_tracked[$id]['ident']." - format : ".$line['format_source']."\n"; |
| 132 | 132 | return ''; |
| 133 | 133 | } |
| 134 | - } elseif (isset($line['datetime']) && strtotime($line['datetime']) < time()-20*60) { |
|
| 134 | + } elseif (isset($line['datetime']) && strtotime($line['datetime']) < time() - 20*60) { |
|
| 135 | 135 | if ($globalDebug) echo "!!! Date is too old ".$this->all_tracked[$id]['ident']." - format : ".$line['format_source']."!!!"; |
| 136 | 136 | return ''; |
| 137 | - } elseif (isset($line['datetime']) && strtotime($line['datetime']) > time()+20*60) { |
|
| 137 | + } elseif (isset($line['datetime']) && strtotime($line['datetime']) > time() + 20*60) { |
|
| 138 | 138 | if ($globalDebug) echo "!!! Date is in the future ".$this->all_tracked[$id]['ident']." - format : ".$line['format_source']."!!!"; |
| 139 | 139 | return ''; |
| 140 | 140 | } elseif (!isset($line['datetime'])) { |
| 141 | 141 | date_default_timezone_set('UTC'); |
| 142 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('datetime' => date('Y-m-d H:i:s'))); |
|
| 142 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('datetime' => date('Y-m-d H:i:s'))); |
|
| 143 | 143 | } else { |
| 144 | 144 | if ($globalDebug) echo "!!! Unknow date error ".$this->all_tracked[$id]['ident']." - format : ".$line['format_source']."!!!"; |
| 145 | 145 | return ''; |
@@ -147,38 +147,38 @@ discard block |
||
| 147 | 147 | |
| 148 | 148 | //if (isset($line['ident']) && $line['ident'] != '' && $line['ident'] != '????????' && $line['ident'] != '00000000' && ($this->all_tracked[$id]['ident'] != trim($line['ident'])) && preg_match('/^[a-zA-Z0-9-]+$/', $line['ident'])) { |
| 149 | 149 | if (isset($line['ident']) && $line['ident'] != '' && $line['ident'] != '????????' && $line['ident'] != '00000000' && ($this->all_tracked[$id]['ident'] != trim($line['ident']))) { |
| 150 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('ident' => trim($line['ident']))); |
|
| 150 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('ident' => trim($line['ident']))); |
|
| 151 | 151 | if ($this->all_tracked[$id]['addedTracker'] == 1) { |
| 152 | 152 | $timeelapsed = microtime(true); |
| 153 | 153 | $Tracker = new Tracker($this->db); |
| 154 | 154 | $fromsource = NULL; |
| 155 | - $result = $Tracker->updateIdentTrackerData($this->all_tracked[$id]['id'],$this->all_tracked[$id]['ident'],$fromsource); |
|
| 155 | + $result = $Tracker->updateIdentTrackerData($this->all_tracked[$id]['id'], $this->all_tracked[$id]['ident'], $fromsource); |
|
| 156 | 156 | if ($globalDebug && $result != 'success') echo '!!! ERROR : '.$result."\n"; |
| 157 | 157 | $Tracker->db = null; |
| 158 | - if ($globalDebugTimeElapsed) echo 'Time elapsed for update identspotterdata : '.round(microtime(true)-$timeelapsed,2).'s'."\n"; |
|
| 158 | + if ($globalDebugTimeElapsed) echo 'Time elapsed for update identspotterdata : '.round(microtime(true) - $timeelapsed, 2).'s'."\n"; |
|
| 159 | 159 | } |
| 160 | - if (!isset($this->all_tracked[$id]['id'])) $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('id' => $this->all_tracked[$id]['ident'])); |
|
| 160 | + if (!isset($this->all_tracked[$id]['id'])) $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('id' => $this->all_tracked[$id]['ident'])); |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | if (isset($line['speed']) && $line['speed'] != '') { |
| 164 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('speed' => round($line['speed']))); |
|
| 165 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('speed_fromsrc' => true)); |
|
| 164 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('speed' => round($line['speed']))); |
|
| 165 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('speed_fromsrc' => true)); |
|
| 166 | 166 | } else if (!isset($this->all_tracked[$id]['speed_fromsrc']) && isset($this->all_tracked[$id]['time_last_coord']) && $this->all_tracked[$id]['time_last_coord'] != time() && isset($line['latitude']) && isset($line['longitude'])) { |
| 167 | - $distance = $Common->distance($line['latitude'],$line['longitude'],$this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],'m'); |
|
| 167 | + $distance = $Common->distance($line['latitude'], $line['longitude'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], 'm'); |
|
| 168 | 168 | if ($distance > 100 && $distance < 10000) { |
| 169 | 169 | $speed = $distance/(time() - $this->all_tracked[$id]['time_last_coord']); |
| 170 | 170 | $speed = $speed*3.6; |
| 171 | - if ($speed < 1000) $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('speed' => round($speed))); |
|
| 171 | + if ($speed < 1000) $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('speed' => round($speed))); |
|
| 172 | 172 | if ($globalDebug) echo "ø Calculated Speed for ".$this->all_tracked[$id]['ident']." : ".$speed." - distance : ".$distance."\n"; |
| 173 | 173 | } |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | 176 | if (isset($line['latitude']) && isset($line['longitude']) && $line['latitude'] != '' && $line['longitude'] != '' && is_numeric($line['latitude']) && is_numeric($line['longitude'])) { |
| 177 | - if (isset($this->all_tracked[$id]['time_last_coord'])) $timediff = round(time()-$this->all_tracked[$id]['time_last_coord']); |
|
| 177 | + if (isset($this->all_tracked[$id]['time_last_coord'])) $timediff = round(time() - $this->all_tracked[$id]['time_last_coord']); |
|
| 178 | 178 | else unset($timediff); |
| 179 | - if ($this->tmd > 5 || !isset($timediff) || $timediff > 100 || ($timediff > 30 && isset($this->all_tracked[$id]['latitude']) && isset($this->all_tracked[$id]['longitude']) && $Common->withinThreshold($timediff,$Common->distance($line['latitude'],$line['longitude'],$this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],'m')))) { |
|
| 179 | + if ($this->tmd > 5 || !isset($timediff) || $timediff > 100 || ($timediff > 30 && isset($this->all_tracked[$id]['latitude']) && isset($this->all_tracked[$id]['longitude']) && $Common->withinThreshold($timediff, $Common->distance($line['latitude'], $line['longitude'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], 'm')))) { |
|
| 180 | 180 | if (isset($this->all_tracked[$id]['archive_latitude']) && isset($this->all_tracked[$id]['archive_longitude']) && isset($this->all_tracked[$id]['livedb_latitude']) && isset($this->all_tracked[$id]['livedb_longitude'])) { |
| 181 | - if (!$Common->checkLine($this->all_tracked[$id]['archive_latitude'],$this->all_tracked[$id]['archive_longitude'],$this->all_tracked[$id]['livedb_latitude'],$this->all_tracked[$id]['livedb_longitude'],$line['latitude'],$line['longitude'])) { |
|
| 181 | + if (!$Common->checkLine($this->all_tracked[$id]['archive_latitude'], $this->all_tracked[$id]['archive_longitude'], $this->all_tracked[$id]['livedb_latitude'], $this->all_tracked[$id]['livedb_longitude'], $line['latitude'], $line['longitude'])) { |
|
| 182 | 182 | $this->all_tracked[$id]['archive_latitude'] = $line['latitude']; |
| 183 | 183 | $this->all_tracked[$id]['archive_longitude'] = $line['longitude']; |
| 184 | 184 | $this->all_tracked[$id]['putinarchive'] = true; |
@@ -186,10 +186,10 @@ discard block |
||
| 186 | 186 | if ($globalDebug) echo "\n".' ------- Check Country for '.$this->all_tracked[$id]['ident'].' with latitude : '.$line['latitude'].' and longitude : '.$line['longitude'].'.... '; |
| 187 | 187 | $timeelapsed = microtime(true); |
| 188 | 188 | $Tracker = new Tracker($this->db); |
| 189 | - $all_country = $Tracker->getCountryFromLatitudeLongitude($line['latitude'],$line['longitude']); |
|
| 189 | + $all_country = $Tracker->getCountryFromLatitudeLongitude($line['latitude'], $line['longitude']); |
|
| 190 | 190 | if (!empty($all_country)) $this->all_tracked[$id]['over_country'] = $all_country['iso2']; |
| 191 | 191 | $Tracker->db = null; |
| 192 | - if ($globalDebugTimeElapsed) echo 'Time elapsed for update getCountryFromlatitudeLongitude : '.round(microtime(true)-$timeelapsed,2).'s'."\n"; |
|
| 192 | + if ($globalDebugTimeElapsed) echo 'Time elapsed for update getCountryFromlatitudeLongitude : '.round(microtime(true) - $timeelapsed, 2).'s'."\n"; |
|
| 193 | 193 | $this->tmd = 0; |
| 194 | 194 | if ($globalDebug) echo 'FOUND : '.$this->all_tracked[$id]['over_country'].' ---------------'."\n"; |
| 195 | 195 | } |
@@ -197,73 +197,73 @@ discard block |
||
| 197 | 197 | |
| 198 | 198 | if (isset($line['latitude']) && $line['latitude'] != '' && $line['latitude'] != 0 && $line['latitude'] < 91 && $line['latitude'] > -90) { |
| 199 | 199 | if (!isset($this->all_tracked[$id]['archive_latitude'])) $this->all_tracked[$id]['archive_latitude'] = $line['latitude']; |
| 200 | - if (!isset($this->all_tracked[$id]['livedb_latitude']) || abs($this->all_tracked[$id]['livedb_latitude']-$line['latitude']) > $globalCoordMinChange || $this->all_tracked[$id]['format_source'] == 'aprs') { |
|
| 200 | + if (!isset($this->all_tracked[$id]['livedb_latitude']) || abs($this->all_tracked[$id]['livedb_latitude'] - $line['latitude']) > $globalCoordMinChange || $this->all_tracked[$id]['format_source'] == 'aprs') { |
|
| 201 | 201 | $this->all_tracked[$id]['livedb_latitude'] = $line['latitude']; |
| 202 | 202 | $dataFound = true; |
| 203 | 203 | $this->all_tracked[$id]['time_last_coord'] = time(); |
| 204 | 204 | } |
| 205 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('latitude' => $line['latitude'])); |
|
| 205 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('latitude' => $line['latitude'])); |
|
| 206 | 206 | } |
| 207 | 207 | if (isset($line['longitude']) && $line['longitude'] != '' && $line['longitude'] != 0 && $line['longitude'] < 360 && $line['longitude'] > -180) { |
| 208 | 208 | if ($line['longitude'] > 180) $line['longitude'] = $line['longitude'] - 360; |
| 209 | 209 | if (!isset($this->all_tracked[$id]['archive_longitude'])) $this->all_tracked[$id]['archive_longitude'] = $line['longitude']; |
| 210 | - if (!isset($this->all_tracked[$id]['livedb_longitude']) || abs($this->all_tracked[$id]['livedb_longitude']-$line['longitude']) > $globalCoordMinChange || $this->all_tracked[$id]['format_source'] == 'aprs') { |
|
| 210 | + if (!isset($this->all_tracked[$id]['livedb_longitude']) || abs($this->all_tracked[$id]['livedb_longitude'] - $line['longitude']) > $globalCoordMinChange || $this->all_tracked[$id]['format_source'] == 'aprs') { |
|
| 211 | 211 | $this->all_tracked[$id]['livedb_longitude'] = $line['longitude']; |
| 212 | 212 | $dataFound = true; |
| 213 | 213 | $this->all_tracked[$id]['time_last_coord'] = time(); |
| 214 | 214 | } |
| 215 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('longitude' => $line['longitude'])); |
|
| 215 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('longitude' => $line['longitude'])); |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | } else if ($globalDebug && $timediff > 20) { |
| 219 | 219 | $this->tmd = $this->tmd + 1; |
| 220 | 220 | echo '!!! Too much distance in short time... for '.$this->all_tracked[$id]['ident']."\n"; |
| 221 | - echo 'Time : '.$timediff.'s - Distance : '.$Common->distance($line['latitude'],$line['longitude'],$this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],'m')."m -"; |
|
| 222 | - echo 'Speed : '.(($Common->distance($line['latitude'],$line['longitude'],$this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],'m')/$timediff)*3.6)." km/h - "; |
|
| 221 | + echo 'Time : '.$timediff.'s - Distance : '.$Common->distance($line['latitude'], $line['longitude'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], 'm')."m -"; |
|
| 222 | + echo 'Speed : '.(($Common->distance($line['latitude'], $line['longitude'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], 'm')/$timediff)*3.6)." km/h - "; |
|
| 223 | 223 | echo 'Lat : '.$line['latitude'].' - long : '.$line['longitude'].' - prev lat : '.$this->all_tracked[$id]['latitude'].' - prev long : '.$this->all_tracked[$id]['longitude']." \n"; |
| 224 | 224 | } |
| 225 | 225 | } |
| 226 | 226 | if (isset($line['last_update']) && $line['last_update'] != '') { |
| 227 | 227 | if (isset($this->all_tracked[$id]['last_update']) && $this->all_tracked[$id]['last_update'] != $line['last_update']) $dataFound = true; |
| 228 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('last_update' => $line['last_update'])); |
|
| 228 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('last_update' => $line['last_update'])); |
|
| 229 | 229 | } |
| 230 | 230 | if (isset($line['format_source']) && $line['format_source'] != '') { |
| 231 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('format_source' => $line['format_source'])); |
|
| 231 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('format_source' => $line['format_source'])); |
|
| 232 | 232 | } |
| 233 | 233 | if (isset($line['source_name']) && $line['source_name'] != '') { |
| 234 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('source_name' => $line['source_name'])); |
|
| 234 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('source_name' => $line['source_name'])); |
|
| 235 | 235 | } |
| 236 | 236 | if (isset($line['comment']) && $line['comment'] != '') { |
| 237 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('comment' => $line['comment'])); |
|
| 237 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('comment' => $line['comment'])); |
|
| 238 | 238 | //$dataFound = true; |
| 239 | 239 | } |
| 240 | 240 | if (isset($line['type']) && $line['type'] != '') { |
| 241 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('type' => $line['type'])); |
|
| 241 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('type' => $line['type'])); |
|
| 242 | 242 | //$dataFound = true; |
| 243 | 243 | } |
| 244 | 244 | |
| 245 | 245 | if (isset($line['altitude']) && $line['altitude'] != '') { |
| 246 | 246 | //if (!isset($this->all_tracked[$id]['altitude']) || $this->all_tracked[$id]['altitude'] == '' || ($this->all_tracked[$id]['altitude'] > 0 && $line['altitude'] != 0)) { |
| 247 | - if (is_int($this->all_tracked[$id]['altitude']) && abs(round($line['altitude']/100)-$this->all_tracked[$id]['altitude']) > 3) $this->all_tracked[$id]['putinarchive'] = true; |
|
| 248 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('altitude' => round($line['altitude']/100))); |
|
| 249 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('altitude_real' => $line['altitude'])); |
|
| 247 | + if (is_int($this->all_tracked[$id]['altitude']) && abs(round($line['altitude']/100) - $this->all_tracked[$id]['altitude']) > 3) $this->all_tracked[$id]['putinarchive'] = true; |
|
| 248 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('altitude' => round($line['altitude']/100))); |
|
| 249 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('altitude_real' => $line['altitude'])); |
|
| 250 | 250 | //$dataFound = true; |
| 251 | 251 | //} elseif ($globalDebug) echo "!!! Strange altitude data... not added.\n"; |
| 252 | 252 | } |
| 253 | 253 | |
| 254 | 254 | if (isset($line['noarchive']) && $line['noarchive'] === true) { |
| 255 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('noarchive' => true)); |
|
| 255 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('noarchive' => true)); |
|
| 256 | 256 | } |
| 257 | 257 | |
| 258 | 258 | if (isset($line['heading']) && $line['heading'] != '') { |
| 259 | - if (is_int($this->all_tracked[$id]['heading']) && abs($this->all_tracked[$id]['heading']-round($line['heading'])) > 10) $this->all_tracked[$id]['putinarchive'] = true; |
|
| 260 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('heading' => round($line['heading']))); |
|
| 261 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('heading_fromsrc' => true)); |
|
| 259 | + if (is_int($this->all_tracked[$id]['heading']) && abs($this->all_tracked[$id]['heading'] - round($line['heading'])) > 10) $this->all_tracked[$id]['putinarchive'] = true; |
|
| 260 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('heading' => round($line['heading']))); |
|
| 261 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('heading_fromsrc' => true)); |
|
| 262 | 262 | //$dataFound = true; |
| 263 | 263 | } elseif (!isset($this->all_tracked[$id]['heading_fromsrc']) && isset($this->all_tracked[$id]['archive_latitude']) && $this->all_tracked[$id]['archive_latitude'] != $this->all_tracked[$id]['latitude'] && isset($this->all_tracked[$id]['archive_longitude']) && $this->all_tracked[$id]['archive_longitude'] != $this->all_tracked[$id]['longitude']) { |
| 264 | - $heading = $Common->getHeading($this->all_tracked[$id]['archive_latitude'],$this->all_tracked[$id]['archive_longitude'],$this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude']); |
|
| 265 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('heading' => round($heading))); |
|
| 266 | - if (abs($this->all_tracked[$id]['heading']-round($heading)) > 10) $this->all_tracked[$id]['putinarchive'] = true; |
|
| 264 | + $heading = $Common->getHeading($this->all_tracked[$id]['archive_latitude'], $this->all_tracked[$id]['archive_longitude'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude']); |
|
| 265 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('heading' => round($heading))); |
|
| 266 | + if (abs($this->all_tracked[$id]['heading'] - round($heading)) > 10) $this->all_tracked[$id]['putinarchive'] = true; |
|
| 267 | 267 | if ($globalDebug) echo "ø Calculated Heading for ".$this->all_tracked[$id]['ident']." : ".$heading."\n"; |
| 268 | 268 | } |
| 269 | 269 | //if (isset($globalSourcesupdate) && $globalSourcesupdate != '' && isset($this->all_tracked[$id]['lastupdate']) && time()-$this->all_tracked[$id]['lastupdate'] < $globalSourcesupdate) $dataFound = false; |
@@ -271,54 +271,54 @@ discard block |
||
| 271 | 271 | if ($dataFound === true && isset($this->all_tracked[$id]['ident'])) { |
| 272 | 272 | $this->all_tracked[$id]['lastupdate'] = time(); |
| 273 | 273 | if ($this->all_tracked[$id]['addedTracker'] == 0) { |
| 274 | - if (!isset($globalDistanceIgnore['latitude']) || $this->all_tracked[$id]['longitude'] == '' || $this->all_tracked[$id]['latitude'] == '' || (isset($globalDistanceIgnore['latitude']) && $Common->distance($this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],$globalDistanceIgnore['latitude'],$globalDistanceIgnore['longitude']) < $globalDistanceIgnore['distance'])) { |
|
| 274 | + if (!isset($globalDistanceIgnore['latitude']) || $this->all_tracked[$id]['longitude'] == '' || $this->all_tracked[$id]['latitude'] == '' || (isset($globalDistanceIgnore['latitude']) && $Common->distance($this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], $globalDistanceIgnore['latitude'], $globalDistanceIgnore['longitude']) < $globalDistanceIgnore['distance'])) { |
|
| 275 | 275 | if (!isset($this->all_tracked[$id]['forcenew']) || $this->all_tracked[$id]['forcenew'] == 0) { |
| 276 | 276 | if ($globalDebug) echo "Check if aircraft is already in DB..."; |
| 277 | 277 | $timeelapsed = microtime(true); |
| 278 | 278 | $TrackerLive = new TrackerLive($this->db); |
| 279 | 279 | if (isset($line['id'])) { |
| 280 | 280 | $recent_ident = $TrackerLive->checkIdRecent($line['id']); |
| 281 | - if ($globalDebugTimeElapsed) echo 'Time elapsed for update checkIdRecent : '.round(microtime(true)-$timeelapsed,2).'s'."\n"; |
|
| 281 | + if ($globalDebugTimeElapsed) echo 'Time elapsed for update checkIdRecent : '.round(microtime(true) - $timeelapsed, 2).'s'."\n"; |
|
| 282 | 282 | } elseif (isset($this->all_tracked[$id]['ident']) && $this->all_tracked[$id]['ident'] != '') { |
| 283 | 283 | $recent_ident = $TrackerLive->checkIdentRecent($this->all_tracked[$id]['ident']); |
| 284 | - if ($globalDebugTimeElapsed) echo 'Time elapsed for update checkIdentRecent : '.round(microtime(true)-$timeelapsed,2).'s'."\n"; |
|
| 284 | + if ($globalDebugTimeElapsed) echo 'Time elapsed for update checkIdentRecent : '.round(microtime(true) - $timeelapsed, 2).'s'."\n"; |
|
| 285 | 285 | } else $recent_ident = ''; |
| 286 | - $TrackerLive->db=null; |
|
| 286 | + $TrackerLive->db = null; |
|
| 287 | 287 | |
| 288 | 288 | if ($globalDebug && $recent_ident == '') echo " Not in DB.\n"; |
| 289 | 289 | elseif ($globalDebug && $recent_ident != '') echo " Already in DB.\n"; |
| 290 | 290 | } else { |
| 291 | 291 | $recent_ident = ''; |
| 292 | - $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('forcenew' => 0)); |
|
| 292 | + $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('forcenew' => 0)); |
|
| 293 | 293 | } |
| 294 | 294 | //if there was no aircraft with the same callsign within the last hour and go post it into the archive |
| 295 | - if($recent_ident == "") |
|
| 295 | + if ($recent_ident == "") |
|
| 296 | 296 | { |
| 297 | 297 | if ($globalDebug) echo "\o/ Add ".$this->all_tracked[$id]['ident']." in archive DB : "; |
| 298 | 298 | //adds the spotter data for the archive |
| 299 | 299 | $highlight = ''; |
| 300 | - if (!isset($this->all_tracked[$id]['id'])) $this->all_tracked[$id] = array_merge($this->all_tracked[$id],array('id' => $this->all_tracked[$id]['ident'].'-'.date('YmdHi'))); |
|
| 300 | + if (!isset($this->all_tracked[$id]['id'])) $this->all_tracked[$id] = array_merge($this->all_tracked[$id], array('id' => $this->all_tracked[$id]['ident'].'-'.date('YmdHi'))); |
|
| 301 | 301 | $timeelapsed = microtime(true); |
| 302 | 302 | $Tracker = new Tracker($this->db); |
| 303 | - $result = $Tracker->addTrackerData($this->all_tracked[$id]['id'], $this->all_tracked[$id]['ident'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], $this->all_tracked[$id]['altitude'], $this->all_tracked[$id]['heading'], $this->all_tracked[$id]['speed'], $this->all_tracked[$id]['datetime'], $this->all_tracked[$id]['comment'],$this->all_tracked[$id]['type'],$this->all_tracked[$id]['format_source'],$this->all_tracked[$id]['source_name']); |
|
| 303 | + $result = $Tracker->addTrackerData($this->all_tracked[$id]['id'], $this->all_tracked[$id]['ident'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], $this->all_tracked[$id]['altitude'], $this->all_tracked[$id]['heading'], $this->all_tracked[$id]['speed'], $this->all_tracked[$id]['datetime'], $this->all_tracked[$id]['comment'], $this->all_tracked[$id]['type'], $this->all_tracked[$id]['format_source'], $this->all_tracked[$id]['source_name']); |
|
| 304 | 304 | $Tracker->db = null; |
| 305 | 305 | if ($globalDebug && isset($result)) echo $result."\n"; |
| 306 | - if ($globalDebugTimeElapsed) echo 'Time elapsed for update addspotterdata : '.round(microtime(true)-$timeelapsed,2).'s'."\n"; |
|
| 306 | + if ($globalDebugTimeElapsed) echo 'Time elapsed for update addspotterdata : '.round(microtime(true) - $timeelapsed, 2).'s'."\n"; |
|
| 307 | 307 | |
| 308 | 308 | |
| 309 | 309 | // Add source stat in DB |
| 310 | 310 | $Stats = new Stats($this->db); |
| 311 | 311 | if (!empty($this->stats)) { |
| 312 | 312 | if ($globalDebug) echo 'Add source stats : '; |
| 313 | - foreach($this->stats as $date => $data) { |
|
| 314 | - foreach($data as $source => $sourced) { |
|
| 313 | + foreach ($this->stats as $date => $data) { |
|
| 314 | + foreach ($data as $source => $sourced) { |
|
| 315 | 315 | //print_r($sourced); |
| 316 | - if (isset($sourced['polar'])) echo $Stats->addStatSource(json_encode($sourced['polar']),$source,'polar_tracker',$date); |
|
| 317 | - if (isset($sourced['hist'])) echo $Stats->addStatSource(json_encode($sourced['hist']),$source,'hist_tracker',$date); |
|
| 316 | + if (isset($sourced['polar'])) echo $Stats->addStatSource(json_encode($sourced['polar']), $source, 'polar_tracker', $date); |
|
| 317 | + if (isset($sourced['hist'])) echo $Stats->addStatSource(json_encode($sourced['hist']), $source, 'hist_tracker', $date); |
|
| 318 | 318 | if (isset($sourced['msg'])) { |
| 319 | 319 | if (time() - $sourced['msg']['date'] > 10) { |
| 320 | 320 | $nbmsg = round($sourced['msg']['nb']/(time() - $sourced['msg']['date'])); |
| 321 | - echo $Stats->addStatSource($nbmsg,$source,'msg_tracker',$date); |
|
| 321 | + echo $Stats->addStatSource($nbmsg, $source, 'msg_tracker', $date); |
|
| 322 | 322 | unset($this->stats[$date][$source]['msg']); |
| 323 | 323 | } |
| 324 | 324 | } |
@@ -341,7 +341,7 @@ discard block |
||
| 341 | 341 | //TrackerLive->deleteLiveTrackerDataNotUpdated(); |
| 342 | 342 | $TrackerLive = new TrackerLive($this->db); |
| 343 | 343 | $TrackerLive->deleteLiveTrackerData(); |
| 344 | - $TrackerLive->db=null; |
|
| 344 | + $TrackerLive->db = null; |
|
| 345 | 345 | if ($globalDebug) echo " Done\n"; |
| 346 | 346 | $this->last_delete = time(); |
| 347 | 347 | } |
@@ -350,7 +350,7 @@ discard block |
||
| 350 | 350 | $this->all_tracked[$id]['addedTracker'] = 1; |
| 351 | 351 | if (isset($globalDaemon) && !$globalDaemon) { |
| 352 | 352 | $Tracker = new Tracker($this->db); |
| 353 | - $Tracker->updateLatestTrackerData($this->all_tracked[$id]['id'],$this->all_tracked[$id]['ident'],$this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],$this->all_tracked[$id]['altitude'],$this->all_tracked[$id]['speed'],$this->all_tracked[$id]['datetime']); |
|
| 353 | + $Tracker->updateLatestTrackerData($this->all_tracked[$id]['id'], $this->all_tracked[$id]['ident'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], $this->all_tracked[$id]['altitude'], $this->all_tracked[$id]['speed'], $this->all_tracked[$id]['datetime']); |
|
| 354 | 354 | $Tracker->db = null; |
| 355 | 355 | } |
| 356 | 356 | |
@@ -364,14 +364,14 @@ discard block |
||
| 364 | 364 | $ignoreImport = false; |
| 365 | 365 | |
| 366 | 366 | if (!$ignoreImport) { |
| 367 | - if (!isset($globalDistanceIgnore['latitude']) || (isset($globalDistanceIgnore['latitude']) && $Common->distance($this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],$globalDistanceIgnore['latitude'],$globalDistanceIgnore['longitude']) < $globalDistanceIgnore['distance'])) { |
|
| 367 | + if (!isset($globalDistanceIgnore['latitude']) || (isset($globalDistanceIgnore['latitude']) && $Common->distance($this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], $globalDistanceIgnore['latitude'], $globalDistanceIgnore['longitude']) < $globalDistanceIgnore['distance'])) { |
|
| 368 | 368 | if ($globalDebug) echo "\o/ Add ".$this->all_tracked[$id]['ident']." from ".$this->all_tracked[$id]['format_source']." in Live DB : "; |
| 369 | 369 | $timeelapsed = microtime(true); |
| 370 | 370 | $TrackerLive = new TrackerLive($this->db); |
| 371 | - $result = $TrackerLive->addLiveTrackerData($this->all_tracked[$id]['id'], $this->all_tracked[$id]['ident'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], $this->all_tracked[$id]['altitude'], $this->all_tracked[$id]['heading'], $this->all_tracked[$id]['speed'],$this->all_tracked[$id]['datetime'], $this->all_tracked[$id]['putinarchive'],$this->all_tracked[$id]['comment'],$this->all_tracked[$id]['type'],$this->all_tracked[$id]['noarchive'],$this->all_tracked[$id]['format_source'],$this->all_tracked[$id]['source_name'],$this->all_tracked[$id]['over_country']); |
|
| 371 | + $result = $TrackerLive->addLiveTrackerData($this->all_tracked[$id]['id'], $this->all_tracked[$id]['ident'], $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], $this->all_tracked[$id]['altitude'], $this->all_tracked[$id]['heading'], $this->all_tracked[$id]['speed'], $this->all_tracked[$id]['datetime'], $this->all_tracked[$id]['putinarchive'], $this->all_tracked[$id]['comment'], $this->all_tracked[$id]['type'], $this->all_tracked[$id]['noarchive'], $this->all_tracked[$id]['format_source'], $this->all_tracked[$id]['source_name'], $this->all_tracked[$id]['over_country']); |
|
| 372 | 372 | $TrackerLive->db = null; |
| 373 | 373 | $this->all_tracked[$id]['putinarchive'] = false; |
| 374 | - if ($globalDebugTimeElapsed) echo 'Time elapsed for update addlivespotterdata : '.round(microtime(true)-$timeelapsed,2).'s'."\n"; |
|
| 374 | + if ($globalDebugTimeElapsed) echo 'Time elapsed for update addlivespotterdata : '.round(microtime(true) - $timeelapsed, 2).'s'."\n"; |
|
| 375 | 375 | |
| 376 | 376 | // Put statistics in $this->stats variable |
| 377 | 377 | |
@@ -388,19 +388,19 @@ discard block |
||
| 388 | 388 | $latitude = $globalCenterLatitude; |
| 389 | 389 | $longitude = $globalCenterLongitude; |
| 390 | 390 | } |
| 391 | - $this->source_location[$source] = array('latitude' => $latitude,'longitude' => $longitude); |
|
| 391 | + $this->source_location[$source] = array('latitude' => $latitude, 'longitude' => $longitude); |
|
| 392 | 392 | } else { |
| 393 | 393 | $latitude = $this->source_location[$source]['latitude']; |
| 394 | 394 | $longitude = $this->source_location[$source]['longitude']; |
| 395 | 395 | } |
| 396 | - $stats_heading = $Common->getHeading($latitude,$longitude,$this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude']); |
|
| 396 | + $stats_heading = $Common->getHeading($latitude, $longitude, $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude']); |
|
| 397 | 397 | //$stats_heading = $stats_heading%22.5; |
| 398 | 398 | $stats_heading = round($stats_heading/22.5); |
| 399 | - $stats_distance = $Common->distance($latitude,$longitude,$this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude']); |
|
| 399 | + $stats_distance = $Common->distance($latitude, $longitude, $this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude']); |
|
| 400 | 400 | $current_date = date('Y-m-d'); |
| 401 | 401 | if ($stats_heading == 16) $stats_heading = 0; |
| 402 | 402 | if (!isset($this->stats[$current_date][$source]['polar'][1])) { |
| 403 | - for ($i=0;$i<=15;$i++) { |
|
| 403 | + for ($i = 0; $i <= 15; $i++) { |
|
| 404 | 404 | $this->stats[$current_date][$source]['polar'][$i] = 0; |
| 405 | 405 | } |
| 406 | 406 | $this->stats[$current_date][$source]['polar'][$stats_heading] = $stats_distance; |
@@ -415,9 +415,9 @@ discard block |
||
| 415 | 415 | if (!isset($this->stats[$current_date][$source]['hist'][$distance])) { |
| 416 | 416 | if (isset($this->stats[$current_date][$source]['hist'][0])) { |
| 417 | 417 | end($this->stats[$current_date][$source]['hist']); |
| 418 | - $mini = key($this->stats[$current_date][$source]['hist'])+10; |
|
| 418 | + $mini = key($this->stats[$current_date][$source]['hist']) + 10; |
|
| 419 | 419 | } else $mini = 0; |
| 420 | - for ($i=$mini;$i<=$distance;$i+=10) { |
|
| 420 | + for ($i = $mini; $i <= $distance; $i += 10) { |
|
| 421 | 421 | $this->stats[$current_date][$source]['hist'][$i] = 0; |
| 422 | 422 | } |
| 423 | 423 | $this->stats[$current_date][$source]['hist'][$distance] = 1; |
@@ -429,7 +429,7 @@ discard block |
||
| 429 | 429 | $this->all_tracked[$id]['lastupdate'] = time(); |
| 430 | 430 | if ($this->all_tracked[$id]['putinarchive']) $send = true; |
| 431 | 431 | if ($globalDebug) echo $result."\n"; |
| 432 | - } elseif (isset($this->all_tracked[$id]['latitude']) && isset($globalDistanceIgnore['latitude']) && $globalDebug) echo "!! Too far -> Distance : ".$Common->distance($this->all_tracked[$id]['latitude'],$this->all_tracked[$id]['longitude'],$globalDistanceIgnore['latitude'],$globalDistanceIgnore['longitude'])."\n"; |
|
| 432 | + } elseif (isset($this->all_tracked[$id]['latitude']) && isset($globalDistanceIgnore['latitude']) && $globalDebug) echo "!! Too far -> Distance : ".$Common->distance($this->all_tracked[$id]['latitude'], $this->all_tracked[$id]['longitude'], $globalDistanceIgnore['latitude'], $globalDistanceIgnore['longitude'])."\n"; |
|
| 433 | 433 | //$this->del(); |
| 434 | 434 | |
| 435 | 435 | |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | if (!isset($filter_name)) $filter_name = ''; |
| 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 ($type == 'aircraft' && $airline_icao == '' && isset($globalFilter)) { |
| 24 | 24 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
| 25 | 25 | } |
@@ -34,8 +34,8 @@ discard block |
||
| 34 | 34 | $title = _("Statistics"); |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | -$year = filter_input(INPUT_GET,'year',FILTER_SANITIZE_NUMBER_INT); |
|
| 38 | -$month = filter_input(INPUT_GET,'month',FILTER_SANITIZE_NUMBER_INT); |
|
| 37 | +$year = filter_input(INPUT_GET, 'year', FILTER_SANITIZE_NUMBER_INT); |
|
| 38 | +$month = filter_input(INPUT_GET, 'month', FILTER_SANITIZE_NUMBER_INT); |
|
| 39 | 39 | |
| 40 | 40 | require_once('header.php'); |
| 41 | 41 | |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | date_default_timezone_set('UTC'); |
| 63 | 63 | $lastupdate = strtotime($last_update[0]['value']); |
| 64 | 64 | if (isset($globalTimezone) && $globalTimezone != '') date_default_timezone_set($globalTimezone); |
| 65 | - print '<i>Last update: '.date('Y-m-d G:i:s',$lastupdate).'</i>'; |
|
| 65 | + print '<i>Last update: '.date('Y-m-d G:i:s', $lastupdate).'</i>'; |
|
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | 68 | ?> |
@@ -74,30 +74,30 @@ discard block |
||
| 74 | 74 | <?php |
| 75 | 75 | if ($type == 'aircraft') { |
| 76 | 76 | ?> |
| 77 | - <span><span class="badge"><?php print number_format($Stats->countOverallFlights($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Flights"); ?></span> |
|
| 78 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 79 | - <span><span class="badge"><?php print number_format($Stats->countOverallArrival($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Arrivals seen"); ?></span> |
|
| 80 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 77 | + <span><span class="badge"><?php print number_format($Stats->countOverallFlights($airline_icao, $filter_name, $year, $month)); ?></span> <?php echo _("Flights"); ?></span> |
|
| 78 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 79 | + <span><span class="badge"><?php print number_format($Stats->countOverallArrival($airline_icao, $filter_name, $year, $month)); ?></span> <?php echo _("Arrivals seen"); ?></span> |
|
| 80 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 81 | 81 | <?php |
| 82 | - if ((isset($globalVA) && $globalVA) ||(isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
| 82 | + if ((isset($globalVA) && $globalVA) || (isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
| 83 | 83 | ?> |
| 84 | - <span><span class="badge"><?php print number_format($Stats->countOverallPilots($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Pilots"); ?></span> |
|
| 85 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 84 | + <span><span class="badge"><?php print number_format($Stats->countOverallPilots($airline_icao, $filter_name, $year, $month)); ?></span> <?php echo _("Pilots"); ?></span> |
|
| 85 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 86 | 86 | <?php |
| 87 | 87 | } else { |
| 88 | 88 | ?> |
| 89 | - <span><span class="badge"><?php print number_format($Stats->countOverallOwners($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Owners"); ?></span> |
|
| 90 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 89 | + <span><span class="badge"><?php print number_format($Stats->countOverallOwners($airline_icao, $filter_name, $year, $month)); ?></span> <?php echo _("Owners"); ?></span> |
|
| 90 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 91 | 91 | <?php |
| 92 | 92 | } |
| 93 | 93 | ?> |
| 94 | - <span><span class="badge"><?php print number_format($Stats->countOverallAircrafts($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Aircrafts types"); ?></span> |
|
| 95 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 94 | + <span><span class="badge"><?php print number_format($Stats->countOverallAircrafts($airline_icao, $filter_name, $year, $month)); ?></span> <?php echo _("Aircrafts types"); ?></span> |
|
| 95 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 96 | 96 | <?php |
| 97 | 97 | if ($airline_icao == '') { |
| 98 | 98 | ?> |
| 99 | - <span><span class="badge"><?php print number_format($Stats->countOverallAirlines($filter_name,$year,$month)); ?></span> <?php echo _("Airlines"); ?></span> |
|
| 100 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 99 | + <span><span class="badge"><?php print number_format($Stats->countOverallAirlines($filter_name, $year, $month)); ?></span> <?php echo _("Airlines"); ?></span> |
|
| 100 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 101 | 101 | <?php |
| 102 | 102 | } |
| 103 | 103 | ?> |
@@ -105,8 +105,8 @@ discard block |
||
| 105 | 105 | if (!(isset($globalIVAO) && $globalIVAO) && !(isset($globalVATSIM) && $globalVATSIM) && !(isset($globalphpVMS) && $globalphpVMS)) { |
| 106 | 106 | if ($airline_icao == '' || $airline_icao == 'all') { |
| 107 | 107 | ?> |
| 108 | - <span><span class="badge"><?php print number_format($Stats->countOverallMilitaryFlights($filter_name,$year,$month)); ?></span> <?php echo _("Military"); ?></span> |
|
| 109 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 108 | + <span><span class="badge"><?php print number_format($Stats->countOverallMilitaryFlights($filter_name, $year, $month)); ?></span> <?php echo _("Military"); ?></span> |
|
| 109 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 110 | 110 | <?php |
| 111 | 111 | } |
| 112 | 112 | } |
@@ -114,22 +114,22 @@ discard block |
||
| 114 | 114 | <?php |
| 115 | 115 | } elseif ($type == 'marine') { |
| 116 | 116 | ?> |
| 117 | - <span><span class="badge"><?php print number_format($Marine->countOverallMarine(array(),$year,$month)); ?></span> <?php echo _("Vessels"); ?></span> |
|
| 118 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 119 | - <span><span class="badge"><?php print number_format($Marine->countOverallMarineTypes(array(),$year,$month)); ?></span> <?php echo _("Types"); ?></span> |
|
| 120 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 117 | + <span><span class="badge"><?php print number_format($Marine->countOverallMarine(array(), $year, $month)); ?></span> <?php echo _("Vessels"); ?></span> |
|
| 118 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 119 | + <span><span class="badge"><?php print number_format($Marine->countOverallMarineTypes(array(), $year, $month)); ?></span> <?php echo _("Types"); ?></span> |
|
| 120 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 121 | 121 | <?php |
| 122 | 122 | } elseif ($type == 'tracker') { |
| 123 | 123 | ?> |
| 124 | - <span><span class="badge"><?php print number_format($Tracker->countOverallTracker(array(),$year,$month)); ?></span> <?php echo _("Trackers"); ?></span> |
|
| 125 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 126 | - <span><span class="badge"><?php print number_format($Tracker->countOverallTrackerTypes(array(),$year,$month)); ?></span> <?php echo _("Types"); ?></span> |
|
| 127 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 124 | + <span><span class="badge"><?php print number_format($Tracker->countOverallTracker(array(), $year, $month)); ?></span> <?php echo _("Trackers"); ?></span> |
|
| 125 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 126 | + <span><span class="badge"><?php print number_format($Tracker->countOverallTrackerTypes(array(), $year, $month)); ?></span> <?php echo _("Types"); ?></span> |
|
| 127 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 128 | 128 | <?php |
| 129 | 129 | } |
| 130 | 130 | ?> |
| 131 | 131 | </p> |
| 132 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 132 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 133 | 133 | <div class="specific-stats"> |
| 134 | 134 | <?php |
| 135 | 135 | if ($type == 'aircraft') { |
@@ -138,12 +138,12 @@ discard block |
||
| 138 | 138 | <div class="col-md-6"> |
| 139 | 139 | <h2><?php echo _("Top 10 Most Common Aircraft Type"); ?></h2> |
| 140 | 140 | <?php |
| 141 | - $aircraft_array = $Stats->countAllAircraftTypes(true,$airline_icao,$filter_name,$year,$month); |
|
| 141 | + $aircraft_array = $Stats->countAllAircraftTypes(true, $airline_icao, $filter_name, $year, $month); |
|
| 142 | 142 | if (count($aircraft_array) == 0) print _("No data available"); |
| 143 | 143 | else { |
| 144 | 144 | print '<div id="chart1" class="chart" width="100%"></div><script>'; |
| 145 | 145 | $aircraft_data = ''; |
| 146 | - foreach($aircraft_array as $aircraft_item) |
|
| 146 | + foreach ($aircraft_array as $aircraft_item) |
|
| 147 | 147 | { |
| 148 | 148 | if ($aircraft_item['aircraft_manufacturer'] == 'Not Available') $aircraft_data .= '[" ('.$aircraft_item['aircraft_icao'].')",'.$aircraft_item['aircraft_icao_count'].'],'; |
| 149 | 149 | else $aircraft_data .= '["'.$aircraft_item['aircraft_manufacturer'].' '.$aircraft_item['aircraft_name'].' ('.$aircraft_item['aircraft_icao'].')",'.$aircraft_item['aircraft_icao_count'].'],'; |
@@ -173,17 +173,17 @@ discard block |
||
| 173 | 173 | ?> |
| 174 | 174 | </div> |
| 175 | 175 | </div> |
| 176 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 176 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 177 | 177 | <?php |
| 178 | 178 | // echo $airline_icao; |
| 179 | 179 | if ($airline_icao == '' || $airline_icao == 'all') { |
| 180 | - $airline_array = $Stats->countAllAirlines(true,$filter_name,$year,$month); |
|
| 180 | + $airline_array = $Stats->countAllAirlines(true, $filter_name, $year, $month); |
|
| 181 | 181 | if (count($airline_array) > 0) { |
| 182 | 182 | print '<div class="col-md-6">'; |
| 183 | 183 | print '<h2>'._("Top 10 Most Common Airline").'</h2>'; |
| 184 | 184 | print '<div id="chart2" class="chart" width="100%"></div><script>'; |
| 185 | 185 | $airline_data = ''; |
| 186 | - foreach($airline_array as $airline_item) |
|
| 186 | + foreach ($airline_array as $airline_item) |
|
| 187 | 187 | { |
| 188 | 188 | $airline_data .= '["'.$airline_item['airline_name'].' ('.$airline_item['airline_icao'].')",'.$airline_item['airline_count'].'],'; |
| 189 | 189 | } |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | } |
| 210 | 210 | ?> |
| 211 | 211 | </div> |
| 212 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 212 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 213 | 213 | <?php |
| 214 | 214 | } |
| 215 | 215 | ?> |
@@ -223,12 +223,12 @@ discard block |
||
| 223 | 223 | <div class="col-md-6"> |
| 224 | 224 | <h2><?php echo _("Top 10 Most Common Vessel Type"); ?></h2> |
| 225 | 225 | <?php |
| 226 | - $marine_array = $Marine->countAllMarineTypes(true,0,'',array(),$year,$month); |
|
| 226 | + $marine_array = $Marine->countAllMarineTypes(true, 0, '', array(), $year, $month); |
|
| 227 | 227 | if (count($marine_array) == 0) print _("No data available"); |
| 228 | 228 | else { |
| 229 | 229 | print '<div id="chart1" class="chart" width="100%"></div><script>'; |
| 230 | 230 | $marine_data = ''; |
| 231 | - foreach($marine_array as $marine_item) |
|
| 231 | + foreach ($marine_array as $marine_item) |
|
| 232 | 232 | { |
| 233 | 233 | $marine_data .= '["'.$marine_item['marine_type'].'",'.$marine_item['marine_type_count'].'],'; |
| 234 | 234 | } |
@@ -259,7 +259,7 @@ discard block |
||
| 259 | 259 | ?> |
| 260 | 260 | </div> |
| 261 | 261 | </div> |
| 262 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 262 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 263 | 263 | <!-- </div>--> |
| 264 | 264 | <?php |
| 265 | 265 | } |
@@ -271,12 +271,12 @@ discard block |
||
| 271 | 271 | <div class="col-md-6"> |
| 272 | 272 | <h2><?php echo _("Top 10 Most Common Tracker Type"); ?></h2> |
| 273 | 273 | <?php |
| 274 | - $tracker_array = $Tracker->countAllTrackerTypes(true,0,'',array(),$year,$month); |
|
| 274 | + $tracker_array = $Tracker->countAllTrackerTypes(true, 0, '', array(), $year, $month); |
|
| 275 | 275 | if (count($tracker_array) == 0) print _("No data available"); |
| 276 | 276 | else { |
| 277 | 277 | print '<div id="chart1" class="chart" width="100%"></div><script>'; |
| 278 | 278 | $tracker_data = ''; |
| 279 | - foreach($tracker_array as $tracker_item) |
|
| 279 | + foreach ($tracker_array as $tracker_item) |
|
| 280 | 280 | { |
| 281 | 281 | $tracker_data .= '["'.$tracker_item['tracker_type'].'",'.$tracker_item['tracker_type_count'].'],'; |
| 282 | 282 | } |
@@ -307,7 +307,7 @@ discard block |
||
| 307 | 307 | ?> |
| 308 | 308 | </div> |
| 309 | 309 | </div> |
| 310 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 310 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 311 | 311 | <!-- </div>--> |
| 312 | 312 | <?php |
| 313 | 313 | } |
@@ -317,8 +317,8 @@ discard block |
||
| 317 | 317 | ?> |
| 318 | 318 | <div class="row column"> |
| 319 | 319 | <?php |
| 320 | - $flightover_array = $Stats->countAllFlightOverCountries(false,$airline_icao,$filter_name,$year,$month); |
|
| 321 | - if ((isset($globalVA) && $globalVA) ||(isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
| 320 | + $flightover_array = $Stats->countAllFlightOverCountries(false, $airline_icao, $filter_name, $year, $month); |
|
| 321 | + if ((isset($globalVA) && $globalVA) || (isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
| 322 | 322 | if (empty($flightover_array)) { |
| 323 | 323 | print '<div class="col-md-12">'; |
| 324 | 324 | } else { |
@@ -327,12 +327,12 @@ discard block |
||
| 327 | 327 | ?> |
| 328 | 328 | <h2><?php echo _("Top 10 Most Common Pilots"); ?></h2> |
| 329 | 329 | <?php |
| 330 | - $pilot_array = $Stats->countAllPilots(true,$airline_icao,$filter_name,$year,$month); |
|
| 330 | + $pilot_array = $Stats->countAllPilots(true, $airline_icao, $filter_name, $year, $month); |
|
| 331 | 331 | if (count($pilot_array) == 0) print _("No data available"); |
| 332 | 332 | else { |
| 333 | 333 | print '<div id="chart7" class="chart" width="100%"></div><script>'; |
| 334 | 334 | $pilot_data = ''; |
| 335 | - foreach($pilot_array as $pilot_item) |
|
| 335 | + foreach ($pilot_array as $pilot_item) |
|
| 336 | 336 | { |
| 337 | 337 | $pilot_data .= '["'.$pilot_item['pilot_name'].' ('.$pilot_item['pilot_id'].')",'.$pilot_item['pilot_count'].'],'; |
| 338 | 338 | } |
@@ -354,19 +354,19 @@ discard block |
||
| 354 | 354 | ?> |
| 355 | 355 | </div> |
| 356 | 356 | |
| 357 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 357 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 358 | 358 | <?php |
| 359 | 359 | } else { |
| 360 | 360 | ?> |
| 361 | 361 | <div class="col-md-6"> |
| 362 | 362 | <h2><?php echo _("Top 10 Most Common Owners"); ?></h2> |
| 363 | 363 | <?php |
| 364 | - $owner_array = $Stats->countAllOwners(true,$airline_icao,$filter_name,$year,$month); |
|
| 364 | + $owner_array = $Stats->countAllOwners(true, $airline_icao, $filter_name, $year, $month); |
|
| 365 | 365 | if (count($owner_array) == 0) print _("No data available"); |
| 366 | 366 | else { |
| 367 | 367 | print '<div id="chart7" class="chart" width="100%"></div><script>'; |
| 368 | 368 | $owner_data = ''; |
| 369 | - foreach($owner_array as $owner_item) |
|
| 369 | + foreach ($owner_array as $owner_item) |
|
| 370 | 370 | { |
| 371 | 371 | $owner_data .= '["'.$owner_item['owner_name'].'",'.$owner_item['owner_count'].'],'; |
| 372 | 372 | } |
@@ -386,7 +386,7 @@ discard block |
||
| 386 | 386 | </div> |
| 387 | 387 | </div> |
| 388 | 388 | |
| 389 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 389 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 390 | 390 | <?php |
| 391 | 391 | } |
| 392 | 392 | if (!empty($flightover_array)) { |
@@ -400,7 +400,7 @@ discard block |
||
| 400 | 400 | print '<div id="chart10" class="chart" width="100%"></div><script>'; |
| 401 | 401 | print 'var series = ['; |
| 402 | 402 | $flightover_data = ''; |
| 403 | - foreach($flightover_array as $flightover_item) |
|
| 403 | + foreach ($flightover_array as $flightover_item) |
|
| 404 | 404 | { |
| 405 | 405 | $flightover_data .= '[ "'.$flightover_item['flight_country_iso3'].'",'.$flightover_item['flight_count'].'],'; |
| 406 | 406 | } |
@@ -446,7 +446,7 @@ discard block |
||
| 446 | 446 | } |
| 447 | 447 | ?> |
| 448 | 448 | </div> |
| 449 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 449 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 450 | 450 | |
| 451 | 451 | |
| 452 | 452 | </div> |
@@ -466,7 +466,7 @@ discard block |
||
| 466 | 466 | print '<div id="chart10" class="chart" width="100%"></div><script>'; |
| 467 | 467 | print 'var series = ['; |
| 468 | 468 | $flightover_data = ''; |
| 469 | - foreach($flightover_array as $flightover_item) |
|
| 469 | + foreach ($flightover_array as $flightover_item) |
|
| 470 | 470 | { |
| 471 | 471 | $flightover_data .= '[ "'.$flightover_item['marine_country_iso3'].'",'.$flightover_item['marine_count'].'],'; |
| 472 | 472 | } |
@@ -526,7 +526,7 @@ discard block |
||
| 526 | 526 | print '<div id="chart10" class="chart" width="100%"></div><script>'; |
| 527 | 527 | print 'var series = ['; |
| 528 | 528 | $flightover_data = ''; |
| 529 | - foreach($flightover_array as $flightover_item) |
|
| 529 | + foreach ($flightover_array as $flightover_item) |
|
| 530 | 530 | { |
| 531 | 531 | $flightover_data .= '[ "'.$flightover_item['flight_country_iso3'].'",'.$flightover_item['flight_count'].'],'; |
| 532 | 532 | } |
@@ -579,14 +579,14 @@ discard block |
||
| 579 | 579 | <div class="row column"> |
| 580 | 580 | <div class="col-md-6"> |
| 581 | 581 | <?php |
| 582 | - $airport_airport_array = $Stats->countAllDepartureAirports(true,$airline_icao,$filter_name,$year,$month); |
|
| 582 | + $airport_airport_array = $Stats->countAllDepartureAirports(true, $airline_icao, $filter_name, $year, $month); |
|
| 583 | 583 | if (count($airport_airport_array) > 0) { |
| 584 | 584 | print '<h2>'._("Top 10 Most Common Departure Airports").'</h2>'; |
| 585 | 585 | print '<div id="chart3" class="chart" width="100%"></div><script>'; |
| 586 | 586 | print "\n"; |
| 587 | 587 | print 'var series = ['; |
| 588 | 588 | $airport_data = ''; |
| 589 | - foreach($airport_airport_array as $airport_item) |
|
| 589 | + foreach ($airport_airport_array as $airport_item) |
|
| 590 | 590 | { |
| 591 | 591 | $airport_data .= '[ "'.$airport_item['airport_departure_icao_count'].'", "'.$airport_item['airport_departure_icao'].'",'.$airport_item['airport_departure_latitude'].','.$airport_item['airport_departure_longitude'].'],'; |
| 592 | 592 | } |
@@ -637,18 +637,18 @@ discard block |
||
| 637 | 637 | } |
| 638 | 638 | ?> |
| 639 | 639 | </div> |
| 640 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 640 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 641 | 641 | |
| 642 | 642 | <div class="col-md-6"> |
| 643 | 643 | <?php |
| 644 | - $airport_airport_array2 = $Stats->countAllArrivalAirports(true,$airline_icao,$filter_name,$year,$month); |
|
| 644 | + $airport_airport_array2 = $Stats->countAllArrivalAirports(true, $airline_icao, $filter_name, $year, $month); |
|
| 645 | 645 | if (count($airport_airport_array2) > 0) { |
| 646 | 646 | print '<h2>'._("Top 10 Most Common Arrival Airports").'</h2>'; |
| 647 | 647 | print '<div id="chart4" class="chart" width="100%"></div><script>'; |
| 648 | 648 | print "\n"; |
| 649 | 649 | print 'var series = ['; |
| 650 | 650 | $airport_data = ''; |
| 651 | - foreach($airport_airport_array2 as $airport_item) |
|
| 651 | + foreach ($airport_airport_array2 as $airport_item) |
|
| 652 | 652 | { |
| 653 | 653 | $airport_data .= '[ "'.$airport_item['airport_arrival_icao_count'].'", "'.$airport_item['airport_arrival_icao'].'",'.$airport_item['airport_arrival_latitude'].','.$airport_item['airport_arrival_longitude'].'],'; |
| 654 | 654 | } |
@@ -700,7 +700,7 @@ discard block |
||
| 700 | 700 | ?> |
| 701 | 701 | </div> |
| 702 | 702 | </div> |
| 703 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 703 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 704 | 704 | <?php |
| 705 | 705 | } |
| 706 | 706 | ?> |
@@ -714,19 +714,19 @@ discard block |
||
| 714 | 714 | <div class="col-md-6"> |
| 715 | 715 | <h2><?php echo _("Busiest Months of the last 12 Months"); ?></h2> |
| 716 | 716 | <?php |
| 717 | - $year_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name); |
|
| 717 | + $year_array = $Stats->countAllMonthsLastYear(true, $airline_icao, $filter_name); |
|
| 718 | 718 | if (count($year_array) == 0) print _("No data available"); |
| 719 | 719 | else { |
| 720 | 720 | print '<div id="chart8" class="chart" width="100%"></div><script>'; |
| 721 | 721 | $year_data = ''; |
| 722 | 722 | $year_cnt = ''; |
| 723 | - foreach($year_array as $year_item) |
|
| 723 | + foreach ($year_array as $year_item) |
|
| 724 | 724 | { |
| 725 | 725 | $year_data .= '"'.$year_item['year_name'].'-'.$year_item['month_name'].'-01'.'",'; |
| 726 | 726 | $year_cnt .= $year_item['date_count'].','; |
| 727 | 727 | } |
| 728 | 728 | $year_data = "['x',".substr($year_data, 0, -1)."]"; |
| 729 | - $year_cnt = "['flights',".substr($year_cnt,0,-1)."]"; |
|
| 729 | + $year_cnt = "['flights',".substr($year_cnt, 0, -1)."]"; |
|
| 730 | 730 | print 'c3.generate({ |
| 731 | 731 | bindto: "#chart8", |
| 732 | 732 | data: { x: "x", |
@@ -739,23 +739,23 @@ discard block |
||
| 739 | 739 | <a href="<?php print $globalURL; ?>/statistics/year<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 740 | 740 | </div> |
| 741 | 741 | </div> |
| 742 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 742 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 743 | 743 | <div class="col-md-6"> |
| 744 | 744 | <h2><?php echo _("Busiest Day in the last Month"); ?></h2> |
| 745 | 745 | <?php |
| 746 | - $month_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name); |
|
| 746 | + $month_array = $Stats->countAllDatesLastMonth($airline_icao, $filter_name); |
|
| 747 | 747 | if (count($month_array) == 0) print _("No data available"); |
| 748 | 748 | else { |
| 749 | 749 | print '<div id="chart9" class="chart" width="100%"></div><script>'; |
| 750 | 750 | $month_data = ''; |
| 751 | 751 | $month_cnt = ''; |
| 752 | - foreach($month_array as $month_item) |
|
| 752 | + foreach ($month_array as $month_item) |
|
| 753 | 753 | { |
| 754 | 754 | $month_data .= '"'.$month_item['date_name'].'",'; |
| 755 | 755 | $month_cnt .= $month_item['date_count'].','; |
| 756 | 756 | } |
| 757 | 757 | $month_data = "['x',".substr($month_data, 0, -1)."]"; |
| 758 | - $month_cnt = "['flights',".substr($month_cnt,0,-1)."]"; |
|
| 758 | + $month_cnt = "['flights',".substr($month_cnt, 0, -1)."]"; |
|
| 759 | 759 | print 'c3.generate({ |
| 760 | 760 | bindto: "#chart9", |
| 761 | 761 | data: { x: "x", |
@@ -768,24 +768,24 @@ discard block |
||
| 768 | 768 | <a href="<?php print $globalURL; ?>/statistics/month<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 769 | 769 | </div> |
| 770 | 770 | </div> |
| 771 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 771 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 772 | 772 | |
| 773 | 773 | <div class="col-md-6"> |
| 774 | 774 | <h2><?php echo _("Busiest Day in the last 7 Days"); ?></h2> |
| 775 | 775 | <?php |
| 776 | - $date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name); |
|
| 776 | + $date_array = $Stats->countAllDatesLast7Days($airline_icao, $filter_name); |
|
| 777 | 777 | if (empty($date_array)) print _("No data available"); |
| 778 | 778 | else { |
| 779 | 779 | print '<div id="chart5" class="chart" width="100%"></div><script>'; |
| 780 | 780 | $date_data = ''; |
| 781 | 781 | $date_cnt = ''; |
| 782 | - foreach($date_array as $date_item) |
|
| 782 | + foreach ($date_array as $date_item) |
|
| 783 | 783 | { |
| 784 | 784 | $date_data .= '"'.$date_item['date_name'].'",'; |
| 785 | 785 | $date_cnt .= $date_item['date_count'].','; |
| 786 | 786 | } |
| 787 | 787 | $date_data = "['x',".substr($date_data, 0, -1)."]"; |
| 788 | - $date_cnt = "['flights',".substr($date_cnt,0,-1)."]"; |
|
| 788 | + $date_cnt = "['flights',".substr($date_cnt, 0, -1)."]"; |
|
| 789 | 789 | print 'c3.generate({ |
| 790 | 790 | bindto: "#chart5", |
| 791 | 791 | data: { x: "x", |
@@ -798,23 +798,23 @@ discard block |
||
| 798 | 798 | <a href="<?php print $globalURL; ?>/statistics/date<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 799 | 799 | </div> |
| 800 | 800 | </div> |
| 801 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 801 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 802 | 802 | <div class="col-md-6"> |
| 803 | 803 | <h2><?php echo _("Busiest Time of the Day"); ?></h2> |
| 804 | 804 | <?php |
| 805 | - $hour_array = $Stats->countAllHours('hour',true,$airline_icao,$filter_name); |
|
| 805 | + $hour_array = $Stats->countAllHours('hour', true, $airline_icao, $filter_name); |
|
| 806 | 806 | if (empty($hour_array)) print _("No data available"); |
| 807 | 807 | else { |
| 808 | 808 | print '<div id="chart6" class="chart" width="100%"></div><script>'; |
| 809 | 809 | $hour_data = ''; |
| 810 | 810 | $hour_cnt = ''; |
| 811 | - foreach($hour_array as $hour_item) |
|
| 811 | + foreach ($hour_array as $hour_item) |
|
| 812 | 812 | { |
| 813 | 813 | $hour_data .= '"'.$hour_item['hour_name'].':00",'; |
| 814 | 814 | $hour_cnt .= $hour_item['hour_count'].','; |
| 815 | 815 | } |
| 816 | 816 | $hour_data = "[".substr($hour_data, 0, -1)."]"; |
| 817 | - $hour_cnt = "['flights',".substr($hour_cnt,0,-1)."]"; |
|
| 817 | + $hour_cnt = "['flights',".substr($hour_cnt, 0, -1)."]"; |
|
| 818 | 818 | print 'c3.generate({ |
| 819 | 819 | bindto: "#chart6", |
| 820 | 820 | data: { |
@@ -827,7 +827,7 @@ discard block |
||
| 827 | 827 | <a href="<?php print $globalURL; ?>/statistics/time<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 828 | 828 | </div> |
| 829 | 829 | </div> |
| 830 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 830 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 831 | 831 | </div> |
| 832 | 832 | <?php |
| 833 | 833 | } |
@@ -845,19 +845,19 @@ discard block |
||
| 845 | 845 | <div class="col-md-6"> |
| 846 | 846 | <h2><?php echo _("Busiest Months of the last 12 Months"); ?></h2> |
| 847 | 847 | <?php |
| 848 | - $year_array = $Marine->countAllMonthsLastYear(true,$airline_icao,$filter_name); |
|
| 848 | + $year_array = $Marine->countAllMonthsLastYear(true, $airline_icao, $filter_name); |
|
| 849 | 849 | if (count($year_array) == 0) print _("No data available"); |
| 850 | 850 | else { |
| 851 | 851 | print '<div id="chart8" class="chart" width="100%"></div><script>'; |
| 852 | 852 | $year_data = ''; |
| 853 | 853 | $year_cnt = ''; |
| 854 | - foreach($year_array as $year_item) |
|
| 854 | + foreach ($year_array as $year_item) |
|
| 855 | 855 | { |
| 856 | 856 | $year_data .= '"'.$year_item['year_name'].'-'.$year_item['month_name'].'-01'.'",'; |
| 857 | 857 | $year_cnt .= $year_item['date_count'].','; |
| 858 | 858 | } |
| 859 | 859 | $year_data = "['x',".substr($year_data, 0, -1)."]"; |
| 860 | - $year_cnt = "['vessels',".substr($year_cnt,0,-1)."]"; |
|
| 860 | + $year_cnt = "['vessels',".substr($year_cnt, 0, -1)."]"; |
|
| 861 | 861 | print 'c3.generate({ |
| 862 | 862 | bindto: "#chart8", |
| 863 | 863 | data: { x: "x", |
@@ -871,23 +871,23 @@ discard block |
||
| 871 | 871 | </div> |
| 872 | 872 | </div> |
| 873 | 873 | |
| 874 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 874 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 875 | 875 | <div class="col-md-6"> |
| 876 | 876 | <h2><?php echo _("Busiest Day in the last Month"); ?></h2> |
| 877 | 877 | <?php |
| 878 | - $month_array = $Marine->countAllDatesLastMonth($airline_icao,$filter_name); |
|
| 878 | + $month_array = $Marine->countAllDatesLastMonth($airline_icao, $filter_name); |
|
| 879 | 879 | if (count($month_array) == 0) print _("No data available"); |
| 880 | 880 | else { |
| 881 | 881 | print '<div id="chart9" class="chart" width="100%"></div><script>'; |
| 882 | 882 | $month_data = ''; |
| 883 | 883 | $month_cnt = ''; |
| 884 | - foreach($month_array as $month_item) |
|
| 884 | + foreach ($month_array as $month_item) |
|
| 885 | 885 | { |
| 886 | 886 | $month_data .= '"'.$month_item['date_name'].'",'; |
| 887 | 887 | $month_cnt .= $month_item['date_count'].','; |
| 888 | 888 | } |
| 889 | 889 | $month_data = "['x',".substr($month_data, 0, -1)."]"; |
| 890 | - $month_cnt = "['vessels',".substr($month_cnt,0,-1)."]"; |
|
| 890 | + $month_cnt = "['vessels',".substr($month_cnt, 0, -1)."]"; |
|
| 891 | 891 | print 'c3.generate({ |
| 892 | 892 | bindto: "#chart9", |
| 893 | 893 | data: { x: "x", |
@@ -900,24 +900,24 @@ discard block |
||
| 900 | 900 | <a href="<?php print $globalURL; ?>/marine/statistics/month" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 901 | 901 | </div> |
| 902 | 902 | </div> |
| 903 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 903 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 904 | 904 | |
| 905 | 905 | <div class="col-md-6"> |
| 906 | 906 | <h2><?php echo _("Busiest Day in the last 7 Days"); ?></h2> |
| 907 | 907 | <?php |
| 908 | - $date_array = $Marine->countAllDatesLast7Days($airline_icao,$filter_name); |
|
| 908 | + $date_array = $Marine->countAllDatesLast7Days($airline_icao, $filter_name); |
|
| 909 | 909 | if (empty($date_array)) print _("No data available"); |
| 910 | 910 | else { |
| 911 | 911 | print '<div id="chart5" class="chart" width="100%"></div><script>'; |
| 912 | 912 | $date_data = ''; |
| 913 | 913 | $date_cnt = ''; |
| 914 | - foreach($date_array as $date_item) |
|
| 914 | + foreach ($date_array as $date_item) |
|
| 915 | 915 | { |
| 916 | 916 | $date_data .= '"'.$date_item['date_name'].'",'; |
| 917 | 917 | $date_cnt .= $date_item['date_count'].','; |
| 918 | 918 | } |
| 919 | 919 | $date_data = "['x',".substr($date_data, 0, -1)."]"; |
| 920 | - $date_cnt = "['vessels',".substr($date_cnt,0,-1)."]"; |
|
| 920 | + $date_cnt = "['vessels',".substr($date_cnt, 0, -1)."]"; |
|
| 921 | 921 | print 'c3.generate({ |
| 922 | 922 | bindto: "#chart5", |
| 923 | 923 | data: { x: "x", |
@@ -930,23 +930,23 @@ discard block |
||
| 930 | 930 | <a href="<?php print $globalURL; ?>/marine/statistics/date" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 931 | 931 | </div> |
| 932 | 932 | </div> |
| 933 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 933 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 934 | 934 | <div class="col-md-6"> |
| 935 | 935 | <h2><?php echo _("Busiest Time of the Day"); ?></h2> |
| 936 | 936 | <?php |
| 937 | - $hour_array = $Marine->countAllHours('hour',true,$airline_icao,$filter_name); |
|
| 937 | + $hour_array = $Marine->countAllHours('hour', true, $airline_icao, $filter_name); |
|
| 938 | 938 | if (empty($hour_array)) print _("No data available"); |
| 939 | 939 | else { |
| 940 | 940 | print '<div id="chart6" class="chart" width="100%"></div><script>'; |
| 941 | 941 | $hour_data = ''; |
| 942 | 942 | $hour_cnt = ''; |
| 943 | - foreach($hour_array as $hour_item) |
|
| 943 | + foreach ($hour_array as $hour_item) |
|
| 944 | 944 | { |
| 945 | 945 | $hour_data .= '"'.$hour_item['hour_name'].':00",'; |
| 946 | 946 | $hour_cnt .= $hour_item['hour_count'].','; |
| 947 | 947 | } |
| 948 | 948 | $hour_data = "[".substr($hour_data, 0, -1)."]"; |
| 949 | - $hour_cnt = "['vessels',".substr($hour_cnt,0,-1)."]"; |
|
| 949 | + $hour_cnt = "['vessels',".substr($hour_cnt, 0, -1)."]"; |
|
| 950 | 950 | print 'c3.generate({ |
| 951 | 951 | bindto: "#chart6", |
| 952 | 952 | data: { |
@@ -959,7 +959,7 @@ discard block |
||
| 959 | 959 | <a href="<?php print $globalURL; ?>/marine/statistics/time" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 960 | 960 | </div> |
| 961 | 961 | </div> |
| 962 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 962 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 963 | 963 | </div> |
| 964 | 964 | <?php |
| 965 | 965 | } |
@@ -983,13 +983,13 @@ discard block |
||
| 983 | 983 | print '<div id="chart8" class="chart" width="100%"></div><script>'; |
| 984 | 984 | $year_data = ''; |
| 985 | 985 | $year_cnt = ''; |
| 986 | - foreach($year_array as $year_item) |
|
| 986 | + foreach ($year_array as $year_item) |
|
| 987 | 987 | { |
| 988 | 988 | $year_data .= '"'.$year_item['year_name'].'-'.$year_item['month_name'].'-01'.'",'; |
| 989 | 989 | $year_cnt .= $year_item['date_count'].','; |
| 990 | 990 | } |
| 991 | 991 | $year_data = "['x',".substr($year_data, 0, -1)."]"; |
| 992 | - $year_cnt = "['trackers',".substr($year_cnt,0,-1)."]"; |
|
| 992 | + $year_cnt = "['trackers',".substr($year_cnt, 0, -1)."]"; |
|
| 993 | 993 | print 'c3.generate({ |
| 994 | 994 | bindto: "#chart8", |
| 995 | 995 | data: { x: "x", |
@@ -1003,7 +1003,7 @@ discard block |
||
| 1003 | 1003 | </div> |
| 1004 | 1004 | </div> |
| 1005 | 1005 | |
| 1006 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 1006 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 1007 | 1007 | <div class="col-md-6"> |
| 1008 | 1008 | <h2><?php echo _("Busiest Day in the last Month"); ?></h2> |
| 1009 | 1009 | <?php |
@@ -1013,13 +1013,13 @@ discard block |
||
| 1013 | 1013 | print '<div id="chart9" class="chart" width="100%"></div><script>'; |
| 1014 | 1014 | $month_data = ''; |
| 1015 | 1015 | $month_cnt = ''; |
| 1016 | - foreach($month_array as $month_item) |
|
| 1016 | + foreach ($month_array as $month_item) |
|
| 1017 | 1017 | { |
| 1018 | 1018 | $month_data .= '"'.$month_item['date_name'].'",'; |
| 1019 | 1019 | $month_cnt .= $month_item['date_count'].','; |
| 1020 | 1020 | } |
| 1021 | 1021 | $month_data = "['x',".substr($month_data, 0, -1)."]"; |
| 1022 | - $month_cnt = "['trackers',".substr($month_cnt,0,-1)."]"; |
|
| 1022 | + $month_cnt = "['trackers',".substr($month_cnt, 0, -1)."]"; |
|
| 1023 | 1023 | print 'c3.generate({ |
| 1024 | 1024 | bindto: "#chart9", |
| 1025 | 1025 | data: { x: "x", |
@@ -1032,7 +1032,7 @@ discard block |
||
| 1032 | 1032 | <a href="<?php print $globalURL; ?>/tracker/statistics/month" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 1033 | 1033 | </div> |
| 1034 | 1034 | </div> |
| 1035 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 1035 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 1036 | 1036 | |
| 1037 | 1037 | <div class="col-md-6"> |
| 1038 | 1038 | <h2><?php echo _("Busiest Day in the last 7 Days"); ?></h2> |
@@ -1043,13 +1043,13 @@ discard block |
||
| 1043 | 1043 | print '<div id="chart5" class="chart" width="100%"></div><script>'; |
| 1044 | 1044 | $date_data = ''; |
| 1045 | 1045 | $date_cnt = ''; |
| 1046 | - foreach($date_array as $date_item) |
|
| 1046 | + foreach ($date_array as $date_item) |
|
| 1047 | 1047 | { |
| 1048 | 1048 | $date_data .= '"'.$date_item['date_name'].'",'; |
| 1049 | 1049 | $date_cnt .= $date_item['date_count'].','; |
| 1050 | 1050 | } |
| 1051 | 1051 | $date_data = "['x',".substr($date_data, 0, -1)."]"; |
| 1052 | - $date_cnt = "['trackers',".substr($date_cnt,0,-1)."]"; |
|
| 1052 | + $date_cnt = "['trackers',".substr($date_cnt, 0, -1)."]"; |
|
| 1053 | 1053 | print 'c3.generate({ |
| 1054 | 1054 | bindto: "#chart5", |
| 1055 | 1055 | data: { x: "x", |
@@ -1062,23 +1062,23 @@ discard block |
||
| 1062 | 1062 | <a href="<?php print $globalURL; ?>/marine/statistics/date" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 1063 | 1063 | </div> |
| 1064 | 1064 | </div> |
| 1065 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 1065 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 1066 | 1066 | <div class="col-md-6"> |
| 1067 | 1067 | <h2><?php echo _("Busiest Time of the Day"); ?></h2> |
| 1068 | 1068 | <?php |
| 1069 | - $hour_array = $Tracker->countAllHours('hour',true); |
|
| 1069 | + $hour_array = $Tracker->countAllHours('hour', true); |
|
| 1070 | 1070 | if (empty($hour_array)) print _("No data available"); |
| 1071 | 1071 | else { |
| 1072 | 1072 | print '<div id="chart6" class="chart" width="100%"></div><script>'; |
| 1073 | 1073 | $hour_data = ''; |
| 1074 | 1074 | $hour_cnt = ''; |
| 1075 | - foreach($hour_array as $hour_item) |
|
| 1075 | + foreach ($hour_array as $hour_item) |
|
| 1076 | 1076 | { |
| 1077 | 1077 | $hour_data .= '"'.$hour_item['hour_name'].':00",'; |
| 1078 | 1078 | $hour_cnt .= $hour_item['hour_count'].','; |
| 1079 | 1079 | } |
| 1080 | 1080 | $hour_data = "[".substr($hour_data, 0, -1)."]"; |
| 1081 | - $hour_cnt = "['trackers',".substr($hour_cnt,0,-1)."]"; |
|
| 1081 | + $hour_cnt = "['trackers',".substr($hour_cnt, 0, -1)."]"; |
|
| 1082 | 1082 | print 'c3.generate({ |
| 1083 | 1083 | bindto: "#chart6", |
| 1084 | 1084 | data: { |
@@ -1091,7 +1091,7 @@ discard block |
||
| 1091 | 1091 | <a href="<?php print $globalURL; ?>/tracker/statistics/time" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 1092 | 1092 | </div> |
| 1093 | 1093 | </div> |
| 1094 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 1094 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 1095 | 1095 | </div> |
| 1096 | 1096 | <?php |
| 1097 | 1097 | } |
@@ -1115,13 +1115,13 @@ discard block |
||
| 1115 | 1115 | print '<div id="chart32" class="chart" width="100%"></div><script>'; |
| 1116 | 1116 | $year_data = ''; |
| 1117 | 1117 | $year_cnt = ''; |
| 1118 | - foreach($year_array as $year_item) |
|
| 1118 | + foreach ($year_array as $year_item) |
|
| 1119 | 1119 | { |
| 1120 | 1120 | $year_data .= '"'.$year_item['year'].'-01-01",'; |
| 1121 | 1121 | $year_cnt .= $year_item['count'].','; |
| 1122 | 1122 | } |
| 1123 | 1123 | $year_data = "['x',".substr($year_data, 0, -1)."]"; |
| 1124 | - $year_cnt = "['flights',".substr($year_cnt,0,-1)."]"; |
|
| 1124 | + $year_cnt = "['flights',".substr($year_cnt, 0, -1)."]"; |
|
| 1125 | 1125 | print 'c3.generate({ |
| 1126 | 1126 | bindto: "#chart32", |
| 1127 | 1127 | data: { x: "x", |
@@ -1134,7 +1134,7 @@ discard block |
||
| 1134 | 1134 | <a href="<?php print $globalURL; ?>/statistics/fatalities/year" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 1135 | 1135 | </div> |
| 1136 | 1136 | </div> |
| 1137 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 1137 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 1138 | 1138 | |
| 1139 | 1139 | <div class="row column"> |
| 1140 | 1140 | <div class="col-md-6"> |
@@ -1146,13 +1146,13 @@ discard block |
||
| 1146 | 1146 | print '<div id="chart33" class="chart" width="100%"></div><script>'; |
| 1147 | 1147 | $year_data = ''; |
| 1148 | 1148 | $year_cnt = ''; |
| 1149 | - foreach($year_array as $year_item) |
|
| 1149 | + foreach ($year_array as $year_item) |
|
| 1150 | 1150 | { |
| 1151 | 1151 | $year_data .= '"'.$year_item['year'].'-'.$year_item['month'].'-01",'; |
| 1152 | 1152 | $year_cnt .= $year_item['count'].','; |
| 1153 | 1153 | } |
| 1154 | 1154 | $year_data = "['x',".substr($year_data, 0, -1)."]"; |
| 1155 | - $year_cnt = "['flights',".substr($year_cnt,0,-1)."]"; |
|
| 1155 | + $year_cnt = "['flights',".substr($year_cnt, 0, -1)."]"; |
|
| 1156 | 1156 | print 'c3.generate({ |
| 1157 | 1157 | bindto: "#chart33", |
| 1158 | 1158 | data: { x: "x", |
@@ -1165,7 +1165,7 @@ discard block |
||
| 1165 | 1165 | <a href="<?php print $globalURL; ?>/statistics/fatalities/month" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 1166 | 1166 | </div> |
| 1167 | 1167 | </div> |
| 1168 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 1168 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 1169 | 1169 | <br/> |
| 1170 | 1170 | <?php |
| 1171 | 1171 | } |
@@ -1181,19 +1181,19 @@ discard block |
||
| 1181 | 1181 | //$polar = $Stats->getStatsSource(date('Y-m-d'),'polar'); |
| 1182 | 1182 | if ($year == '' && $month == '') { |
| 1183 | 1183 | if ($type == 'aircraft') { |
| 1184 | - $polar = $Stats->getStatsSource('polar',date('Y'),date('m'),date('d')); |
|
| 1184 | + $polar = $Stats->getStatsSource('polar', date('Y'), date('m'), date('d')); |
|
| 1185 | 1185 | } elseif ($type == 'marine') { |
| 1186 | - $polar = $Stats->getStatsSource('polar_marine',date('Y'),date('m'),date('d')); |
|
| 1186 | + $polar = $Stats->getStatsSource('polar_marine', date('Y'), date('m'), date('d')); |
|
| 1187 | 1187 | } elseif ($type == 'tracker') { |
| 1188 | - $polar = $Stats->getStatsSource('polar_tracker',date('Y'),date('m'),date('d')); |
|
| 1188 | + $polar = $Stats->getStatsSource('polar_tracker', date('Y'), date('m'), date('d')); |
|
| 1189 | 1189 | } |
| 1190 | 1190 | } else { |
| 1191 | 1191 | if ($type == 'aircraft') { |
| 1192 | - $polar = $Stats->getStatsSource('polar',$year,$month); |
|
| 1192 | + $polar = $Stats->getStatsSource('polar', $year, $month); |
|
| 1193 | 1193 | } elseif ($type == 'marine') { |
| 1194 | - $polar = $Stats->getStatsSource('polar_marine',$year,$month); |
|
| 1194 | + $polar = $Stats->getStatsSource('polar_marine', $year, $month); |
|
| 1195 | 1195 | } elseif ($type == 'tracker') { |
| 1196 | - $polar = $Stats->getStatsSource('polar_tracker',$year,$month); |
|
| 1196 | + $polar = $Stats->getStatsSource('polar_tracker', $year, $month); |
|
| 1197 | 1197 | } |
| 1198 | 1198 | } |
| 1199 | 1199 | if (!empty($polar)) { |
@@ -1202,7 +1202,7 @@ discard block |
||
| 1202 | 1202 | unset($polar_data); |
| 1203 | 1203 | $Spotter = new Spotter(); |
| 1204 | 1204 | $data = json_decode($eachpolar['source_data']); |
| 1205 | - foreach($data as $value => $key) { |
|
| 1205 | + foreach ($data as $value => $key) { |
|
| 1206 | 1206 | $direction = $Spotter->parseDirection(($value*22.5)); |
| 1207 | 1207 | $distance = $key; |
| 1208 | 1208 | $unit = 'km'; |
@@ -1222,7 +1222,7 @@ discard block |
||
| 1222 | 1222 | ?> |
| 1223 | 1223 | <div class="col-md-6"> |
| 1224 | 1224 | <h4><?php print $eachpolar['source_name']; ?></h4> |
| 1225 | - <div id="polar-<?php print str_replace(' ','_',strtolower($eachpolar['source_name'])); ?>" class="chart" width="100%"></div> |
|
| 1225 | + <div id="polar-<?php print str_replace(' ', '_', strtolower($eachpolar['source_name'])); ?>" class="chart" width="100%"></div> |
|
| 1226 | 1226 | <script> |
| 1227 | 1227 | (function() { |
| 1228 | 1228 | var margin = {top: 100, right: 100, bottom: 100, left: 100}, |
@@ -1246,7 +1246,7 @@ discard block |
||
| 1246 | 1246 | color: color, |
| 1247 | 1247 | unit: '<?php echo $unit; ?>' |
| 1248 | 1248 | }; |
| 1249 | - RadarChart("#polar-<?php print str_replace(' ','_',strtolower($eachpolar['source_name'])); ?>", data, radarChartOptions); |
|
| 1249 | + RadarChart("#polar-<?php print str_replace(' ', '_', strtolower($eachpolar['source_name'])); ?>", data, radarChartOptions); |
|
| 1250 | 1250 | })(); |
| 1251 | 1251 | </script> |
| 1252 | 1252 | </div> |
@@ -1261,19 +1261,19 @@ discard block |
||
| 1261 | 1261 | //$msg = $Stats->getStatsSource(date('Y-m-d'),'msg'); |
| 1262 | 1262 | if ($year == '' && $month == '') { |
| 1263 | 1263 | if ($type == 'aircraft') { |
| 1264 | - $msg = $Stats->getStatsSource('msg',date('Y'),date('m'),date('d')); |
|
| 1264 | + $msg = $Stats->getStatsSource('msg', date('Y'), date('m'), date('d')); |
|
| 1265 | 1265 | } elseif ($type == 'marine') { |
| 1266 | - $msg = $Stats->getStatsSource('msg_marine',date('Y'),date('m'),date('d')); |
|
| 1266 | + $msg = $Stats->getStatsSource('msg_marine', date('Y'), date('m'), date('d')); |
|
| 1267 | 1267 | } elseif ($type == 'tracker') { |
| 1268 | - $msg = $Stats->getStatsSource('msg_tracker',date('Y'),date('m'),date('d')); |
|
| 1268 | + $msg = $Stats->getStatsSource('msg_tracker', date('Y'), date('m'), date('d')); |
|
| 1269 | 1269 | } |
| 1270 | 1270 | } else { |
| 1271 | 1271 | if ($type == 'aircraft') { |
| 1272 | - $msg = $Stats->getStatsSource('msg',$year,$month); |
|
| 1272 | + $msg = $Stats->getStatsSource('msg', $year, $month); |
|
| 1273 | 1273 | } elseif ($type == 'marine') { |
| 1274 | - $msg = $Stats->getStatsSource('msg_marine',$year,$month); |
|
| 1274 | + $msg = $Stats->getStatsSource('msg_marine', $year, $month); |
|
| 1275 | 1275 | } elseif ($type == 'tracker') { |
| 1276 | - $msg = $Stats->getStatsSource('msg_tracker',$year,$month); |
|
| 1276 | + $msg = $Stats->getStatsSource('msg_tracker', $year, $month); |
|
| 1277 | 1277 | } |
| 1278 | 1278 | } |
| 1279 | 1279 | if (!empty($msg)) { |
@@ -1281,13 +1281,13 @@ discard block |
||
| 1281 | 1281 | foreach ($msg as $eachmsg) { |
| 1282 | 1282 | //$eachmsg = $msg[0]; |
| 1283 | 1283 | $data = $eachmsg['source_data']; |
| 1284 | - if ($data > 500) $max = (round(($data+100)/100))*100; |
|
| 1284 | + if ($data > 500) $max = (round(($data + 100)/100))*100; |
|
| 1285 | 1285 | else $max = 500; |
| 1286 | 1286 | ?> |
| 1287 | - <div id="msg-<?php print str_replace(' ','_',strtolower($eachmsg['source_name'])); ?>" class="col-md-4"></div> |
|
| 1287 | + <div id="msg-<?php print str_replace(' ', '_', strtolower($eachmsg['source_name'])); ?>" class="col-md-4"></div> |
|
| 1288 | 1288 | <script> |
| 1289 | 1289 | var g = new JustGage({ |
| 1290 | - id: "msg-<?php print str_replace(' ','_',strtolower($eachmsg['source_name'])); ?>", |
|
| 1290 | + id: "msg-<?php print str_replace(' ', '_', strtolower($eachmsg['source_name'])); ?>", |
|
| 1291 | 1291 | value: <?php echo $data; ?>, |
| 1292 | 1292 | min: 0, |
| 1293 | 1293 | max: <?php print $max; ?>, |
@@ -1309,19 +1309,19 @@ discard block |
||
| 1309 | 1309 | //$hist = $Stats->getStatsSource(date('Y-m-d'),'hist'); |
| 1310 | 1310 | if ($year == '' && $month == '') { |
| 1311 | 1311 | if ($type == 'aircraft') { |
| 1312 | - $hist = $Stats->getStatsSource('hist',date('Y'),date('m'),date('d')); |
|
| 1312 | + $hist = $Stats->getStatsSource('hist', date('Y'), date('m'), date('d')); |
|
| 1313 | 1313 | } elseif ($type == 'marine') { |
| 1314 | - $hist = $Stats->getStatsSource('hist_marine',date('Y'),date('m'),date('d')); |
|
| 1314 | + $hist = $Stats->getStatsSource('hist_marine', date('Y'), date('m'), date('d')); |
|
| 1315 | 1315 | } elseif ($type == 'tracker') { |
| 1316 | - $hist = $Stats->getStatsSource('hist_tracker',date('Y'),date('m'),date('d')); |
|
| 1316 | + $hist = $Stats->getStatsSource('hist_tracker', date('Y'), date('m'), date('d')); |
|
| 1317 | 1317 | } |
| 1318 | 1318 | } else { |
| 1319 | 1319 | if ($type == 'aircraft') { |
| 1320 | - $hist = $Stats->getStatsSource('hist',$year,$month); |
|
| 1320 | + $hist = $Stats->getStatsSource('hist', $year, $month); |
|
| 1321 | 1321 | } elseif ($type == 'marine') { |
| 1322 | - $hist = $Stats->getStatsSource('hist_marine',$year,$month); |
|
| 1322 | + $hist = $Stats->getStatsSource('hist_marine', $year, $month); |
|
| 1323 | 1323 | } elseif ($type == 'tracker') { |
| 1324 | - $hist = $Stats->getStatsSource('hist_tracker',$year,$month); |
|
| 1324 | + $hist = $Stats->getStatsSource('hist_tracker', $year, $month); |
|
| 1325 | 1325 | } |
| 1326 | 1326 | } |
| 1327 | 1327 | foreach ($hist as $hists) { |
@@ -1331,7 +1331,7 @@ discard block |
||
| 1331 | 1331 | $source = $hists['source_name']; |
| 1332 | 1332 | $hist_array = json_decode($hists['source_data']); |
| 1333 | 1333 | $unit = 'km'; |
| 1334 | - foreach($hist_array as $distance => $nb) |
|
| 1334 | + foreach ($hist_array as $distance => $nb) |
|
| 1335 | 1335 | { |
| 1336 | 1336 | if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'nm') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'nm')) { |
| 1337 | 1337 | $distance = round($distance*0.539957); |
@@ -1352,18 +1352,18 @@ discard block |
||
| 1352 | 1352 | $nb_data = "['flights',".substr($nb_data, 0, -1)."]"; |
| 1353 | 1353 | ?> |
| 1354 | 1354 | <div class="col-md-6"> |
| 1355 | - <h2><?php echo sprintf(_("Distance for %s"),$source); ?></h2> |
|
| 1355 | + <h2><?php echo sprintf(_("Distance for %s"), $source); ?></h2> |
|
| 1356 | 1356 | <?php |
| 1357 | - print '<div id="charthist-'.str_replace(' ','_',strtolower($source)).'" class="chart" width="100%"></div><script>'; |
|
| 1357 | + print '<div id="charthist-'.str_replace(' ', '_', strtolower($source)).'" class="chart" width="100%"></div><script>'; |
|
| 1358 | 1358 | print 'c3.generate({ |
| 1359 | - bindto: "#charthist-'.str_replace(' ','_',strtolower($source)).'", |
|
| 1359 | + bindto: "#charthist-'.str_replace(' ', '_', strtolower($source)).'", |
|
| 1360 | 1360 | data: { x: "x", |
| 1361 | 1361 | columns: ['.$distance_data.','.$nb_data.'], types: { flights: "area"}, colors: { flights: "#1a3151"}}, |
| 1362 | 1362 | axis: { x: {label : { text: "Distance in '.$unit.'", position: "outer-right"}}, y: { label: "# of Flights"}},legend: { show: false }});'; |
| 1363 | 1363 | print '</script>'; |
| 1364 | 1364 | ?> |
| 1365 | 1365 | </div> |
| 1366 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 1366 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 1367 | 1367 | <?php |
| 1368 | 1368 | } |
| 1369 | 1369 | ?> |