本文整理匯總了PHP中Track::max_distance_from_take_off方法的典型用法代碼示例。如果您正苦於以下問題:PHP Track::max_distance_from_take_off方法的具體用法?PHP Track::max_distance_from_take_off怎麽用?PHP Track::max_distance_from_take_off使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Track
的用法示例。
在下文中一共展示了Track::max_distance_from_take_off方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: parse_igc_coords
}
return $bound;
}
}
# return an array of coordinates in $file
function parse_igc_coords($file)
{
$result = array();
while (!feof($file)) {
$line = fgets($file, 128);
if (!preg_match('/\\AB\\d{6}(\\d{2})(\\d{5})([NS])(\\d{3})(\\d{5})([EW])[AV]\\d{10}\\d*\\r\\n\\z/', $line, $matches)) {
continue;
}
$lat = M_PI * ($matches[1] + $matches[2] / 60000.0) / 180.0;
if ($matches[3] == 'S') {
$lat *= -1;
}
$lon = M_PI * ($matches[4] + $matches[5] / 60000.0) / 180.0;
if ($matches[6] == 'W') {
$lon *= -1;
}
array_push($result, array($lat, $lon));
}
return $result;
}
$file = fopen('php://stdin', 'r');
$coords = parse_igc_coords($file);
$track = new Track($coords);
$bound = 0.0;
printf("Max-distance-from-take-off: %s km\n", $track->max_distance_from_take_off($bound));
printf("Open-distance: %s km\n", $track->open_distance($bound));