GIScience / orstools-qgis-plugin

Plugin for QGIS with a set of tools to use openrouteservice API´s, based on openstreetmap
https://plugins.qgis.org/plugins/ORStools/
MIT License
92 stars 31 forks source link

Isochrones Ranges #50

Closed sebastiandenker closed 6 years ago

sebastiandenker commented 6 years ago

I'd like to create isochrones from point layer for foot-walking distances with less than 1 km - e.g. 600m

I get an error with 0.6 and 0,6 creates 6km isochromes, cause the comma is used as a seperator.

How do can I do it correctly?

Thanks Sebastian

nilsnolde commented 6 years ago

Yes, that's right, the input you give in that field is split by commas and mapped to int() function, which returns integers. Wasn't thinking too much about walking profiles I guess. I'll amend in the next version. If you want to change this as a hotfix, do the following:

That should work just fine. BTW, the isochrones are currently very smooth, so likely that 600 m walking will return pretty much a convex hull. We'll change the alpha value for polygon smoothness soon, see https://github.com/GIScience/openrouteservice/issues/137.

sebastiandenker commented 6 years ago

Hi Nils, thank you very much for your quick response. The change in the code works well for me!

I'm lookin forward to further developments of your plugin.

As for now, the even the smaller diameter polygones work well and are an improvement to circle buffers.

isochrone_600m

Bye Sebastian