Last active
December 26, 2015 05:49
-
-
Save ian29/7103407 to your computer and use it in GitHub Desktop.
overpass-turbo.eu query that display last nodes / ways touched by a given user
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
This query looks for nodes and ways last | |
edited by the given user. | |
Zoom to the area where you want to see the | |
user's edits and hit "Run" to see those | |
edits visualized on the map. | |
--> | |
<!-- enter OSM user here --> | |
{{user=ian29}} | |
<osm-script output="json"> | |
<union> | |
<query type="node"> | |
<user name="{{user}}"/> | |
<bbox-query {{bbox}}/> | |
</query> | |
<query type="way"> | |
<user name="{{user}}"/> | |
<bbox-query {{bbox}}/> | |
</query> | |
</union> | |
<print mode="body"/> | |
<recurse type="down"/> | |
<print mode="skeleton"/> | |
</osm-script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment