/*
* Patch for filter_var()
*/
if(!function_exists('filter_var')){
define('FILTER_VALIDATE_IP', 'ip');
define('FILTER_FLAG_IPV4', 'ipv4');
define('FILTER_FLAG_IPV6', 'ipv6');
define('FILTER_VALIDATE_EMAIL', 'email');
define('FILTER_FLAG_EMAIL_UNICODE', 'unicode');
function filter_var($variable, $filter, $option = false){
if($filter == 'ip'){
if($option == 'ipv4'){
if(preg_match("/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
if($option == 'ipv6'){
if(preg_match("/\s*(([:.]{0,7}[0-9a-fA-F]{0,4}){1,8})\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
if($filter == 'email'){
if($option == 'unicode' || $option == false){
if(preg_match("/\s*(\S*@\S*\.\S*)\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
}
}
Print Page - Polish Airports
Airline Mogul Forum
Airline Mogul => Game Data => Topic started by: Nagano on April 05, 2008, 02:42:29 pm
-
hello
Statistic from polish airports (2007)
Warsaw 9 268 551
Krakow 3 068 199
Katowice 1 995 914
Gdansk 1 741 000
Wroclaw 1 280 973
Poznan 896 937
Lodz 337 891
Rzeszow 278 287
Szczecin 234 800
Bydgoszcz 179 746
Zielona Gora 6 998
http://www.ulc.gov.pl/index.php?option=com_content&task=view&id=324&Itemid=466
Polish Civil Aviation (pdf)
-
ohh I must correct :oops: . Airports show own statistic but ULC (Polish Department of Civil Aviation) show real statistic
Warsaw 9 268 551
Krakow 3 042 351
Katowice 1 980 358
Wroclaw 1 270 825
Poznan 863 018
Lodz 312 365
Gdansk 1 708 739
Szczecin 228 071
Bydgoszcz 181 576
Rzeszow 274 272
Zielona Gora 6 739
LINK TO ULC STATISTIC :arrow: http://www.ulc.gov.pl/_download/regulacja_rynku/statystyki/liczba_obsl_pasazerow_przesylek_20042007_150208.pdf
Please update this
Greetings
-
Sorry, saw this pretty late. But updated now :)
Thanks for posting.
-
When is this update going to show up, as it have not shown up in World 9 (or will it be present in the next world).
-
Each new world takes the most current data, and stay with that data until round end. So World 10 will have this data.