The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.

MBA interpolates irregularly and regularly spaced data
using multilevel B-spline approximation. The package provides functions
for estimating smooth surfaces on a regular grid and for predicting
surface values at arbitrary point locations.
Install the CRAN release with:
install.packages("MBA")Install the development version from GitHub with:
remotes::install_github("finleya/MBA")library(MBA)
data(LIDAR)
set.seed(1)
train <- sample(seq_len(nrow(LIDAR)), 500)
xyz <- LIDAR[train, ]
surf <- mba.surf(xyz, no.X = 100, no.Y = 100, extend = TRUE)
image(surf$xyz.est, xaxs = "r", yaxs = "r")
pts <- mba.points(
xyz = xyz,
xy.est = LIDAR[-train, c("x", "y")],
h = 8,
verbose = FALSE
)
head(pts$xyz.est)The package provides:
mba.surf().mba.points().sp output for gridded surfaces.LIDAR example dataset for interpolation
examples.The MBA implementation calls portions of the SINTEF
Multilevel B-spline Library written by Oyvind Hjelle and implements
methods developed in:
Lee, S., Wolberg, G., and Shin, S. Y. (1997). Scattered data interpolation with multilevel B-splines. IEEE Transactions on Visualization and Computer Graphics, 3(3), 229-244. doi:10.1109/2945.620490.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.