Natural Forests of the World 2020

  • The Natural Forests of the World 2020 dataset provides a global 10-meter resolution map showing the probability of natural forests in 2020.

  • This dataset supports initiatives for forest conservation and monitoring, such as the European Union's Deforestation Regulation (EUDR).

  • The map distinguishes natural forests from planted forests, tree crops, and other land cover types using multi-modal temporal-spatial analysis of satellite and topographical data.

  • Users can apply a probability threshold to the provided probabilistic map to create a binary natural forest map.

  • The dataset is licensed under CC-BY 4.0 ShareAlike and requires attribution to Google.

projects/nature-trace/assets/forest_typology/natural_forest_2020_v1_0_collection
info

This dataset is part of a Publisher Catalog, and not managed by Google Earth Engine. Contact biosphere-models@google.com for bugs or view more datasets from the Nature Trace Catalog. Learn more about Publisher datasets.

Catalog Owner
Nature Trace
Dataset Availability
2020-01-01T00:00:00Z–2020-12-31T23:59:59Z
Dataset Provider
Earth Engine Snippet
ee.ImageCollection("projects/nature-trace/assets/forest_typology/natural_forest_2020_v1_0_collection")
Tags
biodiversity climate conservation deforestation eudr forest forest-biomass nature-trace publisher-dataset

Description

Natural Forests of the World 2020, provides a global map of natural forest probability for the year 2020 at a 10-meter resolution. It was developed to support initiatives like the European Union's Deforestation Regulation (EUDR) and other efforts for forest conservation and monitoring. The map represents the likelihood of an area being a natural forest, which includes primary, naturally regenerating secondary, and managed natural forests. It distinguishes these from planted forests, tree crops, and other land cover types. The dataset was created using a multi-modal temporal-spatial vision transformer model that analyzed seasonal multi-temporal Sentinel-2 satellite imagery and topographical data (elevation, slope, aspect based on TanDEM-X's Copernicus GLO-30 DEM). The data is provided as a probabilistic map, allowing users to apply a probability threshold to create a binary natural forest map tailored to their specific needs.

Limitations: While this map provides a valuable global baseline, users should be aware of several limitations in our map (assessed at the OA optimal probability threshold of 0.52):

  • The model can have difficulty distinguishing complex agroforestry systems (e.g., with shaded tree crops), and smallholder agricultural mosaics can be difficult to distinguish from natural forests.
  • Differentiating planted forests from naturally regenerating ones can be challenging, especially in boreal and some temperate zones, where natural forests have lower species diversity and are harvested with longer rotation times compared to the tropics.
  • Sparse natural forests, such as savanna, are often at the threshold of natural forest definition for the tree canopy height and coverage ratios. Forest type assignment immediately after a disturbance event (e.g., fire, logging) is inherently ambiguous. It may not be clear from satellite imagery whether the forest will regenerate naturally or if the land will be converted to another use (e.g., plantation, agriculture).
  • Other areas of potential confusion could include large parks within urban areas, or planted tree belts that meet forest definition criteria but are not natural.
  • The accuracy of our natural forest map is intrinsically linked to the quality and consistency of the various input datasets used for training label generation. These datasets were created using different methodologies, spatial resolutions, temporal ranges, and definitions. Some label layers were the outputs of other models, and are therefore limited by the quality of those models. While our approach aimed to harmonize sources and mitigate the impact of individual dataset errors, inconsistencies and inaccuracies in the underlying data could still influence the final map.

Bands

Pixel Size
10 meters

Bands

Name Min Max Pixel Size Description
B0 0 250 meters

Natural forest probabilities (scaled to [0-250]).

Terms of Use

Terms of Use

This dataset is licensed under CC-BY 4.0 and requires the following attribution: "This dataset is produced by Google".

Citations

Citations:
  • Maxim Neumann , Anton Raichuk, Radost Stanimirova, Michelle Sims , Sarah Carter, Elizabeth Goldman, Melanie Rey, Yuchang Jiang, Keith Anderson, Petra Poklukar, Katelyn Tarrio, Myroslava Lesiv, Steffen Fritz, Nicholas Clinton, Charlotte Stanton, Dan Morris, Drew Purves, "Natural forests of the world: A 2020 baseline for deforestation and degradation monitoring" (in review). doi:10.31223/X5ZX6P,

Explore with Earth Engine

Code Editor (JavaScript)

var probabilities =
    ee.ImageCollection(
          'projects/nature-trace/assets/forest_typology/natural_forest_2020_v1_0_collection')
        .mosaic()
        .select('B0');

Map.addLayer(
    probabilities.mask(probabilities.neq(0)),
    {min: 0, max: 250, palette: ['white', 'green']},
    'Natural forest probabilities');

Map.addLayer(
    probabilities.gte(0.5).mask(probabilities.gte(0.5)), {palette: 'teal'},
    'Natural forest map at threshold');
Open in Code Editor