Description Usage Arguments Value Examples
View source: R/mw_create_sl_fltr_table.R
Create table with indices linking the streamlines to well filters.
1 | mw_create_sl_fltr_table(strm_lns, well_fltrs, maxdist = 100)
|
strm_lns |
Streamlines as read from function mw_read_streamlines() |
well_fltrs |
Well filters as read from function mw_read_well_filters() |
maxdist |
The maximum distance the particle can be from a well filter if it is to be a selection candidate. |
dataframe with the following variables (columns):
SL_NR: Streamline number (integer)
FLTR_NR: Filter number (integer)
1 2 3 4 5 | fname <- system.file("extdata","streamlines.iff",package="mipwelcona")
strm_lns <- mw_read_streamlines(fname)
fname <- system.file("extdata","well_filters.ipf",package="mipwelcona")
well_fltrs <- mw_read_well_filters(fname)
sl_fltr_table <- mw_create_sl_fltr_table(strm_lns, well_fltrs, maxdist=100)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.