[seiscomp, scanloc] Install, add .gitignore

This commit is contained in:
2025-10-09 15:07:02 +02:00
commit 20f5301bb1
2848 changed files with 1315858 additions and 0 deletions

View File

@ -0,0 +1,7 @@
* template: $template
plugin $seedlink.source.id cmd = "$seedlink.plugin_dir/wave24_plugin -p $sources.wave24.comport -s $sources.wave24.baudrate -N $seedlink.station.network -S $seedlink.station.code -1 HHZ -2 HHN -3 HHE -f 100"
timeout = 600
start_retry = 60
shutdown_wait = 10
proc = "$sources.wave24.proc"

View File

@ -0,0 +1,26 @@
import os
'''
Plugin handler for the Wave24 plugin.
'''
class SeedlinkPluginHandler:
# Create defaults
def __init__(self): pass
def push(self, seedlink):
# Check and set defaults
try: seedlink.param('sources.wave24.comport')
except: seedlink.setParam('sources.wave24.comport', '/dev/data')
try: seedlink.param('sources.wave24.baudrate')
except: seedlink.setParam('sources.wave24.baudrate', 57600)
try: seedlink.param('sources.wave24.proc')
except: seedlink.setParam('sources.wave24.proc', 'wave24bb')
return seedlink.param('sources.wave24.comport')
# Flush does nothing
def flush(self, seedlink):
pass

View File

@ -0,0 +1,14 @@
<proc name="wave24bb">
<tree>
<input name="HHZ" channel="Z" location="" rate="100"/>
<input name="HHN" channel="N" location="" rate="100"/>
<input name="HHE" channel="E" location="" rate="100"/>
<node stream="HH"/>
</tree>
<tree>
<input name="BHZ" channel="Z" location="" rate="20"/>
<input name="BHN" channel="N" location="" rate="20"/>
<input name="BHE" channel="E" location="" rate="20"/>
<node stream="BH"/>
</tree>
</proc>