mergeTiles: Combine tiles into a full raster.

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Recursively combine tiles into a full GRASS raster.

Usage

1
mergeTiles(tileindex, blocksize = 2, outname)

Arguments

tileindex

The tileindex object created by createTiles() and modified by processTiles().

blocksize

The size of intermediate blocks to create. The default should not usually be changed.

outname

The name to use for the final GRASS raster.

Details

A common task is to import a raster into R, do some processing, and either write out a new raster, save some results in R, or both. This series of functions makes it possible to do so for a raster that is too large to fit in available memory in R. mergeTiles() is considerably more efficient than using r.patch for many tiles. See gparse for an example wrapping this process within a function.

Value

This function does not return any output to R.

Author(s)

Sarah Goslee <sarah.goslee@ars.usda.gov>

See Also

createTiles, processTiles, removeTiles, testFUN, gparse

Examples

1
2
3
4
5
6
7
8
## Not run: 
	# how to run
    tileindex <- createTiles("dem30", tilesize=tilesize) 
    tileindex <- processTiles(tileindex, baserast="dem30", FUN=testFUN)
    mergeTiles(tileindex, blocksize=blocksize, outname=outname)
    removeTiles(tileindex)

## End(Not run)

phiala/grassR documentation built on May 25, 2019, 2:55 a.m.