Skip to content
Snippets Groups Projects
Commit ed1fd1e9 authored by Wernle, Alexandra Nicole's avatar Wernle, Alexandra Nicole
Browse files

Making Event class a bit more general.

parent be3938ad
No related branches found
No related tags found
1 merge request!292New flag metadata class
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment