1
2025-11-19 17:01:45 +01:00

70 lines
1.7 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.
Les fichiers CSV correspondant à chaque figure sont conservés dans `data/` dans ce dossier.
## Température
```shell
python "docs/03 - Premiers graphiques/scripts/plot_basic_variables.py" --only temperature
```
![](figures/temperature_last_7_days.png)
## Humidité relative
```shell
python "docs/03 - Premiers graphiques/scripts/plot_basic_variables.py" --only humidity
```
![](figures/humidity_last_7_days.png)
## Pression atmosphérique
```shell
python "docs/03 - Premiers graphiques/scripts/plot_basic_variables.py" --only pressure
```
![](figures/pressure_last_7_days.png)
## Précipitations instantanées
```shell
python "docs/03 - Premiers graphiques/scripts/plot_basic_variables.py" --only rain_rate
```
![](figures/rain_rate_last_7_days.png)
## Luminance
```shell
python "docs/03 - Premiers graphiques/scripts/plot_basic_variables.py" --only illuminance
```
![](figures/illuminance_last_7_days.png)
## Vitesse du vent
```shell
python "docs/03 - Premiers graphiques/scripts/plot_basic_variables.py" --only wind_speed
```
![](figures/wind_speed_last_7_days.png)
## Direction du vent
```shell
python "docs/03 - Premiers graphiques/scripts/plot_basic_variables.py" --only wind_direction
```
![](figures/wind_direction_last_7_days.png)
## Élévation solaire (si disponible après enrichissement)
```shell
python "docs/03 - Premiers graphiques/scripts/plot_basic_variables.py" --only sun_elevation
```
![](figures/sun_elevation_last_7_days.png)