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

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

""" 

obspy.taup - Travel time calculation tool 

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

The obspy.taup package contains Python wrappers for iaspei-tau - a travel time 

library by Arthur Snoke (http://www.iris.edu/pub/programs/iaspei-tau/). 

The library iaspei-tau is written in Fortran and interfaced via Python ctypes. 

 

.. seealso:: [Snoke2009]_ 

 

:copyright: 

    The ObsPy Development Team (devs@obspy.org) 

:license: 

    Unknown 

""" 

 

 

if __name__ == '__main__': 

    import doctest 

    doctest.testmod(exclude_empty=True)