Skip to content

Instantly share code, notes, and snippets.

@govvin
Created June 20, 2017 06:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save govvin/8cc3cfff204314536d744fe82c52e6f3 to your computer and use it in GitHub Desktop.
Save govvin/8cc3cfff204314536d744fe82c52e6f3 to your computer and use it in GitHub Desktop.
overpass turbo query for mapathon edits

Overpass Turbo Query

overpass turbo query for mapathon edits

{{party=uid: 1041828, 24338, 24338, 1577427, 6088831, 6088818, 5548564, 4892460, 4892371, 6088824, 4645947}}
[diff: "2017-05-29T07:00:00Z","2017-05-30T23:59:59Z"]


[out:json]
[timeout:200];

// query changes made within a region, within date range
({{geocodeArea:San Juan, Metro Manila}}->.searchArea;
  node(area.searchArea);
  way(area.searchArea);
  relation(area.searchArea);
)->.EventEdits;


//filter only edits from party
( node.EventEdits({{party}});
  way.EventEdits({{party}});
  relation.EventEdits({{party}});
);

out meta;
>;
out skel qt;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment