Re: [OSM-talk] Data filter

2015-01-12 Thread Paul Norman
On 1/12/2015 1:30 AM, Steve Chilton wrote: Can anyone help me with filtering OSM data please? For a project I am working on I need data on my contributions to the project. How can I select ‘my contributions in UK’ and output as XML (or JSON?). Need a file that can be imported in to

[OSM-talk] Data filter

2015-01-12 Thread Steve Chilton
Can anyone help me with filtering OSM data please? For a project I am working on I need data on my contributions to the project. How can I select 'my contributions in UK' and output as XML (or JSON?). Need a file that can be imported in to standard GIS packages. Any help gratefully received.

Re: [OSM-talk] Data filter

2015-01-12 Thread Marc Gemis
A totally different approach for a very small part you could use Overpass: replace with your username. The following query only returns the ways in the bbox of which was the last modifier. [out:json][timeout:25]; // gather results (way({{bbox}});)-.a; ( // query part for:

Re: [OSM-talk] Data filter

2015-01-12 Thread Imre Samu
How can I select ‘my contributions in UK’ and output as XML (or JSON?). Need a file that can be imported in to standard GIS packages. Hi Steve, *--- hard way * see http://wiki.openstreetmap.org/wiki/Planet.osm/full and filter data with your user id. #1 download full history

Re: [OSM-talk] Data filter

2015-01-12 Thread Glenn Plas
The last touched is quite an easy query on overpass, see the examples here: http://wiki.openstreetmap.org/wiki/Overpass_API#Advanced_usage_examples If you want to return the nodes only: http://overpass-turbo.eu/ query type=node user name=Steve Chilton/ bbox-query {{bbox}}/ /query print