Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/osmlab/osm-deep-history
A simple page to show the history of OSM objects.
https://github.com/osmlab/osm-deep-history
Last synced: 5 days ago
JSON representation
A simple page to show the history of OSM objects.
- Host: GitHub
- URL: https://github.com/osmlab/osm-deep-history
- Owner: osmlab
- Created: 2011-12-02T19:45:34.000Z (almost 13 years ago)
- Default Branch: gh-pages
- Last Pushed: 2023-08-29T12:58:59.000Z (about 1 year ago)
- Last Synced: 2024-08-01T12:32:03.185Z (3 months ago)
- Language: JavaScript
- Homepage: http://osmlab.github.io/osm-deep-history/
- Size: 773 KB
- Stars: 31
- Watchers: 7
- Forks: 18
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- awesome-starred - osmlab/osm-deep-history - A simple page to show the history of OSM objects. (others)
README
# OSM Deep History
A better way to view the history of objects in [OpenStreetMap](http://www.openstreetmap.org/).
Example history views:
* [Node](https://aleung.github.io/osm-visual-history/#/node/4857559003)
* [Way](https://aleung.github.io/osm-visual-history/#/way/333067739) (The map needs a few seconds to load)It's an enhancement base on [osmlab/osm-deep-history](https://github.com/osmlab/osm-deep-history) with below update:
Common:
* Improve map UI and fix issues
* When mouse hover on table cell, highlight corresponding version of object on map and pan to center
* In table, show version which is invisible in red (`removed`)
* Base map layer: OpenStreetMap and Mapbox Satellite Streets
* Export full data of specific version in Level0L formatNode:
* Show lat, lon in table
* Show way(s) which the node belongs toWay:
* Show history versions of way on map## Development
The source code has been rewritten mostly in ES6, using Promise and functional style.
To rebuild and run locally:
```
npm install
npm run build
npm start
```