Tools inherited from base R
Examples
algo1 <- rasterize(1, "max")
algo2 <- rasterize(4, "min")
print(algo1)
#> -----------
#> rasterize (uid:7835)
#> res : 1
#> window : 1
#> method : max
#> filter :
#> output : /tmp/RtmpUXX9w7/file1f1631c65a8f.tif
#> -----------
pipeline <- algo1 + algo2
print(pipeline)
#> -----------
#> rasterize (uid:7835)
#> res : 1
#> window : 1
#> method : max
#> filter :
#> output : /tmp/RtmpUXX9w7/file1f1631c65a8f.tif
#> -----------
#> rasterize (uid:1307)
#> res : 4
#> window : 4
#> method : min
#> filter :
#> output : /tmp/RtmpUXX9w7/file1f167e2514ea.tif
#> -----------