doc strings corrected
This commit is contained in:
parent
faacfc423c
commit
ef8adc6c0a
@ -3,9 +3,9 @@
|
|||||||
# Purpose: Convience imports for PyLoT
|
# Purpose: Convience imports for PyLoT
|
||||||
#
|
#
|
||||||
'''
|
'''
|
||||||
|
================================================
|
||||||
PyLoT - the Python picking and Localization Tool
|
PyLoT - the Python picking and Localization Tool
|
||||||
|
================================================
|
||||||
The Python picking and Localisation Tool
|
|
||||||
|
|
||||||
This python library contains a graphical user interfaces for picking
|
This python library contains a graphical user interfaces for picking
|
||||||
seismic phases. This software needs ObsPy (http://github.com/obspy/obspy/wiki)
|
seismic phases. This software needs ObsPy (http://github.com/obspy/obspy/wiki)
|
||||||
@ -20,7 +20,7 @@ benefit a lot compared to the former MatLab version.
|
|||||||
The development of PyLoT is part of the joint research project MAGS2.
|
The development of PyLoT is part of the joint research project MAGS2.
|
||||||
|
|
||||||
:copyright:
|
:copyright:
|
||||||
The PyLoT-Development Team
|
The PyLoT Development Team
|
||||||
:license:
|
:license:
|
||||||
GNU Lesser General Public License, Version 3
|
GNU Lesser General Public License, Version 3
|
||||||
(http://www.gnu.org/copyleft/lesser.html)
|
(http://www.gnu.org/copyleft/lesser.html)
|
||||||
|
@ -1 +0,0 @@
|
|||||||
#
|
|
@ -31,16 +31,16 @@ class GenericDataBase(object):
|
|||||||
|
|
||||||
|
|
||||||
class SeiscompDataStructure(object):
|
class SeiscompDataStructure(object):
|
||||||
|
|
||||||
def __init__(self, dataType='waveform', date=None, **kwargs):
|
|
||||||
'''
|
'''
|
||||||
Object initialization method:
|
Dictionary containing the data acces information for an SDS data archive:
|
||||||
|
|
||||||
:param str dataType: Desired data type. Default: ``'waveform'``
|
:param str dataType: Desired data type. Default: ``'waveform'``
|
||||||
:param date: Either date string or an instance of
|
:param date: Either date string or an instance of
|
||||||
obspy.core.utcdatetime.UTCDateTime. Default: ``None``
|
:class:`obspy.core.utcdatetime.UTCDateTime. Default: ``None``
|
||||||
:type date: str or UTCDateTime or None
|
:type date: str or UTCDateTime or None
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
def __init__(self, dataType='waveform', date=None, **kwargs):
|
||||||
# imports
|
# imports
|
||||||
from obspy.core import UTCDateTime
|
from obspy.core import UTCDateTime
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user