The Berlin Wall (Berliner Mauer) as GeoJSON. Taken from the open data portal of Berlin.
npm install berlin-wall-shape
const shape = require('berlin-wall-shape')
console.log(shape)
shape
will be a GeoJSON MultiLineString
.
{
type: 'MultiLineString',
coordinates: [
[
[13.204769, 52.616444],
[13.208006, 52.617655],
// …
],
[
[13.292293, 52.661454],
[13.295914, 52.66113],
// …
],
// …
]
}
The underlying data is licensed under the proprietary Geodatennutzungsverordnung.
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.