Hi All, i've a dataset of points along a road network. What i'd like to do is either :
- Get the specific travel direction for each point using the angle from the previous point(NW, S, etc)
- or Get an overall direction for all points by merging the points of the same road(road_name) and getting the direction of the subsequent line
Each points id is incremented so i can tell the order, i'm just not sure how to go about it.
For Option 2 i have tried a LineBuilder -> HorizontalAngleCalculator with some success but i'm seeing inconsistencies with lines that should be the same. Still the same when I tried using a sorter first to make sure the start and end points were arriving in order sorting by ID.