I have a GDB file. There is a line feature class which have line+arc+line. When we select it selects as 1 feature (just like polyline in autocad). I want to divide as line,arc,line.
Any suggestions...
Thank you
Pratap
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.
I think a geometry consisting of lines and arcs must be an IFMEPath object. If my understanding is correct, it can be decomposed into individual segments with the PathSplitter, and then you can separate lines and arcs with the GeometryFilter.
The GeometryPartExtractor may also be used, instead of the PathSplitter.