Open okling opened 4 years ago
Hi Angel, I ran your command in issue #55 , and it seems that the focal mechanism is retrieved correctly:
import obspy
import pickle
import os
ev_pkl = pickle.load(open("./Alaska_M6.5/EVENTS-INFO/event_list_pickle", "rb"))
Output:
[OrderedDict([('number', 1),
('latitude', 51.4234),
('longitude', -178.0262),
('depth', 33.93),
('datetime', 2018-08-15T21:56:56.310000Z),
('magnitude', 6.5),
('magnitude_type', 'mww'),
('author', 'None'),
('event_id', '20180815_215656.a'),
('origin_id',
quakeml:earthquake.usgs.gov/archive/product/origin/us1000ga0z/us/1540657323040/product.xml),
('focal_mechanism',
[6.1296e+18,
-6.0987e+18,
-3.09e+16,
4.0674e+18,
3.3288e+18,
-2.0849e+18]),
('source_duration', False),
('flynn_region', 'NAN'),
('t1', 2018-08-15T21:56:56.310000Z),
('t2', 2018-08-15T23:56:56.310000Z)])]
I also get the same results using:
ev_pkl = pickle.load(open("./Alaska_M6.5/20180815_215656.a/info/event.pkl", "rb"))
OUTPUT:
OrderedDict([('number', 1),
('latitude', 51.4234),
('longitude', -178.0262),
('depth', 33.93),
('datetime', 2018-08-15T21:56:56.310000Z),
('magnitude', 6.5),
('magnitude_type', 'mww'),
('author', 'None'),
('event_id', '20180815_215656.a'),
('origin_id',
quakeml:earthquake.usgs.gov/archive/product/origin/us1000ga0z/us/1540657323040/product.xml),
('focal_mechanism',
[6.1296e+18,
-6.0987e+18,
-3.09e+16,
4.0674e+18,
3.3288e+18,
-2.0849e+18]),
('source_duration', False),
('flynn_region', 'NAN'),
('t1', 2018-08-15T21:56:56.310000Z),
('t2', 2018-08-15T23:56:56.310000Z)])
Hi Kasra, thank you for checking. But the event you show here is in 2018. Could you try my example command or an event before 2011? The info is still missing after updating obspyDMT.
Hi Kasra,
I encountered another issue when I was updating my dataset. I'm using the following example command:
However, when I read the event pickle file, some of the important information such as focal mechanism was missing:
Hence, the synthetics retrieved through Syngine using obspyDMT don't seem to be correct. Is this related to how obspyDMT read the NEIC product?
Thanks again for your help.
Cheers, Angel