Hi,
I'm having 2 lists: _listold (with 10 coordinates present (before)) & _listnew (with 4 coordinates (after).
I want to merge those 2 lists into 1 list but it should merge on the index in order except for the last index, last index of first list should be merged with last index of second list. Afterwards I want to explode the list, aggregate and pivot to get something like this:
beforeafter00112234567893
I've taken a look at the ListMerger and it merges the 2 lists but how I want, but I have no idea how to modify the python logic behind it (python is still Japanese to me :))
Anyone an idea how to get this part?