The two lines below share the same end nodes and I want to give them a common group id for later processing. This is to be the step after a TopologyBuilder.
I thought this would be pretty simple, but have run aground. So how do I achieve this?
The geometris are to be left unchanged. I just want them to have a common “id” if they intersect at both ends.
The conditions for the ‘join’ are:
_from_node = _from_node AND _to_node = _to_node
OR
_from_node = _to_node AND _to_node = _from_node
Because sometimes the lines orient in different directions.
