Hi all, I'm trying to do some data analysis and would like to know the historical data of each individual. I understand OSM now provides API to download GPS traces in a specific area by using
I wonder if there is any similar function to download GPS trace of a specific user ID? Thanks in advance. asked 03 Jul '19, 15:47 stormzhou |
One Answer:
No, this is not possible, for privacy reasons. You will notice that the "trackpoints" API does not give you user names or user IDs either. answered 03 Jul '19, 16:13 Frederik Ramm ♦ |
Thanks for your answer. That's what confuses me because in the raw data I downloaded each trace started with a string like
<url>
https://api.openstreetmap.org/user/ABCD/traces/3026889</url>
, which gives the user name of each GPS trace. But if there is no such API call existing, I'll just try to parse the URL in the raw data instead.Users have the option of making their traces public so that they can be associated with the user ID but this is true only for a fraction of traces.
Thank you, that explains a lot. I'll download all data to see how I can clean and categorize them.