Everyone! I have an issue with the data collected from the field, where every single row has multiple sets of data in different columns (seen Input). I tried to split each set of data into a row (seen Expected Output).
Input:
Row1: ID A1 B1 C1 D1 A2 B2 C2 D2 A3 B3 C3 D3 A4 B4 C4 D4 Name1 Name2 Name3 Name4 Date
Expected Output:
Row1: ID A1 B1 C1 D1 Name1 Date
Row2: ID A2 B2 C2 D2 Name2 Date
Row3: ID A3 B3 C3 D3 Name3 Date
Row4: ID A4 B4 C4 D4 Name4 Date
I found there is a similar post, but it is using VBA Scripting. I am a GIS guy and I have some experience in the ArcPy site package of python. I have some trouble constructing a logical workflow using ArcPy. I was wondering does anyone has experienced a similar situation and know if this could be done using Python and ArcPy or any other site-packages. If so, could you please provide me with some hints on what site package and tools that I should look into?