Hi all,
I want to figure out the best way of summarising data by date.
I have a workspace that creates routes for journeys using the ShortestPathFinder, and then explodes the routes into their constituent segments, with the attributes below plus Road Name, SegmentID:
What I need to do is sum the total number of vehicles per day on each segment.
I have a solution that works but is slow and I need to optimise it. Currently I merge a date list to each route, then explode the list so there is a sepreate feature per day per route - and then test to see if it is within the date range. Finally I sum the number of vehicles using an aggregator (most efficient?) per road segment, per day.
The problem is the journeys occur over a number of years, and over a large area so this results in many many features and is not quick.
I would be grateful for any suggestions!
Thanks,
Owen