Alicia Hotovec-Ellis

Results 19 comments of Alicia Hotovec-Ellis

@rumachan — This is a problem I haven't run into before! The problem seems to be related to trying to find correlation values for the members of the family in...

Ah, gotcha! It's possible that something went wrong in the removal step. I haven't run into issues yet, but for now that seems like a possible culprit. For now, my...

So _none_ of the family plots (starting "fam*.png") rendered? I'm not surprised that the .html didn't render, since it gets rendered last. Let's try `python forcePlot.py -v -c savo.cfg -f...

For now, let's have you replace lines 787-792 of redpy/plotting.py with this: ``` C = np.eye(len(idf)) try: r1 = [np.where(idf==xx)[0][0] for xx in id1[ix]] r2 = [np.where(idf==xx)[0][0] for xx in...

Great! Also, I found a small issue in the code I sent you. I've edited it so that the "found issue" print message is more informative (variable `fam` should be...

This is part of the workaround. I put the try/catch around the definition of the variable this is attempting to plot. Since that variable was not filled, it plots it...

Thanks for pointing this out. It's been a while since I've done housekeeping on these functions, and they've undergone a lot of changes the last few years.

Can you provide me with some additional details on what you're using for your search directory and file pattern? In trigger.py the piece of code that finds the files does...

Can you try the first case (mseed files within the subfolders) with the `-t` flag on backfill.py? Adding this flag removes the try/except surrounding the data reading step and will...

Ok, seems that it's complaining that the first item in the list is a directory and it can't read it. In the .cfg file, let's try adding `filepattern='*.D.*'` as I...