[seiscomp, scanloc] Install, add .gitignore
This commit is contained in:
87
etc/defaults/scautopick.cfg
Normal file
87
etc/defaults/scautopick.cfg
Normal file
@ -0,0 +1,87 @@
|
||||
# Send to the PICK group
|
||||
connection.primaryGroup = PICK
|
||||
|
||||
# Send amplitudes to this group
|
||||
connection.amplitudeGroup = AMPLITUDE
|
||||
|
||||
# Receive objects from CONFIG group
|
||||
connection.subscriptions = CONFIG
|
||||
|
||||
# The filter used to trigger
|
||||
filter = "RMHP(10)>>ITAPER(30)>>BW(4,0.7,2)>>STALTA(2,80)"
|
||||
|
||||
# The time correction applied to a detected pick
|
||||
timeCorrection = -0.8
|
||||
|
||||
# The record ringbuffer size in seconds
|
||||
ringBufferSize = 300
|
||||
|
||||
# The leadTime defines the time in seconds to
|
||||
# start picking on the streams before current
|
||||
# time
|
||||
leadTime = 60
|
||||
|
||||
# The initTime defines a timespan in seconds
|
||||
# for that the picker is blind after initialization
|
||||
# This time is needed to initialize the filter and
|
||||
# depends on it
|
||||
initTime = 60
|
||||
|
||||
# Interpolate gaps linearly? This is valid for gaps
|
||||
# short than thresholds.maxGapLength
|
||||
gapInterpolation = false
|
||||
|
||||
# For which value on a filtered stream is
|
||||
# a pick detected
|
||||
thresholds.triggerOn = 3
|
||||
|
||||
# The value the filtered stream must reach to
|
||||
# enable detection again
|
||||
thresholds.triggerOff = 1.5
|
||||
|
||||
# The maximum gap length to handle. Gaps larger
|
||||
# than this size reset the picker
|
||||
thresholds.maxGapLength = 4.5
|
||||
|
||||
# The timeWindow used to compute a maximum (snr)
|
||||
# amplitude on the filtered stream
|
||||
thresholds.amplMaxTimeWindow = 10
|
||||
|
||||
thresholds.deadTime = 30
|
||||
thresholds.minAmplOffset = 3
|
||||
|
||||
# The amplitudes to compute triggered by
|
||||
# a new P Pick continuously without having
|
||||
# an Origin
|
||||
amplitudes = MLv, mb, mB
|
||||
|
||||
# Configures the picker to use. By default only simple
|
||||
# STALTA detections are emitted as picks. To enable "repicking"
|
||||
# define a picker algorithm here.
|
||||
picker = ""
|
||||
|
||||
# Configures the secondary picker to be used.
|
||||
spicker = ""
|
||||
|
||||
# Configures the feature extraction type to be used
|
||||
fx = ""
|
||||
|
||||
# If enabled the all streams are used for picking that are received by the
|
||||
# picker. This option has only effect if a file is used as input which contains
|
||||
# more data than the picker requests or if amplitudes are enabled which are using
|
||||
# the horizontal components.
|
||||
useAllStreams = false
|
||||
|
||||
# If enabled the all secondary pickers that were triggered by a previous pick
|
||||
# will be terminated when a new detection or pick has been found. This aims to
|
||||
# avoid the case where an S phase is wrongly picked as P but would also be
|
||||
# picked as S by the secondary picker. But suppressing the S pick can lead to
|
||||
# undesired results. It might be better in some situations to have two picks
|
||||
# (P and S) instead only a wrong P.
|
||||
killPendingSPickers = true
|
||||
|
||||
# If enabled and a picker is configured then detections are sent as well.
|
||||
# To distinguish between detections and picks the evaluation mode of the pick
|
||||
# is set to manual. This is meant to be a debug option which can be used to
|
||||
# compare detections and picks by their evaluation mode.
|
||||
sendDetections = false
|
Reference in New Issue
Block a user