From city to lati and long [message #174991] |
Mon, 01 August 2011 21:20 |
Sarah
Messages: 30 Registered: December 2010
Karma:
|
Member |
|
|
Hi, I've created a PHP script that reads values from XML file
and that calculate longi and lati
$town = $event->town;
$position = $town . " " . $city . " " . $state;
$whereurl = urlencode($position);
$location = file("http://maps.google.com/maps/geo?q=
$whereurl&output=csv&key=ABQIAAAAvp3__HwvT3VkixIIbsW0axQuKI_6t1bH2P 0vCI_Q8jfpn8qdNBQMnneljxh9czilkau_bYSCXteS_A ");
list ($stat,$acc,$latitude,$longitude) = explode(",",$location[0]);
it works but sometimes lati and longi are both set to zero (in the
same record) .... and if I re-execute script I show differents records
set to zero .... can you help me?
Thanks
|
|
|