NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum

I want to run the following request:

(area["name"="Stuttgart"];)->.a; ( way.a["bicycle"="no"]; ); out geom;

I get all the time the error: "Error: runtime error: […] Another request from your IP is still running."

I tried it also with sample requests from the Overpass API wiki page, but no difference. I have nothing running what uses overpass, so what could be the problem?

Thanks for answer.

Paulest

asked 06 Nov '15, 19:11

Paulest's gravatar image

Paulest
11112
accept rate: 0%


Your current query doesn't take the "Stuttgart" area into account. I'd suggest to try this alternative:

area["name"="Stuttgart"]->.a; 
way(area.a)["bicycle"="no"];
out geom;

Overpass Turbo link: http://overpass-turbo.eu/s/cw2

Another option to get to this query is to use overpass turbo wizard and enter bicycle=no in Stuttgart in the wizard popup.

Besides, there are already a few reports out there with the same error message you're seeing:

If you're affected by this, please either add a comment to this post or one of the GitHub tickets. It's always worth trying another Overpass API instance, like the rambler.ru instance. That's in overpass turbo -> Settings -> Server.

permanent link

answered 06 Nov '15, 19:54

mmd's gravatar image

mmd
5.7k15388
accept rate: 37%

edited 07 Nov '15, 16:02

Same error...

I don't know what is the problem, I think the server has problems with IPv6...

(06 Nov '15, 20:59) Paulest

Vielleicht funktioniert auch der Tunnel von hier nicht ordentlich, also meine IPv6 wird nicht gut genug in IPv4 umgesetzt?

(06 Nov '15, 21:01) Paulest

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×483

question asked: 06 Nov '15, 19:11

question was seen: 3,686 times

last updated: 07 Nov '15, 16:02

NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum