Description Usage Arguments Value Author(s) Examples
View source: R/get_circle_fit.R
computes the 2d alpha shape, 2d convex hull a 3D set of points as well as ground diameter and diameter at breast height
To avoid collinearity a small random jitter is added to the points before alpha-shape computation.
1 2 3 4 | get_circle_fit(
input_cloud = data.frame(x = runif(20), y = runif(20), z = runif(20)),
plot_fit = FALSE
)
|
input_cloud |
A file or data.frame containing a tree point cloud with x y z. If file, it assumes first three columns to be x y z without header. Futher columns are ignored. |
plot_fit |
Should the circle fit be plotted. Default to FALSE. |
A .txt files containing: CPA, CH, Height, GD, DBH, etc.
Matthias Kunz, last updated: 26.11.2019
1 | get_circle_fit(data.frame(x=runif(20),y=runif(20), z=runif(20)), plot=FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.