cdo_remapavg | R Documentation |
This module maps source points to target cells by calculating a statistical value from the source points. Each target cell contains the statistical value from all source points within that target cell. If there are no source points within a target cell, it gets a missing value. Depending on the chosen operator the minimum, maximum, range, sum, average, variance, standard deviation, skewness, kurtosis or median of source points is computed.
cdo_remapavg(ifile, grid = NULL, ofile = NULL)
cdo_remapkurt(ifile, grid = NULL, ofile = NULL)
cdo_remapmax(ifile, grid = NULL, ofile = NULL)
cdo_remapmean(ifile, grid = NULL, ofile = NULL)
cdo_remapmedian(ifile, grid = NULL, ofile = NULL)
cdo_remapmin(ifile, grid = NULL, ofile = NULL)
cdo_remaprange(ifile, grid = NULL, ofile = NULL)
cdo_remapskew(ifile, grid = NULL, ofile = NULL)
cdo_remapstd(ifile, grid = NULL, ofile = NULL)
cdo_remapstd1(ifile, grid = NULL, ofile = NULL)
cdo_remapsum(ifile, grid = NULL, ofile = NULL)
cdo_remapvar(ifile, grid = NULL, ofile = NULL)
cdo_remapvar1(ifile, grid = NULL, ofile = NULL)
ifile |
String with the path to the input file. |
grid |
STRING - Target grid description file or name |
ofile |
String with the path to the output file. |
remapmin Remap minimum Minimum value of the source points. remapmax Remap maximum Maximum value of the source points. remaprange Remap range Range (max-min value) of the source points. remapsum Remap sum Sum of the source points. remapmean Remap mean Mean of the source points. remapavg Remap average Average of the source points. remapstd Remap standard deviation Standard deviation of the source points. Normalize by n. remapstd1 Remap standard deviation (n-1) Standard deviation of the source points. Normalize by (n-1). remapvar Remap variance Variance of the source points. Normalize by n. remapvar1 Remap variance (n-1) Variance of the source points. Normalize by (n-1). remapskew Remap skewness Skewness of the source points. remapkurt Remap kurtosis Kurtosis of the source points. remapmedian Remap median Median of the source points.
Operators that output one or more files return a character vector to the output files.
Operators that output an indefinite number of files return a string with the basename of the files.
Operatos that don't return filenames return a character vector with the string output.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.