Skip to contents

Download observed concentration from Air Quality e-Reporting by EEA member countries. See EEA website for the details on data and metadata.

Usage

download_data_EEA(
  country.code = NULL,
  city.name = NULL,
  pollutant = NULL,
  year.from = NULL,
  year.to = NULL,
  station = NULL,
  EoIcode = NULL,
  sampling.point = NULL,
  source = "All"
)

Arguments

country.code

Single character string with country code.

city.name

Single character string

pollutant

Character string or integer with pollutant name or code

year.from

Character string or integer with mandatory starting year

year.to

Character string or integer with ending year

station

Character string representing station localid (e-Reporting schema)

EoIcode

Character string representing EoI code (Airbase)

sampling.point

Character string

source

One of "All" (default), "E1a" or "E2a"

Value

A data.table.

Examples

# Read PM2.5 from stations in Italy, year 2015.
if (FALSE) {
data <- download_data_EEA(country.code = "IT", year.from = 2015, year.to = 2015,
                          pollutant = "PM2.5")
}