Nothing
#'Calculate spatial area-weighted average of multidimensional arrays
#'
#'This function computes a spatial area-weighted average of n-dimensional arrays
#'being possible to select a region and to add a mask to be applied when
#'computing the average.
#'
#'@param data A numeric array with named dimensions, representing the data to be
#' applied the weights. It should have at least the latitude dimension and it
#' can have more other dimensions.
#'@param lon A numeric vector of longitude locations of the cell centers of the
#' grid of \code{data}. This vector must be of the same length as the longitude
#' dimension in the parameter \code{data} (in degrees).
#'@param lat A numeric vector of latitude locations of the cell centers of the
#' grid of \code{data}. This vector must be of the same length as the latitude
#' dimension in the parameter \code{data} (in degrees).
#'@param region A vector of length four indicating the minimum longitude, the
#' maximum longitude, the minimum latitude and the maximum latitude of the
#' region to be averaged.
#'@param mask A matrix with the same spatial dimensions of \code{data}. It can
#' contain either a) TRUE where the value at that position is to be accounted
#' for and FALSE where not, or b) numeric values, where those greater or equal
#' to 0.5 are to be accounted for, and those smaller are not. Attention: if the
#' longitude and latitude dimensions of the data and mask coincide in length,
#' the user must ensure the dimensions of the mask are in the same order as the
#' dimensions in the array provided in the parameter \code{data}.
#'@param londim A character string indicating the name of the longitudinal
#' dimension. The default value is 'lon'.
#'@param latdim A character string indicating the name of the latitudinal
#' dimension. The default value is 'lat'.
#'@param na.rm A logical value indicating whether missing values should be
#' stripped before the computation proceeds, by default it is set to TRUE.
#'@param ncores An integer indicating the number of cores to use for parallel
#' computation. The default value is NULL.
#'
#'@return An array, matrix or vector containig the area-weighted average with
#'the same dimensions as \code{data}, except for the spatial longitude and
#'latitude dimensions, which disappear.
#'
#'@examples
#'# Example 1:
#'data <- 1:(2 * 3 * 4 * 5)
#'dim(data) <- c(lon = 2, lat = 3, time = 4, model = 5)
#'lat <- c(1, 10, 20)
#'lon <- c(1, 10)
#'a <- WeightedMean(data = data, lon = lon, lat = lat, region = NULL)
#'
#'mask <- c(0, 1, 0, 1, 0, 1)
#'dim(mask) <- c(lon = 2, lat = 3)
#'a <- WeightedMean(data = data, lon = lon, lat = lat, mask = mask)
#'
#'region <- c(1, 10, 1, 10)
#'a <- WeightedMean(data = data, lon = lon, lat = lat, region = region,
#' mask = mask)
#'
#'# Example 2:
#'data <- 1:(2 * 3 * 4)
#'dim(data) <- c(lon = 2, lat = 3, time = 4)
#'lat <- c(1, 10, 20)
#'lon <- c(1, 10)
#'a <- WeightedMean(data = data, lon = lon, lat = lat)
#'
#'@import multiApply
#'@export
WeightedMean <- function(data, lon, lat, region = NULL, mask = NULL,
londim = 'lon', latdim = 'lat', na.rm = TRUE,
ncores = NULL) {
# Check inputs
# data
if (is.null(data)) {
stop("Parameter 'data' cannot be NULL.")
}
if (!is.array(data)) {
stop("Parameter 'data' must be a numeric array.")
}
dim_names <- names(dim(data))
if (is.null(dim_names)) {
stop("Parameter 'data' must have dimension names.")
}
# lon, lat
if (is.null(lon) | is.null(lat)) {
stop("Parameters 'lon' and 'lat' cannot be NULL.")
}
if (!is.numeric(lon) | !is.numeric(lat)) {
stop("Parameters 'lon' and 'lat' must be numeric.")
}
if (!is.null(dim(lon)) | !is.null(dim(lat))) {
if (length(dim(lon)) == 1 & length(dim(lat)) == 1) {
lon <- as.vector(lon)
lat <- as.vector(lat)
} else {
stop("Parameters 'lon' and 'lat' need to be a vector.")
}
}
# londim
if (is.numeric(londim)) {
warning("Numeric 'londim' is deprecated, use dimension names instead. The ",
"corresponding dimension name will be assigned.")
londim <- dim_names[londim]
}
if (!is.character(londim)) {
stop("Parameter 'londim' must be a character string.")
}
if (length(londim) > 1) {
warning("Parameter 'londim' must be of length 1. Only the first value ",
"will be used.")
londim <- londim[1]
}
if (!londim %in% names(dim(data))) {
stop("Parameter 'londim' is not found in 'data'.")
}
if (dim(data)[londim] != length(lon)) {
stop(paste0("The longitudinal dimension of parameter 'data' must be of the ",
"same length as parameter 'lon'."))
}
# latdim
if (is.numeric(latdim)) {
warning("Numeric 'latdim' is deprecated, use dimension names instead. The ",
"corresponding dimension name will be assigned.")
latdim <- dim_names[latdim]
}
if (!is.character(latdim)) {
stop("Parameter 'latdim' must be a character string.")
}
if (length(latdim) > 1) {
warning("Parameter 'latdim' must be of length 1. Only the first value ",
"will be used.")
latdim <- latdim[1]
}
if (!latdim %in% names(dim(data))) {
stop("Parameter 'latdim' is not found in 'data'.")
}
if (dim(data)[latdim] != length(lat)) {
stop(paste0("The latitudinal dimension of parameter 'data' must be of the ",
"same length as parameter 'lat'."))
}
# region
if (!is.null(region)) {
if (length(region) != 4) {
stop(paste0("The region argument has to be of length four indicating ",
"the minimum longitude, the maximum longitude, the minimum ",
"latitude and the maximum latitude of the region to be averaged."))
}
}
# mask
if (!is.null(mask)) {
if (!all(dim(data)[which(names(dim(data)) %in% c(londim, latdim))] %in%
dim(mask)[which(names(dim(mask)) %in% c(londim, latdim))])) {
stop("Parameter 'mask' must have the same spatial dimensions of data.")
}
}
# na.rm
if (!is.logical(na.rm) | length(na.rm) > 1) {
stop("Parameter 'na.rm' must be one logical value.")
}
# ncores
if (!is.null(ncores)) {
if (!is.numeric(ncores) | length(ncores) > 1) {
stop("Parameter 'ncores' must be either NULL or a positive integer.")
} else if (ncores %% 1 != 0 | ncores <= 0) {
stop("Parameter 'ncores' must be a positive integer.")
}
}
if (!is.null(region)) {
aux <- SelBox(data, lon = lon, lat = lat, region = region, londim = londim,
latdim = latdim, mask = mask)
data <- aux$data
lon <- aux$lon
lat <- aux$lat
if (!is.null(mask)) {
mask <- aux$mask
}
}
# Compute the weights
cosphi <- t(array(cos(lat * pi / 180), dim = c(length(lat), length(lon))))
nblat <- length(lat)
nblon <- length(lon)
dlon <- diff(lon) * pi / 180
dlon <- c(dlon, dlon[1])
dlon <- array(dlon, dim = c(nblon, nblat))
dlat <- diff(lat) * pi / 180
dlat <- c(dlat, dlat[1])
dlat <- t(array(dlat, dim = c(nblat, nblon)))
weight <- (dlon * dlat * cosphi)
if (is.null(mask)) {
res <- Apply(data = list(data),
target_dims = c(londim, latdim),
fun = .WeightedMean,
mask = NULL,
weight = weight,
na.rm = na.rm,
ncores = ncores)$output1
} else {
res <- Apply(data = list(data, mask),
target_dims = c(londim, latdim),
fun = .WeightedMean,
weight = weight,
na.rm = na.rm,
ncores = ncores)$output1
}
return(res)
}
.WeightedMean <- function(data, mask = NULL, weight, na.rm = TRUE) {
if (!is.null(mask)) {
data[mask < 0.5] <- NA
}
weight[is.na(data)] <- NA
coeff <- sum(weight, na.rm = na.rm)
mean <- sum(weight * data, na.rm = na.rm) / coeff
return(mean)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.