Skip to main content
Question

Spatial relationship of lines between two networks

  • February 27, 2017
  • 1 reply
  • 54 views

Forum|alt.badge.img

I have 2 networks of roads in the same geographical area (these are the same roads) with totally different sources of geometric data. So the same roads do not have the same geometry and no common identifier.

 

How do I transfer attributes from one network to another?

 

Thank you

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.

1 reply

david_r
Celebrity
  • February 27, 2017

This is a task that can range between fairly complex to maddeningly difficult, all depending on your data. When I've worked similar problems before I've started out with something like this:

  • Buffer one of the datasets
  • Intersect the buffered dataset with the non-buffered dataset
  • Calculate line length for each segment intersecting the buffer
  • Assume that the longest line segment inside the buffer is the one you're looking for

You'll typically end up with quite a few false positives and negatives, but it'll give you a starting point which you can then further refine according to your situation. I'm sure there are other ways to attack this problem as well.