blockSize.RdThis function can be used to suggest chunk sizes (always a number of entire rows), and corresponding row numbers, to be used when processing Raster* objects in chunks. Normally used together with writeValues.
# S4 method for class 'Raster'
blockSize(x, chunksize, n=nlayers(x), minblocks=4, minrows=1)Raster* object
Integer, normally missing. Can be used to set the block size; unit is number of cells. Block size is then computed in units of number of rows (always >= 1)
Integer. number of layers to consider. The function divides chunksize by n to determine blocksize
Integer. Minimum number of blocks
Integer. Minimum number of rows in each block
A list with three elements:
rows, the suggested row numbers at which to start the blocks for reading and writing,
nrows, the number of rows in each block, and,
n, the total number of blocks
r <- raster(system.file("external/test.grd", package="raster"))
blockSize(r)
#> $row
#> [1]  1 30 59 88
#> 
#> $nrows
#> [1] 29 29 29 28
#> 
#> $n
#> [1] 4
#>