Skip to content

Instantly share code, notes, and snippets.

@nirendra
Created November 27, 2013 23:43

Revisions

  1. nirendra renamed this gist Nov 27, 2013. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. nirendra created this gist Nov 27, 2013.
    23 changes: 23 additions & 0 deletions new_gist_file.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    The function below use the latitude and longitude of two locations, and calculate the distance between them in both miles and metric units.

    function getDistanceBetweenPointsNew($latitude1, $longitude1, $latitude2, $longitude2) {
    $theta = $longitude1 - $longitude2;
    $miles = (sin(deg2rad($latitude1)) * sin(deg2rad($latitude2))) + (cos(deg2rad($latitude1)) * cos(deg2rad($latitude2)) * cos(deg2rad($theta)));
    $miles = acos($miles);
    $miles = rad2deg($miles);
    $miles = $miles * 60 * 1.1515;
    $feet = $miles * 5280;
    $yards = $feet / 3;
    $kilometers = $miles * 1.609344;
    $meters = $kilometers * 1000;
    return compact('miles','feet','yards','kilometers','meters');
    }

    // ---------------Example:---------------------

    $point1 = array('lat' => 40.770623, 'long' => -73.964367);
    $point2 = array('lat' => 40.758224, 'long' => -73.917404);
    $distance = getDistanceBetweenPointsNew($point1['lat'], $point1['long'], $point2['lat'], $point2['long']);
    foreach ($distance as $unit => $value) {
    echo $unit.': '.number_format($value,4).'<br />';
    }