Skip to main content
Solved

Split road network with other road network (Attribute networks)

  • August 12, 2022
  • 2 replies
  • 23 views

Hi,

 

I have a (complete) road network containing all the "real" roads segments of the road network. I then have several "copies" of the road network but with different segments, these segments define attribute properties for the road segments. I want to split the "real" segments by multiple attribute segments.

e.g.: 

Road 1
 
--------------------------------------------
 
 5m                      10m 
 
---------|-----------------------------------
 
 70km/h                 50km/h        70km/h
 
--------------------|-------------|----------

Desired output:

5m           10m          10m          10m
 
--------|-----------|-------------|----------
 
70km        70km        50km/h       70km/h

 

 

Does anyone have a good solution for performing this in FME?

 

Best answer by geomancer

The LineOnLineOverlayer, with parameter 'Accumulation Mode' set to 'Merge Attributes'.

LineOnLineOverlayer_Demo

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

geomancer
Evangelist
Forum|alt.badge.img+60
  • Evangelist
  • Best Answer
  • August 12, 2022

The LineOnLineOverlayer, with parameter 'Accumulation Mode' set to 'Merge Attributes'.

LineOnLineOverlayer_Demo


  • Author
  • August 18, 2022

The LineOnLineOverlayer, with parameter 'Accumulation Mode' set to 'Merge Attributes'.

LineOnLineOverlayer_Demo

Thanks, LineOnLineOverlayer solved my issue perfectly. It also handled more than two tables as was required. The _overlaps attribute helped me keep track of which segments overlapped from > 2 tables.