debugging in progress
This commit is contained in:
parent
36b0aea86c
commit
51aa949b56
3
inputs/PILOT_TimeErrors.in
Normal file
3
inputs/PILOT_TimeErrors.in
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
## default time errors for old PILOT phases
|
||||||
|
0.04 0.08 0.16 0.32 #timeerrorsP# %discrete time errors [s] corresponding to picking weights [0 1 2 3] for P
|
||||||
|
0.04 0.08 0.16 0.32 #timeerrorsS# %discrete time errors [s] corresponding to picking weights [0 1 2 3] for S
|
@ -9,7 +9,7 @@ from obspy.core.event import Event
|
|||||||
from obspy.io.xseed import Parser
|
from obspy.io.xseed import Parser
|
||||||
|
|
||||||
from pylot.core.io.phases import readPILOTEvent, picks_from_picksdict, \
|
from pylot.core.io.phases import readPILOTEvent, picks_from_picksdict, \
|
||||||
picks_from_pilot
|
picksdict_from_pilot
|
||||||
from pylot.core.util.errors import FormatError, OverwriteError
|
from pylot.core.util.errors import FormatError, OverwriteError
|
||||||
from pylot.core.util.utils import fnConstructor, getGlobalTimes
|
from pylot.core.util.utils import fnConstructor, getGlobalTimes
|
||||||
|
|
||||||
@ -50,7 +50,7 @@ class Data(object):
|
|||||||
except TypeError as e:
|
except TypeError as e:
|
||||||
if 'Unknown format for file' in e.message:
|
if 'Unknown format for file' in e.message:
|
||||||
if 'PHASES' in evtdata:
|
if 'PHASES' in evtdata:
|
||||||
picks = picks_from_pilot(evtdata)
|
picks = picksdict_from_pilot(evtdata)
|
||||||
evtdata = Event()
|
evtdata = Event()
|
||||||
evtdata.picks = picks_from_picksdict(picks)
|
evtdata.picks = picks_from_picksdict(picks)
|
||||||
elif 'LOC' in evtdata:
|
elif 'LOC' in evtdata:
|
||||||
|
@ -8,6 +8,7 @@ import scipy.io as sio
|
|||||||
import warnings
|
import warnings
|
||||||
from obspy.core import UTCDateTime
|
from obspy.core import UTCDateTime
|
||||||
|
|
||||||
|
from pylot.core.io.inputs import AutoPickParameter
|
||||||
from pylot.core.io.location import create_arrival, create_event, \
|
from pylot.core.io.location import create_arrival, create_event, \
|
||||||
create_magnitude, create_origin, create_pick
|
create_magnitude, create_origin, create_pick
|
||||||
from pylot.core.pick.utils import select_for_phase
|
from pylot.core.pick.utils import select_for_phase
|
||||||
@ -30,7 +31,6 @@ def readPILOTEvent(phasfn=None, locfn=None, authority_id='RUB', **kwargs):
|
|||||||
:param locfn: filename of the old PILOT Matlab LOC file
|
:param locfn: filename of the old PILOT Matlab LOC file
|
||||||
:return event: event object containing event and phase information
|
:return event: event object containing event and phase information
|
||||||
"""
|
"""
|
||||||
sdir = os.path.split(phasfn)[0]
|
|
||||||
if phasfn is not None and os.path.isfile(phasfn):
|
if phasfn is not None and os.path.isfile(phasfn):
|
||||||
phases = sio.loadmat(phasfn)
|
phases = sio.loadmat(phasfn)
|
||||||
phasctime = UTCDateTime(os.path.getmtime(phasfn))
|
phasctime = UTCDateTime(os.path.getmtime(phasfn))
|
||||||
@ -53,8 +53,7 @@ def readPILOTEvent(phasfn=None, locfn=None, authority_id='RUB', **kwargs):
|
|||||||
loccinfo = ope.CreationInfo(agency_id=authority_id,
|
loccinfo = ope.CreationInfo(agency_id=authority_id,
|
||||||
author=locauthor,
|
author=locauthor,
|
||||||
creation_time=locctime)
|
creation_time=locctime)
|
||||||
np = 0
|
|
||||||
#try:
|
|
||||||
eventNum = str(loc['ID'][0])
|
eventNum = str(loc['ID'][0])
|
||||||
|
|
||||||
# retrieve eventID for the actual database
|
# retrieve eventID for the actual database
|
||||||
@ -82,46 +81,9 @@ def readPILOTEvent(phasfn=None, locfn=None, authority_id='RUB', **kwargs):
|
|||||||
etype='earthquake', resID=eventNum,
|
etype='earthquake', resID=eventNum,
|
||||||
authority_id=authority_id)
|
authority_id=authority_id)
|
||||||
|
|
||||||
for n, pick in enumerate(phases['Ptime']):
|
picks = picksdict_from_pilot(phasfn)
|
||||||
if pick[0] > 0:
|
|
||||||
kwargs = {'year': int(pick[0]),
|
|
||||||
'month': int(pick[1]),
|
|
||||||
'day': int(pick[2]),
|
|
||||||
'hour': int(pick[3]),
|
|
||||||
'minute': int(pick[4]),
|
|
||||||
'second': int(str(pick[5]).split('.')[0]),
|
|
||||||
'microsecond': int(str(pick[5]).split('.')[1][0:6])}
|
|
||||||
spick = phases['Stime'][n]
|
|
||||||
if spick[0] > 0:
|
|
||||||
skwargs = {'year': int(spick[0]),
|
|
||||||
'month': int(spick[1]),
|
|
||||||
'day': int(spick[2]),
|
|
||||||
'hour': int(spick[3]),
|
|
||||||
'minute': int(spick[4]),
|
|
||||||
'second': int(str(spick[5]).split('.')[0]),
|
|
||||||
'microsecond': int(str(spick[5]).split('.')[1][0:6])}
|
|
||||||
spicktime = UTCDateTime(**skwargs)
|
|
||||||
else:
|
|
||||||
spicktime = None
|
|
||||||
ppicktime = UTCDateTime(**kwargs)
|
|
||||||
|
|
||||||
for picktime, phase in [(ppicktime, 'P'), (spicktime, 'S')]:
|
event.picks = picks_from_picksdict(picks, creation_info=pickcinfo)
|
||||||
if picktime is not None:
|
|
||||||
if phase == 'P':
|
|
||||||
wffn = os.path.join(sdir, '{0}*{1}*'.format(
|
|
||||||
stations[n].strip(), 'z'))
|
|
||||||
else:
|
|
||||||
wffn = os.path.join(sdir, '{0}*{1}*'.format(
|
|
||||||
stations[n].strip(), '[ne]'))
|
|
||||||
print(wffn)
|
|
||||||
pick = create_pick(eventDate, np, picktime, eventNum, pickcinfo,
|
|
||||||
phase, stations[n], wffn, authority_id)
|
|
||||||
event.picks.append(pick)
|
|
||||||
pickID = pick.get('id')
|
|
||||||
arrival = create_arrival(pickID, pickcinfo, phase)
|
|
||||||
if event.origins:
|
|
||||||
event.origins[0].arrivals.append(arrival)
|
|
||||||
event.picks.append(pick)
|
|
||||||
|
|
||||||
if event.origins:
|
if event.origins:
|
||||||
origin = event.origins[0]
|
origin = event.origins[0]
|
||||||
@ -131,15 +93,15 @@ def readPILOTEvent(phasfn=None, locfn=None, authority_id='RUB', **kwargs):
|
|||||||
event.magnitudes.append(magnitude)
|
event.magnitudes.append(magnitude)
|
||||||
return event
|
return event
|
||||||
|
|
||||||
#except AttributeError as e:
|
|
||||||
# raise AttributeError('{0} - Matlab LOC files {1} and {2} contains \
|
|
||||||
# insufficient data!'.format(e, phasfn, locfn))
|
|
||||||
|
|
||||||
|
def picksdict_from_pilot(fn):
|
||||||
def picks_from_pilot(fn):
|
from pylot.core.util.defaults import TIMEERROR_DEFAULTS
|
||||||
picks = dict()
|
picks = dict()
|
||||||
phases_pilot = sio.loadmat(fn)
|
phases_pilot = sio.loadmat(fn)
|
||||||
stations = stations_from_pilot(phases_pilot['stat'])
|
stations = stations_from_pilot(phases_pilot['stat'])
|
||||||
|
params = AutoPickParameter(TIMEERROR_DEFAULTS)
|
||||||
|
timeerrors = dict(P=params.get('timeerrorsP'),
|
||||||
|
S=params.get('timeerrorsS'))
|
||||||
for n, station in enumerate(stations):
|
for n, station in enumerate(stations):
|
||||||
phases = dict()
|
phases = dict()
|
||||||
for onset_name in 'PS':
|
for onset_name in 'PS':
|
||||||
@ -148,7 +110,14 @@ def picks_from_pilot(fn):
|
|||||||
if not pick[0]:
|
if not pick[0]:
|
||||||
continue
|
continue
|
||||||
pick = convert_pilot_times(pick)
|
pick = convert_pilot_times(pick)
|
||||||
phases[onset_name] = dict(mpp=pick)
|
uncertainty_label = '{0}weight'.format(onset_name.lower())
|
||||||
|
ierror = phases_pilot[uncertainty_label][0, n]
|
||||||
|
try:
|
||||||
|
spe = timeerrors[onset_name][ierror]
|
||||||
|
except IndexError as e:
|
||||||
|
print(e.message + '\ntake two times the largest default error value')
|
||||||
|
spe = timeerrors[onset_name][-1] * 2
|
||||||
|
phases[onset_name] = dict(mpp=pick, spe=spe)
|
||||||
picks[station] = phases
|
picks[station] = phases
|
||||||
|
|
||||||
return picks
|
return picks
|
||||||
@ -228,27 +197,31 @@ def picksdict_from_picks(evt):
|
|||||||
picks[station] = onsets.copy()
|
picks[station] = onsets.copy()
|
||||||
return picks
|
return picks
|
||||||
|
|
||||||
def picks_from_picksdict(picks):
|
def picks_from_picksdict(picks, creation_info=None):
|
||||||
picks_list = list()
|
picks_list = list()
|
||||||
for station, onsets in picks.items():
|
for station, onsets in picks.items():
|
||||||
#print('Reading picks on station %s' % station)
|
|
||||||
for label, phase in onsets.items():
|
for label, phase in onsets.items():
|
||||||
if not isinstance(phase, dict) or len(phase) < 3:
|
if not isinstance(phase, dict):
|
||||||
continue
|
continue
|
||||||
onset = phase['mpp']
|
onset = phase['mpp']
|
||||||
epp = phase['epp']
|
pick = ope.Pick()
|
||||||
lpp = phase['lpp']
|
if creation_info:
|
||||||
|
pick.creation_info = creation_info
|
||||||
|
pick.time = onset
|
||||||
error = phase['spe']
|
error = phase['spe']
|
||||||
|
pick.time_errors.uncertainty = error
|
||||||
|
try:
|
||||||
|
epp = phase['epp']
|
||||||
|
lpp = phase['lpp']
|
||||||
|
pick.time_errors.lower_uncertainty = onset - epp
|
||||||
|
pick.time_errors.upper_uncertainty = lpp - onset
|
||||||
|
except KeyError as e:
|
||||||
|
warnings.warn(e.message, RuntimeWarning)
|
||||||
try:
|
try:
|
||||||
picker = phase['picker']
|
picker = phase['picker']
|
||||||
except KeyError as e:
|
except KeyError as e:
|
||||||
warnings.warn(str(e), Warning)
|
warnings.warn(e.message, RuntimeWarning)
|
||||||
picker = 'Unknown'
|
picker = 'Unknown'
|
||||||
pick = ope.Pick()
|
|
||||||
pick.time = onset
|
|
||||||
pick.time_errors.lower_uncertainty = onset - epp
|
|
||||||
pick.time_errors.upper_uncertainty = lpp - onset
|
|
||||||
pick.time_errors.uncertainty = error
|
|
||||||
pick.phase_hint = label
|
pick.phase_hint = label
|
||||||
pick.method_id = ope.ResourceIdentifier(id=picker)
|
pick.method_id = ope.ResourceIdentifier(id=picker)
|
||||||
pick.waveform_id = ope.WaveformStreamID(station_code=station)
|
pick.waveform_id = ope.WaveformStreamID(station_code=station)
|
||||||
@ -300,7 +273,7 @@ def reassess_pilot_event(root_dir, db_dir, event_id, out_dir=None, fn_param=None
|
|||||||
return
|
return
|
||||||
if verbosity > 1:
|
if verbosity > 1:
|
||||||
print('Opening PILOT phases file: {fn}'.format(fn=phases_file[0]))
|
print('Opening PILOT phases file: {fn}'.format(fn=phases_file[0]))
|
||||||
picks_dict = picks_from_pilot(phases_file[0])
|
picks_dict = picksdict_from_pilot(phases_file[0])
|
||||||
if verbosity > 0:
|
if verbosity > 0:
|
||||||
print('Dictionary read from PHASES.mat:\n{0}'.format(picks_dict))
|
print('Dictionary read from PHASES.mat:\n{0}'.format(picks_dict))
|
||||||
datacheck = list()
|
datacheck = list()
|
||||||
|
@ -47,6 +47,10 @@ AUTOMATIC_DEFAULTS = os.path.join(os.path.expanduser('~'),
|
|||||||
'.pylot',
|
'.pylot',
|
||||||
'autoPyLoT.in')
|
'autoPyLoT.in')
|
||||||
|
|
||||||
|
TIMEERROR_DEFAULTS = os.path.join(os.path.expanduser('~'),
|
||||||
|
'.pylot',
|
||||||
|
'PILOT_TimeErrors.in')
|
||||||
|
|
||||||
OUTPUTFORMATS = {'.xml': 'QUAKEML',
|
OUTPUTFORMATS = {'.xml': 'QUAKEML',
|
||||||
'.cnv': 'CNV',
|
'.cnv': 'CNV',
|
||||||
'.obs': 'NLLOC_OBS'}
|
'.obs': 'NLLOC_OBS'}
|
||||||
|
Loading…
Reference in New Issue
Block a user