/* * 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; } } } } }
How do you calculate the time a route takes in the game?
I remember reading somewhere in one of these hundreds of threads the formula but I can't find it anymore :(.
Thanks!
No I mean is it like:
Distance/Speed + 2Turn time?
Heres what I do to organize my routes:
1. Open Excel or Works Spreadsheet.
2. In A1, type 24.
3. In A2, copy and paste this: =A1-2*D2*(C2/E2+F2)
4. Fill that down several rows.
5. In E2, type in the aircrafts speed.
6. Fill that down several rows.
7. IN F2, type in the aircrafts turn time.
8. Fill that down several rows.
9. In B2, type in the airport codes for the route you want. (This isn't necessary, but it helps for organizing.)
10. Research that route in AirlineMogul under "Research Route".
11. In C2, type in the distance of that route.
12. In D2, type in a frequency you want for that route.
13. Voila, it calculated your route time!
14. Repeat steps 9-13 for as many routes as you want. Remember that you can't go negative in column A.
This was done hastily. If anybody sees any mistakes, shout at me and criticize me and do anything else you want to do to make me feel miserable. :P
No he didn't'
TBh I don't use formulas. I just do guess and check
I did from Charlotte (CLT) to Myrtle Beach Intl. and my route time (on calculator)came out to, 22.3455066 is this 22 minutes?