Skip to content

Instantly share code, notes, and snippets.

@ian29
Last active December 26, 2015 05:49
Show Gist options
  • Save ian29/7103407 to your computer and use it in GitHub Desktop.
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 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