Skip to main content

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?

 

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

LineOnLineOverlayer_Demo


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.


Reply