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)
16 lines
678 B
Python
Executable File
16 lines
678 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import argparse
|
|
import numpy
|
|
from pylot.core.pick.utils import getnoisewin
|
|
|
|
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 noise window is extracted')
|
|
parser.add_argument('--tnoise', type=float, help='length of time window [s] for noise part extraction')
|
|
parser.add_argument('--tgap', type=float, help='safety gap between signal (t1=onset) and noise')
|
|
args = parser.parse_args()
|
|
getnoisewin(args.t, args.t1, args.tnoise, args.tgap)
|