ValueError: min() arg is an empty sequence #630
-
Good morning everybody, topSwath = min(refSwaths, key = lambda x: x.sensingStart) I saw in the forum as well to check if there was a similar post, it was there, but the post was closed without any fix. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I never used the I guess replacing these lines from: i+=1
runObj = run()
runObj.configure(inps, 'run_{:02d}_merge_burst_igram'.format(i))
runObj.burstIgram_mergeBurst(acquisitionDates, safe_dict, pairs)
runObj.finalize() to i+=1
runObj = run()
runObj.configure(inps, 'run_{:02d}_generate_burst_igram'.format(i))
runObj.generate_burstIgram(acquisitionDates, safe_dict, pairs)
runObj.finalize()
i += 1
runObj = run()
runObj.configure(inps, 'run_{:02d}_merge_burst_igram'.format(i))
runObj.igram_mergeBurst(acquisitionDates, safe_dict, pairs)
runObj.finalize() would fix the issue. Another way around this is to use the |
Beta Was this translation helpful? Give feedback.
I never used the
correlation
workflow. Based on the code, it seems that therunObj.burstIgram_mergeBurst()
is NOT defined anywhere.I guess replacing these lines from:
to