Real Twig is a method to correct unrealistic cylinders in quantitative structure models (QSMs), especially overestimated small branch and twig cylinders. Real Twig is different than traditional allometric or statistical corrections. Real Twig uses real twig diameter measurements from corresponding tree species to inform individual branch taper models. Real Twig dynamically identifies realistic cylinders in a QSM using network analysis, general additive models, and real twig measurements, to model and correct unrealistic cylinders with a high degree of precision and accuracy when vetted against ground truth reference data.
Real Twig does much more than correct QSM cylinder radii. Real Twig includes tools for QSM visualization and analysis that are seamlessly compatible with base R and popular packages such as the Tidyverse. Real Twig also includes fast, vectorized functions for point cloud fractal analysis and visualization using the box-dimension metric. Also included is a novel database of twig diameter measurements for many common North American and European trees, on both the species and genus level.
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 cloudqsm_summary()
summarizes QSM diameter, height, volume,
and surface areasmooth_qsm()
connects cylinder end-to-end to smooth
branch visualizationplot_qsm()
plots QSMs and optionally their point
cloudsexport_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
QSM radii corrections are run as a chain of function that build on one another. The general processing chain is as follows:
Below are examples of how to quickly run Real Twig on TreeQSM and SimpleForest QSMs, 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)
# Calculate detailed tree metrics
<- tree_metrics(qsm$cylinder) metrics
# 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)
# Calculate detailed tree metrics
<- tree_metrics(qsm) metrics
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[[