Hi, last year I was searching pretty much the same thing and ended up with this one:

https://help.openstreetmap.org/questions/54268/search-for-objects-created-after-a-certain-date-with-overpass

You could easily use that same code after tweaking it a little; I'm far from being a programmer but I can easily use it.

See this:

/|[out:xml][timeout:250][adiff:"2015-01-01T00:00:00Z","2016-01-01T00:00:00Z"]; ( node["highway"="crossing"]({{bbox}}); ); out body; out meta; >; out skel qt;|/

This code returns all the created/edited nodes tagged as highway=crossing in between 1-1-2015 and 1-1-2016, if you want to search for the amenity=drinking_water created in between two dates you just have to replace "highway" with "amenity" and "crossing" with "drinking_water", in case you need to search those added/edited in another time span, you just need to update the data in the first row. Keep in mind that "node" on the third row, if you're searching fo the highway=path tag, you'll have to replace the "node" with "way", because no one uses the highway=path tag on a node (hopefully :D) When you're done editing your code you just paste it here http://overpass-turbo.eu/ , move the map on the area where you want to search in, and click the start button.

Hopefully it works for you as well.
Cheers
Marco

Il 11/01/2018 09:53, Javier Sánchez Portero ha scritto:
Hello

I can't find a Quality Assurace tool to track additions of objects with a specific tag in an area.

I know I can do it with a local updated instance of the database, but I'm looking for a accesible way for a non programer.

Does anyone know any?

Thank you in advance,
Javier



_______________________________________________
talk mailing list
talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/talk

_______________________________________________
talk mailing list
talk@openstreetmap.org
https://lists.openstreetmap.org/listinfo/talk

Reply via email to