This code is meant to apply an update cursor to a field called "New_Sq_Mile" when I am populating the field with the area of the polygons. Unfortunately the units are in meters and I need to do a calculation to change those values to miles before they are updated into the table. Here is what I have so far.
cursor = arcpy.UpdateCursor(FinalErase, ["SHAPE@AREA", "New_Sq_Mile"]) for row in cursor: row[1] = row[0] update.row del row del cursor Is there a way I can do a calculation in the for loop such as
row[1] = row[0]/1606.344