I have a set of line features and I want to add an attribute from a polygon feature with the clipper transformer to the lines within the polygon.
It is possible, that lines are within multiple polygons. For example:
lines are within a small polygon and this polygon lies within a larger polygon.
So which polygon is used by the clipper? In my case it should be the smaller one.
I'm thinking about sorting the polygons by ascending area-size, so that the smaller on is first input to the clipper.
Or does the clipper automatically use the smaller polygon?