Quantcast
Channel: Forums - Python
Viewing all articles
Browse latest Browse all 2485

how to make a list of features constructing the dissolved feature?

$
0
0
I need to simplify my road network using the dissolve function to remove nodes not occurring on the intersections. the following code is doing that.

arcpy.Dissolve_management(self.address_cor_layer2, self.address_dissolved_ref_layer2, "", [["NAME", "FIRST"]], "SINGLE_PART", "DISSOLVE_LINES")

what I need is to keep track of features creating the dissolved feature. for that purpose I want to make a list of FIDs as one field in the dissolved feature.

any idea how to do that?

Viewing all articles
Browse latest Browse all 2485

Trending Articles