lidR (version 2.1.0)

knnidw: Spatial Interpolation Algorithm

Description

This function is made to be used in grid_terrain or lasnormalize. It implements an algorithm for spatial interpolation. Interpolation is done using a k-nearest neighbour (KNN) approach with an inverse-distance weighting (IDW).

Usage

knnidw(k = 10, p = 2)

Arguments

k

numeric. Number of k-nearest neighbours. Default 10.

p

numeric. Power for inverse-distance weighting. Default 2.

See Also

Other spatial interpolation algorithms: kriging, tin

Examples

Run this code
# NOT RUN {
LASfile <- system.file("extdata", "Topography.laz", package="lidR")
las = readLAS(LASfile)

# plot(las)

dtm = grid_terrain(las, algorithm = knnidw(k = 6L, p = 2))

plot(dtm, col = terrain.colors(50))
plot_dtm3d(dtm)
# }

Run the code above in your browser using DataCamp Workspace