It appears I now need to add all the _match_id(s) with their correlating unique _line_id by length.. Any tips on how to do this?
Thanks in advance,
Fred
It appears I now need to add all the _match_id(s) with their correlating unique _line_id by length.. Any tips on how to do this?
Thanks in advance,
Fred
Hi @fredtaylor ,
One way might be to use an AttributeCreator to multiply the length of the line by the match_overlap to get a match length, then use an Aggregator to group by the match_id and sum the match lengths.
Hi @fredtaylor ,
One way might be to use an AttributeCreator to multiply the length of the line by the match_overlap to get a match length, then use an Aggregator to group by the match_id and sum the match lengths.
Thanks Dave! That helped a lot. Cheers