Skip to contents

Tools inherited from base R

Usage

# S3 method for class 'LASRalgorithm'
print(x, ...)

# S3 method for class 'LASRpipeline'
print(x, ...)

# S3 method for class 'LASRpipeline'
e1 + e2

# S3 method for class 'LASRpipeline'
c(...)

Arguments

x, e1, e2

lasR objects

...

lasR objects. Is equivalent to +

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 
#> -----------