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
ed1fd1e9
Commit
ed1fd1e9
authored
1 year ago
by
Wernle, Alexandra Nicole
Browse files
Options
Downloads
Patches
Plain Diff
Making Event class a bit more general.
parent
be3938ad
No related branches found
No related tags found
1 merge request
!292
New flag metadata class
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
geomagio/metadata/Flag.py
+7
-5
7 additions, 5 deletions
geomagio/metadata/Flag.py
with
7 additions
and
5 deletions
geomagio/metadata/Flag.py
+
7
−
5
View file @
ed1fd1e9
...
...
@@ -97,7 +97,9 @@ class Gap(Flag):
class
EventType
(
str
,
Enum
):
GEOMAGNETIC_STORM
=
"
GEOMAGNETIC_STORM
"
GEOMAGNETIC_SUBSTORM
=
"
GEOMAGNETIC_SUBSTORM
"
EARTHQUAKE
=
"
EARTHQUAKE
"
OTHER
=
"
OTHER
"
class
Event
(
Flag
):
...
...
@@ -109,16 +111,16 @@ class Event(Flag):
event_type : EventType
The type of event.
scale : str
Geomagnetic storm scale
denoted by G followed by a number 1 through 5
.
Kp
: int
Planetary K-index
denoted by a number 1 through 10
Geomagnetic storm scale
or Richter scale magnitude
.
index
: int
Planetary K-index
, DST index or some other index.
url : str
A url related to the event. Could be NOAA SWPC
or
USGS Earthquakes page.
A url related to the event. Could be NOAA SWPC
,
USGS Earthquakes page
or another site
.
"""
event_type
:
EventType
scale
:
str
=
None
Kp
:
int
=
None
index
:
int
=
None
url
:
str
=
None
...
...
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