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
0ac8bb87
Commit
0ac8bb87
authored
4 years ago
by
Cain, Payton David
Browse files
Options
Downloads
Patches
Plain Diff
specify default factory intervals
parent
8b1b328c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!146
Release CMO metadata to production
,
!72
specify default factory intervals
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
geomagio/processing/obsrio.py
+21
-11
21 additions, 11 deletions
geomagio/processing/obsrio.py
with
21 additions
and
11 deletions
geomagio/processing/obsrio.py
+
21
−
11
View file @
0ac8bb87
...
@@ -57,7 +57,7 @@ def obsrio_filter(
...
@@ -57,7 +57,7 @@ def obsrio_filter(
realtime_interval
=
realtime_interval
,
realtime_interval
=
realtime_interval
,
update_limit
=
update_limit
,
update_limit
=
update_limit
,
)
)
elif
interval
==
"
day
s
"
:
elif
interval
==
"
day
"
:
obsrio_day
(
obsrio_day
(
observatory
=
observatory
,
observatory
=
observatory
,
input_factory
=
input_factory
,
input_factory
=
input_factory
,
...
@@ -140,9 +140,11 @@ def obsrio_day(
...
@@ -140,9 +140,11 @@ def obsrio_day(
starttime
,
endtime
=
get_realtime_interval
(
realtime_interval
)
starttime
,
endtime
=
get_realtime_interval
(
realtime_interval
)
# filter 10Hz U,V,W to H,E,Z
# filter 10Hz U,V,W to H,E,Z
controller
=
Controller
(
controller
=
Controller
(
inputFactory
=
input_factory
or
get_edge_factory
(
data_type
=
"
variation
"
),
inputFactory
=
input_factory
or
get_edge_factory
(
data_type
=
"
variation
"
,
interval
=
"
minute
"
),
inputInterval
=
"
minute
"
,
inputInterval
=
"
minute
"
,
outputFactory
=
output_factory
or
get_miniseed_factory
(
data_type
=
"
variation
"
),
outputFactory
=
output_factory
or
get_miniseed_factory
(
data_type
=
"
variation
"
,
interval
=
"
day
"
),
outputInterval
=
"
day
"
,
outputInterval
=
"
day
"
,
)
)
renames
=
{
"
H
"
:
"
U
"
,
"
E
"
:
"
V
"
,
"
Z
"
:
"
W
"
,
"
F
"
:
"
F
"
}
renames
=
{
"
H
"
:
"
U
"
,
"
E
"
:
"
V
"
,
"
Z
"
:
"
W
"
,
"
F
"
:
"
F
"
}
...
@@ -178,9 +180,11 @@ def obsrio_hour(
...
@@ -178,9 +180,11 @@ def obsrio_hour(
starttime
,
endtime
=
get_realtime_interval
(
realtime_interval
)
starttime
,
endtime
=
get_realtime_interval
(
realtime_interval
)
# filter 10Hz U,V,W to H,E,Z
# filter 10Hz U,V,W to H,E,Z
controller
=
Controller
(
controller
=
Controller
(
inputFactory
=
input_factory
or
get_edge_factory
(
data_type
=
"
variation
"
),
inputFactory
=
input_factory
or
get_edge_factory
(
data_type
=
"
variation
"
,
interval
=
"
minute
"
),
inputInterval
=
"
minute
"
,
inputInterval
=
"
minute
"
,
outputFactory
=
output_factory
or
get_miniseed_factory
(
data_type
=
"
variation
"
),
outputFactory
=
output_factory
or
get_miniseed_factory
(
data_type
=
"
variation
"
,
interval
=
"
hour
"
),
outputInterval
=
"
hour
"
,
outputInterval
=
"
hour
"
,
)
)
renames
=
{
"
H
"
:
"
U
"
,
"
E
"
:
"
V
"
,
"
Z
"
:
"
W
"
,
"
F
"
:
"
F
"
}
renames
=
{
"
H
"
:
"
U
"
,
"
E
"
:
"
V
"
,
"
Z
"
:
"
W
"
,
"
F
"
:
"
F
"
}
...
@@ -219,9 +223,11 @@ def obsrio_minute(
...
@@ -219,9 +223,11 @@ def obsrio_minute(
"""
"""
starttime
,
endtime
=
get_realtime_interval
(
realtime_interval
)
starttime
,
endtime
=
get_realtime_interval
(
realtime_interval
)
controller
=
Controller
(
controller
=
Controller
(
inputFactory
=
input_factory
or
get_edge_factory
(
data_type
=
"
variation
"
),
inputFactory
=
input_factory
or
get_edge_factory
(
data_type
=
"
variation
"
,
interval
=
"
second
"
),
inputInterval
=
"
second
"
,
inputInterval
=
"
second
"
,
outputFactory
=
output_factory
or
get_edge_factory
(
data_type
=
"
variation
"
),
outputFactory
=
output_factory
or
get_edge_factory
(
data_type
=
"
variation
"
,
interval
=
"
minute
"
),
outputInterval
=
"
minute
"
,
outputInterval
=
"
minute
"
,
)
)
for
channel
in
[
"
H
"
,
"
E
"
,
"
Z
"
,
"
F
"
]:
for
channel
in
[
"
H
"
,
"
E
"
,
"
Z
"
,
"
F
"
]:
...
@@ -281,9 +287,11 @@ def obsrio_temperatures(
...
@@ -281,9 +287,11 @@ def obsrio_temperatures(
"""
Filter temperatures 1Hz miniseed (LK1-4) to 1 minute legacy (UK1-4).
"""
"""
Filter temperatures 1Hz miniseed (LK1-4) to 1 minute legacy (UK1-4).
"""
starttime
,
endtime
=
get_realtime_interval
(
realtime_interval
)
starttime
,
endtime
=
get_realtime_interval
(
realtime_interval
)
controller
=
Controller
(
controller
=
Controller
(
inputFactory
=
input_factory
or
get_miniseed_factory
(
data_type
=
"
variation
"
),
inputFactory
=
input_factory
or
get_miniseed_factory
(
data_type
=
"
variation
"
,
interval
=
"
second
"
),
inputInterval
=
"
second
"
,
inputInterval
=
"
second
"
,
outputFactory
=
output_factory
or
get_edge_factory
(
data_type
=
"
variation
"
),
outputFactory
=
output_factory
or
get_edge_factory
(
data_type
=
"
variation
"
,
interval
=
"
minute
"
),
outputInterval
=
"
minute
"
,
outputInterval
=
"
minute
"
,
)
)
renames
=
{
"
LK1
"
:
"
UK1
"
,
"
LK2
"
:
"
UK2
"
,
"
LK3
"
:
"
UK3
"
,
"
LK4
"
:
"
UK4
"
}
renames
=
{
"
LK1
"
:
"
UK1
"
,
"
LK2
"
:
"
UK2
"
,
"
LK3
"
:
"
UK3
"
,
"
LK4
"
:
"
UK4
"
}
...
@@ -319,9 +327,11 @@ def obsrio_tenhertz(
...
@@ -319,9 +327,11 @@ def obsrio_tenhertz(
starttime
,
endtime
=
get_realtime_interval
(
realtime_interval
)
starttime
,
endtime
=
get_realtime_interval
(
realtime_interval
)
# filter 10Hz U,V,W to H,E,Z
# filter 10Hz U,V,W to H,E,Z
controller
=
Controller
(
controller
=
Controller
(
inputFactory
=
input_factory
or
get_miniseed_factory
(
data_type
=
"
variation
"
),
inputFactory
=
input_factory
or
get_miniseed_factory
(
data_type
=
"
variation
"
,
interval
=
"
tenhertz
"
),
inputInterval
=
"
tenhertz
"
,
inputInterval
=
"
tenhertz
"
,
outputFactory
=
output_factory
or
get_edge_factory
(
data_type
=
"
variation
"
),
outputFactory
=
output_factory
or
get_edge_factory
(
data_type
=
"
variation
"
,
interval
=
"
second
"
),
outputInterval
=
"
second
"
,
outputInterval
=
"
second
"
,
)
)
renames
=
{
"
U
"
:
"
H
"
,
"
V
"
:
"
E
"
,
"
W
"
:
"
Z
"
}
renames
=
{
"
U
"
:
"
H
"
,
"
V
"
:
"
E
"
,
"
W
"
:
"
Z
"
}
...
...
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