Hi,
I'm using arcpy and ArcGIS Pro 3.1.3
I have a Lines feature class with 'millions' of line features and I need to use arcpy.management.UnsplitLine() on it.
The trouble is, is that this outputs the unsplit lines to another (new) FeatureClass rather than replaces the unsplit lines.
How can I locate and copy from the original FeatureClass to this new FeatureClass, all the lines that were NOT 'unsplit'
I have a similar problem with dissolving polygons.
Thanks in advance,
Zoltan
Based on your description, you should be able to use Symmetrical Difference to remove the updated lines, then merge together this new feature class with the output from the unspilt operation.
Hi Shaun,
Thanks for the pointer - will try it out.
For the lines I am now using the resultant unsplit lines to select lines that "SHARE_A_LINE_SEGMENT_WITH" and then deleting that set.
I'll try the Symmetrical Difference for the dissolved polygon "left-behinds"
Not sure why ESRI chose to complicate what surely must be a 'standard' need.
Regards,
Zoltan