I'm working on a project that downloads data from openstreetmap with R-Studio. Fehler in check_for_error(doc) : General overpass server error; returned: The data included in this document is from www.openstreetmap.org. The data is made available under ODbL. runtime error: Query timed out in "query" at line 5 after 26 seconds. But every time I try to download data, I get this Error-code. Could you explain to me, what it means and how I could fix the problem. I would really appreciative, if you could help me. asked 16 Apr '21, 16:24 Michael23 |
Here is the script as far as it goes, until I receive the error-code. If you could make out the problem, that would be really helpful.
|
Hello, I don't know any R programming, but the If you try to load every Using overpass, you can load either really specific data (by name, or reference for exemple) worldwide, or specify a small bounding box. Exceeding one or the other limit will meet the timeout. You should try your overpass requests with overpass-turbo IMHO. You'll understand much more easily what is going on under the hood. For example this query does what you're wishing, I think. I just used the convenient Assistant. Try to load it in your area of interest, to see if it works. Also, you should be aware that If you want to make worldwide, or even countrywide, analysis, you'll have to download the raw osm data, and work locally. Regards. answered 17 Apr '21, 16:33 H_mlet |
Your query could ask for too many data. Why don't you post the relevant bit of code with the query?
In the answer section you can find my script. It would really help me out, if you could help me to find the problem.