Hello everyone,
I have a script tool (A map-matching tool) in Arcmap prepared by a peer. I want to replace it with native python code since it does not work with the huge data set that I have (more than 6000 sets of trip trajectories), and I believe it's because of the low capacity of Arcmap. I would like to know what would be the native python equivalent for these lines:
file = arcpy.GetParameterAsText(0)
for row in arcpy.da.SearchCursor(infc, ["OID@", "SHAPE@"])
with arcpy.da.InsertCursor(fc, ['SHAPE@']) as cursor
Thank you very much!