I am attempting to insert a feature into feature class based on feature in another feature class (both have identical structure) like this:
input = arcpy.da.SearchCursor(fc, "*", where_clause=(expression))
output = arcpy.da.InsertCursor(tc,['risk','SHAPE@'])
for row in cursor:
risk_factor = row[5]
if risk_factor == "423123fasq":
updateRows.insertRow([["high risk",row[1]])
... but I think I am not handling geometry correctly in insertRow as I get error "TypeError: cannot alter multipart geometry type". They are polyline features. Any ideas how to handle geometry correctly in this case?
Thanks!