EIDA / userfeedback

This repository is meant to collect feedback from EIDA users by means of its Issue Tracker
11 stars 5 forks source link

Obspy - no data is downloaded #1

Closed SarahMelanieM closed 5 years ago

SarahMelanieM commented 5 years ago

Hello everyone,

I have problems downloading the data of AlpArray with Obspy. After creating the token for the data download of the AlpArray data (the token works fine, tested with fdsnws_fetch), I tried to download the data via Obspy using the example applied:


from obspy.clients.fdsn import RoutingClient
from obspy import UTCDateTime

rsClient = RoutingClient("eida-routing", credentials={'EIDA_TOKEN': '/home/smader/.eidatoken'})
st = rsClient.get_waveforms(network="Z3", channel="HHZ", starttime=UTCDateTime(2016, 3, 1), endtime=UTCDateTime(2016, 3, 1, 0, 2, 0))
print(st)

OUTPUT: 0 Trace(s) in Stream:

Using the same code for the network GR resulted in the following output:

41 Trace(s) in Stream:

GR.AHRW..HHZ | 2016-02-29T23:59:56.418393Z - 2016-03-01T00:02:03.178393Z | 100.0 Hz, 12677 samples
...
(39 other traces)
...
GR.ZARR..HHZ | 2016-02-29T23:59:58.260000Z - 2016-03-01T00:02:00.390000Z | 100.0 Hz, 12214 samples

So the script runs perfectly except for the Z3 network.

I'm using Obspy version 1.1.0 and Python 3.6, which is directly installed in my home directory.
Obspy was installed the following: downloading the file ObsPy-1.1.0-py36_0-Linux-x86_64.sh from github chmod 755 ObsPy-1.1.0-py36_0-Linux-x86_64.sh sh ./ObsPy-1.1.0-py36_0-Linux-x86_64.sh

I don't have the PATH pointing to Obspy in my .bashrc. I always load the PATH in the terminal when using Obspy: export PATH=~/obspy/bin:$PATH

The python script client.py which is called during the routing ( ~/obspy/lib/python3.6/site-packages/obspy/clients/fdsn/client.py) has a size of 80.9kB.

It would be great to find out why it's not working properly. Thanks a lot.

Greetings

Sarah

javiquinte commented 5 years ago

Hi Sarah. I'm copy/pasting the mail I sent you so that we keep record here of the checks we did.


Check below. I got all the data using your token. Let's check if there is a difference in the Obspy version we are running. Could you tell me which one is?

from obspy.clients.fdsn import RoutingClient from obspy import UTCDateTime rsClient = RoutingClient("eida-routing", credentials={'EIDA_TOKEN': '/Users/javier/Downloads/eidatoken_mader'}) st = rsClient.get_waveforms(network="Z3", channel="HHZ", starttime=UTCDateTime(2016, 3, 1), endtime=UTCDateTime(2016, 3, 1, 0, 2, 0)) print(st) 171 Trace(s) in Stream:

Z3.A300A..HHZ | 2016-02-29T23:59:55.899999Z - 2016-03-01T00:02:04.039999Z | 100.0 Hz, 12815 samples ... (169 other traces) ... Z3.A369A..HHZ | 2016-03-01T00:00:00.000000Z - 2016-03-01T00:02:01.420000Z | 100.0 Hz, 12143 samples

javiquinte commented 5 years ago

I'm sending you a 1-day token so that you can request data on my behalf. Just to see if we have the same results.

It should be noted that with your token you actually were able to download Alparray data with a different client (fdsnws_fetch).

Let me know how it works!

SarahMelanieM commented 5 years ago

Hello Javier,

couldn't test your token until now as I get always the error message FDSNException: Service temporarily unavailable

Maybe we try it on Tuesday after Easter again?

Greetings

Sarah

Complete error message: `--------------------------------------------------------------------------- FDSNException Traceback (most recent call last)

in () 3 4 rsClient = RoutingClient("eida-routing", credentials={'EIDA_TOKEN': '/home/smader/.eidatoken'}) #eidatokenJavier-1day'}) ----> 5 st = rsClient.get_waveforms(network="Z3", channel="HHZ", starttime=UTCDateTime(2016, 3, 1), endtime=UTCDateTime(2016, 3, 1, 0, 2, 0)) 6 print(st) 7 in get_waveforms(self, starttime, endtime, **kwargs) ~/obspy/lib/python3.6/site-packages/obspy/clients/fdsn/routing/routing_client.py in _assert_filename_not_in_kwargs(f, *args, **kwargs) 77 if "filename" in kwargs: 78 raise ValueError("The `filename` argument is not supported") ---> 79 return f(*args, **kwargs) 80 81 in get_waveforms(self, starttime, endtime, **kwargs) ~/obspy/lib/python3.6/site-packages/obspy/clients/fdsn/routing/routing_client.py in _assert_attach_response_not_in_kwargs(f, *args, **kwargs) 84 if "attach_response" in kwargs: 85 raise ValueError("The `attach_response` argument is not supported") ---> 86 return f(*args, **kwargs) 87 88 ~/obspy/lib/python3.6/site-packages/obspy/clients/fdsn/routing/routing_client.py in get_waveforms(self, starttime, endtime, **kwargs) 309 bulk.append("*") 310 bulk.extend([starttime, endtime]) --> 311 return self.get_waveforms_bulk([bulk], **kwargs) 312 313 def get_service_version(self): in get_waveforms_bulk(self, bulk, **kwargs) ~/obspy/lib/python3.6/site-packages/obspy/clients/fdsn/routing/routing_client.py in _assert_filename_not_in_kwargs(f, *args, **kwargs) 77 if "filename" in kwargs: 78 raise ValueError("The `filename` argument is not supported") ---> 79 return f(*args, **kwargs) 80 81 in get_waveforms_bulk(self, bulk, **kwargs) ~/obspy/lib/python3.6/site-packages/obspy/clients/fdsn/routing/routing_client.py in _assert_attach_response_not_in_kwargs(f, *args, **kwargs) 84 if "attach_response" in kwargs: 85 raise ValueError("The `attach_response` argument is not supported") ---> 86 return f(*args, **kwargs) 87 88 ~/obspy/lib/python3.6/site-packages/obspy/clients/fdsn/routing/eidaws_routing_client.py in get_waveforms_bulk(self, bulk, **kwargs) 102 # channel level and text to keep it fast. 103 inv = self.get_stations_bulk(_b, format="text", --> 104 level="channel", **kwargs) 105 for c in sorted(set(inv.get_contents()["channels"])): 106 new_bulk.append(c.split(".")) in get_stations_bulk(self, bulk, **kwargs) ~/obspy/lib/python3.6/site-packages/obspy/clients/fdsn/routing/routing_client.py in _assert_filename_not_in_kwargs(f, *args, **kwargs) 77 if "filename" in kwargs: 78 raise ValueError("The `filename` argument is not supported") ---> 79 return f(*args, **kwargs) 80 81 ~/obspy/lib/python3.6/site-packages/obspy/clients/fdsn/routing/eidaws_routing_client.py in get_stations_bulk(self, bulk, **kwargs) 170 arguments["alternative"] = "false" 171 bulk_str = get_bulk_string(bulk, arguments) --> 172 r = self._download(self._url + "/query", data=bulk_str) 173 split = self._split_routing_response( 174 r.content.decode() if hasattr(r.content, "decode") else r.content) ~/obspy/lib/python3.6/site-packages/obspy/clients/base.py in _download(self, url, params, filename, data) 243 # Only accept code 200. 244 if r.status_code != 200: --> 245 self._handle_requests_http_error(r) 246 247 # Return if nothing else happens. ~/obspy/lib/python3.6/site-packages/obspy/clients/fdsn/routing/routing_client.py in _handle_requests_http_error(self, r) 278 Please overwrite this method in a child class if necessary. 279 """ --> 280 raise_on_error(r.status_code, get_reason_from_response(r)) 281 282 @_assert_filename_not_in_kwargs ~/obspy/lib/python3.6/site-packages/obspy/clients/fdsn/client.py in raise_on_error(code, data) 1727 server_info) 1728 elif code == 503: -> 1729 raise FDSNException("Service temporarily unavailable", server_info) 1730 elif code is None: 1731 if "timeout" in str(data).lower(): FDSNException: Service temporarily unavailable`
flofux commented 5 years ago

I think there are some general issues these days with the EIDA FDSNWS routing service among several nodes. Sometimes the services are just down or some data is not available. Today it was particularly bad. Of course we cannot really test the token system when EIDA in general has troubles right now :-/

You can, however, get a little bit more insight into what's going on with request if you include the debug=True option when you initiate the RoutingClient (or "normal" Client):

client = RoutingClient('eida-routing', debug=True, credentials= ...)

Jollyfant commented 5 years ago

@flofux what service was particularly bad today? The routing service running at orfeus-eu.org? Or the FDSNWS services at the nodes?

javiquinte commented 5 years ago

I know that there were some errors in the last days because there was an upgrade of the software. However, since yesterday it seems to work without problems. I've tried again some minutes ago and it is working. Could you @SarahMelanieM and @flofux retry? Thanks!

`

from obspy.clients.fdsn import RoutingClient from obspy import UTCDateTime rsClient = RoutingClient("eida-routing", credentials={'EIDA_TOKEN': '/Users/javier/.eidatoken'}) st = rsClient.get_waveforms(network="Z3", channel="HHZ", starttime=UTCDateTime(2016, 3, 1), endtime=UTCDateTime(2016, 3, 1, 0, 2, 0)) print(st) 171 Trace(s) in Stream: Z3.A022A..HHZ | 2016-02-29T23:59:57.590000Z - 2016-03-01T00:02:01.540000Z | 100.0 Hz, 12396 samples ... `

flofux commented 5 years ago

This morning I still had troubles with data hosted at ODC (both routed and not routed, Z3 data behaving differently from open data). Around noon everything worked, just 30 min ago there were again troubles, now it works again ... looks like they are working on it :-P

Anyways, I somehow managed to do some tests and regarding the token system everything seems to work fine. Edit: I will of course dig in in more detail, but at a first try it was working. I will prepare a more detailed report at some point.

SarahMelanieM commented 5 years ago

I also tried to download data, it's possible for the GR network, already since yesterday, but I still don't receive data for the AlpArray network, the obspy Stream object is still empty.

flofux commented 5 years ago

@flofux what service was particularly bad today? The routing service running at orfeus-eu.org? Or the FDSNWS services at the nodes?

@Jollyfant my impression was that mainly ODC node was affected. Both routing and FDSNWS service ... but it was an on/off behaviour so I didn't really track it down in detail.

I also experienced that Z3 data was affected when other networks were still working.

Jollyfant commented 5 years ago

@Jollyfant my impression was that mainly ODC node was affected. Both routing and FDSNWS service ... but it was an on/off behaviour so I didn't really track it down in detail.

ODC FDSNWS services experienced 10 minutes of downtime between 13:26 and 13:36 but otherwise should be responsive (see top graph @ http://www.orfeus-eu.org/data/odc/statistics/). Let's see you if experience any more troubles in the coming days.

javiquinte commented 5 years ago

Could you please post the output with debug turned on? @SarahMelaniehM

SarahMelanieM commented 5 years ago

Hello @javiquinte

here is the complete output, when debug is set True:

Downloading http://www.orfeus-eu.org/eidaws/routing/1/query ...
Sending along the following payload:
----------------------------------------------------------------------
service=station
format=post
alternative=false
Z3 * * HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
----------------------------------------------------------------------
Installed new opener with handlers: [<obspy.clients.fdsn.client.CustomRedirectHandler object at 0x7f4968241ba8>]Installed new opener with handlers: [<obspy.clients.fdsn.client.CustomRedirectHandler object at 0x7f496826db70>]Installed new opener with handlers: [<obspy.clients.fdsn.client.CustomRedirectHandler object at 0x7f496826d5f8>]Installed new opener with handlers: [<obspy.clients.fdsn.client.CustomRedirectHandler object at 0x7f4968256f98>]

Installed new opener with handlers: [<obspy.clients.fdsn.client.CustomRedirectHandler object at 0x7f4968bf7588>]Base URL: http://ws.resif.frBase URL: http://eida.ethz.chBase URL: http://erde.geophysik.uni-muenchen.deBase URL: http://webservices.ingv.it

Base URL: http://www.orfeus-eu.orgRequest Headers: {'User-Agent': 'ObsPy/1.1.0 (Linux-4.4.159-73-default-x86_64-with-SuSE-42.3-x86_64, Python 3.6.2)'}Request Headers: {'User-Agent': 'ObsPy/1.1.0 (Linux-4.4.159-73-default-x86_64-with-SuSE-42.3-x86_64, Python 3.6.2)'}Request Headers: {'User-Agent': 'ObsPy/1.1.0 (Linux-4.4.159-73-default-x86_64-with-SuSE-42.3-x86_64, Python 3.6.2)'}Request Headers: {'User-Agent': 'ObsPy/1.1.0 (Linux-4.4.159-73-default-x86_64-with-SuSE-42.3-x86_64, Python 3.6.2)'}

Request Headers: {'User-Agent': 'ObsPy/1.1.0 (Linux-4.4.159-73-default-x86_64-with-SuSE-42.3-x86_64, Python 3.6.2)'}Loading discovered services from cache.Loading discovered services from cache.Loading discovered services from cache.Loading discovered services from cache.

Loading discovered services from cache.Downloading https://ws.resif.fr/fdsnws/dataselect/1/auth with requesting gzip compressionDownloading https://eida.ethz.ch/fdsnws/dataselect/1/auth with requesting gzip compressionDownloading https://erde.geophysik.uni-muenchen.de/fdsnws/dataselect/1/auth with requesting gzip compressionDownloading https://webservices.ingv.it/fdsnws/dataselect/1/auth with requesting gzip compression

Downloading https://www.orfeus-eu.org/fdsnws/dataselect/1/auth with requesting gzip compressionSending along the following payload:Sending along the following payload:Sending along the following payload:Sending along the following payload:

Sending along the following payload:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

----------------------------------------------------------------------BEGIN PGP MESSAGE
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

{"valid_until": "2019-05-15T13:12:52.367339Z", "cn": "Sarah Mader", "memberof": "/epos/alparray;/epos;/", "sn": "Mader", "issued": "2019-04-15T13:12:52.367348Z", "mail": "sarah.mader@kit.edu", "givenName": "Sarah", "expiration": "1m"}
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJctINUAAoJEEFpzp0AlwdXeKgIAI9tXMD3i3IcWMtyY43qvq7o
XgwBh35AQ7A8Gj6wNqjZlZZgLT0ZIOmezamfULNdd03wi52+LWv3PxWcd5nC9e6H
ct3QGIoKDGnmkyYUQZHfKQMB7/vSVrasipErIPjIU8zp59v7r/Blrb6bA86UARF1
ECT9GLsPBh3vpdXj+iAW/wxbC+rCeo4eoltw5CYtAy4utYmX3NTzzjGYKO0eEbTH
/EvhnMsRSqISzwWweXERwrs+Y8nany4+RI/c3hCOQbsqjem/2XuFk5z5s/sdpuNj
xPa/bmmhKoI4nGLYeXAmLlMEud1Dm7KWgU8X0ROMAyh/DPybGSoWNfiyIWUrVW4=
=4Qct
-----END PGP SIGNATURE-----
BEGIN PGP MESSAGE
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

{"valid_until": "2019-05-15T13:12:52.367339Z", "cn": "Sarah Mader", "memberof": "/epos/alparray;/epos;/", "sn": "Mader", "issued": "2019-04-15T13:12:52.367348Z", "mail": "sarah.mader@kit.edu", "givenName": "Sarah", "expiration": "1m"}
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJctINUAAoJEEFpzp0AlwdXeKgIAI9tXMD3i3IcWMtyY43qvq7o
XgwBh35AQ7A8Gj6wNqjZlZZgLT0ZIOmezamfULNdd03wi52+LWv3PxWcd5nC9e6H
ct3QGIoKDGnmkyYUQZHfKQMB7/vSVrasipErIPjIU8zp59v7r/Blrb6bA86UARF1
ECT9GLsPBh3vpdXj+iAW/wxbC+rCeo4eoltw5CYtAy4utYmX3NTzzjGYKO0eEbTH
/EvhnMsRSqISzwWweXERwrs+Y8nany4+RI/c3hCOQbsqjem/2XuFk5z5s/sdpuNj
xPa/bmmhKoI4nGLYeXAmLlMEud1Dm7KWgU8X0ROMAyh/DPybGSoWNfiyIWUrVW4=
=4Qct
-----END PGP SIGNATURE-----
BEGIN PGP MESSAGE
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

{"valid_until": "2019-05-15T13:12:52.367339Z", "cn": "Sarah Mader", "memberof": "/epos/alparray;/epos;/", "sn": "Mader", "issued": "2019-04-15T13:12:52.367348Z", "mail": "sarah.mader@kit.edu", "givenName": "Sarah", "expiration": "1m"}
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJctINUAAoJEEFpzp0AlwdXeKgIAI9tXMD3i3IcWMtyY43qvq7o
XgwBh35AQ7A8Gj6wNqjZlZZgLT0ZIOmezamfULNdd03wi52+LWv3PxWcd5nC9e6H
ct3QGIoKDGnmkyYUQZHfKQMB7/vSVrasipErIPjIU8zp59v7r/Blrb6bA86UARF1
ECT9GLsPBh3vpdXj+iAW/wxbC+rCeo4eoltw5CYtAy4utYmX3NTzzjGYKO0eEbTH
/EvhnMsRSqISzwWweXERwrs+Y8nany4+RI/c3hCOQbsqjem/2XuFk5z5s/sdpuNj
xPa/bmmhKoI4nGLYeXAmLlMEud1Dm7KWgU8X0ROMAyh/DPybGSoWNfiyIWUrVW4=
=4Qct
-----END PGP SIGNATURE-----
BEGIN PGP MESSAGE
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

{"valid_until": "2019-05-15T13:12:52.367339Z", "cn": "Sarah Mader", "memberof": "/epos/alparray;/epos;/", "sn": "Mader", "issued": "2019-04-15T13:12:52.367348Z", "mail": "sarah.mader@kit.edu", "givenName": "Sarah", "expiration": "1m"}
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJctINUAAoJEEFpzp0AlwdXeKgIAI9tXMD3i3IcWMtyY43qvq7o
XgwBh35AQ7A8Gj6wNqjZlZZgLT0ZIOmezamfULNdd03wi52+LWv3PxWcd5nC9e6H
ct3QGIoKDGnmkyYUQZHfKQMB7/vSVrasipErIPjIU8zp59v7r/Blrb6bA86UARF1
ECT9GLsPBh3vpdXj+iAW/wxbC+rCeo4eoltw5CYtAy4utYmX3NTzzjGYKO0eEbTH
/EvhnMsRSqISzwWweXERwrs+Y8nany4+RI/c3hCOQbsqjem/2XuFk5z5s/sdpuNj
xPa/bmmhKoI4nGLYeXAmLlMEud1Dm7KWgU8X0ROMAyh/DPybGSoWNfiyIWUrVW4=
=4Qct
-----END PGP SIGNATURE-----

BEGIN PGP MESSAGE
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

{"valid_until": "2019-05-15T13:12:52.367339Z", "cn": "Sarah Mader", "memberof": "/epos/alparray;/epos;/", "sn": "Mader", "issued": "2019-04-15T13:12:52.367348Z", "mail": "sarah.mader@kit.edu", "givenName": "Sarah", "expiration": "1m"}
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJctINUAAoJEEFpzp0AlwdXeKgIAI9tXMD3i3IcWMtyY43qvq7o
XgwBh35AQ7A8Gj6wNqjZlZZgLT0ZIOmezamfULNdd03wi52+LWv3PxWcd5nC9e6H
ct3QGIoKDGnmkyYUQZHfKQMB7/vSVrasipErIPjIU8zp59v7r/Blrb6bA86UARF1
ECT9GLsPBh3vpdXj+iAW/wxbC+rCeo4eoltw5CYtAy4utYmX3NTzzjGYKO0eEbTH
/EvhnMsRSqISzwWweXERwrs+Y8nany4+RI/c3hCOQbsqjem/2XuFk5z5s/sdpuNj
xPa/bmmhKoI4nGLYeXAmLlMEud1Dm7KWgU8X0ROMAyh/DPybGSoWNfiyIWUrVW4=
=4Qct
-----END PGP SIGNATURE-----
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

----------------------------------------------------------------------
Downloaded https://www.orfeus-eu.org/fdsnws/dataselect/1/auth with HTTP code: 200
Got temporary user/pw: OYi4YrJf-PTDBwaKt6DOurR8/pnZXLQGzn0Z5Jgam
Installed new opener with handlers: [<urllib.request.HTTPDigestAuthHandler object at 0x7f4968241048>, <obspy.clients.fdsn.client.NoRedirectionHandler object at 0x7f496826d390>]
Downloading http://www.orfeus-eu.org/fdsnws/station/1/query with requesting gzip compression
Sending along the following payload:
----------------------------------------------------------------------
format=text
level=channel
Z3 A339A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A338A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A337A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A336A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A335A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A334A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A333A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A332A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A331A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A270A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A269A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A268A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A267A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A266A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A265A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A264A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A263A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A262A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A261A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A260A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A090A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A089A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A088B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A088A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A087A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A086A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A085A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A084A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A083A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A082A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A081A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A080A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A079A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A078A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A077A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A076A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A075A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A074A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A073A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A072A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A071A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A024B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A024A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A021A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A020A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A019A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A018A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A017A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A016A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A014A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A013A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A012A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A011A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A010A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A009A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A008A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A007A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A006A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A005A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A004A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A002A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A001A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
----------------------------------------------------------------------
Downloaded https://ws.resif.fr/fdsnws/dataselect/1/auth with HTTP code: 200
Got temporary user/pw: temp_HOEZ7QTQHIK2/F87GBUZEQ40K
Installed new opener with handlers: [<urllib.request.HTTPDigestAuthHandler object at 0x7f4968288cc0>, <obspy.clients.fdsn.client.NoRedirectionHandler object at 0x7f49682884e0>]
Downloading http://ws.resif.fr/fdsnws/station/1/query with requesting gzip compression
Sending along the following payload:
----------------------------------------------------------------------
format=text
level=channel
Z3 A216A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A215A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A206A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A193A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A158A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
----------------------------------------------------------------------
Downloaded https://erde.geophysik.uni-muenchen.de/fdsnws/dataselect/1/auth with HTTP code: 200
Got temporary user/pw: OYi4YrJf-PTDBwaKt6DOurR8/s7ADBpoYhrP7oD9K
Installed new opener with handlers: [<urllib.request.HTTPDigestAuthHandler object at 0x7f4968288828>, <obspy.clients.fdsn.client.NoRedirectionHandler object at 0x7f4968288940>]
Downloading http://erde.geophysik.uni-muenchen.de/fdsnws/station/1/query with requesting gzip compression
Sending along the following payload:
----------------------------------------------------------------------
format=text
level=channel
Z3 A369A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A368A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A367A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A366A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A365A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A364A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A363A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A362A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A361A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A360A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A359A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A358A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A357B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A357A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A356A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A355A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A354A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A353A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A352A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A351B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A351A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A350A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A148B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A148A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A147A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A146A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A145A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A144A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A143A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A141A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A140A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A129A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A128A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A127A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A126A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A125A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A124A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A123A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A122A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A121B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A121A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A119A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A118B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A118A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A117A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A116A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A115A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A114A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A113B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A113A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A112A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A111A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A109A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A108A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A107C * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A107B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A107A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A106A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A105A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A104B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A104A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A103D * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A103B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A103A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A102A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A101A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A100A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A038A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A037A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A036A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A035A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A034A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A033A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A032A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A031A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A030A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A029A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A028B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A028A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A027A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A026A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A025A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A023A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A022A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A015A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
----------------------------------------------------------------------

Downloaded https://webservices.ingv.it/fdsnws/dataselect/1/auth with HTTP code: 200Downloaded https://eida.ethz.ch/fdsnws/dataselect/1/auth with HTTP code: 200

Got temporary user/pw: OYi4YrJf-PTDBwaKt6DOurR8/ohLkK9geEcsW275UGot temporary user/pw: OYi4YrJf-PTDBwaKt6DOurR8/ugLWqUNlFNxiwxdu

Installed new opener with handlers: [<urllib.request.HTTPDigestAuthHandler object at 0x7f4968374748>, <obspy.clients.fdsn.client.NoRedirectionHandler object at 0x7f4968374a90>]Installed new opener with handlers: [<urllib.request.HTTPDigestAuthHandler object at 0x7f496826a5c0>, <obspy.clients.fdsn.client.NoRedirectionHandler object at 0x7f4968236240>]

Downloading http://webservices.ingv.it/fdsnws/station/1/query with requesting gzip compressionDownloading http://eida.ethz.ch/fdsnws/station/1/query with requesting gzip compression

Sending along the following payload:Sending along the following payload:

----------------------------------------------------------------------
format=text
level=channel
Z3 A291A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A290A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A289A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A288A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A287A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A286A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A285A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A284A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A283B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A283A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A282A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A281A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A280A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A273A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A272A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A271A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A252A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A251A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A250A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A062A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A061A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A060B * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A060A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A052A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A051A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A050A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
--------------------------------------------------------------------------------------------------------------------------------------------

format=text
level=channel
Z3 A319A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A318A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A317A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A316A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A313A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A312A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A309A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A308A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A307A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A306A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A305A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A304A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A303A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A302A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A301A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A300A * HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
----------------------------------------------------------------------
Downloaded http://ws.resif.fr/fdsnws/station/1/query with HTTP code: 200
Uncompressing gzipped response for http://webservices.ingv.it/fdsnws/station/1/query
Downloaded http://webservices.ingv.it/fdsnws/station/1/query with HTTP code: 200
Downloaded http://www.orfeus-eu.org/fdsnws/station/1/query with HTTP code: 200
Uncompressing gzipped response for http://eida.ethz.ch/fdsnws/station/1/query
Downloaded http://eida.ethz.ch/fdsnws/station/1/query with HTTP code: 200
Uncompressing gzipped response for http://erde.geophysik.uni-muenchen.de/fdsnws/station/1/query
Downloaded http://erde.geophysik.uni-muenchen.de/fdsnws/station/1/query with HTTP code: 200
Downloading http://www.orfeus-eu.org/eidaws/routing/1/query ...
Sending along the following payload:
----------------------------------------------------------------------
service=dataselect
format=post
Z3 A001A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A002A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A004A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A005A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A006A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A007A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A008A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A009A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A010A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A011A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A012A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A013A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A014A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A015A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A016A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A017A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A018A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A019A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A020A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A021A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A022A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A023A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A024A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A025A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A026A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A027A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A028A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A029A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A030A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A031A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A032A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A033A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A034A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A035A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A036A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A037A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A038A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A050A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A051A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A052A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A060A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A061A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A062A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A071A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A072A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A073A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A074A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A075A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A076A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A077A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A078A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A079A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A080A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A081A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A082A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A083A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A084A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A085A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A086A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A087A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A088A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A089A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A090A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A100A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A101A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A102A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A103A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A104A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A105A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A106A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A107A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A107B -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A108A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A109A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A111A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A112A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A113A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A114A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A115A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A116A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A117A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A118A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A119A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A122A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A123A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A124A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A126A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A127A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A128A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A129A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A141A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A143A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A144A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A145A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A146A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A147A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A148A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A158A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A193A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A206A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A215A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A216A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A250A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A251A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A252A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A260A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A261A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A262A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A263A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A264A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A265A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A266A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A267A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A268A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A269A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A271A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A272A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A280A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A281A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A282A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A283A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A284A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A285A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A286A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A287A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A288A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A289A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A290A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A291A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A300A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A301A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A302A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A303A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A304A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A305A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A306A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A307A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A308A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A309A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A312A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A313A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A316A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A317A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A318A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A319A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A331A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A332A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A333A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A334A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A335A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A336A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A337A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A338A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A339A 00 HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A350A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A351A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A351B -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A352A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A353A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A354A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A355A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A356A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A357A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A358A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A359A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A360A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A361A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A362A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A363A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A364A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A365A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A366A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A367A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A368A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
Z3 A369A -- HHZ 2016-03-01T00:00:00.000000 2016-03-01T00:02:00.000000
----------------------------------------------------------------------

Installed new opener with handlers: [<obspy.clients.fdsn.client.CustomRedirectHandler object at 0x7f49681c4dd8>]Installed new opener with handlers: [<obspy.clients.fdsn.client.CustomRedirectHandler object at 0x7f4968247438>]Installed new opener with handlers: [<obspy.clients.fdsn.client.CustomRedirectHandler object at 0x7f4968247a20>]Installed new opener with handlers: [<obspy.clients.fdsn.client.CustomRedirectHandler object at 0x7f49683747f0>]Installed new opener with handlers: [<obspy.clients.fdsn.client.CustomRedirectHandler object at 0x7f496835c940>]

Base URL: http://ws.resif.frBase URL: http://eida.ethz.chBase URL: http://erde.geophysik.uni-muenchen.deBase URL: http://webservices.ingv.itBase URL: http://www.orfeus-eu.org

Request Headers: {'User-Agent': 'ObsPy/1.1.0 (Linux-4.4.159-73-default-x86_64-with-SuSE-42.3-x86_64, Python 3.6.2)'}Request Headers: {'User-Agent': 'ObsPy/1.1.0 (Linux-4.4.159-73-default-x86_64-with-SuSE-42.3-x86_64, Python 3.6.2)'}Request Headers: {'User-Agent': 'ObsPy/1.1.0 (Linux-4.4.159-73-default-x86_64-with-SuSE-42.3-x86_64, Python 3.6.2)'}Request Headers: {'User-Agent': 'ObsPy/1.1.0 (Linux-4.4.159-73-default-x86_64-with-SuSE-42.3-x86_64, Python 3.6.2)'}Request Headers: {'User-Agent': 'ObsPy/1.1.0 (Linux-4.4.159-73-default-x86_64-with-SuSE-42.3-x86_64, Python 3.6.2)'}

Loading discovered services from cache.Loading discovered services from cache.Loading discovered services from cache.Loading discovered services from cache.Loading discovered services from cache.

Downloading https://ws.resif.fr/fdsnws/dataselect/1/auth with requesting gzip compressionDownloading https://eida.ethz.ch/fdsnws/dataselect/1/auth with requesting gzip compressionDownloading https://erde.geophysik.uni-muenchen.de/fdsnws/dataselect/1/auth with requesting gzip compressionDownloading https://webservices.ingv.it/fdsnws/dataselect/1/auth with requesting gzip compressionDownloading https://www.orfeus-eu.org/fdsnws/dataselect/1/auth with requesting gzip compression

Sending along the following payload:Sending along the following payload:Sending along the following payload:Sending along the following payload:Sending along the following payload:

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

BEGIN PGP MESSAGE
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

{"valid_until": "2019-05-15T13:12:52.367339Z", "cn": "Sarah Mader", "memberof": "/epos/alparray;/epos;/", "sn": "Mader", "issued": "2019-04-15T13:12:52.367348Z", "mail": "sarah.mader@kit.edu", "givenName": "Sarah", "expiration": "1m"}
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJctINUAAoJEEFpzp0AlwdXeKgIAI9tXMD3i3IcWMtyY43qvq7o
XgwBh35AQ7A8Gj6wNqjZlZZgLT0ZIOmezamfULNdd03wi52+LWv3PxWcd5nC9e6H
ct3QGIoKDGnmkyYUQZHfKQMB7/vSVrasipErIPjIU8zp59v7r/Blrb6bA86UARF1
ECT9GLsPBh3vpdXj+iAW/wxbC+rCeo4eoltw5CYtAy4utYmX3NTzzjGYKO0eEbTH
/EvhnMsRSqISzwWweXERwrs+Y8nany4+RI/c3hCOQbsqjem/2XuFk5z5s/sdpuNj
xPa/bmmhKoI4nGLYeXAmLlMEud1Dm7KWgU8X0ROMAyh/DPybGSoWNfiyIWUrVW4=
=4Qct
-----END PGP SIGNATURE-----
BEGIN PGP MESSAGE
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

{"valid_until": "2019-05-15T13:12:52.367339Z", "cn": "Sarah Mader", "memberof": "/epos/alparray;/epos;/", "sn": "Mader", "issued": "2019-04-15T13:12:52.367348Z", "mail": "sarah.mader@kit.edu", "givenName": "Sarah", "expiration": "1m"}
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJctINUAAoJEEFpzp0AlwdXeKgIAI9tXMD3i3IcWMtyY43qvq7o
XgwBh35AQ7A8Gj6wNqjZlZZgLT0ZIOmezamfULNdd03wi52+LWv3PxWcd5nC9e6H
ct3QGIoKDGnmkyYUQZHfKQMB7/vSVrasipErIPjIU8zp59v7r/Blrb6bA86UARF1
ECT9GLsPBh3vpdXj+iAW/wxbC+rCeo4eoltw5CYtAy4utYmX3NTzzjGYKO0eEbTH
/EvhnMsRSqISzwWweXERwrs+Y8nany4+RI/c3hCOQbsqjem/2XuFk5z5s/sdpuNj
xPa/bmmhKoI4nGLYeXAmLlMEud1Dm7KWgU8X0ROMAyh/DPybGSoWNfiyIWUrVW4=
=4Qct
-----END PGP SIGNATURE-----
BEGIN PGP MESSAGE
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

{"valid_until": "2019-05-15T13:12:52.367339Z", "cn": "Sarah Mader", "memberof": "/epos/alparray;/epos;/", "sn": "Mader", "issued": "2019-04-15T13:12:52.367348Z", "mail": "sarah.mader@kit.edu", "givenName": "Sarah", "expiration": "1m"}
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJctINUAAoJEEFpzp0AlwdXeKgIAI9tXMD3i3IcWMtyY43qvq7o
XgwBh35AQ7A8Gj6wNqjZlZZgLT0ZIOmezamfULNdd03wi52+LWv3PxWcd5nC9e6H
ct3QGIoKDGnmkyYUQZHfKQMB7/vSVrasipErIPjIU8zp59v7r/Blrb6bA86UARF1
ECT9GLsPBh3vpdXj+iAW/wxbC+rCeo4eoltw5CYtAy4utYmX3NTzzjGYKO0eEbTH
/EvhnMsRSqISzwWweXERwrs+Y8nany4+RI/c3hCOQbsqjem/2XuFk5z5s/sdpuNj
xPa/bmmhKoI4nGLYeXAmLlMEud1Dm7KWgU8X0ROMAyh/DPybGSoWNfiyIWUrVW4=
=4Qct
-----END PGP SIGNATURE-----
BEGIN PGP MESSAGE
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

{"valid_until": "2019-05-15T13:12:52.367339Z", "cn": "Sarah Mader", "memberof": "/epos/alparray;/epos;/", "sn": "Mader", "issued": "2019-04-15T13:12:52.367348Z", "mail": "sarah.mader@kit.edu", "givenName": "Sarah", "expiration": "1m"}
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJctINUAAoJEEFpzp0AlwdXeKgIAI9tXMD3i3IcWMtyY43qvq7o
XgwBh35AQ7A8Gj6wNqjZlZZgLT0ZIOmezamfULNdd03wi52+LWv3PxWcd5nC9e6H
ct3QGIoKDGnmkyYUQZHfKQMB7/vSVrasipErIPjIU8zp59v7r/Blrb6bA86UARF1
ECT9GLsPBh3vpdXj+iAW/wxbC+rCeo4eoltw5CYtAy4utYmX3NTzzjGYKO0eEbTH
/EvhnMsRSqISzwWweXERwrs+Y8nany4+RI/c3hCOQbsqjem/2XuFk5z5s/sdpuNj
xPa/bmmhKoI4nGLYeXAmLlMEud1Dm7KWgU8X0ROMAyh/DPybGSoWNfiyIWUrVW4=
=4Qct
-----END PGP SIGNATURE-----
BEGIN PGP MESSAGE
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

{"valid_until": "2019-05-15T13:12:52.367339Z", "cn": "Sarah Mader", "memberof": "/epos/alparray;/epos;/", "sn": "Mader", "issued": "2019-04-15T13:12:52.367348Z", "mail": "sarah.mader@kit.edu", "givenName": "Sarah", "expiration": "1m"}
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQEcBAEBAgAGBQJctINUAAoJEEFpzp0AlwdXeKgIAI9tXMD3i3IcWMtyY43qvq7o
XgwBh35AQ7A8Gj6wNqjZlZZgLT0ZIOmezamfULNdd03wi52+LWv3PxWcd5nC9e6H
ct3QGIoKDGnmkyYUQZHfKQMB7/vSVrasipErIPjIU8zp59v7r/Blrb6bA86UARF1
ECT9GLsPBh3vpdXj+iAW/wxbC+rCeo4eoltw5CYtAy4utYmX3NTzzjGYKO0eEbTH
/EvhnMsRSqISzwWweXERwrs+Y8nany4+RI/c3hCOQbsqjem/2XuFk5z5s/sdpuNj
xPa/bmmhKoI4nGLYeXAmLlMEud1Dm7KWgU8X0ROMAyh/DPybGSoWNfiyIWUrVW4=
=4Qct
-----END PGP SIGNATURE-----

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Downloaded https://www.orfeus-eu.org/fdsnws/dataselect/1/auth with HTTP code: 200
Got temporary user/pw: OYi4YrJf-PTDBwaKt6DOurR8/pnZXLQGzn0Z5Jgam
Installed new opener with handlers: [<urllib.request.HTTPDigestAuthHandler object at 0x7f4968374dd8>, <obspy.clients.fdsn.client.NoRedirectionHandler object at 0x7f49683744e0>]
Downloading http://www.orfeus-eu.org/fdsnws/dataselect/1/query with requesting gzip compression
Sending along the following payload:
----------------------------------------------------------------------
Z3 A001A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A002A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A004A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A005A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A006A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A007A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A008A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A009A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A010A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A011A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A012A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A013A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A014A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A016A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A017A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A018A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A019A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A020A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A021A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A024A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A071A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A072A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A073A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A074A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A075A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A076A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A077A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A078A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A079A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A080A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A081A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A082A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A083A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A084A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A085A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A086A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A087A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A088A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A089A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A090A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A260A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A261A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A262A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A263A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A264A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A265A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A266A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A267A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A268A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A269A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A331A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A332A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A333A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A334A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A335A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A336A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A337A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A338A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A339A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
----------------------------------------------------------------------
Downloaded https://ws.resif.fr/fdsnws/dataselect/1/auth with HTTP code: 200
Got temporary user/pw: temp_OJ2WCHY23G69/PWBVDCX9L5A7
Installed new opener with handlers: [<urllib.request.HTTPDigestAuthHandler object at 0x7f4968247eb8>, <obspy.clients.fdsn.client.NoRedirectionHandler object at 0x7f4968247f60>]
Downloading http://ws.resif.fr/fdsnws/dataselect/1/query with requesting gzip compression
Sending along the following payload:
----------------------------------------------------------------------
Z3 A158A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A193A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A206A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A215A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A216A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
----------------------------------------------------------------------
Downloaded https://webservices.ingv.it/fdsnws/dataselect/1/auth with HTTP code: 200
Got temporary user/pw: OYi4YrJf-PTDBwaKt6DOurR8/ugLWqUNlFNxiwxdu
Installed new opener with handlers: [<urllib.request.HTTPDigestAuthHandler object at 0x7f4968247fd0>, <obspy.clients.fdsn.client.NoRedirectionHandler object at 0x7f4968288f98>]
Downloading http://webservices.ingv.it/fdsnws/dataselect/1/query with requesting gzip compression
Sending along the following payload:
----------------------------------------------------------------------
Z3 A300A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A301A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A302A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A303A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A304A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A305A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A306A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A307A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A308A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A309A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A312A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A313A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A316A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A317A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A318A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A319A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
----------------------------------------------------------------------
Downloaded https://eida.ethz.ch/fdsnws/dataselect/1/auth with HTTP code: 200
Got temporary user/pw: OYi4YrJf-PTDBwaKt6DOurR8/ohLkK9geEcsW275U
Installed new opener with handlers: [<urllib.request.HTTPDigestAuthHandler object at 0x7f4968256f28>, <obspy.clients.fdsn.client.NoRedirectionHandler object at 0x7f49681d8c18>]
Downloading http://eida.ethz.ch/fdsnws/dataselect/1/query with requesting gzip compression
Sending along the following payload:
----------------------------------------------------------------------
Z3 A050A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A051A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A052A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A060A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A061A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A062A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A250A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A251A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A252A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A271A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A272A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A280A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A281A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A282A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A283A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A284A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A285A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A286A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A287A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A288A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A289A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A290A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A291A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
----------------------------------------------------------------------
HTTP error 403, reason Forbidden, while downloading 'http://www.orfeus-eu.org/fdsnws/dataselect/1/query': b'Error 403: Forbidden\n\naccess denied\n\nUsage details are available from /fdsnws/dataselect/1/\n\nRequest:\n/fdsnws/dataselect/1/query\n\nRequest Submitted:\n2019-04-25T11:29:49.064571\n\nService Version:\n1.2.0\n'
Downloaded http://eida.ethz.ch/fdsnws/dataselect/1/query with HTTP code: 204
HTTP error 403, reason Forbidden, while downloading 'http://webservices.ingv.it/fdsnws/dataselect/1/query': b'Error 403: Forbidden\n\naccess denied\n\nUsage details are available from /fdsnws/dataselect/1/\n\nRequest:\n/fdsnws/dataselect/1/query\n\nRequest Submitted:\n2019-04-25T11:29:49.129226\n\nService Version:\n1.2.0\n'

Downloaded https://erde.geophysik.uni-muenchen.de/fdsnws/dataselect/1/auth with HTTP code: 200
Got temporary user/pw: OYi4YrJf-PTDBwaKt6DOurR8/s7ADBpoYhrP7oD9K
Installed new opener with handlers: [<urllib.request.HTTPDigestAuthHandler object at 0x7f4968288eb8>, <obspy.clients.fdsn.client.NoRedirectionHandler object at 0x7f496826a5c0>]
Downloading http://erde.geophysik.uni-muenchen.de/fdsnws/dataselect/1/query with requesting gzip compression
Sending along the following payload:
----------------------------------------------------------------------
Z3 A015A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A022A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A023A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A025A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A026A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A027A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A028A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A029A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A030A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A031A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A032A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A033A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A034A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A035A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A036A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A037A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A038A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A100A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A101A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A102A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A103A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A104A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A105A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A106A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A107A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A107B -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A108A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A109A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A111A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A112A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A113A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A114A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A115A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A116A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A117A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A118A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A119A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A122A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A123A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A124A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A126A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A127A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A128A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A129A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A141A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A143A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A144A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A145A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A146A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A147A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A148A 00 HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A350A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A351A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A351B -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A352A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A353A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A354A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A355A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A356A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A357A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A358A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A359A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A360A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A361A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A362A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A363A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A364A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A365A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A366A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A367A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A368A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
Z3 A369A -- HHZ 2016-03-01T00:00:00 2016-03-01T00:02:00
----------------------------------------------------------------------
HTTP error 403, reason Forbidden, while downloading 'http://erde.geophysik.uni-muenchen.de/fdsnws/dataselect/1/query': b'Error 403: Forbidden\n\naccess denied\n\nUsage details are available from /fdsnws/dataselect/1/\n\nRequest:\n/fdsnws/dataselect/1/query\n\nRequest Submitted:\n2019-04-25T11:29:50.064091\n\nService Version:\n1.2.0\n'
Downloaded http://ws.resif.fr/fdsnws/dataselect/1/query with HTTP code: 204
0 Trace(s) in Stream:
flofux commented 5 years ago

@SarahMelanieM

For me, your request runs perfectly fine, giving back all data. The only difference between our requests is that I am using ObsPy 1.1.1 with Python 2.7.12.

Your ObsPy is 1.1.0 - maybe all the token codes are not properly implemented in that version?

flofux commented 5 years ago

@Jollyfant my impression was that mainly ODC node was affected. Both routing and FDSNWS service ... but it was an on/off behaviour so I didn't really track it down in detail.

ODC FDSNWS services experienced 10 minutes of downtime between 13:26 and 13:36 but otherwise should be responsive (see top graph @ http://www.orfeus-eu.org/data/odc/statistics/). Let's see you if experience any more troubles in the coming days.

Today INGV webservices are repeatedly unavailable ...

javiquinte commented 5 years ago

I requested also the same with debug ON and found the following differences. The Obspy version is also 1.1.1

Request Headers: {'User-Agent': 'ObsPy/1.1.1 (Darwin-18.5.0-x86_64-i386-64bit, Python 3.7.1)'}

And the second and problematic one is that in Sarah's output the client switch to the query method despite that the authentication was successful (200), whilst in mine uses directly the queryauth method.

Downloaded https://www.orfeus-eu.org/fdsnws/dataselect/1/auth with HTTP code: 200 Got temporary user/pw: QWp0bbDsmTSR_eMpYK1I3tAr/UTpo4JrENIYs89Cl Installed new opener with handlers: [<urllib.request.HTTPDigestAuthHandler object at 0x1a1ea35a20>, <obspy.clients.fdsn.client.NoRedirectionHandler object at 0x1a1ea35ac8>] Downloading http://www.orfeus-eu.org/fdsnws/dataselect/1/queryauth with requesting gzip compression

@SarahMelanieM Could you please update to Obspy 1.1.1 ? Or is it too cumbersome?

SarahMelanieM commented 5 years ago

@SarahMelanieM Could you please update to Obspy 1.1.1 ? Or is it too cumbersome?

Hello @javiquinte, with a little help Obspy 1.1.1 is now running together with python3.7. Now everything works fine and the data is downloaded for the AlpArray network.


171 Trace(s) in Stream:

Z3.A022A..HHZ | 2016-02-29T23:59:57.590000Z - 2016-03-01T00:02:01.540000Z | 100.0 Hz, 12396 samples
...
(169 other traces)
...
Z3.A339A.00.HHZ | 2016-03-01T00:00:02.825000Z - 2016-03-01T00:02:03.535000Z | 100.0 Hz, 12072 samples
javiquinte commented 5 years ago

Great! I'll investigate in parallel if I can find the cause of this for Obspy 1.1.0