Skip to content

Instantly share code, notes, and snippets.

View geomantic's full-sized avatar
💭
Working from the 99th floor of the GeomanticLabs world headquarters

Steven Johnson geomantic

💭
Working from the 99th floor of the GeomanticLabs world headquarters
View GitHub Profile
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“user:AASAthens or user:DGGAthensHS or user:Arif_G or user:15DylanChen or user:20isamil or user:Jena8078 or user:Kyal_B or user: 18tuyngu or user:tannerdharris2004”
*/
[out:json][timeout:25];
// gather results
(
// query part for: “user:AASAthens”
node(user:"AASAthens")({{bbox}});
@geomantic
geomantic / noAddresses.oql
Last active July 22, 2018 23:49
FindNoAddresses_OverpassTurbo
// collect all business nodes in a named set 'poi'
(
// amenity nodes
nwr[amenity][amenity~"restaurant|post_office|bar|cafe|pub|fast_food|biergarten|ice_cream|pharmacy|bank|school|place_of_worship|library|fuel|clinic|dentist|doctors|fire_station"]({{bbox}});
// tourism nodes
nwr[tourism][tourism~"museum|office|apartment|hotel|motel|hostel"]({{bbox}});
// shop nodes
nwr[shop]({{bbox}});
)->.businesses;