R/correctSoilGrids.R

Defines functions correctSoilGrids

#' @title correctSoilGrids
#' @description Correct SoilGrids content
#' @param x magpie object provided by the read function
#' @return List of magpie objects with results on cellular level, weight, unit and description.
#' @author Kristine Karstens
#' @seealso
#' \code{\link{readSoilGrids}}
#' @examples
#'
#' \dontrun{
#'   readSource("SoilGrids", subtype="cstock_0_30", convert="onlycorrect")
#' }
#'
#' @import madrat
#' @import magclass


correctSoilGrids <- function(x){
  x <- toolConditionalReplace(x, conditions = c("is.na()","<0"), replaceby = 0)
  x <- toolCell2isoCell(x)

  return(x)
}
pik-piam/moinput documentation built on June 9, 2020, 12:23 p.m.