ObsPy
  •  GitHub
  •  Documentation 
    • Getting Started
    • Tutorial
    • Gallery
    • API Documentation (latest release)
    • General Packages
      • obspy.core
      • obspy.imaging
      • obspy.realtime
      • obspy.signal
      • obspy.station
      • obspy.taup
      • obspy.xseed
    • Waveform Import/Export
      • obspy.css
      • obspy.datamark
      • obspy.gse2
      • obspy.mseed
      • obspy.sac
      • obspy.seisan
      • obspy.seg2
      • obspy.segy
      • obspy.sh
      • obspy.wav
      • obspy.y
    • Database and Web Service Clients
      • obspy.arclink
      • obspy.db
      • obspy.earthworm
      • obspy.fdsn
      • obspy.iris
      • obspy.neic
      • obspy.neries
      • obspy.pde
      • obspy.seedlink
      • obspy.seishub
    • API Documentation (current master)
    • General Packages
      • obspy.core
      • obspy.imaging
      • obspy.realtime
      • obspy.signal
      • obspy.station
      • obspy.taup
      • obspy.xseed
    • Waveform Import/Export
      • obspy.css
      • obspy.datamark
      • obspy.gse2
      • obspy.mseed
      • obspy.sac
      • obspy.seisan
      • obspy.seg2
      • obspy.segy
      • obspy.sh
      • obspy.wav
      • obspy.y
    • Event Data Import/Export
      • obspy.core.quakeml
      • obspy.ndk
      • obspy.pde
    • Database and Web Service Clients
      • obspy.arclink
      • obspy.db
      • obspy.earthworm
      • obspy.fdsn
      • obspy.iris
      • obspy.neic
      • obspy.neries
      • obspy.seedlink
      • obspy.seishub
  •  Mailing Lists 
    • Announcements Mailing List (public)
    •  Subscribe
    •  Archive
    • Users Mailing List (public)
    •  Subscribe
    •  Archives
    •  Post a message
  •  Developer Resources 
    • How to contribute
    • Coding Style Guide
    • All Releases
    • Code Analysis
    • PEP8
    • Python Coverage
    • C Coverage
    • Coveralls
    • Continuous Integration
    • Test Reports
    •  Travis CI
index| modules| next| previous
  1. ObsPy Documentation (0.7.x-3222-g79df757179)
  2. ObsPy Library Reference
  3. obspy.seedlink - SeedLink client for ObsPy

obspy.seedlink.easyseedlink¶

A simplified interface to the obspy.seedlink module.

The EasySeedLinkClient class contained in this module provides a more pythonic interface to the obspy.seedlink module with a focus on ease of use, while minimizing unnecessary exposure of the protocol specifics.

A client object can easily be created using the create_client() function, e.g. by providing a function to handle incoming data and a server URL:

from obspy.seedlink.easyseedlink import create_client

# A function to handle incoming data
def handle_data(trace):
    print('Received the following trace:')
    print(trace)
    print()

# Create the client and pass the function as a callback
client = create_client('geofon.gfz-potsdam.de', on_data=handle_data)
client.select_stream('BW', 'MANZ', 'EHZ')
client.loop()

For advanced applications, subclassing the EasySeedLinkClient class allows for more flexibility. See the EasySeedLinkClient documentation for an example.

Note

For finer grained control of the SeedLink connection (e.g. custom processing of individual SeedLink packets), using SeedLinkConnection or SLClient directly might be the preferred option.

Limitations

As of now, single station mode is not supported. Neither are in-stream INFO requests.

The client is using the SeedLinkConnection class and hence inherits all of its limitations. For example, erroneous packets are only logged, but otherwise ignored, with no possibility of handling them explicitly. Keepalive handling is completely encapsulated inside the connection object and cannot be easily influenced. Also, a HELLO is always sent to the server when connecting in order to determine the SeedLink protocol version.

Functions

create_client Quickly create an EasySeedLinkClient instance.

Classes

EasySeedLinkClient An easy-to-use SeedLink client.

Exceptions

EasySeedLinkClientException A base exception for all errors triggered explicitly by EasySeedLinkClient.

By the ObsPy Development Team and many Awesome Contributors™  |  Built with Bootstrap and Glyphicons  |  Copyright 2008-2014

Thank you!

We would like to thank our contributors, whose efforts make this software what it is. These people have helped by writing code and documentation, and by testing. They have created and maintained this product, its associated libraries and applications, our build tools and our web sites.

Contributors

  • Adolfo Inza
  • Alessia Maggi
  • Anthony Lomax
  • Bernhard Morgenstern
  • Charles J. Ammon
  • Christian Sippl
  • Conny Hammer
  • Elliott Sales de Andrade
  • Fabian Engels
  • Gaute Hope
  • Joachim Saul
  • Lars Krieger
  • Lion Krischer
  • Marius Isken
  • Moritz Beyreuther
  • Paul Käufl
  • Philippe Lesage
  • Sebastian Heimann
  • Simon Kremers
  • Sven Egdorf
  • Thomas Lecocq
  • Tom Richter
  • Victor Kress
  • Ólafur St. Arnarsson
  • Alberto Michelini
  • Andreas Köhler
  • Arthur Snoke
  • Chad Trabant
  • Chris Scheingraber
  • Claudio Satriano
  • David Ketchum
  • Emiliano Russo
  • Felix Bernauer
  • Heiner Igel
  • Joachim Wassermann
  • Leonardo Uieda
  • Marcus Walther
  • Martin van Driel
  • Nathaniel C. Miller
  • Peter Danecek
  • Robert Barsch
  • Seyed Kasra Hosseini Zad
  • Stefan Stange
  • Sébastien Bonaimé
  • Tobias Megies
  • Tommaso Fabbri
  • Yannik Behr

Funds

ObsPy was partially funded by the

  • German Science Foundation (DFG) via grant DFG IG 16/9-1
  • German Ministry for Education and Research (BMBF), GEOTECHNOLOGIEN grant 03G0646H.
  • NERA project (Network of European Research Infrastructures for Earthquake Risk Assessment and Mitigation) under the European Community's Seventh Framework Programme (FP7/2007-2013) grant agreement n° 262330
  • Leibniz Institute for Applied Geophysics (LIAG)