Description Usage Arguments Details Value Examples
Initialize base streamline concentration table.
1 | mw_conc_init(strm_lns, conc_l_lev, conc_l)
|
strm_lns |
Streamlines as read from function mw_read_streamlines() |
conc_l_lev |
Levels of concentration layers (RasterBrick). |
conc_l |
Concentration layers (RasterBrick). |
Add concentrations (conservative) at all locations (x,y,z) of streamline trajects and remove redundant records (no concentration change).
table (tibble) with the following variables (columns):
SL_NR: Streamline number (integer)
TIME: Time, days (numeric)
DIST: Distance traveled since t=0 (meters) (numeric)
CCONC: Concentration (conservative) (numeric)
D_CCONC: Change in concentration (numeric)
1 2 3 4 | fname <- system.file("extdata","streamlines.iff",package="mipwelcona")
strm_lns <- mw_read_streamlines(fname)
x <- mw_conc_init(strm_lns, conc_l_lev=mw_example_conc_layer_levels(),
conc_l=mw_example_concentrations())
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.