Description Usage Arguments Details Value Examples
Merge Raster* objects to form a new Raster object with a larger spatial extent. If objects overlap, the values get priority in the same order as the arguments, but NA
values are ignored (except when overlap=FALSE
). See subs
to merge a Raster*
object and a data.frame
.
1 2 3 4 5 6 7 8 |
x |
Raster* or Extent object |
y |
Raster* if |
... |
additional Raster or Extent objects (and/or arguments for writing files as in |
tolerance |
numeric. permissible difference in origin (relative to the cell resolution). See |
filename |
character. Output filename (optional) |
overlap |
logical. If |
ext |
Extent object (optional) to limit the output to that extent |
The Raster objects must have the same origin and resolution. In areas where the Raster objects overlap, the values of the Raster object that is first in the sequence of arguments will be retained. If you would rather use the average of cell values, or do another computation, you can use mosaic
instead of merge.
RasterLayer or RasterBrick
1 2 3 4 5 6 7 8 9 10 11 12 13 | r1 <- raster(xmx=-150, ymn=60, ncols=30, nrows=30)
values(r1) <- 1:ncell(r1)
r2 <- raster(xmn=-100, xmx=-50, ymx=50, ymn=30)
res(r2) <- c(xres(r1), yres(r1))
values(r2) <- 1:ncell(r2)
rm <- merge(r1, r2)
# if you have many RasterLayer objects in a list
# you can use do.call:
x <- list(r1, r2)
# add arguments such as filename
# x$filename <- 'test.tif'
m <- do.call(merge, x)
|
Loading required package: sp
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.