faicchia/haversine

另一个哈夫韦森公式服务。

v1.0.1 2022-06-21 09:45 UTC

This package is auto-updated.

Last update: 2024-09-28 02:18:19 UTC


README

另一个哈夫韦森公式服务。

安装

composer require faicchia/haversine

使用

$distance = Haversine::kilometers(
    from: Point::new(latitude: 41.902782, longitude: 12.496366), // Rome
    to: Point::new(latitude: 51.509865, longitude: -0.118092)    // London
);
// 1433.47926

$distance = Haversine::miles(
    from: Point::new(latitude: 41.902782, longitude: 12.496366), 
    to: Point::new(latitude: 51.509865, longitude: -0.118092)    
);
// 890.722441