M15U has asked for the wisdom of the Perl Monks concerning the following question:
Hello monks, I have a question for you. I'm trying to use Geo::Coder::Google to get a list of coordinates from an array of locations. My problem is that the array of locations is generated by an another script which sometimes puts in it some strange locations which can not be found in google maps, i.e. "CorseMétéo".
This generates the following error message : "Google Maps API returned error: 500 Can't connect to maps.google.com:80 (Bad hostname) at geoTest.pl line 24.".
My code looks like this:
#!/usr/bin/perl -w use strict; use locale; use warnings; #use diagnostics; use utf8; binmode(STDIN, "encoding(utf8)"); binmode(STDOUT, "encoding(utf8)"); binmode(STDERR, "encoding(utf8)"); use Geo::Coder::Google; my @place = ('Seattle', 'France', 'CorseMétéo', 'NewDelhi'); my ($long, $lat); foreach my $place(@place){ my $geocoder = Geo::Coder::Google->new(apikey => '{MyAPIkeyHere}') +; my $response; until (defined $response){ $response = $geocoder->geocode(location => $place); } ($long, $lat) = @{ $response->{Point}{coordinates} }; print "$long\n"; print "$lat\n"; }
It is true that Geo::Coder::Google is design to run on streed adress. However it seems to work fine on any other location, if it exist. I've try using the "eval" or "$@" error cheking on the the module object "$geocoder->geocode(location => $place)", but it runs in conflict with "@{ $response->{Point}{coordinates}"giving me the following error message : "Can't use an undefined value as an ARRAY reference at geoTest.pl line 31.".
Hope I was clear enough in problem explanation
Thank you Monks !!!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: How to make Geo::Coder::Google run even if input location doesn't exist
by Corion (Patriarch) on Mar 01, 2013 at 08:04 UTC | |
by M15U (Acolyte) on Mar 01, 2013 at 08:19 UTC | |
by Corion (Patriarch) on Mar 01, 2013 at 08:25 UTC | |
by M15U (Acolyte) on Mar 01, 2013 at 08:54 UTC | |
by Corion (Patriarch) on Mar 01, 2013 at 09:04 UTC | |
|