Skip to content
Snippets Groups Projects
Commit 2efb5c44 authored by Jeremy M Fee's avatar Jeremy M Fee
Browse files

Update put_timeseries api documentation

parent e0173f37
No related branches found
No related tags found
No related merge requests found
...@@ -41,6 +41,19 @@ class TimeseriesFactory(object): ...@@ -41,6 +41,19 @@ class TimeseriesFactory(object):
""" """
raise NotImplementedError('"get_timeseries" not implemented') raise NotImplementedError('"get_timeseries" not implemented')
def put_timeseries(self, timeseries): def put_timeseries(self, timeseries, channels):
"""Store timeseries data.""" """Store timeseries data.
Parameters
----------
timeseries : obspy.core.Stream
stream containing traces to store.
channels : list
list of channels to store.
Raises
------
TimeseriesFactoryException
if any errors occur.
"""
raise NotImplementedError('"put_timeseries" not implemented') raise NotImplementedError('"put_timeseries" not implemented')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment