
- Dataset Availability
- 2019-01-01T00:00:00Z–2019-01-01T00:00:00
- Dataset Provider
- FAO Forestry Division (FPP 1km) FAO Forestry Division (FPP 5km)
- Earth Engine Snippet
-
ee.ImageCollection("FAO/SOFO/1/FPP")
Sign up for Earth Engine
Earth Engine is free to use for research, education, and nonprofit use.
To access this dataset in Earth Engine, please sign up for Earth Engine then return to this page.
- Tags
Description
The "Forest Proximate People" (FPP) dataset is one of the data layers contributing to the development of indicator #13, "number of forest-dependent people in extreme poverty," of the Collaborative Partnership on Forests (CPF) Global Core Set of forest-related indicators (GCS). The FPP dataset provides an estimate of the number of people living in or within 1 kilometer of forests (forest-proximate people) for the year 2019 with a pixel size of 100 meters at a global level. Find out more about the dataset.
Bands
Resolution
0.0009 meters
Bands
Name | Units | Description |
---|---|---|
FPP_1km |
Number of people/ha | Number of people living in or within 1 kilometer of forests. |
FPP_5km |
Number of people/ha | Number of people living in or within 5 kilometer of forests. |
Terms of Use
Terms of Use
Citations
FAO 2022. The State of the World's Forests (SOFO) - Forest pathways for green recovery and building inclusive, resilient and sustainable economies. FAO, Rome. https://www.fao.org/documents/card/en/c/cb9360en
Newton, P., Castle, S.E., Kinzer, A.T., Miller, D.C., Oldekop, J.A., Linhares-Juvenal, T., Pina, L., Madrid, M., & de Lamo, J. 2022. The number of forest- and tree-proximate people: a new methodology and global estimates, One Earth, 2020 doi:10.1016/j.oneear.2020.08.016,
DOIs
Explore with Earth Engine
Code Editor (JavaScript)
var coll = ee.ImageCollection('FAO/SOFO/1/FPP'); var image = coll.first().select('FPP_1km'); Map.setCenter(17.5, 20, 3); Map.addLayer( image, {min: 0, max: 12, palette: ['blue', 'yellow', 'red']}, 'Forest proximate people – 1km cutoff distance');