Work flow with raw data #68
-
Hi, i tried to make the work flow with some mseed archives that i have in my pc, but in the examples i need to use the class fdsn and i trace data using FS_Client. **import os os.chdir(ipynb_path) root = os.path.join(ipynb_path, 'data') start = datetime(2021, 1, 1) sc = FS_Client(fs=['/home/alvaro/project/data/mseed', sc.get_waveforms(network=network, station=station, location='*', channel='HHZ', starttime=start, endtime=end)** and it backs in the next step i edit the correlate.py to this import os from time import time params = 'params.yaml' root = '/home/alvaro/project/data' c = Correlator(sc, options=params) and in the terminal run mpirun python correlate.py but it returns Traceback (most recent call last):
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, To use your own data, you will have to structure it in the same way as data downloaded from FDSN servers. |
Beta Was this translation helpful? Give feedback.
Hi,
The reason for this is that
Correlator
expects an object of typeStoreClient
to be fed in. You can check the documentation for details.To use your own data, you will have to structure it in the same way as data downloaded from FDSN servers.