⚠️There's a newer version (1.0.2) of this package. Take me there.

R package that wraps the CSF algorithm for Airborne LiDAR ground filtering based on Cloth Simulation. It is made to work along with the lidR package.

Example using lidR <= 1.6.1

The lidR package in versions <= 1.6.1 does not implements the CSF algorithm yet. Users must write their own code:

library(lidR)
library(RCSF)

LASfile <- system.file("extdata", "Topography.laz", package="lidR")
las <- readLAS(LASfile, select = "xyz")
plot(las)

gnd <- CSF(las@data)

las@data[, Classification := 0L]
las@data[gnd, Classification := 2L]

plot(las, color = "Classification")

Example using lidR >= 2.0.0

The lidR package in versions >= 2.0.0 implements the CSF algorithm as one of the available ground segmentation algorithms.

library(lidR)

LASfile <- system.file("extdata", "Topography.laz", package="lidR")
las = readLAS(LASfile, select = "xyz")

las <- lasground(las, csf())

plot(las, color = "Classification")

Reference

W. Zhang, J. Qi*, P. Wan, H. Wang, D. Xie, X. Wang, and G. Yan, “An Easy-to-Use Airborne LiDAR Data Filtering Method Based on Cloth Simulation,” Remote Sens., vol. 8, no. 6, p. 501, 2016

Copy Link

Version

Down Chevron

Install

install.packages('RCSF')

Monthly Downloads

679

Version

1.0.1

License

Apache License 2.0

Last Published

November 14th, 2018

Functions in RCSF (1.0.1)