-
Notifications
You must be signed in to change notification settings - Fork 14
Description
@aolivarc @dibenlloch @rcabdia @vackar
Greetings, I have encountered serious challenges run Earthquake Analysis module. First Run Phase Picking wasn't working, It return this error on GUI "AttributeError: 'Autopick' object has no attribute 'project" and terminal error "File "/home/munat/ISP/isp/Gui/Frames/autopick_frame.py", line 215, in run_phasenet
info = MseedUtil.get_project_basic_info(self.project)". I check line 215, and observe there is mismatch in attribute names. The Autopick class stores the project in self.sp (set during init) and the run_phasenet method tries to access self.project, which doesn’t exist because the attribute name is self.sp.
I changed self.project to self.sp which thereafter made the Run Phase Picking work successfully. Disturbingly, this actually took me a whole week as I am not a developer. I hope you will look into it and give your comment if the modification is appropriate.
After that, I run Polarities picking, Run Coincidence Trigger and Event Associator. All work successfully and I'm able to locate the event and also plot location with location info. Thereafter, comes ANOTHER PROBLEM WITH Focmec, when I click Run Foc Mec button, it says Completed Successfully but data wasn't display for me to select in order to Plot Foc Mec. No error message is displayed on the terminal. Also when I click action open picks, I get Error " Couldn't open pick file: [Errno 2] No such file or directory: 'xdg-open'
By the way you've make enormous contribution to my growing in seismology. Thanks, I look forward from hearing from you

