Tools inherited from base R
Examples
algo1 <- rasterize(1, "max")
algo2 <- rasterize(4, "min")
print(algo1)
#> -----------
#> rasterize (uid:bc3a)
#> res : 1
#> window : 1
#> method : max
#> filter :
#> output : /tmp/RtmpNwgKVd/file246b14e3ea6c.tif
#> -----------
pipeline <- algo1 + algo2
print(pipeline)
#> -----------
#> rasterize (uid:bc3a)
#> res : 1
#> window : 1
#> method : max
#> filter :
#> output : /tmp/RtmpNwgKVd/file246b14e3ea6c.tif
#> -----------
#> rasterize (uid:1b04)
#> res : 4
#> window : 4
#> method : min
#> filter :
#> output : /tmp/RtmpNwgKVd/file246b51c22166.tif
#> -----------