Skip to content

Instantly share code, notes, and snippets.

@ianlopez1115
Last active March 15, 2017 04:40
Show Gist options
  • Save ianlopez1115/f7b10b91488efb4f2a0deb98220a91a2 to your computer and use it in GitHub Desktop.
Save ianlopez1115/f7b10b91488efb4f2a0deb98220a91a2 to your computer and use it in GitHub Desktop.
[timeout:250];
{{geocodeArea:Laguna}}->.searchArea;
(
node [historic=monument] (area.searchArea);
node [historic=memorial] (area.searchArea);
way [highway=footway] (area.searchArea);
way [landuse=grass] (area.searchArea);
way [leisure=park] (area.searchArea);
way [leisure=playground] (area.searchArea);
way [natural=water] (area.searchArea);
way [man_made=monument] (area.searchArea);
way [man_made=monument] (area.searchArea);
)->.pokemonfeatures;
node.pokemonfeatures(newer:"2017-01-01T00:00:00Z")->.newfeatures1;
way.pokemonfeatures(newer:"2017-01-01T00:00:00Z")->.newfeatures2;
.newfeatures1 out meta;
.newfeatures1 >;
.newfeatures2 out meta;
.newfeatures2 >;
out;
Notes:
1. To detect edited objects related to Pokemon Go since the announcement at /r/TheSilphRoad, change "2017-01-01T00:00:00Z" to "2016-09-27T21:29:22Z"
2. geocodeArea:Laguna can be changed to locate such objects in other places, for example geocodeArea:Las Piñas or geocodeArea:Benguet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment