-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DATA/FETCH/TIME command is not accepted #25
Comments
Is that already with verbose flag |
command: output: ERROR:root:Empty stream for plotting |
Please try to fetch a specific short time piece using above basic seedlink client. I doubt this is seedlink-plotter specific.. |
Hm, yes I believe it has to do with SeedLink itself. However, easyseedlink does bring data chunks. |
Hmm.. strange. I thought maybe the seedlink server was configured to not allow same commands. But this might not be the case if easyseedlink client works.. but I don't know much about it's implementation.. maybe @bmorg has something to say about this.. or you can check what easyseedlink is doing differently.. Again, does the basic seedlink client to fetch a discrete time window mentioned above work? |
#!/usr/bin/env python
from obspy import UTCDateTime
import obspy.clients.seedlink.basic_client as sl
host='my_host'
net='my_net'
sta='my_sta'
cha='my_cha'
client = sl.Client(host, timeout=60, debug=True)
t = UTCDateTime() - 10 #sec
st = client.get_waveforms(net,sta, "",cha, t, t + 3)
st = st.sort(reverse=True)
print(st) Doesn't work either. |
Hi,
The stream I try, doesn't get plotted and in verbose mode, I get errors like above:
...response: DATA/FETCH/TIME command is not accepted
...negotiation with remote SeedLink failed: u'no stations accepted'
...network socket closed
...primary loop pass 0, state 0
The text was updated successfully, but these errors were encountered: