mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-04-29 18:25:58 +00:00
Add fetching of NOAA 3-day forecast
This commit is contained in:
@@ -1509,15 +1509,61 @@ components:
|
||||
example: "Band Closed"
|
||||
k_index_forecast:
|
||||
type: object
|
||||
description: NOAA Kp index 3-day forecast. Keys UNIX time in seconds representing the start of the relevant 3-hour UTC period. Values are the forecast Kp index (0–9) for that period.
|
||||
description: >
|
||||
NOAA Kp index 3-day forecast. Keys are UNIX timestamps (UTC seconds since epoch) for the
|
||||
start of each 3-hour period. Values are the forecast Kp index (0–9) for that period.
|
||||
Only forecast values are included; observed actuals (shown in parentheses in the source
|
||||
data) are discarded.
|
||||
additionalProperties:
|
||||
type: integer
|
||||
type: number
|
||||
minimum: 0
|
||||
maximum: 9
|
||||
example:
|
||||
"2026-04-02T00:00:00+00:00": 2
|
||||
"2026-04-02T03:00:00+00:00": 3
|
||||
"2026-04-02T06:00:00+00:00": 2
|
||||
"1743638400.0": 4.0
|
||||
"1743649200.0": 5.67
|
||||
"1743660000.0": 3.67
|
||||
solar_storm_forecast:
|
||||
type: object
|
||||
description: >
|
||||
NOAA Solar Radiation Storm forecast — probability (%) of S1 or greater events per day.
|
||||
Keys are UNIX timestamps (UTC seconds since epoch) for the start of each forecast day.
|
||||
Values are integer percentages (0–100).
|
||||
additionalProperties:
|
||||
type: integer
|
||||
minimum: 0
|
||||
maximum: 100
|
||||
example:
|
||||
"1743638400.0": 50
|
||||
"1743724800.0": 50
|
||||
"1743811200.0": 25
|
||||
blackout_forecast_r1r2:
|
||||
type: object
|
||||
description: >
|
||||
NOAA Radio Blackout forecast — probability (%) of R1–R2 (Minor–Moderate) blackout events
|
||||
per day. Keys are UNIX timestamps (UTC seconds since epoch) for the start of each
|
||||
forecast day. Values are integer percentages (0–100).
|
||||
additionalProperties:
|
||||
type: integer
|
||||
minimum: 0
|
||||
maximum: 100
|
||||
example:
|
||||
"1743638400.0": 55
|
||||
"1743724800.0": 55
|
||||
"1743811200.0": 55
|
||||
blackout_forecast_r3_or_greater:
|
||||
type: object
|
||||
description: >
|
||||
NOAA Radio Blackout forecast — probability (%) of R3 or greater (Strong–Extreme) blackout
|
||||
events per day. Keys are UNIX timestamps (UTC seconds since epoch) for the start of each
|
||||
forecast day. Values are integer percentages (0–100).
|
||||
additionalProperties:
|
||||
type: integer
|
||||
minimum: 0
|
||||
maximum: 100
|
||||
example:
|
||||
"1743638400.0": 25
|
||||
"1743724800.0": 25
|
||||
"1743811200.0": 25
|
||||
blackout_desc:
|
||||
type: string
|
||||
description: HF radio blackout risk description, derived from the X-ray flux class.
|
||||
|
||||
Reference in New Issue
Block a user