Skip to content

Commit

Permalink
fixes #1568
Browse files Browse the repository at this point in the history
  • Loading branch information
rhijmans committed Jul 21, 2024
1 parent a031926 commit ee6696f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions man/resample.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,21 @@ If the origin and extent of the input and output are the same, you should consid

\code{near}: nearest neighbor. This method is fast, and it can be the preferred method if the cell values represent classes. It is not a good choice for continuous values. This is used by default if the first layer of \code{x} is categorical.

\code{bilinear}: bilinear interpolation. This is the default if the first layer of \code{x} is numeric (not categorical).
\code{bilinear}: bilinear interpolation. This is the default if the first layer of \code{x} is numeric (not categorical). (3x3 cell window).

\code{cubic}: cubic interpolation.
\code{cubic}: cubic interpolation. (5x5 cell window).

\code{cubicspline}: cubic spline interpolation.
\code{cubicspline}: cubic B-spline interpolation. (5x5 cell window).

\code{lanczos}: Lanczos windowed sinc resampling.
\code{lanczos}: Lanczos windowed sinc resampling. (7x7 cell window).

\code{sum}: the weighted sum of all non-NA contributing grid cells.

\code{min, q1, med, q3, max, average, mode, rms}: the minimum, first quartile, median, third quartile, maximum, mean, mode, or root-mean-square value of all non-NA contributing grid cells.

}


\item{threads}{logical. If \code{TRUE} multiple threads are used (faster for large files)}

\item{filename}{character. Output filename}
Expand Down

0 comments on commit ee6696f

Please sign in to comment.