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:a0ca)
#>   res : 1 
#>   window : 1 
#>   method : max 
#>   filter :  
#>   output : /tmp/RtmpsXR60U/file24ba7fd1d36b.tif 
#> -----------
pipeline <- algo1 + algo2
print(pipeline)
#>  -----------
#> rasterize (uid:a0ca)
#>   res : 1 
#>   window : 1 
#>   method : max 
#>   filter :  
#>   output : /tmp/RtmpsXR60U/file24ba7fd1d36b.tif 
#> -----------
#> rasterize (uid:d7b3)
#>   res : 4 
#>   window : 4 
#>   method : min 
#>   filter :  
#>   output : /tmp/RtmpsXR60U/file24ba5a81f9c5.tif 
#> -----------