Real-world IoT Data For Environmental Analysis
IOT sensor DHT for temperature, humidity and heat index
@kaggle.luisenrique054_iot_sensors_01
IOT sensor DHT for temperature, humidity and heat index
@kaggle.luisenrique054_iot_sensors_01
The dataset is a compilation of information collected by a DHT sensor over nearly a year of storage. This information can be valuable for time series analysis and exploring correlations between temperature and humidity.
I plan to clean and enhance the dataset with more comprehensive information in the future. I hope it proves useful to anyone interested in IoT-related topics.
CREATE TABLE heat_index (
"unnamed_0" VARCHAR -- Unnamed: 0,
"result" VARCHAR,
"table" BIGINT,
"n__start" TIMESTAMP -- Start,
"n__stop" TIMESTAMP -- Stop,
"n__time" TIMESTAMP -- Time,
"n__value" DOUBLE -- Value,
"n__field" VARCHAR -- Field,
"n__measurement" VARCHAR -- Measurement
);
CREATE TABLE humidity (
"unnamed_0" VARCHAR -- Unnamed: 0,
"result" VARCHAR,
"table" BIGINT,
"n__start" TIMESTAMP -- Start,
"n__stop" TIMESTAMP -- Stop,
"n__time" TIMESTAMP -- Time,
"n__value" DOUBLE -- Value,
"n__field" VARCHAR -- Field,
"n__measurement" VARCHAR -- Measurement
);
CREATE TABLE sensors_data (
"unnamed_0" BIGINT -- Unnamed: 0,
"n__time" TIMESTAMP -- Time,
"heat_index" DOUBLE,
"humidity" DOUBLE,
"temperature" DOUBLE
);
CREATE TABLE temperature (
"unnamed_0" VARCHAR -- Unnamed: 0,
"result" VARCHAR,
"table" BIGINT,
"n__start" TIMESTAMP -- Start,
"n__stop" TIMESTAMP -- Stop,
"n__time" TIMESTAMP -- Time,
"n__value" DOUBLE -- Value,
"n__field" VARCHAR -- Field,
"n__measurement" VARCHAR -- Measurement
);
Anyone who has the link will be able to view this.