Skip to content

Commit

Permalink
remove arclink
Browse files Browse the repository at this point in the history
it has been deprecated for years, officially discontinued and main
servers have been shut down years ago. no point dragging this along
  • Loading branch information
megies committed Mar 3, 2022
1 parent 94b3aea commit 67b095e
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 1,523 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ Changes:
numpy 1.22 (see #2912, #2913)
* fix iso8601 regex for issue #2868 to cope with day 360 properly
* fix crash when resampling very short traces (see #2926)
- obspy.clients.arclink:
* submodule removed completely, since ArcLink was officially deprecated and
deactivated on all big datacenters years ago (see #2994)
- obspy.clients.fdsn:
* introduce fine-grained FDSN client exceptions (see #2653, #2964)
* support for "eventtype" parameter in get_events(), as specified in version
Expand Down
2 changes: 0 additions & 2 deletions misc/docs/source/packages/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ categories.*
:toctree: .
:nosignatures:

obspy.clients.arclink
obspy.clients.earthworm
obspy.clients.fdsn
obspy.clients.filesystem
Expand Down Expand Up @@ -177,7 +176,6 @@ categories.*
:toctree: .
:nosignatures:

obspy.io.arclink
obspy.io.css
obspy.io.kml
obspy.io.sac.sacpz
Expand Down
24 changes: 0 additions & 24 deletions misc/docs/source/packages/obspy.clients.arclink.rst

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
Advanced Exercise
-----------------

.. note::

Please note that this exercise is several years old and outdated in terms
of recommended use of obspy, e.g. in terms of higher-level
functionality like the Inventory object, and that ArcLink has been
deactivated by data centers and the arclink client removed from obspy.

This practical intends to demonstrate how ObsPy can be used to develop
workflows for data processing and analysis that have a short, easy to read and
extensible source code. The overall task is to automatically estimate local
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,25 +70,6 @@ data sets, ready for research, including some basic quality control.

See the :mod:`obspy.clients.fdsn.mass_downloader` page for more details.

-------
ArcLink
-------

+----------------------+--------------------------------+
| Available Data Types | Format |
+======================+================================+
| Waveforms | MiniSEED, SEED |
+----------------------+--------------------------------+
| Station Information | dataless SEED, SEED |
+----------------------+--------------------------------+

ArcLink is a distributed data request protocol usable to access archived
waveform data in the MiniSEED or SEED format and associated meta information as
Dataless SEED files. You can use the :mod:`obspy.clients.arclink` module to
request data from the `EIDA <http://www.orfeus-eu.org/eida/>`_ initiative but
most (or all) of that data can also be requested using the
:mod:`obspy.clients.fdsn` module.

-----------------
IRIS Web Services
-----------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ In UTC time this results in 1970-01-01T01:00:33.22.
Advanced Example
----------------

A more complicated example, where the data are retrieved via ArcLink and
A more complicated example, where the data are retrieved via FDSNWS and
results are plotted step by step, is shown here:

.. plot:: tutorial/code_snippets/trigger_tutorial_advanced.py
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import matplotlib.pyplot as plt

import obspy
from obspy.clients.arclink import Client
from obspy.clients.fdsn import Client
from obspy.signal.trigger import recursive_sta_lta, trigger_onset


# Retrieve waveforms via ArcLink
client = Client(host="erde.geophysik.uni-muenchen.de", port=18001,
user="test@obspy.de")
# Retrieve waveforms via FDSNWS
client = Client("LMU")
t = obspy.UTCDateTime("2009-08-24 00:19:45")
st = client.get_waveforms('BW', 'RTSH', '', 'EHZ', t, t + 50)

Expand Down
34 changes: 0 additions & 34 deletions obspy/clients/arclink/__init__.py

This file was deleted.

0 comments on commit 67b095e

Please sign in to comment.