class documentation

class RAWFetcher(BaseFetcher):

View In Hierarchy

A fetcher that reads files from the RAW folder.

This fetcher can be used to (re)load the data that was once saved in a prior run that you need to re-process without downloading it again. It is also very usefull for debuging.

Parameters
basedirThe base folder where the files are, or, that has a RAW folder in it with files.
Method work The main fetcher worker
Method __init__ Undocumented
Instance Variable _basedir Undocumented
def work(self, key, items):

The main fetcher worker

When implementing a new fetcher you are responsible to implement this.

Parameters
key:strThe key of items
items:listA lista of request lines corresponding to the request key received
Returns
obspy.StreamAn obspy stream with the fetched data
def __init__(self, basedir):

Undocumented

_basedir =

Undocumented