Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/moklick/howto-fisbroker
How to download geodata from fis broker wfs via qgis and save as it a shapefile.
https://github.com/moklick/howto-fisbroker
Last synced: about 1 month ago
JSON representation
How to download geodata from fis broker wfs via qgis and save as it a shapefile.
- Host: GitHub
- URL: https://github.com/moklick/howto-fisbroker
- Owner: moklick
- Created: 2014-10-16T19:04:13.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-09T18:50:27.000Z (almost 10 years ago)
- Last Synced: 2024-08-06T03:01:57.446Z (3 months ago)
- Homepage:
- Size: 152 KB
- Stars: 18
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Fisbroker How-To
==============How to download geodata from a fis broker wfs (web feature server) via qgis and save it as a shapefile.
#### Find dataset
1. Go to [fis broker](http://fbinter.stadt-berlin.de/fb/index.jsp)
2. Choose one of the data sets. For example 'Hausumringe'.
3. Click 'Zum Downloadlink (WFS)'
4. Look for the 'Rechneradresse' point. Its an url like this one for the house-shapes in Berlin: http://fbinter.stadt-berlin.de/fb/wfs/geometry/senstadt/re_hausumringe#### Load data with QGis
1. **Download WFS client plugin.** You can install it via QGis by this steps: 'Plugins' -> 'Manage and Install Plugins...' -> search for 'wfs' -> choose 'WFS 2.0 Client' -> 'Install Plugin'
2. **Download Geodata.** Open the plugin by clicking on 'Web' -> 'WFS 2.0 Client' -> 'WFS 2.0 Client'. Type in an url of a WFS. For example : http://fbinter.stadt-berlin.de/fb/wfs/geometry/senstadt/re_hausumringe. Click on 'Get Capabilities'. After that you can define a bounding box, a feature limit and a SRS (spatial reference system). For the datasets of houses you must choose featureCount = 550000 and SRS = EPSG:4258. SRS = EPSG:25833 should always work for the Berlin datasets.
3. **Save as shapefile**If you need to convert the srs of the shapefile you can do it with the help of ogr2ogr:
This command converts `input.shp`(SRS = EPSG:25833) to `output.shp`(SRS = EPSG:4326).
```
$ ogr2ogr -t_srs EPSG:4326 -s_srs EPSG:25833 output.shp input.shp
```Get information of the different spatial reference systems at http://epsg.io/