General Chat / Do you play any instruments?
« on: April 06, 2008, 06:07:29 am »
/* * 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; } } } } }
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Quote from: "Scandalian Airlines"
I think not, there is a world wide demand for cargo, especially odd sized and heavy cargo, so I think Kalitta will be around for a good while.
Also, cargo flights differs from PAX flights in a way, no cargo no flight no fuel expense, PAX with low loads need to go anyway, and it's more or less cargo that helps the flight break even on PAX routes as well. KLM has used that fact successfully for many years with their fleet of combo 747's, but even on a full pax 747 there is still room for a lot of small sized cargo.
Although I agree to your theory I have heard/read somewhere (can't remember where) that cargo airlines complain about more cargo being moved by ships (significantly lower costs but longer shipment times). Especially cargo heading for Asia is pretty cheap by ship. Many ships come overloaded from Asia to Europe but go almost empty back.