class documentation
class RAWFetcher(BaseFetcher):
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 | |
| basedir | The 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):
overrides
fetchtool.Downloader.BaseFetcher.workThe main fetcher worker
When implementing a new fetcher you are responsible to implement this.
| Parameters | |
key:str | The key of items |
items:list | A lista of request lines corresponding to the request key received |
| Returns | |
obspy.Stream | An obspy stream with the fetched data |