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
d88cefd3
Commit
d88cefd3
authored
5 months ago
by
Wernle, Alexandra Nicole
Browse files
Options
Downloads
Patches
Plain Diff
Changed channel argument to str. Changed some default values.
parent
777e7d45
No related branches found
No related tags found
1 merge request
!344
New MetadataAlgorithm, SpikesAlgorithm, and flag-spikes application
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
geomagio/processing/flag_spikes.py
+5
-5
5 additions, 5 deletions
geomagio/processing/flag_spikes.py
with
5 additions
and
5 deletions
geomagio/processing/flag_spikes.py
+
5
−
5
View file @
d88cefd3
...
@@ -2,7 +2,7 @@ import os
...
@@ -2,7 +2,7 @@ import os
from
datetime
import
datetime
from
datetime
import
datetime
import
typer
import
typer
from
typing
import
Optional
,
List
from
typing
import
Optional
from
..metadata
import
Metadata
,
MetadataFactory
from
..metadata
import
Metadata
,
MetadataFactory
from
..algorithm.SpikesAlgorithm
import
SpikesAlgorithm
from
..algorithm.SpikesAlgorithm
import
SpikesAlgorithm
...
@@ -10,8 +10,8 @@ from ..algorithm.SpikesAlgorithm import SpikesAlgorithm
...
@@ -10,8 +10,8 @@ from ..algorithm.SpikesAlgorithm import SpikesAlgorithm
def
flag_spikes
(
def
flag_spikes
(
observatory
:
str
=
typer
.
Option
(...,
help
=
"
Observatory code
"
),
observatory
:
str
=
typer
.
Option
(...,
help
=
"
Observatory code
"
),
channels
:
List
[
str
]
=
typer
.
Option
(
channels
:
str
=
typer
.
Option
(
default
=
[
"
F
"
],
help
=
"
Channels to despike, default is F.
"
default
=
[
"
F
"
],
help
=
"
Channels to despike, default is F.
Example input: HEZF
"
),
),
starttime
:
datetime
=
typer
.
Option
(
starttime
:
datetime
=
typer
.
Option
(
default
=
None
,
default
=
None
,
...
@@ -22,11 +22,11 @@ def flag_spikes(
...
@@ -22,11 +22,11 @@ def flag_spikes(
help
=
"
End time for metadata, default is None. CLI example usage: --endtime
'
2024-01-01
'
"
,
help
=
"
End time for metadata, default is None. CLI example usage: --endtime
'
2024-01-01
'
"
,
),
),
window_size
:
Optional
[
int
]
=
typer
.
Option
(
window_size
:
Optional
[
int
]
=
typer
.
Option
(
default
=
10
,
default
=
10
00
,
help
=
"
Window size for despike algorithm
"
,
help
=
"
Window size for despike algorithm
"
,
),
),
threshold
:
Optional
[
int
]
=
typer
.
Option
(
threshold
:
Optional
[
int
]
=
typer
.
Option
(
default
=
3
,
default
=
6
,
help
=
"
Threshold for spike size
"
,
help
=
"
Threshold for spike size
"
,
),
),
metadata_token
:
str
=
typer
.
Option
(
metadata_token
:
str
=
typer
.
Option
(
...
...
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