SEEG

The Dataset

The estimates of emissions and removals of greenhouse gases are a database created by the System of Estimates of Emissions and Removals of Greenhouse Gases (SEEG), an initiative of the Observatório do Clima, a network of institutions focused on climate change research in Brazil.

Using data collected from government entities, institutes, research centers, NGOs and other institutions, the estimates are created using the methodology of the Brazilian Inventory of Anthropic Emissions and Removals of Greenhouse Gases, assembled by the Ministry of Science, Technology and Innovation (MCTI), and the directives of Intergovernmental Panel on Climate Change (IPCC). A further detailed explanation of the methodology used is available in the following link (only in Portuguese): http://seeg.eco.br/notas-metodologicas/

The data ranges currently from the years 2000 to 2018. Emissions are divided in five main sources: Agricultural and Cattle Raising, Energy, Changes in Use of Land, Industrial Processes and Residues. All greenhouse gases contained in the national inventory are considered, encompassing CO2, CH4, N2O and the HFCs, with the conversion to carbon equivalence (CO2e) also included, both in the metric of GWP (Global Warming Potential) and GTP (Global Temperature Potential).

The data is download from the SEEG website in the form of one single file, so the option to select a certain range of years in not available. Also, due to the size of the file, a stable internet connection is necessary, and the function may take time to run.

There are six available datasets.The “seeg” one contemplates all sectors and the others are each divided by a specific emission source.

Usage

Using the function is easy enough:

library(datazoom.amazonia)
# download state raw data
seeg <- load_seeg(dataset = 'seeg',
                  raw_data = TRUE,
                  geo_level = 'state')

# download industry state treated data in english
seeg <- load_seeg(dataset = 'seeg_industry',
                  raw_data = FALSE,
                  geo_level = 'state', language = 'eng')

# download country energy treated data in portuguese
seeg = load_seeg(dataset = 'seeg_energy',
                  raw_data = FALSE,
                  geo_level = 'country', language = 'pt')

# download municipality land treated data in english
seeg = load_seeg(dataset = 'seeg_land',
                  raw_data = FALSE,
                  geo_level = 'municipality', language = 'eng')