Skip to main content

Hi FME'ers,

I have two network datasets, one for all streets and one for footpaths only. There are instances where the footpath and the streets follow a similar path. This is never exact and they often weave around each other, intersecting each other at multiple points. I need to find a way of identifying sections where the street network and footpaths are similar. The goals is to reconcile their geometries but the decison over which geometry take precedent is not mine to make.

I have attached an example. The green is the street network and the turquoise is the footpath.

Thanks,

David

I would try buffering your road lines to create areas, then using these areas to clip the paths. Deaggregate the output and then keep only lines that are a significant length. What you should be left with are path segments that are running along/alongside the roads.

I wouldn't expect a perfect outcome from the above, looking at the sample data, but should be a start. Will probably require some trial and error with how much to buffer by.


Hi @djmcdermott,

The FME Hub transformer FuzzyParallelLineFinder should be able to find the matching sections of lines for you.


@djmcdermott

 

Chop the lines of the datasets by 2. Extract ortientation.

Neighborfinder or Buffer at relevant tolerance.

 

Compare orientation. Keep those within some tolerance.


Hi @djmcdermott,

The FME Hub transformer FuzzyParallelLineFinder should be able to find the matching sections of lines for you.

This works pretty well. There are a few false positives and not all the lines get line_id's but it works.


Reply