Skip to content

ValueError: min() arg is an empty sequence #630

Answered by yunjunz
svenborgstrom asked this question in Q&A
Discussion options

You must be logged in to vote

I never used the correlation workflow. Based on the code, it seems that the runObj.burstIgram_mergeBurst() is NOT defined anywhere.

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, saf…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@svenborgstrom
Comment options

Answer selected by svenborgstrom
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants