NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum

Hi, I am struggling with attempting to find all brand new elements created by a single user. I have currently the following but how do I check for version=1 (or similar) please so I only get where they have created a brand new element please? Happy with any other alternatives. What I would like to validate new work by a particular user where they have created a road or similar. I am not interested in their modifications to existing content.

Thanks

{{user=funkyUserName}}
<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>

asked 05 May '18, 10:34

Ewen%20Hill's gravatar image

Ewen Hill
91339
accept rate: 0%

edited 06 May '18, 02:28


Depending on the size of the area the user has edited in, I'll recommend just loading it in JOSM, then run the search (Ctrl-F) user:spjaquish version:1

permanent link

answered 05 May '18, 18:52

Hjart's gravatar image

Hjart
3.0k42656
accept rate: 18%

edited 05 May '18, 18:53

Thanks, this is excellent but the area is huge so an Overpass method would still be wonderful

(05 May '18, 21:28) Ewen Hill
2

Ok. Overpass queries can be run from within JOSM. In the Download window, select the "download from Overpass" tab, click the wizard button and enter 'user:spjaquish', then on the map select the bbox to search within, then press download. When data is downloaded, do Ctrl-F 'version:1'

See https://josm.openstreetmap.de/wiki/Help/Action/Download

(05 May '18, 21:37) Hjart
3

Just for completeness, here's an example of restricting a query to version=1 objects: http://overpass-turbo.eu/s/yyr .

Not sure how the performance would be.

(05 May '18, 23:42) maxerickson

Thank you @maxerickson and @Hjart as both of you have been a wealth of knowledge. The Overpass example did the trick but I was also unaware of the JOSM options. Performance is dire as we are looking at 4000km by 3000km area however I expected this.

(06 May '18, 02:34) Ewen Hill
1

I almost always prefer the JOSM option, because it allows closer inspection without having to go through further hoops. https://wiki.openstreetmap.org/wiki/JOSM/Plugins/TODO_list also often comes in extremely handy.

Also note that simpler Overpass queries of course always perform better.

(06 May '18, 08:02) Hjart
1

@maxerickson, Wonderful answer. But is there any way to accomplish the same thing using only the Overpass Turbo Wizard? I don't want to have to learn the complex syntax of the standard Query Language.

(06 May '18, 15:47) AlaskaDave
1

I guess not. Wizard features should be documented on https://wiki.openstreetmap.org/wiki/Overpass_turbo/Wizard fairly soon after they exist. It seems it could support something like version:1, but it does not right now.

(06 May '18, 16:16) maxerickson
showing 5 of 7 show 2 more comments
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×57
×26

question asked: 05 May '18, 10:34

question was seen: 1,969 times

last updated: 06 May '18, 16:16

NOTICE: help.openstreetmap.org is no longer in use from 1st March 2024. Please use the OpenStreetMap Community Forum