10 research outputs found

    Accuracy, realism and general applicability of European forest models

    Get PDF
    Forest models are instrumental for understanding and projecting the impact of climate change on forests. A considerable number of forest models have been developed in the last decades. However, few systematic and comprehensive model comparisons have been performed in Europe that combine an evaluation of modelled carbon and water fluxes and forest structure. We evaluate 13 widely used, state-of-the-art, stand-scale forest models against field measurements of forest structure and eddy-covariance data of carbon and water fluxes over multiple decades across an environmental gradient at nine typical European forest stands. We test the models\u27 performance in three dimensions: accuracy of local predictions (agreement of modelled and observed annual data), realism of environmental responses (agreement of modelled and observed responses of daily gross primary productivity to temperature, radiation and vapour pressure deficit) and general applicability (proportion of European tree species covered). We find that multiple models are available that excel according to our three dimensions of model performance. For the accuracy of local predictions, variables related to forest structure have lower random and systematic errors than annual carbon and water flux variables. Moreover, the multi-model ensemble mean provided overall more realistic daily productivity responses to environmental drivers across all sites than any single individual model. The general applicability of the models is high, as almost all models are currently able to cover Europe\u27s common tree species. We show that forest models complement each other in their response to environmental drivers and that there are several cases in which individual models outperform the model ensemble. Our framework provides a first step to capturing essential differences between forest models that go beyond the most commonly used accuracy of predictions. Overall, this study provides a point of reference for future model work aimed at predicting climate impacts and supporting climate mitigation and adaptation measures in forests

    Accuracy, realism and general applicability of European forest models

    Get PDF
    Forest models are instrumental for understanding and projecting the impact of climate change on forests. A considerable number of forest models have been developed in the last decades. However, few systematic and comprehensive model comparisons have been performed in Europe that combine an evaluation of modelled carbon and water fluxes and forest structure. We evaluate 13 widely used, state-of-the-art, stand-scale forest models against field measurements of forest structure and eddy-covariance data of carbon and water fluxes over multiple decades across an environmental gradient at nine typical European forest stands. We test the models' performance in three dimensions: accuracy of local predictions (agreement of modelled and observed annual data), realism of environmental responses (agreement of modelled and observed responses of daily gross primary productivity to temperature, radiation and vapour pressure deficit) and general applicability (proportion of European tree species covered). We find that multiple models are available that excel according to our three dimensions of model performance. For the accuracy of local predictions, variables related to forest structure have lower random and systematic errors than annual carbon and water flux variables. Moreover, the multi-model ensemble mean provided overall more realistic daily productivity responses to environmental drivers across all sites than any single individual model. The general applicability of the models is high, as almost all models are currently able to cover Europe's common tree species. We show that forest models complement each other in their response to environmental drivers and that there are several cases in which individual models outperform the model ensemble. Our framework provides a first step to capturing essential differences between forest models that go beyond the most commonly used accuracy of predictions. Overall, this study provides a point of reference for future model work aimed at predicting climate impacts and supporting climate mitigation and adaptation measures in forests.Peer reviewe

    The PROFOUND Database for evaluating vegetation models and simulating climate impacts on European forests

    Get PDF
    Process-based vegetation models are widely used to predict local and global ecosystem dynamics and climate change impacts. Due to their complexity, they require careful parameterization and evaluation to ensure that projections are accurate and reliable. The PROFOUND Database (PROFOUND DB) provides a wide range of empirical data on European forests to calibrate and evaluate vegetation models that simulate climate impacts at the forest stand scale. A particular advantage of this database is its wide coverage of multiple data sources at different hierarchical and temporal scales, together with environmental driving data as well as the latest climate scenarios. Specifically, the PROFOUND DB provides general site descriptions, soil, climate, CO2, nitrogen deposition, tree and forest stand level, and remote sensing data for nine contrasting forest stands distributed across Europe. Moreover, for a subset of five sites, time series of carbon fluxes, atmospheric heat conduction and soil water are also available. The climate and nitrogen deposition data contain several datasets for the historic period and a wide range of future climate change scenarios following the Representative Concentration Pathways (RCP2.6, RCP4.5, RCP6.0, RCP8.5). We also provide pre-industrial climate simulations that allow for model runs aimed at disentangling the contribution of climate change to observed forest productivity changes. The PROFOUND DB is available freely as a "SQLite" relational database or "ASCII" flat file version (at https://doi.org/10.5880/PIK.2020.006/; Reyer et al., 2020). The data policies of the individual contributing datasets are provided in the metadata of each data file. The PROFOUND DB can also be accessed via the ProfoundData R package (https://CRAN.R- project.org/package=ProfoundData; Silveyra Gonzalez et al., 2020), which provides basic functions to explore, plot and extract the data for model set-up, calibration and evaluation.Peer reviewe

    Diameter, height and species of 42 million trees in three European landscapes generated from field data and airborne laser scanning data

    Full text link
    Ecology and forestry sciences are using an increasing amount of data to address a wide variety of technical and research questions at the local, continental and global scales. However, one type of data remains rare: fine-grain descriptions of large landscapes. Yet, this type of data could help address the scaling issues in ecology and could prove useful for testing forest management strategies and accurately predicting the dynamics of ecosystem services. Here we present three datasets describing three large European landscapes in France, Poland and Slovenia down to the tree level. Tree diameter, height and species data were generated combining field data, vegetation maps and airborne laser scanning (ALS) data. Together, these landscapes cover more than 100~000~ha and consist of more than 42 million trees of 51 different species. Alongside the data, we provide here a simple method to produce high-resolution descriptions of large landscapes using increasingly available data: inventory and ALS data. We evaluated the overall reliability of our workflow by comparing the stands dominant heights measured by ALS to those calculated from the trees we generated. Overall, the landscapes we generated are in good agreement with the landscapes they aim to reproduce

    I-MAESTRO data

    Full text link
    Here we present three datasets describing three large European landscapes in France (Bauges Geopark - 89,000 ha), Poland (Milicz forest district - 21,000 ha) and Slovenia (SneĆŸnik forest - 4,700 ha) down to the tree level. Individual trees were generated combining inventory plot data, vegetation maps and Airborne Laser Scanning (ALS) data. Together, these landscapes (hereafter virtual landscapes) cover more than 100,000 ha including about 64,000 ha of forest and consist of more than 42 million trees of 51 different species. For each virtual landscape we provide a table (in .csv format) with the following columns: - cellID25: the unique ID of each 25x25 mÂČ cell - sp: species latin names - n: number of trees - dbh: tree diameter at breast height (cm) - h: tree height (m) We also provide, for each virtual landscape, a raster (in .asc format) with the cell IDs (cellID25) which makes data spatialisation possible. The v2.0.0 presents the algorithm in its final state. Finally, we provide a proof of how our algorithm makes it possible to reach the total BA and the BA proportion of broadleaf trees provided by the ALS mapping using the alpha correction coefficient and how it maintains the Dg ratios observed on the field plots between the different species (see algorithm presented in the associated Open Research Europe article). Below is an example of R code that opens the datasets and creates a tree density map. ------------------------------------------------------------ # load package library(raster) library(dplyr) # set work directory setwd() # define path to the I-MAESTRO_data folder # load tree data tree <- read.csv2('./milicz/trees.csv', sep = ',') # load spatial data cellID <- raster('./milicz/cellID25.asc') # convert raster into dataframe cellIDdf <- as.data.frame(cellID) # calculate tree density from tree dataframe dens % group_by(cellID25) %>% summarise(n = sum(n)) # merge the two dataframes dens <- left_join(cellIDdf, dens) # add density to raster cellIDdens<−densdens <- densn # plot density map plot(cellID$dens)This work was carried out within the framework of the I-Maestro project, supported under the umbrella of ERA-NET Cofund ForestValue by ADEME (FR), FNR (DE), MIZS (SI), NCN (PL). ForestValue has received funding from the European Union's Horizon 2020 research and innovation program under grant agreement n°773324. This work was also supported by the GRAINE program of ADEME (FR) in the framework of the PROTEST project (convention n°1703C0069)

    Accuracy, realism and general applicability of European forest models

    No full text
    Forest models are instrumental for understanding and projecting the impact of climate change on forests. A considerable number of forest models have been developed in the last decades. However, few systematic and comprehensive model comparisons have been performed in Europe that combine an evaluation of modelled carbon and water fluxes and forest structure. We evaluate 13 widely used, state-of-the-art, stand-scale forest models against field measurements of forest structure and eddy-covariance data of carbon and water fluxes over multiple decades across an environmental gradient at nine typical European forest stands. We test the models' performance in three dimensions: accuracy of local predictions (agreement of modelled and observed annual data), realism of environmental responses (agreement of modelled and observed responses of daily gross primary productivity to temperature, radiation and vapour pressure deficit) and general applicability (proportion of European tree species covered). We find that multiple models are available that excel according to our three dimensions of model performance. For the accuracy of local predictions, variables related to forest structure have lower random and systematic errors than annual carbon and water flux variables. Moreover, the multi-model ensemble mean provided overall more realistic daily productivity responses to environmental drivers across all sites than any single individual model. The general applicability of the models is high, as almost all models are currently able to cover Europe's common tree species. We show that forest models complement each other in their response to environmental drivers and that there are several cases in which individual models outperform the model ensemble. Our framework provides a first step to capturing essential differences between forest models that go beyond the most commonly used accuracy of predictions. Overall, this study provides a point of reference for future model work aimed at predicting climate impacts and supporting climate mitigation and adaptation measures in forests.ISSN:1354-1013ISSN:1365-248

    Significant increase in natural disturbance impacts on European forests since 1950

    Get PDF
    Over the last decades, the natural disturbance is increasingly putting pressure on European forests. Shifts in disturbance regimes may compromise forest functioning and the continuous provisioning of ecosystem services to society, including their climate change mitigation potential. Although forests are central to many European policies, we lack the long-term empirical data needed for thoroughly understanding disturbance dynamics, modeling them, and developing adaptive management strategies. Here, we present a unique database of >170,000 records of ground-based natural disturbance observations in European forests from 1950 to 2019. Reported data confirm a significant increase in forest disturbance in 34 European countries, causing on an average of 43.8 million m3 of disturbed timber volume per year over the 70-year study period. This value is likely a conservative estimate due to under-reporting, especially of small-scale disturbances. We used machine learning techniques for assessing the magnitude of unreported disturbances, which are estimated to be between 8.6 and 18.3 million m3/year. In the last 20 years, disturbances on average accounted for 16% of the mean annual harvest in Europe. Wind was the most important disturbance agent over the study period (46% of total damage), followed by fire (24%) and bark beetles (17%). Bark beetle disturbance doubled its share of the total damage in the last 20 years. Forest disturbances can profoundly impact ecosystem services (e.g., climate change mitigation), affect regional forest resource provisioning and consequently disrupt long-term management planning objectives and timber markets. We conclude that adaptation to changing disturbance regimes must be placed at the core of the European forest management and policy debate. Furthermore, a coherent and homogeneous monitoring system of natural disturbances is urgently needed in Europe, to better observe and respond to the ongoing changes in forest disturbance regimes

    Accuracy, realism and general applicability of European forest models

    Full text link
    Forest models are instrumental for understanding and projecting the impact of climate change on forests. A considerable number of forest models have been developed in the last decades. However, few systematic and comprehensive model comparisons have been performed in Europe that combine an evaluation of modelled carbon and water fluxes and forest structure. We evaluate 13 widely used, state-of-the-art, stand-scale forest models against field measurements of forest structure and eddy-covariance data of carbon and water fluxes over multiple decades across an environmental gradient at nine typical European forest stands. We test the models' performance in three dimensions: accuracy of local predictions (agreement of modelled and observed annual data), realism of environmental responses (agreement of modelled and observed responses of daily gross primary productivity to temperature, radiation and vapour pressure deficit) and general applicability (proportion of European tree species covered). We find that multiple models are available that excel according to our three dimensions of model performance. For the accuracy of local predictions, variables related to forest structure have lower random and systematic errors than annual carbon and water flux variables. Moreover, the multi-model ensemble mean provided overall more realistic daily productivity responses to environmental drivers across all sites than any single individual model. The general applicability of the models is high, as almost all models are currently able to cover Europe's common tree species. We show that forest models complement each other in their response to environmental drivers and that there are several cases in which individual models outperform the model ensemble. Our framework provides a first step to capturing essential differences between forest models that go beyond the most commonly used accuracy of predictions. Overall, this study provides a point of reference for future model work aimed at predicting climate impacts and supporting climate mitigation and adaptation measures in forests

    The PROFOUND database for evaluating vegetation models and simulating climate impacts on forests

    No full text
    Process-based vegetation models are widely used to predict local and global ecosystem dynamics and climate change impacts. Due to their complexity, they require careful parameterization and evaluation to ensure that projections are accurate and reliable. The PROFOUND Database (PROFOUND DB) provides a wide range of empirical data to calibrate and evaluate vegetation models that simulate climate impacts at the forest stand scale. A particular advantage of this database is its wide coverage of multiple data sources at different hierarchical and temporal scales, together with environmental driving data as well as the latest climate scenarios. Specifically, the PROFOUND DB provides general site descriptions, soil, climate, CO2, nitrogen deposition, tree and forest stand-level, as well as remote sensing data for nine contrasting forest stands distributed across Europe. Moreover, for a subset of five sites, time series of carbon fluxes, atmospheric heat conduction, and soil water are also available. The climate and nitrogen deposition data contain several datasets for the historic period and a wide range of future climate change scenarios following the Representative Concentration Pathways (RCP2.6, RCP4.5, RCP6.0, RCP8.5). We also provide pre-industrial climate simulations that allow for model runs aimed at disentangling the contribution of climate change to observed forest productivity changes. The PROFOUND DB is available freely as a SQLite relational database or ASCII flat file version (at https://doi.org/10.5880/PIK.2019.008). The data policies of the individual, contributing datasets are provided in the metadata of each data file. The PROFOUND DB can also be accessed via the ProfoundData R-package (https://github.com/COST-FP1304-PROFOUND/ProfoundData), which provides basic functions to explore, plot, and extract the data for model set-up, calibration and evaluation
    corecore