- x
A GRaster
or GVector
.
- width
Numeric: For rasters -- Maximum distance cells must be from focal cells to be within the buffer. For rasters, if the buffering unit is "cells
", then to get n
cell widths, use n + epsilon
, where epsilon
is a small number (e.g., 0.001). The larger the buffer, this smaller this must be to ensure just n
cells are included.
For vectors, distance from the object to place the buffer. Negative values create "inside" buffers. Units are in the same units as the current coordinate reference system (e.g., degrees for WGS84 or NAD83, often meters for projected systems).
- unit
Character: Rasters -- Indicates the units of width
. Can be one of:
"cells"
: Units are numbers of cells.
"meters"
(default), "metres"
, or "m"
"kilometers"
or "km"
"feet"
or "ft"
"miles"
or "mi"
"nautical miles"
or "nmi"
Partial matching is used and case is ignored.
- method
Character: Rasters -- Only used if units
is "cells"
. Indicates the manner in which distances are calculated for adding of cells:
"Euclidean"
: Euclidean distance (default)
"Manhattan"
: "taxi-cab" distance
"maximum"
: Maximum of the north-south and east-west distances between points.
Partial matching is used and case is ignored.
- background
Numeric: Rasters -- Value to assign to cells that are not NA
and not part of the buffer (default is 0).
- lowMemory
Logical: Rasters -- Only used if buffering a raster and units
is not "meters"
. If FALSE
(default) use faster, memory-intensive procedure. If TRUE
then use the slower, low-memory version. To help decide which to use, consider using the low-memory version on a system with 1 GB of RAM for a raster larger than about 32000 x 32000 cells, or for a system with with 8 GB of RAM a raster larger than about 90000 x 90000 cells.
- capstyle, endCapStyle
Character: Vectors -- Style for ending the "cap" of buffers around lines. Valid options include "rounded"
, "square"
, and "flat
".
- dissolve
Logical (GVector
s): If TRUE
(default), dissolve all buffers after creation. If FALSE
, construct a buffer for each geometry. Note that overlapping buffers can cause this function to fail because it creates a topologically ambiguous polygon. Thus, using dissolve = TRUE
is recommended.
- dist
Vectors -- Same as width
.