Skip to main content
Solved

Combing routes from the ShortestPathFinder?

  • May 29, 2019
  • 2 replies
  • 20 views

I have 70,000 routes which I need to combine into one layer/ network. So where the lines overlap I want to simplify that to one line. The intersector does this, but its been running since friday (6 days) and still hasn't merged them yet.

Can anyone suggest a way to tile this process maybe, or any other way to speed up the processing?

Best answer by ebygomm

It may be too late now, but in the shortest path finder, i would build a list for each route that contains a unique id identifying the path segment. Once you have all your routes, you can then explode and deduplicate the list and build geometries from the original network using the unique id

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.

2 replies

ebygomm
Influencer
Forum|alt.badge.img+44
  • Influencer
  • 3427 replies
  • Best Answer
  • May 29, 2019

It may be too late now, but in the shortest path finder, i would build a list for each route that contains a unique id identifying the path segment. Once you have all your routes, you can then explode and deduplicate the list and build geometries from the original network using the unique id


  • Author
  • 8 replies
  • May 29, 2019

It may be too late now, but in the shortest path finder, i would build a list for each route that contains a unique id identifying the path segment. Once you have all your routes, you can then explode and deduplicate the list and build geometries from the original network using the unique id

Thanks this works