Home  >  Article  >  Backend Development  >  PHP calculate distance between two latitude and longitude

PHP calculate distance between two latitude and longitude

WBOY
WBOYOriginal
2016-07-25 08:42:411033browse
  1. function getDistanceBetweenPointsNew($latitude1, $longitude1, $latitude2, $longitude2) {
  2. $theta = $longitude1 - $longitude2;
  3. $miles = (sin(deg2rad($latitude1)) * sin(deg2rad($latitude2))) + (cos(deg2rad($latitude1)) * cos(deg2rad($latitude2)) * cos(deg2rad($theta)));
  4. $miles = acos($miles);
  5. $miles = rad2deg($miles);
  6. $miles = $miles * 60 * 1.1515;
  7. $feet = $miles * 5280;
  8. $yards = $feet / 3;
  9. $kilometers = $miles * 1.609344;
  10. $meters = $kilometers * 1000;
  11. return compact('miles','feet','yards','kilometers','meters');
  12. }
复制代码

用法:
  1. $point1 = array('lat' => 40.770623, 'long' => -73.964367);
  2. $point2 = array('lat' => 40.758224, 'long' => -73.917404);
  3. $distance = getDistanceBetweenPointsNew($point1['lat'], $point1['long'], $point2['lat'], $point2['long']);
  4. foreach ($distance as $unit => $value) {
  5. echo $unit.': '.number_format($value,4).'
    ';
  6. }
  7. ?>
复制代码

PHP


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP gets user’s real IPNext article:PHP gets user’s real IP