extend | R Documentation |
Extend returns an Raster* object with a larger spatial extent. The output Raster object has the outer minimum and maximum coordinates of the input Raster and Extent arguments. Thus, all of the cells of the original raster are included. See crop
if you (also) want to remove rows or columns.
There is also an extend method for Extent objects to enlarge (or reduce) an Extent. You can also use algebraic notation to do that (see examples).
This function has replaced function "expand" (to avoid a name conflict with the Matrix package).
## S4 method for signature 'Raster'
extend(x, y, value=NA, snap="near", filename='', ...)
## S4 method for signature 'Extent'
extend(x, y, ...)
x |
Raster or Extent object |
y |
If If |
value |
value to assign to new cells |
snap |
Character. One of "near", "in", or "out", to determine in which direction the extent should be aligned. To the nearest border, inwards or outwards |
filename |
Character (optional) |
... |
Additional arguments as for |
RasterLayer or RasterBrick, or Extent
Robert J. Hijmans and Etienne B. Racine (Extent method)
crop
, merge
r <- raster(xmn=-150, xmx=-120, ymx=60, ymn=30, ncol=36, nrow=18)
values(r) <- 1:ncell(r)
e <- extent(-180, 0, 0, 90)
re <- extend(r, e)
# extend with a number of rows and columns (at each side)
re2 <- extend(r, c(2,10))
# Extent object
e <- extent(r)
e
extend(e, 10)
extend(e, 10, -10, 0, 20)
e + 10
e * 2
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.