timcumsum {cmsafops} | R Documentation |
Accumulate data of NetCDF file.
Description
Computes the accumulation of the given variable over time. The resulting outfile has the same dimensions as the infile.
Usage
timcumsum(
var,
infile,
outfile,
nc34 = 4,
overwrite = FALSE,
na_replace = "mean",
verbose = FALSE,
nc = NULL
)
Arguments
var |
Name of variable in infile (character). |
infile |
Character containing file name or path of input file. |
outfile |
Character containing file name or path of output file. If NULL, the input file is directly edited instead. |
nc34 |
NetCDF version of output file. If |
overwrite |
Logical; should existing output file be overwritten? If outfile is NULL, this parameter is ignored. |
na_replace |
Replacing NA values with either 'mean' or 'previous' for monthly mean or previous value, respectively (character). |
verbose |
logical; if TRUE, progress messages are shown |
nc |
Alternatively to |