Air Quality Monitoring From EcoCity
Air Quality Monitoring in Vinnytsia city and region
@kaggle.vbmokin_air_quality_monitoring_from_ecocity
Air Quality Monitoring in Vinnytsia city and region
@kaggle.vbmokin_air_quality_monitoring_from_ecocity
The dataset contains data from public monitoring of air quality in Ukraine (for Vinnytsia city and region - population: 1 575 808, square: 26513 sq. km).
Many stations monitor air quality day and night according to the following indicators:
In some stations, there may be additional indicators.
The stations belong to the monitoring network "Eco-City".
Data are measured at intervals of 15 seconds to several minutes (145 seconds or more). Sometimes longer periods of time are possible, due to power outages and/or communications.
I thank service "Eco-City" for the opportunity to download data.
It is interesting to solve the following problems, which are typical for other cities and regions around the world:
I will prepare baseline notebooks to solve these problems and invite others to improve them.
CREATE TABLE ecocity_hourly_564_2024 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_566_2023 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_566_2024 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_611_2023 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_611_2024 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_650_2023 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_650_2024 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_767_2023 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_767_2024 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_774_2023 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_774_2024 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_790_2023 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_790_2024 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_848_2023 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_hourly_848_2024 (
"id_station" BIGINT,
"datetime" TIMESTAMP,
"indicator_name" VARCHAR,
"indicator_dimension" VARCHAR,
"value" DOUBLE
);CREATE TABLE ecocity_stations_2023 (
"id" BIGINT,
"location" VARCHAR,
"address" VARCHAR,
"lat" DOUBLE,
"lng" DOUBLE,
"notes" VARCHAR,
"source" VARCHAR
);CREATE TABLE ecocity_stations_2024 (
"id" BIGINT,
"location" VARCHAR,
"address" VARCHAR,
"lat" DOUBLE,
"lng" DOUBLE,
"notes" VARCHAR,
"source" VARCHAR
);Anyone who has the link will be able to view this.