I have a street network and a point dataset (of schools).
How do I calculate those streets that represent a 3.5km driven distance from each school?
I can calculate one school at a time, if that is necessary
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
You can try the NetworkCostCalculator, in order to speed things up you may want to only apply that to objects within a 3.5 km buffer of any given school.
For MeasureExtractor I chose Type "Whole Line" which gives me a measure for the whole line, but I suspect I may be better off with Type "Individual Vertex" which I think will give me the driven distance for each vertex of each line.
I was really hoping for a transformer where I specify a driven distance and the output is the road network inside that driven distance
For MeasureExtractor I chose Type "Whole Line" which gives me a measure for the whole line, but I suspect I may be better off with Type "Individual Vertex" which I think will give me the driven distance for each vertex of each line.
I was really hoping for a transformer where I specify a driven distance and the output is the road network inside that driven distance
Yes, individual vertex would give you a bit more detail. I did something similar a few years ago for drivetime polygons (pretty much the same process), but found it a very "expensive" process. A 5-minute drivetime polygon in an urban area took about 10-15 minutes to calculate.
AttributeFilter to only keep the contour intervals I want (keep 3.5km, discard 7km)
LineJoiner to join the contour lines end-to-end into one line
GeometryCoercer to convert the line into a polygon
Which is great!
Except that, within the polygon is a spot that should be a donut hole. But there is no hole. I have a second line outlining the hole and that is its own polygon.
How do I generate a polygon that has a proper donut hole?