Cycleguy13
(Cycleguy13)
January 15, 2025, 10:19pm
1
I would like to see all my data points, kinda to have a track record of where I was active.
In a forum a read that overpass supports this, can you show me a tag/key to do this?
The bounding box is variable, and points, lines and polygons are of interest
mcliquid
(mcliquid)
January 15, 2025, 10:28pm
2
Hi! First of all, there are two websites that can give you a good overview of your work:
Another website would be OsmCha, which lists all your changesets: OSMCha
There are a few options in Overpass .
This query may already help: overpass turbo
[out:json][timeout:25];
nwr(user:"Cycleguy13")({{bbox}});
out geom;
1 Like
Kees_59
(Kees B)
January 15, 2025, 10:30pm
3
Just to see where you where active you could use a site like Your OSM Heat Map
afgb1977
(Felipe GualdrĂłn)
January 15, 2025, 10:40pm
4
nwr(user_touched:"your_user"); out geom;
1 Like
So far only Overpass API is a reliable tool to get your data. In case you need history of your changes it should be much more complicated request. See Overpass API documentation for further details https://overpass-api.de/
1 Like
qugeb
(Quirin)
January 16, 2025, 11:39am
6
Does this also work when the user changed his name during his osm career?
andygol
January 16, 2025, 11:42am
7
If the user has changed their nickname, use a uid
that remains unchanged.
2 Likes
Cycleguy13
(Cycleguy13)
January 16, 2025, 5:23pm
8
I dont like that, it seems pretty inaccurate and maybe doesnt detect changes, only creations?
I like “how did you contribute” but it also doesnt show the changes geographically
@mcliquid thanks for the overpass command! You used some kind of wrong quotes, this is the correct one
[out:json][timeout:25];
nwr(user:"USERNAME")({{bbox}});
out geom;
1 Like