I'm trying to figure out the syntax of overpass-turbo query. I have found a couple of queries.
One that ends with out body center qt
:
[out:json][timeout:600]; ( node["craft"="window_construction"]; way["craft"="window_construction"]; relation["craft"="window_construction"]; node["craft"="carpenter"]; way["craft"="carpenter"]; relation["craft"="carpenter"]; ); out body center qt;
And one that has ;>
at the end of every row and that ends with out skel qt
:
[out:json][timeout:600]; ( node["craft"="window_construction"];>; way["craft"="window_construction"];>; relation["craft"="window_construction"];>; node["craft"="carpenter"];>; way["craft"="carpenter"];>; relation["craft"="carpenter"];>; ); out skel qt;
It seems to produce the same output. Can you tell me what's the difference? And what does it change if I just end the query with just out
?
asked 24 Jul '23, 16:30

Andreanovenove
126●10●11●18
accept rate: 0%
Thank you for your reply. Can you tell me why you said in the second query all the tags are missing? Why is there a double
out
in the wizard query you posted?