- Notifications
You must be signed in to change notification settings - Fork0
Utility extension module for SeisComP to dump MiniSEED data
License
damb/scmseed
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
scmseed
is a simple utility module forSeisComP.It connects to anyRecordStreamand writesMiniSEED records tostdout
.
Asscmseed
is a standard SeisComP extension module a list of availablecommandline options can be obtained with
$ scmseed -h
For a general more in-depth introduction on how to use SeisComP modulesincluding their particular configuration, please refer to theSeisComPdocumentation.
scmseed
provides the--list
configuration parameter which allows specifyingstreams according to the SeisComPscart extension module'sstreamlist file. The format is
startTime;endTime;streamID
e.g.
2019-07-17T02:00:00;2019-07-17T02:10:00;GR.CLL..BHZ
Note that comment lines (i.e. with a leading#
character) are skipped.
- Dump records for all streams from a seedlink server
$ scmseed --record-url "slink://rtserve.iris.washington.edu" > ~/tmp/records.mseed
- Download data for a stream identified by
CH.GRIMS..HHZ
(including the timewindow as specified) via afdsnws dataselect webservice andresample the data on-the-fly to 20Hz:
$ echo "2020-01-01T00:00:00;2020-01-02T00:00:00;CH.GRIMS..HHZ" | \ scmseed \ --record-url "resample://fdsnws?rate=20/eida-federator.ethz.ch/fdsnws/dataselect/1/query" \ --list - \ > ~/tmp/records.mseed
For further details on how to configure a RecordStream, please refer to theSeisComPdocumentation.
Get a copy ofSeisComP/seiscomp:
$ git clone https://github.com/SeisComP/seiscomp.git&&cd seiscomp/src/extras/
Next, clonescmseed
:
$ git clone https://github.com/damb/scmseed.git
For compiling SeisComP (includingscmseed
), please refer tohttps://github.com/SeisComP/seiscomp#build.
Please report bugs, issues, feature requests, etc onGitHub.
Contributions are very welcome. Made with 💕.
Licensed under the theAGPLv3.For more information see theLICENSE file.