GIOŚ (Polish Główny Inspektorat Ochrony Środowiska) air quality data integration

The component collects data about air quality in Poland from GIOŚ and present as sensors in Home Assitant.

image

You can install component via HACS or manually.

Repository: https://github.com/bieniu/ha-gios

How to find station_id

Minimal configuration

sensor:
  - platform: gios
    station_id: 530

Custom configuration example

sensor:
  - platform: gios
    station_id: 530
    name: 'Air Quality'
    scan_interval: 2700
    ignored_conditions:
      - pm25
      - so2

Arguments

key optional type default description
station_id False integer ID of the measuring station
scan_interval True integer 1800 rate in seconds at which GIOŚ should be polled for new data, GIOS API regulations prohibit pool for data more often than every 30 minutes
ignored_conditions True list list of ignored conditions, available: c6h6 , co , no2 , o3 , pm25 , pm10 , so2, aqi
3 Likes