Overpass-API
Overpass-API copied to clipboard
A database engine to query the OpenStreetMap data.
This was removed in commit fd804d91
Hi, I'm referring to [this document](http://wiki.openstreetmap.org/wiki/Overpass_turbo/Polygon_Features), defining what Overpass Turbo recognizes as a polygon. It seems like barrier=fence is not considered, while it should be. See this example: http://www.openstreetmap.org/way/154070456 I'm...
Hello, I've created the following Query to test the behaviour of count_distinct_members(): https://overpass-turbo.eu/s/FDo ``` relation(if: count_distinct_members() == 3)({{bbox}}); (._; >;); out body; ``` It returns multiple relations including https://osm.org/relation/7374791 and...
Today, we ask a user to take a look at `/api/status` for further details. This may be fine for tech-savvy people. For overpass turbo, the feedback is more like: _Please...
The pt sketch does not handle multiple routes with the same number gracefully. E.g. [Limburg bus line 1](http://overpass-api.de/api/sketch-line?network=Limburg&ref=1&operator=&correspondences=&width=1200&height=495&font-size=&force-rows=2&max-cors-per-line=&max-cors-below=&style=) is in fact 4 different lines. The different destinations are now separated...
--flush_size is actually implemented as --flush-size and it seems to work only as the last argument.
Hi, first time I write here. I wrote an issue in OSM's github, they told me it was a pb of overpass. I copy/paste the isssue I have made over...
As @nrenner pointed out in #162, `adiff` behavior changed between 0.7.54 and 0.7.55. In 0.7.54, non existing elements in the "since" version triggered a `` element, while 0.7.55 produces a...
I'm getting some sporadic query failures for long running queries while accessing a Random_File from function get_indexes_ to lookup indexes for an object id. * While running test queries, update_from_dir...
I noticed that the Overpass API understands the scientific notation, i.e. ... ``` node[amenity=atm](51.0,1e-6,51.5,0.5); out geom; ``` ([overpass-turbo](https://overpass-turbo.eu/s/Djl)) ...but not if written with a capital **E**. ``` node[amenity=atm](51.0,1E-6,51.5,0.5); out geom;...