PHP Classes

PHP Calculate Distance: Find the distance between points using Haversine

Recommend this page to a friend!
  Info   View files Example   View files View files (2)   DownloadInstall with Composer Download .zip   Reputation   Support forum (1)   Blog    
Ratings Unique User Downloads Download Rankings
Not yet rated by the usersTotal: 411 This week: 1All time: 6,476 This week: 571Up
Version License PHP version Categories
calculate-distance 1Freely Distributable5PHP 5, Geography
Description 

Author

This class can find the distance between two points using the Haversine formula.

It takes the latitude and longitude coordinates of two points and calculates the great-circle distance between two points on the surface of a sphere using the Haversine equation formula.

The distance between the two points is returned in terms of miles.

Picture of Anthony Amolochitis
  Performance   Level  
Name: Anthony Amolochitis <contact>
Classes: 10 packages by
Country: United States United States
Age: 44
All time rank: 1138166 in United States United States
Week rank: 420 Up49 in United States United States Up

Recommendations

Example

<?php

require 'CalculateDistance.php';

$p1 = new GeoPoint(29.762930, -95.233678);
$p2 = new GeoPoint(29.768770, -95.188439);


echo
CalculateDistance::Process($p1, $p2);

echo
'</br>';

echo
CalculateDistance::Process($p2, $p1);


?>


  Files folder image Files  
File Role Description
Plain text file CalculateDistance.php Class Calculate Haversine Distance
Plain text file Example.php Example Usage Example

 Version Control Unique User Downloads Download Rankings  
 0%
Total:411
This week:1
All time:6,476
This week:571Up