Overpass Turbo with coordinates for bounding box
[I found this similar question][1]. I tried this on my queries, but none worked as when using `{{bbbox}}`.
My coordinates are the following: `-56.236095,-34.927072,-56.094131,-34.849064`, which were generated using [http://lxbarth.com/bbox/][2]
The queries I am attempting are two.
In the first case, following query, if I use `{{bbox}}` instead of the coordinates, I do get the corresponding information. If I put the coords, then the results are empty.
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“type=route & route=bus”
*/
[out:json][timeout:25];
// gather results
(
// query part for: “type=route and route=bus”
relation["type"="route"]["route"="bus"](-56.236095,-34.927072,-56.094131,-34.849064);
);
// print results
out body;
>;
out skel qt;
In this second case, with `{{bbox}}` I get information, and with the coordinates, I only get an error message:
<*osm-script output="json">
<*union>
<*query type="node">
<*has-kv k="highway" v="traffic_signals"/>
<*bbox-query {{bbox}}/>
<*/query>
<*/union>
<*print mode="body"/>
<*recurse type="down"/>
<*print mode="skeleton"/>
<*/osm-script>
Please, **ignore the * I added**. I didn't manage to make that code snippet to show if I didn't add those * to "break" the code. I used the query **without the * I added**, of course.
The error message is the following:
An error occured during the execution of the overpass query! This is what overpass API returned:
Error: line 5: static error: For the attribute "s" of the element "bbox-query" the only allowed values are floats between -90.0 and 90.0.
Error: line 5: static error: For the attribute "n" of the element "bbox-query" the only allowed values are floats between -90.0 and 90.0.
Error: line 5: static error: For the attribute "w" of the element "bbox-query" the only allowed values are floats between -180.0 and 180.0.
Error: line 5: static error: For the attribute "e" of the element "bbox-query" the only allowed values are floats between -180.0 and 180.0.
[1]: https://help.openstreetmap.org/questions/46867/how-to-use-overpass-api-for-specific-boundingbox
[2]: http://lxbarth.com/bbox/