Question

Locating points along linear features using LRS and MP?

  • 25 October 2022
  • 1 reply
  • 14 views

I'm hoping this is fairly straightforward, I've searched a number of examples but I cannot quite find what I am looking for yet.

 

2 datasets:

1dataset is a table with LRS and Milepoint (no geom)

1dataset is a highway network with LRS and Beginning_Milepoint and Ending_Milepoint (polyline)

imageObjective

Is to place points along the linear feature based on LRS and MP from the table (the table contains assets located on the highway network).

 

This is often referred to as Make Route Events Layer in other software. Are there any recommended workflows to consider?

 

Thank you in advance!


1 reply

Userlevel 2
Badge +17

Hi @kylemodot​,

The following FME webinar covers this topic:

https://www.safe.com/webinars/linear-referencing-lrs-how-fme-measures-up/

The process is to merge the line geometry on each MP with a FeatureMerger, then snip it to a point using the Snipper transformer. The snip percentage can be calculated from (MP - BEG_MP_NO)/(END_MP_NO - BEG_MP_NO).

 

Reply