Hi,
For a given
2 lines (line_id1, line_id2), I should do LineOnLineOverlayor and then
lengthcalculator.
After that
I want to have the accumulation of length of the new segment of Line_id1.
Ex: length_accumulator
of the first new segment = the same
length_accumlator
of the second new segment = length_accumulator + length
And so on.
I’m using Counter
(to have line_id1), then LineOnLineOverlayer (generate List line_id1_List) and
finally AttributeCreator (length_accumulator).
What should
I do to calculate the length_accumlator (I can not use length between coordinates because I have curve and polylines)?
Thanks