Skip to content

Instantly share code, notes, and snippets.

@geomantic
Last active March 8, 2018 14:59
Show Gist options
  • Save geomantic/f388f5c065049cb10253b9d353919257 to your computer and use it in GitHub Desktop.
Save geomantic/f388f5c065049cb10253b9d353919257 to your computer and use it in GitHub Desktop.
/*
This has been generated by the overpass-turbo wizard.
The original search was:
“highway=motorway_junction”
Cribbed from Jinal Foflia, https://mail.google.com/mail/u/0/#inbox/1547604887901ecc
*/
[out:json][timeout:225];
(
area[name="United States of America"];
//All nodes in area with the primary tag and modified after the date
node
//(area)
({{bbox}})
["highway"="motorway_junction"](newer:"2016-03-25T07:00:00Z");
)->.all;
// Filter results by certain subtags
(
node.all["ref"];
node.all["noref"];
)->.filter;
// Filter by certain users
(
node.filter(user:"ruthmaben");
node.filter(user:"PlaneMad");
node.filter(user:"srividya_c");
node.filter(user:"Chetan_Gowda");
node.filter(user:"ramyaragupathy");
node.filter(user:"nikhilprabhakar");
node.filter(user:"jinalfoflia");
node.filter(user:"pratikyadav");
node.filter(user:"aarthy");
node.filter(user:"oini");
node.filter(user:"Jothirnadh");
node.filter(user:"saikabhi");
node.filter(user:"geohacker");
node.filter(user:"shvrm");
node.filter(user:"manings");
node.filter(user:"sanjayb");
node.filter(user:"Arunasank");
node.filter(user:"nammala");
node.filter(user:"poornibadrinath");
);
// print results
out body;
>;
out skel qt;
//Style the results to differentiate subtags
{{style:
node{
symbol-size:2;
}
node[noref]{
color:red;
}
node[ref]{
symbol-size:10;
color:green;
}
}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment