Home  >  Article  >  Backend Development  >  PHP code to calculate the distance between two points longitude and latitude

PHP code to calculate the distance between two points longitude and latitude

WBOY
WBOYOriginal
2016-07-25 08:42:45939browse
The following is an analysis and introduction to the PHP code for calculating the distance between 2 points of longitude and latitude
  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. }
  13. $point1 = array('lat' => 40.770623, 'long' => -73.964367);
  14. $point2 = array('lat' => 40.758224, 'long' => -73.917404);
  15. $ distance = getDistanceBetweenPointsNew($point1['lat'], $point1['long'], $point2['lat'], $point2['long']);
  16. foreach ($distance as $unit => $value ) {
  17. echo $unit.': '.number_format($value,4).'
    ';
  18. }
  19. ?>
Copy code

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