How to use sceewenv standalone (from the docker package) #1
FMassin
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Pre-requisite
Set these up once:
Get your container running
Every time you need to update the image:
docker run -d --name sed-eew -p 9999:22 -v ~/docker-data:/home/sysop/docker-data ghcr.io/sed-eew/sed-eew-seiscomp-contributions
docker start sed-eew
Data processing
The following assumes that:
~/docker-data/
as a exchange volume between the container and your host,data.mseed
as the seismic data you want to process (include at least 60s of noise before the event onset),metadata.fdsnxml
as the related fdsnxml station metadata.Then:
cp metadata.fdsnxml data.mseed ~/docker-data/
The output envelopes can be found in your host at
~/docker-data/envelope.mseed
.Output
The location code (2 char string before 3 char string channel code) indicates output types:
E(A,V,D)
: envelope (acceleration, velocity, displacement) with (default) 1 s sample per secondP(A,V,D)
: pre-processed (acceleration, velocity, displacement) data with original sampling rateEnvelope and pre-processed data from vertical channel keep their original channel code unchanged. Channel codes with orientation
![image](https://user-images.githubusercontent.com/10435362/155946797-9149441b-1ab5-4db1-ae7b-4e53ee515fa9.png)
X
(last character) relate to the Euclidian combination of both horizontal channels.Configuration
Preprocessing include tapering. So amplitudes are not correct within the tapering window, which is 60s long by default (used at all SED testing sites), but it might be adjusted if required (e.g., triggered records). By default, there should be more than 60s of noise before the first arrival. The configuration GUI (scconfig) panel for sceewenv provides help for all parameters.
![image](https://user-images.githubusercontent.com/10435362/155947429-81d1f36a-3924-411c-993d-2e669835b72c.png)
Beta Was this translation helpful? Give feedback.
All reactions