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?
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?