├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── README.md ├── dashboard ├── delay_latency_board.json ├── delay_latency_geomap.json ├── delay_latency_map.json ├── delay_latency_table.json ├── seedlink_queue.json ├── sismogram.json └── trace.json ├── docker-compose.yml ├── img ├── france-delay.png ├── latency_trace.png ├── map.png └── trace.png ├── provisioning ├── dashboards │ └── dashboards.yaml └── datasources │ ├── eost.yaml │ └── raspberryshake.yaml ├── requirements.txt ├── rshake_provisioning ├── dashboards │ └── dashboards.yaml └── datasources │ └── raspberryshake.yaml ├── run.sh ├── setup.py └── sl2influxdb ├── __init__.py ├── delay.py ├── influx.py ├── seedlink.py ├── seedlink2influxdb.py ├── station.py ├── threads.py └── trace.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/README.md -------------------------------------------------------------------------------- /dashboard/delay_latency_board.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/dashboard/delay_latency_board.json -------------------------------------------------------------------------------- /dashboard/delay_latency_geomap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/dashboard/delay_latency_geomap.json -------------------------------------------------------------------------------- /dashboard/delay_latency_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/dashboard/delay_latency_map.json -------------------------------------------------------------------------------- /dashboard/delay_latency_table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/dashboard/delay_latency_table.json -------------------------------------------------------------------------------- /dashboard/seedlink_queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/dashboard/seedlink_queue.json -------------------------------------------------------------------------------- /dashboard/sismogram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/dashboard/sismogram.json -------------------------------------------------------------------------------- /dashboard/trace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/dashboard/trace.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /img/france-delay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/img/france-delay.png -------------------------------------------------------------------------------- /img/latency_trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/img/latency_trace.png -------------------------------------------------------------------------------- /img/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/img/map.png -------------------------------------------------------------------------------- /img/trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/img/trace.png -------------------------------------------------------------------------------- /provisioning/dashboards/dashboards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/provisioning/dashboards/dashboards.yaml -------------------------------------------------------------------------------- /provisioning/datasources/eost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/provisioning/datasources/eost.yaml -------------------------------------------------------------------------------- /provisioning/datasources/raspberryshake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/provisioning/datasources/raspberryshake.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | influxdb==5.3.1 2 | obspy==1.2.2 3 | python-geohash==0.8.5 4 | -------------------------------------------------------------------------------- /rshake_provisioning/dashboards/dashboards.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/rshake_provisioning/dashboards/dashboards.yaml -------------------------------------------------------------------------------- /rshake_provisioning/datasources/raspberryshake.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/rshake_provisioning/datasources/raspberryshake.yaml -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/run.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/setup.py -------------------------------------------------------------------------------- /sl2influxdb/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sl2influxdb/delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/sl2influxdb/delay.py -------------------------------------------------------------------------------- /sl2influxdb/influx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/sl2influxdb/influx.py -------------------------------------------------------------------------------- /sl2influxdb/seedlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/sl2influxdb/seedlink.py -------------------------------------------------------------------------------- /sl2influxdb/seedlink2influxdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/sl2influxdb/seedlink2influxdb.py -------------------------------------------------------------------------------- /sl2influxdb/station.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/sl2influxdb/station.py -------------------------------------------------------------------------------- /sl2influxdb/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/sl2influxdb/threads.py -------------------------------------------------------------------------------- /sl2influxdb/trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcopovitch/sl2influxdb/HEAD/sl2influxdb/trace.py --------------------------------------------------------------------------------