forplotR
is an R package for processing forest plot data, generating
herbarium-ready spreadsheets, organizing voucher folders, creating
spatial overviews of plot individuals, and visualizing plot maps
interactively.
You can install the development version of forplotR
from
GitHub with:
# install.packages("devtools")
devtools::install_github("DBOSlab/forplotR")
library(forplotR)
Below are the description of the four main functions
(fp_herb_converter
, mk_voucher_dirs
, plot_for_balance
and
plot_html_map
) available in the package and how to use them.
This code is purposed to convert forest plot census data into a herbarium spreadsheet format. The function reads a ForestPlots-format field dataset and an empty herbarium template, and outputs a filled herbarium data frame (and Excel file) with taxonomy, location, and collector information. It ensures required metadata (location, coordinates, etc.) are provided and adds any relevant notes (e.g., diameter, census notes) to the herbarium sheet. The default herbarium format is JABOT, with support for BRAHMS or a custom format (user-specified column mapping).
library(forplotR)
herbarium_df <- fp_herb_converter(
forestplots_file_path = NULL,
herb_file_path = NULL,
language = "en",
herbarium_format = "jabot",
country = "Brazil",
majorarea = NULL,
minorarea = NULL,
protectedarea = NULL,
locnotes = NULL,
project = NULL,
collector = NULL,
addcoll = NULL,
lat = NULL,
long = NULL,
alt = NULL,
dir = "Results_rainfor_herb",
filename = "rainfor_to_herb"
)
By specifying the language
argument as “en”, “pt”, or “es”, the
function automatically translates Rainfor field codes (e.g., “A” for
tree condition, “5” for canopy exposure) into their full descriptive
meanings and embeds them in standardized herbarium notes.
These notes integrate both automatic code translations and manual field observations. For example:
Tree, 24.83cm DBH, with peeling bark, small buttress roots, bark with tiny reddish plates, crown completely exposed to vertical and lateral light in a 45 degree curve. Individual #3 in the subplot 1, x = 1.5m, y = 2.5m.
In this output: - “with peeling bark” and “crown completely exposed…” are automatically derived from Rainfor codes; - “small buttress roots” and “bark with tiny reddish plates” are taken from the field notes manually entered in the ForestPlots spreadsheet.
This process ensures clear, standardized and multilingual descriptions for herbarium records, supporting integration across botanical databases.
This function creates a folder structure for organizing voucher images or files. It is especially useful for large projects where images of herbarium specimens or field vouchers need to be grouped by collector, number, or taxonomic name.
mk_voucher_dirs(input_df = my_dataframe,
base_dir = "herbarium_vouchers",)
Each row in the input data frame generates a subdirectory like
herbarium_vouchers/Family_name/Genus_name/Voucher_name
, making file
organization more efficient.
This function plots the balance of taxonomic representation in the herbarium dataset using bar plots. It helps assess the sampling effort by family, genus, or species.
plot_for_balance(
fp_file_path = "data/forestplot.xlsx",
plot_size = 1,
subplot_size = 10,
highlight_palms = TRUE,
dir = "Results_map_plot",
filename = "plot_specimen"
)
The function generates A full PDF report with plot metadata and navigable sections including subplot maps; an Excel spreadsheet with the collection percentages (overall and per subplot) and tag numbers for collected and not collected individuals.
This function creates an interactive HTML map using leaflet to visualize collection localities. It is useful for reporting or exploring the spatial distribution of vouchers.
plot_html_map(
fp_file_path = "data/forestplot.xlsx",
vertex_coords = "data/vertex.xlsx",
map_type = "street",
voucher_imgs = "voucher_imgs",
dir = "Results_plot_map_",
filename = "plot_map"
)
The function generates a standalone HTML file with markers for each collection point and optional labels, which can be opened in any web browser.
Full function documentation and articles are available at the forplotR
website.
Ottino, G.C. & Cardoso, D. 2025. forplotR: Streamlined Forest Plot Data Management and Visualization in R. https://github.com/dboslab/forplotR