2015-04-22 12:46:24 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
import argparse
|
2015-05-20 09:38:25 +02:00
|
|
|
import glob
|
2015-04-22 12:46:24 +02:00
|
|
|
|
|
|
|
from pylot.core.util import _getVersionString
|
|
|
|
from pylot.core.read import Data, AutoPickParameter
|
2015-04-29 06:29:08 +02:00
|
|
|
from pylot.core.pick.CharFuns import HOScf, AICcf
|
|
|
|
from pylot.core.util.structure import DATASTRUCTURE
|
2015-04-22 12:46:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
__version__ = _getVersionString()
|
|
|
|
|
2015-04-29 06:29:08 +02:00
|
|
|
METHOD = {'HOS':HOScf, 'AIC':AICcf}
|
2015-04-22 12:46:24 +02:00
|
|
|
|
2015-05-20 09:43:32 +02:00
|
|
|
def autoPyLoT(inputfile):
|
2015-04-29 06:29:08 +02:00
|
|
|
'''
|
|
|
|
Determine phase onsets automatically utilizing the automatic picking
|
|
|
|
algorithm by Kueperkoch et al. 2011.
|
|
|
|
|
|
|
|
:param inputfile: path to the input file containing all parameter
|
|
|
|
information for automatic picking (for formatting details, see.
|
|
|
|
`~pylot.core.read.input.AutoPickParameter`
|
|
|
|
:type inputfile: str
|
|
|
|
:return:
|
|
|
|
|
|
|
|
.. rubric:: Example
|
|
|
|
|
|
|
|
'''
|
2015-05-20 09:38:25 +02:00
|
|
|
|
|
|
|
# reading parameter file
|
|
|
|
|
2015-04-22 12:46:24 +02:00
|
|
|
parameter = AutoPickParameter(inputfile)
|
2015-04-29 06:29:08 +02:00
|
|
|
|
2015-04-22 12:46:24 +02:00
|
|
|
data = Data()
|
|
|
|
|
2015-05-20 09:38:25 +02:00
|
|
|
# declaring parameter variables (only for convenience)
|
|
|
|
|
2015-05-04 05:31:10 +02:00
|
|
|
meth = parameter.getParam('algoP')
|
|
|
|
tsnr1 = parameter.getParam('tsnr1')
|
|
|
|
tsnr2 = parameter.getParam('tsnr2')
|
|
|
|
tnoise = parameter.getParam('pnoiselen')
|
|
|
|
tsignal = parameter.getParam('tlim')
|
|
|
|
order = parameter.getParam('hosorder')
|
|
|
|
thosmw = parameter.getParam('tlta')
|
2015-04-29 06:29:08 +02:00
|
|
|
|
2015-05-20 09:38:25 +02:00
|
|
|
# getting information on data structure
|
|
|
|
|
2015-04-29 06:29:08 +02:00
|
|
|
if parameter.hasParam('datastructure'):
|
|
|
|
datastructure = DATASTRUCTURE[parameter.getParam('datastructure')]()
|
2015-05-20 09:38:25 +02:00
|
|
|
dsfields = {'root':parameter.getParam('rootpath'),
|
|
|
|
'dpath':parameter.getParam('datapath'),
|
|
|
|
'dbase':parameter.getParam('database')}
|
2015-04-29 07:57:52 +02:00
|
|
|
|
2015-05-20 09:59:06 +02:00
|
|
|
exf = ['root', 'dpath', 'dbase']
|
|
|
|
|
|
|
|
if parameter.hasParam('eventID'):
|
|
|
|
dsfields['eventID'] = parameter.getParam('eventID')
|
|
|
|
exf.append('eventID')
|
2015-05-20 09:38:25 +02:00
|
|
|
datastructure.modifyFields(**dsfields)
|
2015-04-22 12:46:24 +02:00
|
|
|
|
2015-05-20 09:59:06 +02:00
|
|
|
datastructure.setExpandFields(exf)
|
2015-04-22 12:46:24 +02:00
|
|
|
|
2015-05-20 10:56:53 +02:00
|
|
|
# process each event in database
|
2015-05-20 09:38:25 +02:00
|
|
|
# process each event in database
|
|
|
|
datapath = datastructure.expandDataPath()
|
2015-05-20 09:59:06 +02:00
|
|
|
if not parameter.hasParam('eventID'):
|
2015-05-27 08:48:07 +02:00
|
|
|
for event in [events for events in
|
|
|
|
glob.glob(os.path.join(datapath, '*'))
|
|
|
|
if os.path.isdir(events)]:
|
2015-05-20 11:29:55 +02:00
|
|
|
data.setWFData(glob.glob(os.path.join(datapath, event, '*')))
|
2015-05-20 09:59:06 +02:00
|
|
|
print data
|
|
|
|
else:
|
2015-05-27 08:48:07 +02:00
|
|
|
data.setWFData(glob.glob(os.path.join(datapath,
|
|
|
|
parameter.getParam('eventID'),
|
|
|
|
'*')))
|
2015-05-20 10:56:53 +02:00
|
|
|
print data
|
2015-04-29 07:57:52 +02:00
|
|
|
|
|
|
|
|
2015-04-22 12:46:24 +02:00
|
|
|
if __name__ == "__main__":
|
|
|
|
# parse arguments
|
|
|
|
parser = argparse.ArgumentParser(
|
2015-05-20 10:56:53 +02:00
|
|
|
description='''This program ''')
|
2015-04-22 12:46:24 +02:00
|
|
|
|
|
|
|
parser.add_argument('-i', '-I', '--inputfile', type=str,
|
|
|
|
action='store',
|
|
|
|
help='''full path to the file containing the input
|
|
|
|
parameters for autoPyLoT''',
|
2015-05-04 05:31:10 +02:00
|
|
|
default=os.path.join(os.path.expanduser('~'), '.pylot',
|
|
|
|
'autoPyLoT.in')
|
2015-04-22 12:46:24 +02:00
|
|
|
)
|
|
|
|
parser.add_argument('-v', '-V', '--version', action='version',
|
|
|
|
version='autoPyLoT ' + __version__,
|
|
|
|
help='show version information and exit')
|
|
|
|
|
|
|
|
cla = parser.parse_args()
|
|
|
|
|
2015-05-20 10:01:19 +02:00
|
|
|
autoPyLoT(str(cla.inputfile))
|