Skip to main content

I want to group polylines together depending on x, y and z. Neighborhood Aggregator only seems to take into account XY. The 2D perspective snip shows the lines in 2D. Neighborhood groups polylines together regardless in they are far apart in 3D (as the second snip shows).

Hi @kyle_d_wade,

I don't think that there is an out of the box transformer that could handle your task, but you can use the NeighborAggregator with help of the Group By parameter.

Fetch Z coordinate of first and/or last vertex of your lines, classify them to distinguish between different height levels and use this classification attribute as Group By. Doing so should be able to prevent merging lines on different height levels.


Reply