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
28480
October 19, 2004 06:04AM
10932
October 19, 2004 07:55AM
9335
October 19, 2004 11:14AM
10369
October 21, 2004 09:28AM
9250
October 19, 2004 06:59PM
7710
October 20, 2004 07:39AM
7719
October 21, 2004 09:10AM
8963
October 22, 2004 07:17AM
6900
October 23, 2004 02:48AM
6318
October 23, 2004 03:09AM
6446
October 23, 2004 03:12AM
6319
October 23, 2004 02:59PM
8092
October 24, 2004 12:34PM
5603
October 24, 2004 01:31PM
13250
October 21, 2005 10:21AM
5660
D C
January 28, 2006 05:24AM
5214
March 02, 2006 04:24PM
Re: Zip Code Proximity search
7306
October 09, 2007 09:28AM
5823
December 06, 2005 05:34AM
7121
December 06, 2005 06:36AM
5400
December 24, 2005 01:10PM
8961
December 26, 2005 03:49PM
5532
October 09, 2007 09:36AM
29533
December 13, 2007 04:10PM
6264
April 05, 2006 02:59PM
4801
May 02, 2006 03:22PM
5784
May 05, 2006 09:44AM
14721
June 25, 2006 09:32PM
5594
August 30, 2006 12:54PM
6117
July 14, 2007 01:09AM
7719
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.