MySQL Forums
Forum List  »  GIS

Re: Zip Code Proximity search
Posted by: Morgan Tocker
Date: October 09, 2007 09:28AM

As well as Yahoo, the Google API is also very good. It's quite easy to convert any address fragment into a latitude and longitude in PHP as follows:

<?php

$file = file_get_contents("http://maps.google.com/maps/geo?output=xml&q=";.
urlencode($address). "&key=".GOOGLE_MAP_KEY);

/**
* A Bug? It says it's utf-8, but it's really not :(
*/

$xml = iconv("ISO-8859-1", "UTF-8", $file);
$xml = simplexml_load_string($xml);

if (!is_object($xml))
throw new Exception("Could not connect to geocode server. Sent argument: $address");

if ($xml->Response->Status->code == 200) {

$coordinates = (string) $xml->Response->Placemark->Point->coordinates;
list($latitude, $longitude) = explode(',', $coordinates);

} else {
throw new Exception("could not find $address");
}

?>

Note: The code is a partial extract from Crash At Mine: http://www.crashatmine.org/snapshots/ (see lib/common_functions.php)

- Morgan

Options: ReplyQuote


Subject
Views
Written By
Posted
29856
October 19, 2004 06:04AM
12032
October 19, 2004 07:55AM
9627
October 19, 2004 11:14AM
11073
October 21, 2004 09:28AM
9493
October 19, 2004 06:59PM
8019
October 20, 2004 07:39AM
7952
October 21, 2004 09:10AM
9231
October 22, 2004 07:17AM
7633
October 23, 2004 02:48AM
7431
October 23, 2004 03:09AM
6702
October 23, 2004 03:12AM
6551
October 23, 2004 02:59PM
8456
October 24, 2004 12:34PM
6365
October 24, 2004 01:31PM
14234
October 21, 2005 10:21AM
6948
D C
January 28, 2006 05:24AM
5429
March 02, 2006 04:24PM
Re: Zip Code Proximity search
7525
October 09, 2007 09:28AM
7086
December 06, 2005 05:34AM
7376
December 06, 2005 06:36AM
5599
December 24, 2005 01:10PM
9309
December 26, 2005 03:49PM
5830
October 09, 2007 09:36AM
30580
December 13, 2007 04:10PM
6479
April 05, 2006 02:59PM
5032
May 02, 2006 03:22PM
6066
May 05, 2006 09:44AM
15130
June 25, 2006 09:32PM
6790
August 30, 2006 12:54PM
6339
July 14, 2007 01:09AM
8910
November 03, 2006 10:25AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.