Overpass: Get relation and node in one query for city?
Hello,
I use the Overpass-API to get cities from some area. As an example I use this simple query:
node
["place"~"village|city|town|metropolis"]
["name"~"^A"]
(area:3600062650);
(area:3602145268);
out body;
So I get a lot of villages/cities/towns/metropolises which starts with "A" which is fine so far.
What I need now are - besides the information the query above delivers in the node - all relation-ids to that found cities. How can it be done? Can the query above be modified to deliever all relation-ids as well? It would avoid sending a query for every city I got.