i have two shapes, polygon and lines. How to find polygons that is not completely covered with lines? Tnx
i have two shapes, polygon and lines. How to find polygons that is not completely covered with lines? Tnx
If you need to find polygons which never overlap any line, apply the LineOnAreaOverlayer, and look at overlap count attribute (named "_overlaps" by default) of the output Areas.
Takashi
Send the lines to the LineJoiner --> GeometryCoercer (Geometry Type: fme_polygon).
If the lines forms a polygon, output will be a polygon. If not, output is still a line.
Then, select output lines (GeometryFilter), and compare them with the polygons to select required polygons (SpatialFilter etc.).
If topology is the same you can use "Equal".
If it is not, "INTERSECT". Calclate cardinality and test for relationships{}.card.line>0
Tis will eliminate the bare line.