[GIS] Is it possible to integrate a route planner into QGIS

qgisrouting

I am looking for an open source GIS and now asking myself if it is possible to integrate a route planner into QGIS.

The route planner should be able to calculate the distance from one position in the map in all directions (e.g. 30 minutes driving time) and mark it as a catchment area. It would also be helpful to export the data of the marked area to excel (e.g. name of the administrative districts and also demographic date).

Best Answer

It is certainly possible to do routing and catchment zone analysis in QGIS if you combine it with PostGIS's pgRouting. The learning curve will be rather steep if you are not used to any of these tools.

I have a couple of posts on the topic from installing pgRouting to calculating catchment zones: http://underdark.wordpress.com/tag/pgrouting/

Of course it is possible to intersect the catchment zones with any second dataset (like administrative districts). That should be the easiest part :)

Related Question