release notes: ============== Features - consistent manual phase picking through predefined SNR dependant zoom level - uniform uncertainty estimation from waveform's properties for automatic and manual picks - pdf representation and comparison of picks taking the uncertainty intrinsically into account - Richter and moment magnitude estimation - location determination with external installation of [NonLinLoc](http://alomax.free.fr/nlloc/index.html) Known issues - Magnitude estimation from manual PyLoT takes some time (instrument correction)
15 lines
572 B
Python
Executable File
15 lines
572 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import argparse
|
|
import numpy
|
|
from pylot.core.pick.utils import getsignalwin
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--t', type=numpy.array, help='numpy array of time stamps')
|
|
parser.add_argument('--t1', type=float, help='time from which relativ to it signal window is extracted')
|
|
parser.add_argument('--tsignal', type=float, help='length of time window [s] for signal part extraction')
|
|
args = parser.parse_args()
|
|
getsignalwin(args.t, args.t1, args.tsignal)
|