69 lines
1.5 KiB
Markdown
69 lines
1.5 KiB
Markdown
# Premiers graphiques
|
|
|
|
On peut désormais tracer nos premiers graphiques simples et bruts.
|
|
S'ils ne sont pas très instructifs par rapport à ce que nous fournissent Home Assistant et InfluxDB, ils nous permettent au moins de nous assurer que tout fonctionne, et que les données semblent cohérentes.
|
|
|
|
## Température
|
|
|
|
```shell
|
|
python -m scripts.plot_basic_variables --only temperature
|
|
```
|
|
|
|

|
|
|
|
## Humidité relative
|
|
|
|
```shell
|
|
python -m scripts.plot_basic_variables --only humidity
|
|
```
|
|
|
|

|
|
|
|
## Pression atmosphérique
|
|
|
|
```shell
|
|
python -m scripts.plot_basic_variables --only pressure
|
|
```
|
|
|
|

|
|
|
|
## Précipitations instantanées
|
|
|
|
```shell
|
|
python -m scripts.plot_basic_variables --only rain_rate
|
|
```
|
|
|
|

|
|
|
|
## Luminance
|
|
|
|
```shell
|
|
python -m scripts.plot_basic_variables --only illuminance
|
|
```
|
|
|
|

|
|
|
|
## Vitesse du vent
|
|
|
|
```shell
|
|
python -m scripts.plot_basic_variables --only wind_speed
|
|
```
|
|
|
|

|
|
|
|
## Direction du vent
|
|
|
|
```shell
|
|
python -m scripts.plot_basic_variables --only wind_direction
|
|
```
|
|
|
|

|
|
|
|
## Élévation solaire (si disponible après enrichissement)
|
|
|
|
```shell
|
|
python -m scripts.plot_basic_variables --only sun_elevation
|
|
```
|
|
|
|

|