faicchia/haversine

Yet another Haversine formula service.

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

This package is auto-updated.

Last update: 2024-05-28 01:44:48 UTC


README

Yet another Haversine formula service.

Installation

composer require faicchia/haversine

Usage

$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