You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cho d'Punt 34",081 850 02 56,...,
REQUEST_DENIED: You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account```
I confirm: no way to have it geocoded when place contains an apostrophe.
I'm using with Nominatim url , osm handler.
Verbose echoes "ERROR PARSING RESPONSE:
and a long html from Nominatim
8 out of 330 rows are not geocoded: these places have an apostrophe in common.
I was looking to geocode a file that contained "Villeneuve d'Ascq, France", and the script found "Strada Villeneuve D' Asq, Gorj, Romania".
For some reason the apostrophe was encoded to an HTML numeric entity and caused this problem and the death of many squirrels 🐿.
I fixed it for this specific case with
url = url.replace(/'/, " ");
but maybe mustache has an option for removing html codes or transcoding them properly to utf8.
I can send a PR if you like, but I'm not sure of he scope of the problem or the best way to fix it.
The text was updated successfully, but these errors were encountered: