I can pull all of the town boundaries in vt with a query like the one below.
is there a way to add a clause to the query to only select polygons, currently it returns both the town boundaries and nodes for each boundary. I can filter these out separately after the query, but it seems like there should be a way to just amend the query to only return polygons. I would have thought that specifying “relation” or “area” would do so but based on the results that’s not the case.
thanks for any solutions or guidance!
[out:json];
area
['name'='Vermont'];
(relation['admin_level'='8'](area););
out geom;
adding image of result set