On Nov 9, 1:00 pm, Franzie <[email protected]> wrote: > Hi volks, > I try to get geocodes via maps.google.com API. > I have a valid key. > The sensor is false and the url I use > is:http://maps.google.com/maps/geo?output=xml&key=KEY&sensor=false&q=ADD... > > I have more than 3000 addresses in a sql table and wrote a php script > to obtain the coordinates. The only goal is to write back the lat and > long into table. > The first about 100 queries were succesfully but no more. I still get > the 602 error. > > Have somebody any idea what would be resolving the problem?
Per the documentation, 602 means it can't resolve the address you are giving it: http://code.google.com/apis/maps/documentation/javascript/v2/reference.html#GGeoStatusCode G_GEO_UNKNOWN_ADDRESS = 602 No corresponding geographic location could be found for the specified address. This may be due to the fact that the address is relatively new, or it may be incorrect. I would suggest determine the address it can't locate and change it to one it can find... -- Larry -- Larry > Thanx in advance -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=en.
