Emissions are not just masses released into the atmosphere; they have far-reaching impacts on air quality, human health, ecosystems, and even economic activityes. Understanding and modeling these effects is crucial, and various models, such as R-Line and WRF-Chem, rely on emissions data as key inputs. This R package streamlines the process by providing functions to read the emissions from VEIN and other sources and export them in a structure compatible with different modeling frameworks.
Ibarra-Espinosa, S., Schuch, D. and Dias de Freitas., E., (2018). eixport: An R package to export emissions to atmospheric models, Journal of Open Source Software, 3(24), 607, doi:10.21105/joss.00607.
To install the CRAN version:
install.packages("eixport")
To install the development version:
devtools::install_github("atmoschem/eixport")
library(eixport)
file = paste0(system.file("extdata", package = "eixport"),"/wrfinput_d02")
wrf_summary(file = file)
#> | | | 0% | |======================= | 33% | |=============================================== | 67% | |======================================================================| 100%
#> Min. 1st Qu. Median Mean 3rd Qu.
#> Times 1.312178e+09 1.312178e+09 1.312178e+09 1.312178e+09 1.312178e+09
#> XLAT -2.438538e+01 -2.405025e+01 -2.370471e+01 -2.370379e+01 -2.335773e+01
#> XLONG -4.742899e+01 -4.696930e+01 -4.650305e+01 -4.650304e+01 -4.603427e+01
#> Max. sum
#> Times 1.312178e+09 NA
#> XLAT -2.301877e+01 -76160.28
#> XLONG -4.558643e+01 -149414.28
file = paste0(system.file("extdata", package = "eixport"),"/wrfinput_d02")
f <- wrf_meta(file)
names(f)
#> [1] "global" "vars"
head(f$global)
#> att vars
#> 1 TITLE OUTPUT FROM REAL_EM V3.9.1.1 PREPROCESSOR
#> 2 START_DATE 2011-08-01_00:00:00
#> 3 SIMULATION_START_DATE 2011-08-01_00:00:00
#> 4 WEST-EAST_GRID_DIMENSION 64
#> 5 SOUTH-NORTH_GRID_DIMENSION 52
#> 6 BOTTOM-TOP_GRID_DIMENSION 35
head(f$vars)
#> vars MemoryOrder description units stagger FieldType
#> 1 XLAT XY LATITUDE, SOUTH IS NEGATIVE degree north 104
#> 2 XLONG XY LONGITUDE, WEST IS NEGATIVE degree east 104
https://doi.org/10.21105/joss.00607
@article{eixport,
title = {eixport: An R package to export emissions to atmospheric models},
journal = {The Journal of Open Source Software},
author = {Sergio Ibarra-Espinosa and Daniel Schuch and Edmilson {Dias de Freitas}},
year = {2018},
doi = {10.21105/joss.00607},
url = {http://joss.theoj.org/papers/10.21105/joss.00607},
}
Please, read this guide. Contributions of all sorts are welcome, issues and pull requests are the preferred ways of sharing them. When contributing pull requests, please follow the Google’s R Style Guide. This project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.