R/get_resolution.R

Defines functions get_resolution

Documented in get_resolution

#' get_resolution - Get the Raster Resolution of the Input Topography
#'
#' @param topo
#'
#' @return res
#' @export
#'
#' @examples
get_resolution <- function(topo){
  resolution <- res(as.raster(topo)) * 111111
  return(resolution)
}
JomaMinoza/LandslideR documentation built on May 3, 2024, 9:48 a.m.