Inventory data from Paracou, including understory trees, and Tapajos were used both as input to the TROLL assessment for the species list and as output to assess forest structure, neutral composition and species list.
Paracou is a large scale forest disturbance experiment set up by Cirad in 1982 that becomes in time a unique research site for the international scientific community in tropical forest ecology. https://paracou.cirad.fr/website/
read_tsv("outputs/inventories.tsv", show_col_types =FALSE) %>%filter(site =="Paracou", type =="default") %>%ggplot(aes(x, y, size = dbh, col = species)) +geom_point() +facet_wrap(~ plot) +scale_color_discrete(guide ="none") +theme_bw() +theme(axis.title =element_blank()) +scale_size(guide ="none", range =c(0.2, 2)) +coord_equal()
Tree distributions in the 2015 inventory of Paracou plots. Point size represents the diameter, and the colour the species.
Paracou - Understory
Forest plots in French Guiana (Paracou and Nouragues) and inventory and map all trees over one cm in height at the chest, in order to advance knowledge of the ecology and services of the Amazon ecosystem.
read_tsv("outputs/inventories.tsv", show_col_types =FALSE) %>%filter(site =="Paracou", type =="understory") %>%filter(!is.na(x), !is.na(y)) %>%ggplot(aes(x, y, size = dbh, col = species)) +geom_point() +scale_color_discrete(guide ="none") +theme_bw() +theme(axis.title =element_blank()) +scale_size(guide ="none", range =c(0.2, 2)) +coord_equal()
Tree distributions in the Understory inventory at Paracou. Point size represents the diameter, and the colour the species.
Tapajos
This dataset provides tree inventory, tree height, diameter at breast height (DBH), and estimated crown measurements from 30 plots located in the Tapajos National Forest, Para, Brazil collected in September 2010. The plots were located in primary forest, primary forest subject to reduced-impact selective logging (PFL) between 1999 and 2003, and secondary forest (SF) with different age and disturbance histories. Plots were centered on GLAS (the Geoscience Laser Altimeter System) LiDAR instrument footprints selected along two sensor acquisition tracks spanning a wide range in vertical structure and aboveground biomass. https://daac.ornl.gov/VEGETATION/guides/Forest_Inventory_Tapajos.html
Access: These data are available through the Oak Ridge National Laboratory (ORNL) Distributed Active Archive Center (DAAC).
Code
read_tsv("outputs/inventories.tsv", show_col_types =FALSE) %>%filter(site =="Tapajos", type =="default") %>%ggplot(aes(x, y, size = dbh, col = species)) +geom_point() +facet_wrap(~ plot) +scale_color_discrete(guide ="none") +theme_bw() +theme(axis.title =element_blank()) +scale_size(guide ="none", range =c(1, 4)) +coord_equal()
Tree distributions in the inventory of Tapajos plots. Point size represents the diameter, and the colour the species.
Airborne Lidar Scanning (ALS)
We evaluated tree height distributions using ALS data from 2015 at Paracou (unpublished data) and from 2012 at Tapajos (dos-Santos et al., 2019), which were processed into canopy height models with a standardised pipeline (Fischer et al., 2024). From both simulated and ALS-derived canopy height models, we derived the distribution of canopy height, expressed in proportion of 1-m2 pixels per 1-m height class.
Canpy Height Model (CHM) from Aerial Lidar Sensors (ALS) at Paracou an Tapajos.
Structure
Forest structure was simply assessed by DBH (m) classes using basal area (BA, m2/ha) and number of stems for each plots (uncertainty bars in Paracou data).
Size structure at the Paracou and Tapajos sites, expressed in terms of number of stems and basal area and including understorey trees at Paracou. Confidence intervals on inventory analysis at 95 % are shown with error bars and are based on among plots variations.
Size structure at the Paracou and Tapajos sites, expressed in terms of number of stems and basal area and including understorey trees at Paracou. Confidence intervals on inventory analysis at 95 % are shown with error bars and are based on among plots variations.
Species composition at the Paracou and Tapajos sites expressed in terms of species rank-abundance curve. Confidence intervals on inventory analysis at 95 % are shown with error bars and are based on among plots variations.