當前位置: 首頁>>代碼示例>>PHP>>正文


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怎麽用?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));
開發者ID:ToninoTarsi,項目名稱:maxxc,代碼行數:31,代碼來源:open_distance.php


注:本文中的Track::max_distance_from_take_off方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。