Skip to content
Snippets Groups Projects
Commit c59775e6 authored by Rigdon's avatar Rigdon
Browse files

Added more compatibility to observatory and channel initializations

parent ff24f0b0
No related branches found
No related tags found
No related merge requests found
...@@ -29,11 +29,13 @@ class AverageAlgorithm(Algorithm): ...@@ -29,11 +29,13 @@ class AverageAlgorithm(Algorithm):
""" """
def __init__(self): def __init__(self, observatories=None, channel=None):
Algorithm.__init__(self) Algorithm.__init__(self)
self._npts = -1 self._npts = -1
self._stt = -1 self._stt = -1
self._stats = None self._stats = None
self.obs = observatories
self.ch = channel
self.observatoryMetadata = ObservatoryMetadata() self.observatoryMetadata = ObservatoryMetadata()
def check_stream(self, timeseries): def check_stream(self, timeseries):
...@@ -46,6 +48,23 @@ class AverageAlgorithm(Algorithm): ...@@ -46,6 +48,23 @@ class AverageAlgorithm(Algorithm):
stream to be checked. stream to be checked.
""" """
# Initialize observatories based on either command arguments
# or _init_ inputs
if self.obs:
self.observatories = self.obs
if not hasattr(self, 'observatories'):
obs = []
for series in timeseries:
obs.append(series.stats.station)
self.observatories = obs
# Initialize channel based on either command arguments or
# _init_ inputs
if self.ch:
self.outchannel = self.ch
if not hasattr(self, 'outchannel'):
self.outchannel = timeseries[0].stats.channel
# A stream produced by EdgeFactory should always pass these checks. # A stream produced by EdgeFactory should always pass these checks.
# must have only one channel for each observatory # must have only one channel for each observatory
......
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