Skip to content
Snippets Groups Projects
Commit 088a1017 authored by Cain, Payton David's avatar Cain, Payton David
Browse files

Configure filtered channels for obsrio_minute

parent 54de657a
No related branches found
No related tags found
3 merge requests!166Merge branch master into production,!158Merge branch 'master' into 'production',!149Efield entrypoint
from typing import Optional
from typing import List, Optional
import typer
......@@ -204,14 +204,15 @@ def obsrio_hour(
def obsrio_minute(
observatory: str,
channels: List[str] = ["H", "E", "Z", "F"],
input_factory: Optional[TimeseriesFactory] = None,
output_factory: Optional[TimeseriesFactory] = None,
realtime_interval: int = 600,
update_limit: int = 10,
):
"""Filter 1Hz legacy H,E,Z,F to 1 minute legacy.
"""Filter 1Hz legacy channels to 1 minute legacy.
Should be called after obsrio_second() and obsrio_tenhertz(),
For H,E,Z,F: should be called after obsrio_second() and obsrio_tenhertz(),
which populate 1Hz legacy H,E,Z,F.
"""
starttime, endtime = get_realtime_interval(realtime_interval)
......@@ -221,7 +222,7 @@ def obsrio_minute(
outputFactory=output_factory or get_edge_factory(),
outputInterval="minute",
)
for channel in ["H", "E", "Z", "F"]:
for channel in channels:
controller.run_as_update(
algorithm=FilterAlgorithm(
input_sample_period=1,
......
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