Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

# -*- coding: utf-8 -*- 

""" 

obspy.realtime - Real time support for ObsPy 

============================================ 

 

The obspy.realtime package extends the ObsPy core classes with real time 

functionalities. 

 

:copyright: 

    The ObsPy Development Team (devs@obspy.org) & Anthony Lomax 

:license: 

    GNU Lesser General Public License, Version 3 

    (http://www.gnu.org/copyleft/lesser.html) 

 

The obspy.realtime development has been supported by the 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] and implemented within the 

activities of the JRA2/WP12 "Tools for real-time seismology, acquisition and 

mining". 

""" 

from obspy.realtime.rtmemory import RtMemory 

from obspy.realtime.rttrace import RtTrace 

 

 

if __name__ == '__main__': 

    import doctest 

    doctest.testmod(exclude_empty=True)