-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] Service area improvements #19
Comments
Responding to point 1: Alternatively, you might look at the QGIS service area (from layer) algorithm: it will output multi-line features with one feature per input point. You could buffer these with a flat end cap style or use convex hulls to approximate a service area for each start point. |
@josephholler: This is a very good analysis of the problem: Due to the fact that you could implement this in a pyhton script (looping through points and then intersecting the resulting iso-areas) I didn't want to add more algorithm parameters/steps that would make the currently very complex QNEAT3 algs more complicated. |
To follow up on this, the algorithms currently ask for an input "unique point ID field", which cannot be meaningful the way the algorithms work. Can this input be removed from the algorithms? |
I'm looking for two improvements in QNEAT3 plugin, to use it in Fire Brigade practice:
Iso-Area as PointCloud (from Layer) returns origin_point_id field. If we can get Iso-Areas as Polygons (from Layer) polygons cut by this parameter - result will be a real Service Area (area of responsibility).
Network entry cost from attribute table. In polish state/volunteer fire brigades realm there's level of readiness. It's represented by minutes from alarm to leaving fire station. In state fire brigade it's 1 minute, on volunteer it's 3 or 5 minutes depending on fire brigade class. Right now we cannot analyse whole county area with all units, only those with same readiness level.
I'm must say that QNEAT3 is easiest way to get isochrones in QGIS right now. I'm using pgRouting too (where I've implemented readiness attribute in query, and calculating service area from concave hull), but this is not optimal for fire brigade officers - generally not proficient in GIS.
The text was updated successfully, but these errors were encountered: