Create a Tiling Plan
Usage
tilePlan(type = c("spatial", "pixel", "point", "free"), ...)Arguments
- type
character. One of
"spatial","pixel","point","free". Type of plan to create.- ...
additional params passed to the specific constructor:
spatialTilePlan(),pixelTilePlan(),pointTilePlan(), orfreeTilePlan().
Examples
tilePlan("spatial")
#> Object of class spatialTilePlan
#> <empty>
tilePlan("pixel")
#> Object of class pixelTilePlan
#> tiles : 0
#> pxdim :
#> pxrows : 0
#> pxcol : 0
#> dim : 0, 0
#> pad : 0
tilePlan("point")
#> Object of class pointTilePlan
#> <empty>
tilePlan("free")
#> Object of class freeTilePlan
#> <empty>