Dear fellow Programmers, I try to use the following google map webservice in order to locate greek addresses: http://maps.google.com/maps/api/geocode/json?address=Ακαδημίας 16&sensor=false and it does not work. If I hit the same exactly address but written with latin alphabet characters: maps.google.com/maps/api/geocode/json?address=akadimias 16&sensor=false, it works and returns the right result. Could somebody help with this? (To use this service with greek letters as language parameter)

Thank you in advance,

Nicholas

link|improve this question
encode them maybe – glebm Apr 3 '10 at 19:51
I just tried it with Greek characters and it worked for me. – miorel Apr 3 '10 at 19:52
I get this message on mozzila: { "status": "INVALID_REQUEST", "results": [ ] } – nicholas Apr 3 '10 at 20:38
feedback

1 Answer

You should encode the characters. In python you could do:

import urllib
address = 'Ακαδημίας'
encoded_address = urllib.quote(address)
query = 'http://maps.google.com/maps/api/geocode/json?address='+encoded_address+'&sensor=false'

As I am not familiar with greek I don't know if it should read 'Ακαδημίας' or 'Ακαδημίας 16', but the example above gives the encoded address to be

'%CE%91%CE%BA%CE%B1%CE%B4%CE%B7%CE%BC%CE%AF%CE%B1%CF%82'

and seems to work. I guess you have similar methods in PHP or whatever you want to use. For PHP have a look at Problem with greek url characters in IE

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.