I have a table (no spatial data) of cadastral data indicating monuments, where several plots have been combined into one single row. I want to disentangle them to join them with the base cadastral set. I would rather not do this manually. I have been trying to figure out a way to make duplicate rows with arcpy based on the number of "," in one field. This is how far I got:
with arcpy.da.UpdateCursor('input_fc','plots') as uCur:
for row in uCur:
list = []
if ',' in row[0]:
number = row[0].count(',')
r = range(1,number,1)
for i in r:
and that is where I got stuck trying to figure out how to tell it to duplicate the row as many times as there is a comma. Does anything like that exist?