mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-06-24 05:35:10 +00:00
Short/long/closed display for each band calculated from latest data for each ionosonde station
This commit is contained in:
@@ -15,7 +15,7 @@ info:
|
||||
|
||||
### 1.4
|
||||
|
||||
* `/solar` response now includes `ionosonde_data`, which contains ionosonde station measurements (foF2 and MUF) sourced from the GIRO Data Center.
|
||||
* `/solar` response now includes `ionosonde_data`, which contains ionosonde station measurements (LUF, foF2 and MUF) sourced from the GIRO Data Center as well as implied band states.
|
||||
|
||||
### 1.3
|
||||
|
||||
@@ -1735,6 +1735,23 @@ components:
|
||||
example:
|
||||
"1747267201.0": 2.10
|
||||
"1747267501.0": 2.05
|
||||
band_states:
|
||||
type: object
|
||||
nullable: true
|
||||
description: >
|
||||
States of each HF amateur band, derived from the latest foF2, MUF and LUF values. Keyed by band name. Each
|
||||
value is one of: "Closed" (band frequency is below LUF or above MUF), "Short" (band frequency is at or above
|
||||
LUF and below foF2, so good for NVIS) or "Long" (band frequency is at or above foF2 and below MUF, so good
|
||||
for DX). Null if foF2 or MUF data is not yet available.
|
||||
additionalProperties:
|
||||
type: string
|
||||
enum: [Closed, Short, Long]
|
||||
example:
|
||||
"160m": "Closed"
|
||||
"80m": "Short"
|
||||
"40m": "Long"
|
||||
"20m": "Long"
|
||||
"10m": "Closed"
|
||||
|
||||
SolarConditionsProviderStatus:
|
||||
type: object
|
||||
|
||||
Reference in New Issue
Block a user