-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
147 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
#' Calculate Thickness of Horizons Matching Logical Criteria | ||
#' | ||
#' This function calculates the cumulative (`method="cumulative"`, default) or maximum difference between (`method="minmax"`) horizons within a profile that match a defined pattern (`pattern`) or, more generally, any set of horizon-level logical expressions encoded in a function (`FUN`). | ||
#' | ||
#' @param x A SoilProfileCollection | ||
#' @param pattern character. A pattern to match in `hzdesgn`; used with the default `FUN` definition for regular expression pattern matching on horizons. | ||
#' @param hzdesgn character. A column containing horizon designations or other horizon-level character label used to identify matches; used with the default `FUN` definition. | ||
#' @param method character. Either `"cumulative"` (default) or `"minmax"`. See details. | ||
#' @param na.rm logical. Omit `NA` values in summaries of thickness and in matching? Default: `FALSE` | ||
#' @param FUN function. A function that returns a _logical_ vector equal in length to the number of horizons in `x`. See details. | ||
#' @param ... Additional arguments passed to the matching function `FUN`. | ||
#' | ||
#' @return A _data.frame_-like object (corresponding to the `aqp_df_class()` of `x`) with one row per profile in `x`. First column is always the profile ID which is followed by `"thickness"`. In `method="minmax"` the upper and lower boundaries used to calculate `"thickness"` are also returned as `"tmin"` and `"tmax"` columns, respectively. | ||
#' | ||
#' @details | ||
#' The two thickness methods currently available are: | ||
#' - `method="cumulative"` (default): cumulative thickness of horizons where `FUN` returns true | ||
#' - `method="minmax"`: maximum bottom depth minus minimum top depth of horizons where `FUN` returns true | ||
#' | ||
#' If a custom function (`FUN`) is used, it should accept arbitrary additional arguments via an ellipsis (`...`). | ||
#' It is not necessary to do anything with arguments, but the result should match the number of horizons found in the input SoilProfileCollection `x`. | ||
#' | ||
#' @export | ||
#' | ||
#' @examples | ||
#' data("jacobs2000") | ||
#' | ||
#' # cumulative thickness of horizon designations matching "Bt" | ||
#' thicknessOf(jacobs2000, "Bt") | ||
#' | ||
#' # maximum bottom depth minus minimum top depth of horizon designations matching "Bt" | ||
#' thicknessOf(jacobs2000, "Bt", method = "minmax") | ||
#' | ||
#' # cumulative thickness of horizon designations matching "A|B" | ||
#' thicknessOf(jacobs2000, "A|B") | ||
#' | ||
#' # maximum bottom depth minus minimum top depth of horizon designations matching "A|B" | ||
#' thicknessOf(jacobs2000, "A|B", method = "minmax") | ||
#' # note that the latter includes the thickness of E horizons between the A and the B | ||
#' | ||
#' # when using a custom function (be sure to accept ... and consider the effect of NA values) | ||
#' | ||
#' # calculate cumulative thickness of horizons containing >18% clay | ||
#' thicknessOf(jacobs2000, FUN = function(x, ...) !is.na(x[["clay"]]) & x[["clay"]] > 18) | ||
#' | ||
thicknessOf <- function(x, | ||
pattern = NULL, | ||
hzdesgn = guessHzDesgnName(x), | ||
method = "cumulative", | ||
FUN = function(x, pattern, hzdesgn, ...) grepl(pattern, x[[hzdesgn]]), | ||
na.rm = FALSE, | ||
...) { | ||
.internalTHK <- NULL | ||
.interalHZM <- NULL | ||
|
||
method <- match.arg(tolower(gsub("/", "", method)), c("cumulative", "minmax")) | ||
hzd <- horizonDepths(x) | ||
idn <- idname(x) | ||
|
||
h <- data.table::data.table(horizons(x)) | ||
h$.internalHZM <- FUN(x, pattern = pattern, hzdesgn = hzdesgn, na.rm = na.rm, ...) | ||
|
||
lid <- list(h[[idn]]) | ||
names(lid) <- idn | ||
if (method == "cumulative") { | ||
h$.internalTHK <- x[[hzd[2]]] - x[[hzd[1]]] | ||
res <- h[, list(thickness = sum(.internalTHK[.internalHZM], na.rm = na.rm)), by = lid] | ||
} else if (method == "minmax") { | ||
res <- h[, list(tmin = suppressWarnings(max(.SD[[2]][.internalHZM], na.rm = na.rm)), | ||
tmax = suppressWarnings(min(.SD[[1]][.internalHZM], na.rm = na.rm))), | ||
by = lid, .SDcols = c(hzd, ".internalHZM")] | ||
res$thickness <- res$tmax - res$tmin | ||
res$thickness[!is.finite(res$thickness)] <- 0L | ||
} else stop("unknown thickness method: ", shQuote(method), call. = FALSE) | ||
.as.data.frame.aqp(res, aqp_df_class(x)) | ||
} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.