Tools inherited from base R
Usage
# S3 method for class 'PipelinePtr'
print(x, ...)
# S3 method for class 'PipelinePtr'
e1 + e2
# S3 method for class 'PipelinePtr'
x[[i, ...]]
Examples
algo1 <- rasterize(1, "max")
algo2 <- rasterize(4, "min")
print(algo1)
#> -----------
#> rasterize (uid:b174b03c598d)
#> method : [max]
#> window : 1.00
#> res : 1.00
#> filter : []
#> output : /tmp/Rtmpy7LMdS/file268330bd325a.tif
#> -----------
#>
#> NULL
pipeline <- algo1 + algo2
print(pipeline)
#> -----------
#> rasterize (uid:b174b03c598d)
#> method : [max]
#> window : 1.00
#> res : 1.00
#> filter : []
#> output : /tmp/Rtmpy7LMdS/file268330bd325a.tif
#> -----------
#> rasterize (uid:9af8da2fd419)
#> method : [min]
#> window : 4.00
#> res : 4.00
#> filter : []
#> output : /tmp/Rtmpy7LMdS/file26835a22efe9.tif
#> -----------
#>
#> NULL