Skip to main content
Solved

how could i remove the unwanted part after detecting the self intersection?

  • March 1, 2024
  • 2 replies
  • 114 views

gogopotter90
Contributor
Forum|alt.badge.img+14


hello ,

i have detected self intersection with geometry validator 

does it possible to convert the line that detected to straight line ?

 

I do not need the triangle at image (I have detected the issue location with geometry validator ,but how could I remove the part unwanted that occurs it ) .thanks in advance 

Fme 2021

Best answer by DanAtSafe

 @gogopotter90 The repaired feature that comes out of the GeometryValidator will be an aggregate of 3 lines.  You could pass that into an AreaBuilder - the Incomplete features will be the lines (not the triangle).  Join those together with a LineCombiner.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

DanAtSafe
Safer
Forum|alt.badge.img+21
  • Safer
  • Best Answer
  • March 1, 2024

 @gogopotter90 The repaired feature that comes out of the GeometryValidator will be an aggregate of 3 lines.  You could pass that into an AreaBuilder - the Incomplete features will be the lines (not the triangle).  Join those together with a LineCombiner.


takashi
Celebrity
  • March 2, 2024

Hi @gogopotter90 ,

You can also use a ClosedCurveFilter instead of the AreaBuilder in the proceduer suggested by @DanAtSafe.