Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mvexel/whathappened
What happened in this OSM changeset?
https://github.com/mvexel/whathappened
changeset openstreetmap
Last synced: 14 days ago
JSON representation
What happened in this OSM changeset?
- Host: GitHub
- URL: https://github.com/mvexel/whathappened
- Owner: mvexel
- License: apache-2.0
- Created: 2017-04-09T20:10:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-10T00:05:31.000Z (over 7 years ago)
- Last Synced: 2024-10-21T23:08:17.660Z (2 months ago)
- Topics: changeset, openstreetmap
- Language: Python
- Size: 11.7 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# whathappened
What happened in this OSM changeset?Try it:
[https://osm-what-happened.herokuapp.com/whathappened/41140349/wheelchair?osmtypes=node](https://osm-what-happened.herokuapp.com/whathappened/41140349/wheelchair?osmtypes=node) will look at nodes in changeset 41140349 for added or changed `wheelchair` tags.
```
{
"node": [
{
"created": {},
"deleted": {},
"id": 2923284581,
"modified": {
"wheelchair": {
"new": "limited",
"old": "no"
}
},
"version": 3
}, ...
```The url pattern is `https://osm-what-happened.herokuapp.com/whathappened//[?osmtypes=` where
* `changeset_id` is your changeset id
* `watchlist` is a pipe-separated list of OSM tag keys to watch for
* `osmtypes` is a pipe-separated list of OSM object types to consider.`osmtypes` is optional and defaults to `node|way`.