I think this might be interesting if someone is trying to organize a regulars’ table or something and know they are not active in the forum or on the chat. A ready tool would be appreciated, otherwise it seems i have to look at overpass
[out:csv(::user)];
(node({{bbox}});
way({{bbox}}););
out meta;
this one and it results in a list of the last user that edited a object for every object in that bbox. Pretty long list So, i can work with that, but i would need the following
- Group together each identical value, like “negreheb” is there 20 times, it should show up just once
- Set a timefrage, for example “last N days” but a simple “<[DATE]” would work as well
I tried adding the timestamp()
but it seems that was wrong as it does nothing (found that one https://dev.overpass-api.de/overpass-doc/en/criteria/misc_criteria.html there)
[out:csv(::user)];
(node({{bbox}})(if:timestamp()<"2023-01-01");
way({{bbox}})(if:timestamp()<"2023-01-01"););
out meta;
I hope someone can help me or give me further information so i can solve this
9 posts - 5 participants
Ce sujet de discussion accompagne la publication sur https://community.openstreetmap.org/t/how-to-show-all-users-with-the-last-edit-in-area-in-the-last-n-days/100324