Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

derhuerst/berlin-wall-shape

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

berlin-wall-shape

The Berlin Wall (Berliner Mauer) as GeoJSON. Taken from the open data portal of Berlin.

see a live map

npm version build status chat on gitter support me on Patreon

a screenshot of a map showing the shape

Installing

npm install berlin-wall-shape

Usage

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],
			// …
		],
		// …
	]
}

License

The underlying data is licensed under the proprietary Geodatennutzungsverordnung.

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.