63 lines
2.4 KiB
Plaintext
63 lines
2.4 KiB
Plaintext
# The sensor location code of the preferred stream used e.g. by scautopick and
|
|
# scrttv.
|
|
detecLocid = 00
|
|
|
|
# The channel code of the preferred stream used by e.g. scautopick and scrttv.
|
|
# If no component code is given, the vertical component will be fetched from
|
|
# inventory considering the channel orientation (azimuth, dip). If that
|
|
# approach fails, 'Z' will be appended and used as fallback. Do not use regular
|
|
# expressions!
|
|
detecStream = HHZ
|
|
|
|
# Override the relative data acquisition time (relative to the triggering
|
|
# pick). This adds a margin to the actual processing and is useful to
|
|
# initialize the filter (Example: bandpass). The data is not used at all until
|
|
# signalBegin is reached. The data time window start is the minimum of
|
|
# noiseBegin and signalBegin.
|
|
picker.AIC.noiseBegin = -10
|
|
|
|
# Override the default time (relative to the trigger time) of the begin of the
|
|
# signal window used to pick.
|
|
picker.AIC.signalBegin = -2
|
|
|
|
# Override the default time (relative to the trigger time) of the begin of the
|
|
# signal window used to pick.
|
|
picker.AIC.signalEnd = 1
|
|
|
|
# Override the default filter which is "raw". The typical filter grammar can be
|
|
# used.
|
|
picker.AIC.filter = "RMHP(5)>>ITAPER(3)>>BW(3,3,-0.4)"
|
|
|
|
# Mininum SNR as returned from AIC for accepting picks.
|
|
picker.AIC.minSNR = 3
|
|
|
|
# Start time of the signal processing relative to the triggering P pick. This
|
|
# adds a margin to the actual processing and is useful to initialize the filter
|
|
# (e.g. STALTA). The data is not used at all for detection until signalBegin is
|
|
# reached.
|
|
spicker.AIC.noiseBegin = -10
|
|
|
|
# Start time of the S-phase detector relative to the triggering P pick.
|
|
# Delaying the detector ignores P-coda and early signals, e.g. due to P-S phase
|
|
# conversions at shallow depths.
|
|
spicker.AIC.signalBegin = 0.3
|
|
|
|
# End time of the S-phase detector relative to the triggering P pick.
|
|
spicker.AIC.signalEnd = 5
|
|
|
|
# Filter applied on the raw horizontal traces to compute the L2 trace. As a
|
|
# minimum remove offsets. S-AIC-V, filters the raw vertical trace computing the
|
|
# filtered vertical trace.
|
|
spicker.AIC.filter = "RMHP(1)>>ITAPER(2)>>BW(3,3,15)"
|
|
|
|
# The AIC time window stepping in seconds. For every step the window is
|
|
# expanded by step and the AIC is computed.
|
|
spicker.AIC.step = 0.3
|
|
|
|
# Mininum SNR as returned from AIC for accepting a detection.
|
|
spicker.AIC.minSNR = 5
|
|
|
|
# Minimum number of hits for a particular pick time when the running AIC is
|
|
# computed for accepting a detection.
|
|
spicker.AIC.minCnt = 3
|