1

Ajout de données météo

This commit is contained in:
2025-11-27 01:38:50 +01:00
parent bf500c183a
commit 88fd44c0fb
450 changed files with 6182 additions and 205 deletions

View File

@@ -0,0 +1,18 @@
const WEATHER_FIELDS = [
"temperature",
"humidity",
"pressure",
"illuminance",
"precipitations",
"wind_speed",
"wind_direction",
];
function hasValue(value) {
return value !== null && value !== undefined;
}
module.exports = {
WEATHER_FIELDS,
hasValue,
};