User:MappyArianna/OverpassQueries
Jump to navigation
Jump to search
USA: Objects mapped as nodes that should be mapped as area
1. Get all hospitals mapped as nodes; they should be mapped as areas.
MapRoulette Challenge: Convert hospital nodes to areas in USA
area[name="United States"]->.a;
node["amenity"="hospital"](area.a);
out skel;
2. Get all USPS Post Offices mapped as nodes; they should be mapped as areas.
MapRoulette Challenge: Convert Post Office points to areas in USA
node["amenity"="post_office"]["operator"~"USPS|United States Postal Service",i][!"brand:wikidata"];
out body geom;
3. Get all Schools mapped as nodes; they should be mapped as areas.
MapRoulette Challenge: Convert School points to areas in USA
area[name="United States"]->.a;
node["amenity"="school"](area.a);
out skel;