Skip to contents

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, ...]]

Arguments

x, e1, e2

lasR objects

...

lasR objects. Is equivalent to +

i

index

Examples

algo1 <- rasterize(1, "max")
algo2 <- rasterize(4, "min")
print(algo1)
#> -----------
#> rasterize (uid:c0af8664d3e2)
#>   method : [max] 
#>   window : 1.00 
#>   res : 1.00 
#>   filter : [] 
#>   output : /tmp/Rtmp4RXQQ4/file257e4314cc5b.tif 
#> -----------
#> 
#> NULL
pipeline <- algo1 + algo2
print(pipeline)
#> -----------
#> rasterize (uid:c0af8664d3e2)
#>   method : [max] 
#>   window : 1.00 
#>   res : 1.00 
#>   filter : [] 
#>   output : /tmp/Rtmp4RXQQ4/file257e4314cc5b.tif 
#> -----------
#> rasterize (uid:62fdf99d504d)
#>   method : [min] 
#>   window : 4.00 
#>   res : 4.00 
#>   filter : [] 
#>   output : /tmp/Rtmp4RXQQ4/file257ea0d5ef.tif 
#> -----------
#> 
#> NULL