2022-11-03 15:36:28 +01:00
|
|
|
# survBot
|
|
|
|
|
2022-11-03 15:39:23 +01:00
|
|
|
version: 0.1
|
|
|
|
|
|
|
|
survBot is a small program used to track station quality channels of DSEBRA stations via PowBox output over SOH channels
|
|
|
|
by analysing contents of a Seiscomp3 datapath.
|
|
|
|
|
|
|
|
## Requirements
|
|
|
|
|
|
|
|
The following packages are required:
|
|
|
|
|
|
|
|
* Python 3
|
|
|
|
* obspy
|
2022-11-07 17:06:25 +01:00
|
|
|
* pyyaml
|
2022-11-03 15:39:23 +01:00
|
|
|
|
|
|
|
(the following are dependencies of the above):
|
|
|
|
|
|
|
|
* numpy
|
2022-11-07 17:06:25 +01:00
|
|
|
* matplotlib
|
2022-11-03 15:39:23 +01:00
|
|
|
|
|
|
|
to use the GUI:
|
|
|
|
|
|
|
|
* PySide2, PyQt4 or PyQt5
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Configurations of *datapath*, *networks*, *stations* etc. can be done in the **parameters.yaml** input file.
|
|
|
|
|
|
|
|
The main program is executed by entering
|
2022-11-07 17:06:25 +01:00
|
|
|
|
2022-11-03 15:39:23 +01:00
|
|
|
```shell script
|
|
|
|
python survBot.py
|
|
|
|
```
|
|
|
|
|
|
|
|
The GUI can be loaded via
|
2022-11-07 17:06:25 +01:00
|
|
|
|
2022-11-03 15:39:23 +01:00
|
|
|
```shell script
|
|
|
|
python survBotGui.py
|
|
|
|
```
|
|
|
|
|
|
|
|
## Staff
|
2022-11-07 17:06:25 +01:00
|
|
|
|
2022-11-03 15:39:23 +01:00
|
|
|
Original author: M.Paffrath (marcel.paffrath@rub.de)
|
|
|
|
|
2022-11-07 17:06:25 +01:00
|
|
|
November 2022
|