update correct readme this time
This commit is contained in:
parent
122bf365d9
commit
e042752e74
|
@ -16,7 +16,7 @@ type: space-weather-prediction-1day
|
|||
type: space-weather-24hr-max
|
||||
```
|
||||
|
||||
## Example VTEC Graph
|
||||
## VTEC Graph
|
||||
|
||||
In the example dashboard seen in `dashboard.png`, the VTEC graph uses components from [mini-graph-card](https://github.com/kalkih/mini-graph-card). Use the following definition:
|
||||
|
||||
|
@ -47,4 +47,17 @@ color_thresholds:
|
|||
color: '#da0302'
|
||||
- value: 100
|
||||
color: '#750305'
|
||||
```
|
||||
```
|
||||
## Global VTEC Map
|
||||
|
||||
1. Enable the [Generic Camera](https://www.home-assistant.io/integrations/generic/) integration.
|
||||
2. Set the `Still Image URL` to `http://[server IP]:5000/global`
|
||||
3. Set the `Frame Rate (Hz)` to `0.0016666666666667` (sets it to a 10 minute refresh rate).
|
||||
4. Create this card on the dashboard:
|
||||
```yaml
|
||||
type: picture-entity
|
||||
entity: camera.[your entity name]
|
||||
show_state: false
|
||||
show_name: false
|
||||
camera_view: auto
|
||||
```
|
Binary file not shown.
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 233 KiB |
|
@ -1,6 +1,8 @@
|
|||
This is an MQTT sensor to send NOAA space weather data to Home Assistant. Fetching the data requires a login to NASA's
|
||||
EarthData which is done through Selenium and the Chrome browser.
|
||||
|
||||
![](dashboard/dashboard.png)
|
||||
|
||||
## Install
|
||||
|
||||
1. Create an account at <https://urs.earthdata.nasa.gov>
|
||||
|
@ -57,20 +59,4 @@ VTEC, or Vertical TEC, is a specific type of TEC measurement that is taken along
|
|||
vertically from the Earth's surface to the edge of the atmosphere. So essentially, VTEC is a subset of TEC, with the
|
||||
difference lying in the specific path along which the measurement is taken.
|
||||
|
||||
Updated hourly.
|
||||
|
||||
## Home Assistant Dashboard
|
||||
|
||||
### Global VTEC Map
|
||||
|
||||
1. Enable the [Generic Camera](https://www.home-assistant.io/integrations/generic/) integration.
|
||||
2. Set the `Still Image URL` to `http://[server IP]:5000/global`
|
||||
3. Set the `Frame Rate (Hz)` to `0.0016666666666667` (sets it to a 10 minute refresh rate).
|
||||
4. Create this card on the dashboard:
|
||||
```yaml
|
||||
type: picture-entity
|
||||
entity: camera.[your entity name]
|
||||
show_state: false
|
||||
show_name: false
|
||||
camera_view: auto
|
||||
```
|
||||
Updated hourly.
|
Loading…
Reference in New Issue