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
c59775e6
Commit
c59775e6
authored
7 years ago
by
Rigdon
Browse files
Options
Downloads
Patches
Plain Diff
Added more compatibility to observatory and channel initializations
parent
ff24f0b0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
geomagio/algorithm/AverageAlgorithm.py
+20
-1
20 additions, 1 deletion
geomagio/algorithm/AverageAlgorithm.py
with
20 additions
and
1 deletion
geomagio/algorithm/AverageAlgorithm.py
+
20
−
1
View file @
c59775e6
...
@@ -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
...
...
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