Real Twig is a method to correct unrealistic cylinders in quantitative structure models (QSMs), different than traditional allometric or statistical corrections. Small branch and twig cylinders are overestimated in QSMs due to technical limitations in current LiDAR sensor technology. Real Twig overcomes these limitations by using real and direct twig diameter measurements from corresponding tree species to inform individual path taper models in a QSM. Real Twig dynamically identifies realistic cylinders in a QSM using network analysis, general additive models, and direct twig measurements, to model and correct unrealistic cylinders with a high degree of precision and accuracy when vetted against ground truth reference data. The Real Twig method is presented here as the R package, rTwig.
rTwig includes a novel database of twig diameter measurements for many common North American and European trees, to make the method immediately accessible to the user. In addition, rTwig includes fast and efficient tools for QSM visualization and analysis that are seamlessly compatible with the R ecosystem, and for point cloud fractal analysis and visualization using the box-dimension metric.
A complete description and validation of Real Twig can be read here:
Aidan Morales, and David W. MacFarlane. “Reducing tree volume overestimation in quantitative structure models using modeled branch topology and direct twig measurements.” Forestry: An International Journal of Forest Research, 2024, pp. 1-16. https://doi.org/10.1093/forestry/cpae046.
The main goal of Real Twig was to correct volume overestimation in QSMs caused by the limitations of LiDAR sensors for better non-destructive above ground biomass (AGB) estimates. Real Twig incorporates direct twig measurement into the QSM, resulting in models that not only have accurate volume metrics, but are also visually realistic, independent of tree species or size. For example, shown below is a 300+ year old white oak tree (Quercus alba), with and without Real Twig.
plot_qsm()
can plot QSMs and point clouds, using
rgl
as the 3D display, and C++ via Rcpp
to
efficiently build the cylinders. The cylinders, simulated point cloud,
and skeleton can all be plotted and colored by any variable or user
supplied color palette. It can also visualize stem triangulation meshes
from TreeQSM.
The goal of rTwig was to provide users with tools to visualize and
analyze QSM metrics without being tied to any particular QSM software.
To that end, standardize_qsm()
provides a consistent naming
convention between supported QSMs, making it easy to combine and analyze
QSMs from different sources. tree_metrics()
calculates all
of the major QSM metrics between all supported software.
prune_qsm()
can virtually prune a tree using multiple input
parameters. cluster_cloud()
can transfer all QSM metrics
directly onto an unorganized point cloud, or simulate a virtual point
cloud. See the vignettes or function reference pages for more
details.
rTwig currently supports TreeQSM, SimpleForest, Treegraph, and aRchi
run_rtwig()
runs the Real Twig method on a QSMimport_qsm()
imports a QSM created by TreeQSM
(.mat)import_treegraph()
imports a QSM created by Treegraph
(.json)standardize_qsm()
standardizes QSM variable names
across supported softwareupdate_cylinders()
updates cylinder relationships and
adds new QSM variablescorrect_radii
models QSM paths and corrects cylinder
radiitree_metrics()
generates detailed tree metrics and a
simulated point cloudcluster_cloud()
transfers QSM variables to a point
cloud or simulates a point cloudqsm_summary()
summarises QSM diameter, height, volume,
and surface areasmooth_qsm()
connects cylinder end-to-end to smooth
branch visualizationplot_qsm()
plots QSMs and optionally their point
cloudsprune_qsm()
prunes a QSM by cylinder attributes,
height, or diameter classesexport_mesh()
exports a QSM as a mesh object
(.ply)export_mat()
exports a QSM in a MATLAB format
(.mat)box_dimension()
calculates and visualizes the
structural complexity of a point cloudYou can install the released version of rTwig
from CRAN with:
install.packages("rTwig")
You can install the development version of rTwig
from GitHub with:
# install.packages("devtools")
::install_github("aidanmorales/rTwig") devtools
Below are examples of how to quickly run and visualize Real Twig, using example data from the package. See the vignettes for more details on a general workflow and best practices.
# Load the Real Twig library
library(rTwig)
# File path to QSM
<- system.file("extdata/QSM.mat", package = "rTwig")
file
# Correct QSM cylinders
<- run_rtwig(file, twig_radius = 4.23)
qsm
# Plot the result
plot_qsm(qsm$cylinder)
# View detailed tree metrics
$metrics qsm
# Load the Real Twig library
library(rTwig)
# File path to QSM
<- system.file("extdata/QSM.csv", package = "rTwig")
file
# Correct QSM cylinders
<- run_rtwig(file, twig_radius = 4.23)
qsm
# Plot the result
plot_qsm(qsm$cylinder)
# View detailed tree metrics
$metrics qsm
# Load the Real Twig library
library(rTwig)
# File path to QSM
<- "path_to_treegraph_json"
file
# Correct QSM cylinders
<- run_rtwig(file, twig_radius = 4.23)
qsm
# Plot the result
plot_qsm(qsm$cylinder)
# View detailed tree metrics
$metrics qsm
# Load the Real Twig library
library(rTwig)
# File path to QSM
<- system.file("extdata/QSM2.csv", package = "rTwig")
file
# Correct QSM cylinders
<- run_rtwig(file, twig_radius = 4.23)
qsm
# Plot the result
plot_qsm(qsm$cylinder)
# View detailed tree metrics
$metrics qsm
rTwig also includes an efficient function written in C++ via
Rcpp
for fractal analysis using the voxel-counting method.
Below is an example of how to quickly calculate box-dimension on a point
cloud using example data from the package. See the vignette for more
details and explanation.
# Load a point cloud
<- system.file("extdata/cloud.txt", package = "rTwig")
file <- read.table(file)
cloud
# Calculate box-dimension
<- box_dimension(cloud)
output 2]]$slope output[[