#' \strong{ra}nge \strong{m}apper \strong{p}ipe line.
#'
#'A quick alternative to initiate a project by pipelining several functions.
#'
#' @param gridSize grid resolution (in units previously set by \code{global.bbox.save})
#' @param bbox     the spatial domain of the project (see \code{\link{global.bbox.save}} )
#' @inheritParams  rangeMap.start
#' @inheritParams  global.bbox.save
#' @inheritParams  gridSize.save
#' @inheritParams  canvas.save
#' @inheritParams  processRanges
#' @inheritParams  bio.save
#' @inheritParams  rangeMap.save
#' @seealso        \code{\link{rangeMap.start}} \code{\link{global.bbox.save}}
#'                 \code{\link{gridSize.save}} \code{\link{canvas.save}}
#'                 \code{\link{processRanges}} \code{\link{bio.save}}
#'                 \code{\link{rangeMap.save}}
#' @return         an sqlite connection to a rangeMapper project
#' @note           \code{ramp} combines  all the functions from rangeMap.start() to processRanges() and
#'                 rangeMap.save() but is less flexible as compared with a step-by-step
#'                 project building.
#' @export
#' @examples
#' breding_ranges = rgdal::readOGR(system.file(package = "rangeMapper",
#'      "extdata", "wrens", "vector_combined"), "wrens", verbose = FALSE)[1:50, ]
#' data(wrens)
#' d = subset(wrens, select = c('sci_name', 'body_size', 'clutch_size') )
#' con = ramp("wrens.sqlite", gridSize = 15, spdf = breding_ranges, biotab = d, ID = "sci_name",
#'             metadata = rangeTraits(), FUN = "median", overwrite = TRUE)
#' m = rangeMap.fetch(con)
#' dbDisconnect(con)
ramp <- function(file, dir = tempdir(), gridSize, spdf, bbox = spdf,
                 ID, biotab, metadata, FUN,
                 overwrite = FALSE ) {
    dbcon = rangeMap.start(file = file, dir = dir , overwrite = overwrite)
    global.bbox.save(con = dbcon, bbox = spdf)
    if( missing(gridSize) ) gridSize.save(dbcon) else
        gridSize.save(dbcon, gridSize = gridSize)
    canvas.save(dbcon)
    if( missing(metadata) )  processRanges(con = dbcon, spdf = spdf, ID = ID) else
        processRanges(con = dbcon, spdf = spdf, ID = ID, metadata = metadata)
    bio.save(con = dbcon, loc = biotab,  ID = ID)
    rangeMap.save(dbcon)
    if(!missing(FUN) && is.character(FUN)){
        whichmaps = setdiff(names(biotab), ID)
        n = sapply(whichmaps, function(i)  {
            tabNam = if( inherits(FUN, 'character') ) paste(FUN, i, sep = '_') else i
            rangeMap.save(dbcon, FUN = FUN , biotab = substitute(biotab) %>% deparse ,  biotrait = i, tableName = tabNam)
            }) %>% sum
        }
    new('rangeMap', CON = dbcon) %>% show
    return(dbcon)
    }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.