From a803e2db3300f6d05128a3fab678f38f7ab14036 Mon Sep 17 00:00:00 2001 From: eduzenli Date: Wed, 22 Mar 2023 16:56:14 +0100 Subject: [PATCH] different 'int + calibration' methods can be tested --- R/Intbc.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/Intbc.R b/R/Intbc.R index 86bb5a9..5a5275b 100644 --- a/R/Intbc.R +++ b/R/Intbc.R @@ -68,7 +68,7 @@ CST_Intbc <- function(exp, obs, target_grid, bc_method, int_method = NULL, points = NULL, method_point_interp = NULL, lat_dim = "lat", lon_dim = "lon", - sdate_dim = "sdate", member_dim = "member", region = NULL, ncores = 1) + sdate_dim = "sdate", member_dim = "member", region = NULL, ncores = 1,...) { if (!inherits(exp,'s2dv_cube')) { stop("Parameter 'exp' must be of the class 's2dv_cube'") @@ -82,7 +82,7 @@ CST_Intbc <- function(exp, obs, target_grid, bc_method, int_method = NULL, point obs_lats = obs$lat, obs_lons = obs$lon, target_grid = target_grid, int_method = int_method, bc_method = bc_method, points = points, source_file = exp$source_files[1], method_point_interp = method_point_interp, lat_dim = lat_dim, lon_dim = lon_dim, - sdate_dim = sdate_dim, member_dim = member_dim, region = region, ncores = ncores) + sdate_dim = sdate_dim, member_dim = member_dim, region = region, ncores = ncores,...) # Modify data, lat and lon in the origina s2dv_cube, adding the downscaled data exp$data <- res$data -- GitLab