Overpass: How can I create my own area
Is it possible to create an area, as part of an Overpass query, for an arbitrary multypolygon relation?
Overpass does not create areas for multipolygons that have no name or postal code, according to [areas.osm3s](https://github.com/drolbr/Overpass-API/blob/master/src/rules/areas.osm3s).
For example, I'd like to find all orphan nodes in the area defined by [relation 6195356](http://www.openstreetmap.org/relation/6195356).
**If** this relation had a built-in area, the Overpass query would be:
node (area:3606195356); // Find all nodes in multipolygon
(._; - (way(bn);node(w));); // Remove nodes used by ways
(._; - node._[~"."~"."];); // Remove nodes with tags
(._; - (rel(bn);node(r));); // Remove nodes used by relations
out meta qt geom;
The requested solution would be Overpass Query statement(s) that will replace `node (area:3606195356);`