alkis-berlin-client
Query ALKIS, the cadastral map of Berlin, containing shapes of all Buildings, land use zones, sections of owned land, etc. Caveats:
- Sending requests with a filter by item type doesn't work yet.
- Ability to query a single item is missing.
Note: You can also download Shapefiles & DXF files directly by now.
Installing
npm install alkis-berlin-client
Usage
Items will be parsed XML elements in the format of xml-reader.
import {getItems} from 'alkis-berlin-client'
const alexanderplatz = [392500, 5820000, 392000, 5820500]
const structures = getItems('fis:s_wfs_alkis_gebaeudeflaechen', alexanderplatz)
for await (const structure of structures) {
console.log(structure)
}
Contributing
If you have a question or have difficulties using alkis-berlin-client
, 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.