Hello,
Is there a way in FME to detect lines having the beginning or the end vertice like shown in following images.
Thank you
Hello,
Is there a way in FME to detect lines having the beginning or the end vertice like shown in following images.
Thank you
Seems like what you are looking for is vertices with a very sharp angle.
You can find these using the SpikeRemover transformer.
It will let you define the maximum angle in the sharp corner.
The Changed output port will get you all these lines.
You might want to store the original geometry (GeometryExtractor) and restore it after the SpikeRemover (using GeometryReplacer).
Hope this helps.
Seems like what you are looking for is vertices with a very sharp angle.
You can find these using the SpikeRemover transformer.
It will let you define the maximum angle in the sharp corner.
The Changed output port will get you all these lines.
You might want to store the original geometry (GeometryExtractor) and restore it after the SpikeRemover (using GeometryReplacer).
Hope this helps.
I gor all features on the rejected port
I gor all features on the rejected port
Thank you very much