This is a static archive of our old OpenStreetMap Help Site. Please post any new questions and answers at community.osm.org.

Error connection refused nominatim.openstreetmap.org

0

Hello! I recently started learning and using OSM. I used Java scrip with action "oninput" and I assume this caused the IP address to be blocked. I expect that it violated policy calls to the server. I used this query: var url = "https://nominatim.openstreetmap.org/search?format=json&limit=3&q=" + inp.value; xmlhttp.open ("GET", url, true); Could you please help how can I unblock my IP?

Thanks.

asked 14 May '21, 18:23

Enzo37's gravatar image

Enzo37
11112
accept rate: 0%


One Answer:

2

Yes, the Nominatim usage policy clearly says that:

"The following uses are strictly forbidden and will get you banned: ... Auto-complete search This is not yet supported by Nominatim and you must not implement such a service on the client side using the API."

By sending a query every time a key was pressed, you have violated this rule. If you have not done this in an egregious fashion then your IP block will be lifted after a while automatically. You can use the time until then to read the policy ;)

answered 14 May '21, 18:39

Frederik%20Ramm's gravatar image

Frederik Ramm ♦
82.5k927201273
accept rate: 23%

Thank you for explanation. I have already become acquainted with politics:) IP was blocked more than 2 hours ago, could you please tell how long the IP will be blocked? My IP 62.140.252.35

Thanks.

(14 May '21, 18:54) Enzo37

Source code available on GitHub .