Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/derhuerst/berlin-wall-shape
The Berlin Wall (Berliner Mauer) as GeoJSON.
https://github.com/derhuerst/berlin-wall-shape
berlin geojson shapefile wall
Last synced: 5 days ago
JSON representation
The Berlin Wall (Berliner Mauer) as GeoJSON.
- Host: GitHub
- URL: https://github.com/derhuerst/berlin-wall-shape
- Owner: derhuerst
- License: other
- Created: 2018-02-02T17:12:59.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-21T18:53:20.000Z (about 5 years ago)
- Last Synced: 2024-05-01T23:29:02.592Z (7 months ago)
- Topics: berlin, geojson, shapefile, wall
- Language: JavaScript
- Homepage: https://github.com/derhuerst/berlin-wall-shape#berlin-wall-shape
- Size: 354 KB
- Stars: 10
- Watchers: 3
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# berlin-wall-shape
**The [Berlin Wall (Berliner Mauer)](https://en.wikipedia.org/wiki/Berlin_Wall) as GeoJSON.** Taken [from the open data portal of Berlin](https://daten.berlin.de/datensaetze/verlauf-der-berliner-mauer-1989-hinterlandmauer-wfs).
[see a live map](https://fbinter.stadt-berlin.de/fb/index.jsp?loginkey=zoomStart&mapId=k_mauer@senstadt&bbox=18997,17259,31668,24771)
[![npm version](https://img.shields.io/npm/v/berlin-wall-shape.svg)](https://www.npmjs.com/package/berlin-wall-shape)
[![build status](https://api.travis-ci.org/derhuerst/berlin-wall-shape.svg?branch=master)](https://travis-ci.org/derhuerst/berlin-wall-shape)
[![chat on gitter](https://badges.gitter.im/derhuerst.svg)](https://gitter.im/derhuerst)
[![support me on Patreon](https://img.shields.io/badge/support%20me-on%20patreon-fa7664.svg)](https://patreon.com/derhuerst)[![a screenshot of a map showing the shape](screenshot.png)](https://bl.ocks.org/d/a9bca806db0f41216dc3ebfbd84cd023)
## Installing
```shell
npm install berlin-wall-shape
```## Usage
```js
const shape = require('berlin-wall-shape')
console.log(shape)
````shape` will be a [GeoJSON](http://geojson.org/) [`MultiLineString`](https://tools.ietf.org/html/rfc7946#section-3.1.5).
```js
{
type: 'MultiLineString',
coordinates: [
[
[13.204769, 52.616444],
[13.208006, 52.617655],
// …
],
[
[13.292293, 52.661454],
[13.295914, 52.66113],
// …
],
// …
]
}
```## License
The [underlying data](https://daten.berlin.de/datensaetze/verlauf-der-berliner-mauer-1989-hinterlandmauer-wfs) is licensed under the proprietary [*Geodatennutzungsverordnung*](license.md).
## Contributing
If you have a question or have difficulties using `berlin-wall-shape`, please double-check your code and setup first. If you think you have found a bug or want to propose a feature, refer to [the issues page](https://github.com/derhuerst/berlin-wall-shape/issues).