load_seeg {datazoom.amazonia} | R Documentation |
Loads data of estimates of emission of greenhouse gases
load_seeg(dataset = NULL, raw_data, geo_level, language = "eng")
dataset |
A dataset name ("seeg", seeg_farming", "seeg_industry", "seeg_energy", "seeg_land", "seeg_residuals"). On which "seeg" contains all five sectors (only works with raw_data = TRUE) and the others are filtered specifically by a main source of emission. See http://seeg.eco.br/notas-metodologicas/ |
raw_data |
A |
geo_level |
A |
language |
A |
A tibble
with the selected data.
## Not run:
# download state raw data
seeg <- load_seeg(
dataset = "seeg",
raw_data = TRUE,
geo_level = "state"
)
# download country energy treated data
seeg1 <- load_seeg(
dataset = "seeg_energy",
raw_data = FALSE,
geo_level = "country"
)
# download land municipality treated data
seeg2 <- load_seeg(
dataset = "seeg_land",
raw_data = FALSE,
geo_level = "municipality"
)
## End(Not run)