#'Compute the Global Surface Air Temperature (GSAT) anomalies #' #'The Global Surface Air Temperature (GSAT) anomalies are computed as the #'weighted-averaged surface air temperature anomalies over the global region. #' #'@param data A numerical array to be used for the index computation with the #' dimensions: 1) latitude, longitude, start date, forecast month, and member #' (in case of decadal predictions), 2) latitude, longitude, year, month and #' member (in case of historical simulations), or 3) latitude, longitude, year #' and month (in case of observations or reanalyses). This data has to be #' provided, at least, over the whole region needed to compute the index. #'@param data_lats A numeric vector indicating the latitudes of the data. #'@param data_lons A numeric vector indicating the longitudes of the data. #'@param type A character string indicating the type of data ('dcpp' for #' decadal predictions, 'hist' for historical simulations, or 'obs' for #' observations or reanalyses). #'@param lat_dim A character string of the name of the latitude dimension. The #' default value is 'lat'. #'@param lon_dim A character string of the name of the longitude dimension. The #' default value is 'lon'. #'@param mask An array of a mask (with 0's in the grid points that have to be #' masked) or NULL (i.e., no mask is used). This parameter allows to remove #' the values over land in case the dataset is a combination of surface air #' temperature over land and sea surface temperature over the ocean. Also, it #' can be used to mask those grid points that are missing in the observational #' dataset for a fair comparison between the forecast system and the reference #' dataset. The default value is NULL. #'@param monini An integer indicating the month in which the forecast system is #' initialized. Only used when parameter 'type' is 'dcpp'. The default value #' is 11, i.e., initialized in November. #'@param fmonth_dim A character string indicating the name of the forecast #' month dimension. Only used if parameter 'type' is 'dcpp'. The default value #' is 'fmonth'. #'@param sdate_dim A character string indicating the name of the start date #' dimension. Only used if parameter 'type' is 'dcpp'. The default value is #' 'sdate'. #'@param indices_for_clim A numeric vector of the indices of the years to #' compute the climatology for calculating the anomalies, or NULL so the #' climatology is calculated over the whole period. If the data are already #' anomalies, set it to FALSE. The default value is NULL.\cr #' In case of parameter 'type' is 'dcpp', 'indices_for_clim' must be relative #' to the first forecast year, and the climatology is automatically computed #' over the actual common period for the different forecast years. #'@param year_dim A character string indicating the name of the year dimension #' The default value is 'year'. Only used if parameter 'type' is 'hist' or #' 'obs'. #'@param month_dim A character string indicating the name of the month #' dimension. The default value is 'month'. Only used if parameter 'type' is #' 'hist' or 'obs'. #'@param member_dim A character string indicating the name of the member #' dimension. The default value is 'member'. Only used if parameter 'type' is #' 'dcpp' or 'hist'. #' #'@return A numerical array of the GSAT anomalies with the dimensions of: #' 1) sdate, forecast year, and member (in case of decadal predictions); #' 2) year and member (in case of historical simulations); or #' 3) year (in case of observations or reanalyses). #' #'@examples #' ## Observations or reanalyses #' obs <- array(1:100, dim = c(year = 5, lat = 19, lon = 37, month = 12)) #' lat <- seq(-90, 90, 10) #' lon <- seq(0, 360, 10) #' index_obs <- GSAT(data = obs, data_lats = lat, data_lons = lon, type = 'obs') #' #' ## Historical simulations #' hist <- array(1:100, dim = c(year = 5, lat = 19, lon = 37, month = 12, member = 5)) #' lat <- seq(-90, 90, 10) #' lon <- seq(0, 360, 10) #' index_hist <- GSAT(data = hist, data_lats = lat, data_lons = lon, type = 'hist') #' #' ## Decadal predictions #' dcpp <- array(1:100, dim = c(sdate = 5, lat = 19, lon = 37, fmonth = 24, member = 5)) #' lat <- seq(-90, 90, 10) #' lon <- seq(0, 360, 10) #' index_dcpp <- GSAT(data = dcpp, data_lats = lat, data_lons = lon, type = 'dcpp', monini = 1) #' #'@author Carlos Delgado-Torres, \email{carlos.delgado@bsc.es} #'@author Núria Pérez-Zanón, \email{nuria.perez@bsc.es} #'@author Roberto Bilbao, \email{roberto.bilbao@bsc.es} #' #'@importFrom ClimProjDiags WeightedMean #'@import multiApply #'@export GSAT <- function(data, data_lats, data_lons, type, lat_dim = 'lat', lon_dim = 'lon', mask = NULL, monini = 11, fmonth_dim = 'fmonth', sdate_dim = 'sdate', indices_for_clim = NULL, year_dim = 'year', month_dim = 'month', member_dim = 'member') { ## Input Checks # data if (is.null(data)) { stop("Parameter 'data' cannot be NULL.") } if (!is.numeric(data)) { stop("Parameter 'data' must be a numeric array.") } # data_lats and data_lons part1 if (!(class(data_lats) == 'numeric' | class(data_lats) == 'integer')) { stop("Parameter 'data_lats' must be a numeric vector.") } if (!(class(data_lons) == 'numeric' | class(data_lons) == 'integer')) { stop("Parameter 'data_lons' must be a numeric vector.") } # type if (!type %in% c('dcpp', 'hist', 'obs')) { stop("Parameter 'type' must be 'dcpp', 'hist', or 'obs'.") } # lat_dim if (!(is.character(lat_dim) & length(lat_dim) == 1)) { stop("Parameter 'lat_dim' must be a character string.") } if (!lat_dim %in% names(dim(data))) { stop("Parameter 'lat_dim' is not found in 'data' dimension.") } # lon_dim if (!(is.character(lon_dim) & length(lon_dim) == 1)) { stop("Parameter 'lon_dim' must be a character string.") } if (!lon_dim %in% names(dim(data))) { stop("Parameter 'lon_dim' is not found in 'data' dimension.") } # data_lats and data_lons part2 if (dim(data)[lat_dim] != length(data_lats)){ stop(paste0("The latitude dimension of parameter 'data' must be the same", " length of parameter 'data_lats'.")) } if (dim(data)[lon_dim] != length(data_lons)){ stop(paste0("The longitude dimension of parameter 'data' must be the same", " length of parameter 'data_lons'.")) } # mask if (!is.null(mask)) { if (is.array(mask) & identical(names(dim(mask)), c(lat_dim,lon_dim)) & identical(as.integer(dim(mask)), c(length(data_lats), length(data_lons)))) { ## To mask those grid point that are missing in the observations mask <- s2dv::Reorder(data = mask, order = c(lat_dim, lon_dim)) fun_mask <- function(data, mask){ data[mask == 0] <- NA return(data) } data <- multiApply::Apply(data = data, target_dims = c(lat_dim, lon_dim), fun = fun_mask, mask = mask)$output1 } else { stop(paste0("Parameter 'mask' must be NULL (no mask) or a numerical array ", "with c(lat_dim, lon_dim) dimensions and 0 in those grid ", "points that have to be masked.")) } } # monini if (type == 'dcpp') { if (!is.numeric(monini) | monini %% 1 != 0 | monini < 1 | monini > 12) { stop("Parameter 'monini' must be an integer from 1 to 12.") } } # fmonth_dim if (type == 'dcpp') { if (!(is.character(fmonth_dim) & length(fmonth_dim) == 1)) { stop("Parameter 'fmonth_dim' must be a character string.") } if (!fmonth_dim %in% names(dim(data))) { stop("Parameter 'fmonth_dim' is not found in 'data' dimension.") } } # sdate_dim if (type == 'dcpp') { if (!(is.character(sdate_dim) & length(sdate_dim) == 1)) { stop("Parameter 'sdate_dim' must be a character string.") } if (!sdate_dim %in% names(dim(data))) { stop("Parameter 'sdate_dim' is not found in 'data' dimension.") } } # indices_for_clim if (!is.null(indices_for_clim)) { if (!class(indices_for_clim) %in% c('numeric', 'integer') & !(is.logical(indices_for_clim) & !any(indices_for_clim))) { stop(paste0("The parameter 'indices_for_clim' must be a numeric vector ", "or NULL to compute the anomalies based on the whole period, ", "or FALSE if data are already anomalies")) } } # year_dim if (type == 'hist' | type == 'obs') { if (!(is.character(year_dim) & length(year_dim) == 1)) { stop("Parameter 'year_dim' must be a character string.") } if (!year_dim %in% names(dim(data))) { stop("Parameter 'year_dim' is not found in 'data' dimension.") } } # month_dim if (type == 'hist' | type == 'obs') { if (!(is.character(month_dim) & length(month_dim) == 1)) { stop("Parameter 'month_dim' must be a character string.") } if (!month_dim %in% names(dim(data))) { stop("Parameter 'month_dim' is not found in 'data' dimension.") } } # member_dim if (type == 'hist' | type == 'dcpp') { if (!(is.character(member_dim) & length(member_dim) == 1)) { stop("Parameter 'member_dim' must be a character string.") } if (!member_dim %in% names(dim(data))) { stop("Parameter 'member_dim' is not found in 'data' dimension.") } } data <- ClimProjDiags::WeightedMean(data = data, lon = data_lons, lat = data_lats, region = NULL, londim = which(names(dim(data)) == lon_dim), latdim = which(names(dim(data)) == lat_dim)) INDEX <- .Indices(data = data, type = type, monini = monini, indices_for_clim = indices_for_clim, fmonth_dim = fmonth_dim, sdate_dim = sdate_dim, year_dim = year_dim, month_dim = month_dim, member_dim = member_dim) return(INDEX) }