R/assess_sp_uncertainty.R

Defines functions assess_sp_uncertainty

Documented in assess_sp_uncertainty

#'  @title  Assesses the spatial uncertainty of a grid system by calculating half of the diagonal of a grid cell
#'
#' @param res_x Resolution of a grid system along horizontal axis
#' @param res_y Resolution of a grid system along vertical axis
#'
assess_sp_uncertainty <-  function(res_x,res_y){
  output = (res_x^2+res_y^2)^0.5/2
  return (output)
}


#res_x, resolution of a grid system along horizontal axis
#res_y, resolution of a grid system along vertical axis
# t
BiogeographyLab/gridder documentation built on April 21, 2024, 2:32 a.m.