Hi,
I'd like to create polygons from my line feature class. I used the "Feature to polygon" tool, but the output is creating split polygons when lines overlap, see image example:
Here there should be 2 features= 2 rectangles. However the tool has created 5 polygons. Is there a way to correct the output or a way to create the correct output from the line feature class with a different process?
Thanks
In newer versions of the software, Dissolve Boundaries, but in 10.3, then
Dissolve (Data Management)—ArcGIS Pro | Documentation
you will have to assign them a common attribute first, or
Just get into an edit session and merge them
In newer versions of the software, Dissolve Boundaries
@DanPatterson can you provide a link, I don't see this option in current ArcMap or Pro. (And, happy new year!)
My advice would be to create the polygons one by one with a ModelBuilder iterator (or python) and then use the Append tool to combine single-polygon feature classes. This would be a pretty slow, so this workaround would only be appropriate if you have hundreds, not thousands of features to create. Another workaround (more advanced) would be to use arcpy geometry methods in Python to to read the lines, compose a polygon from the vertices, and write the geometries.
Dissolve Boundaries (Standard Feature Analysis)—ArcGIS Pro | Documentation doesn't need an optional field for adjacent polygons. (Happy new year to you too!)