vote up 6 vote down star
10

I grabbed a database of the zip codes and their langitudes/latitudes, etc from this This page. It has got the following fields:

ZIP, LATITUDE, LONGITUDE, CITY, STATE, COUNTY, ZIP_CLASS

The data was in a text file but I inserted it into a MySQL table. My question now is, how can i utilise the fields above to calculate the distance between two zip codes that a user can enter on the website? Working code in PHP will be appreciated

flag

What is "distance"? Do you want distance "as the crow flies" / great-circle distance? Road distance? Actual 3D distance between the two points in space? – ShreevatsaR Jan 2 at 21:43
Good question, Preferably I'd want miles – Click Upvote Jan 2 at 23:05
1  
@Shreevats: Since he is asking for a calculation using lat/long, it's safe to assume that you're not going to get road distance. Actual distance between two points in space (e.g. through the earth's body) is probably also not useful. Therefore, "as the crow flies"/great circle is most likely. – Adam Bellaire Jan 3 at 0:35

8 Answers

vote up 3 vote down check

You can also try hitting a web service to calc the distance. Let someone else do the heavy lifting.

http://www.codebump.com/services/PlaceLookup.asmx

link|flag
vote up 5 vote down

It can be done with just maths...

function calc_distance($point1, $point2)
{
    $distance = (3958 * 3.1415926 * sqrt(
    		($point1['lat'] - $point2['lat'])
    		* ($point1['lat'] - $point2['lat'])
    		+ cos($point1['lat'] / 57.29578)
    		* cos($point2['lat'] / 57.29578)
    		* ($point1['long'] - $point2['long'])
    		* ($point1['long'] - $point2['long'])
    	) / 180);

    return $distance;
}
link|flag
Can you give a reference to where you took this calculation from? – Eran Galperin Jan 2 at 21:00
Too many magic numbers, and far too much indentation to the right! – Jonathan Leffler Jan 2 at 21:03
What unit is this returning the distance in? For a zip code which should give 10 miles, it gave something like 7892.xx (approx). How can this be converted to miles? – Click Upvote Jan 2 at 21:11
functions from a util class had around for years. originally found the math online long ago, dont remember where. formating preference is subjective. i do agree with the magic numbers however its not to likely that the earth is going to change sizes and break the code. – mike Jan 2 at 21:15
And shouldn't pi be 3.1415927 (with a 7 at the end, not a 6, since the next digit is 5? Or have I misremembered that...) – Ben Jan 2 at 21:55
show 2 more comments
vote up 4 vote down

This is mike's answer with some annotations for the magic numbers. It seemed to work fine for me for some test data:

function calc_distance($point1, $point2)
{
    $radius      = 3958;      // Earth's radius (miles)
    $pi          = 3.1415926;
    $deg_per_rad = 57.29578;  // Number of degrees/radian (for conversion)

    $distance = ($radius * $pi * sqrt(
                ($point1['lat'] - $point2['lat'])
                * ($point1['lat'] - $point2['lat'])
                + cos($point1['lat'] / $deg_per_rad)  // Convert these to
                * cos($point2['lat'] / $deg_per_rad)  // radians for cos()
                * ($point1['long'] - $point2['long'])
                * ($point1['long'] - $point2['long'])
        ) / 180);

    return $distance;  // Returned using the units used for $radius.
}
link|flag
vote up 1 vote down

Check out the Haversine formula for calculating great circle distances between two points. Some more samples can be found here

Haversine formula:

  • R = earth’s radius (mean radius = 6,371km)
  • Δlat = lat2− lat1
  • Δlong = long2− long1
  • a = sin²(Δlat/2) + cos(lat1).cos(lat2).sin²(Δlong/2)
  • c = 2.atan2(√a, √(1−a))
  • d = R.c

(Note that angles need to be in radians to pass to trig functions).

link|flag
vote up 0 vote down

See the SO question Geospatial Coordinates and Distance in Kilometres for insight and links. The conversion between miles and kilometres is discussed; you can omit it to get the answer in miles. The discussion also includes URLs to external sources of information.

link|flag
vote up 0 vote down

Check out the Aviation Formulary (http://williams.best.vwh.net/avform.htm) for more formulas than you could ever need for calculating things like this.

link|flag
vote up 0 vote down

There is a great php class for handling this sort of thing, including distance between zip codes, written by micah carrick originally. I've put together a step by step for implementing it which might help. http://go.sparkfire.net/2009/09/search-by-location-miles-from-zipcode-in-php/

link|flag
vote up 0 vote down

i have some problem on such topic.I got my answer. thanks everybody

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.