R/build_grid_checks.R

Defines functions build_grid_check_vars

# 
# This function does the checks for the grid-builders

build_grid_check_vars <- function(coords, npts) { 
  
  # Check that all args are non-null
  if ( is.null(coords) || is.null(npts)) { 
    stop('One or more arguments is NULL')
  }
  
}

Try the rollply package in your browser

Any scripts or data that you put into this service are public.

rollply documentation built on May 30, 2017, 8:07 a.m.