Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
geomag-algorithms
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ghsc
National Geomagnetism Program
geomag-algorithms
Commits
088a1017
Commit
088a1017
authored
3 years ago
by
Cain, Payton David
Browse files
Options
Downloads
Patches
Plain Diff
Configure filtered channels for obsrio_minute
parent
54de657a
No related branches found
No related tags found
3 merge requests
!166
Merge branch master into production
,
!158
Merge branch 'master' into 'production'
,
!149
Efield entrypoint
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
geomagio/processing/obsrio.py
+5
-4
5 additions, 4 deletions
geomagio/processing/obsrio.py
with
5 additions
and
4 deletions
geomagio/processing/obsrio.py
+
5
−
4
View file @
088a1017
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.
S
hould be called after obsrio_second() and obsrio_tenhertz(),
For H,E,Z,F: s
hould 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
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment