I have some users registered in my Django app and I want to simply be able to figure out the distance, geographically, between two users based on their zip code and then sort a list based on that. I would imagine this functionality isn't built into Django. I was looking at some options and stumbled across geodjango which seems like it might be overkill for what my needs are.
|
|
Following tcarobruce's suggestion, here is my above comment as an answer: The Zip Code Database Project has a database of the latitudes and longitudes of the US zip codes, either as SQL or as CSV. They also provide the following code for distance calculation (slighlty edited by me):
Note that the result is given in statute miles. Edit: Corrections due to John Machin. |
||||
|
|
This is a big fat comment on the code posted in the (currently-accepted) answer by @Sven Marnach. Original code from zip project website, with indentation edited by me:
Code posted by Sven:
Problem 1: WON'T RUN: needs to import Problem 2: WRONG ANSWERS: needs to convert the longitude difference to radians in the second last line Problem 3: The variable name "distance" is an extreme misnomer. That quantity is actually the cos of the angle between the two lines from the centre of the earth to the input points. Change to "cos_x" Problem 4: It is not necessary to convert angle x to degrees. Simply multiply x by earth's radius in chosen units (km, nm, or "statute miles") After fixing all that, we get:
Note: After fixing problems 1 and 2, this is the "spherical law of cosines" as usually implemented. It is OK for applications like "distance between two US zipcodes". Caveat 1: It is not precise for small distances like from your front door to the street, so much so that it can give a non-zero distance or raise an exception (cos_x > 1.0) if the two points are identical; this situation can be special-cased. Caveat 2: If the two points are antipodal (straight line path passes through the center of the earth), it can raise an exception (cos_x < -1.0). Anyone worried about that can check cos_x before doing acos(cos_x). Example: SFO (37.676, -122.433) to NYC (40.733, -73.917) calcDist -> 2570.7758043869976 A US government website (http://www.nhc.noaa.gov/gccalc.shtml) -> 2569 This website (http://www.timeanddate.com/worldclock/distanceresult.html?p1=179&p2=224), from which I got the SFO and NYC coordinates, -> 2577 |
|||||||||
|
|
http://code.google.com/apis/maps/documentation/directions/ You could do directions for each location. The total distance is given. The API seems to output JSON; you could either parse the answer on the server side or have the distance calculated by JavaScript. |
|||
|