doc strings corrected

This commit is contained in:
Sebastian Wehling-Benatelli 2014-03-31 13:01:51 +02:00
parent faacfc423c
commit ef8adc6c0a
3 changed files with 11 additions and 12 deletions

View File

@ -3,9 +3,9 @@
# Purpose: Convience imports for PyLoT
#
'''
================================================
PyLoT - the Python picking and Localization Tool
The Python picking and Localisation Tool
================================================
This python library contains a graphical user interfaces for picking
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.
:copyright:
The PyLoT-Development Team
The PyLoT Development Team
:license:
GNU Lesser General Public License, Version 3
(http://www.gnu.org/copyleft/lesser.html)

View File

@ -1 +0,0 @@
#

View File

@ -31,16 +31,16 @@ class GenericDataBase(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 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
'''
def __init__(self, dataType='waveform', date=None, **kwargs):
# imports
from obspy.core import UTCDateTime