本文整理汇总了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));