Universal Code Hub Upgrade
Script Library
BasicForestAdvanced

Forest Carbon Stock Estimation

Estimate above-ground carbon stock from tree cover and VCF data.

Pipeline (1 steps)
  1. Estimate above-ground carbon stock from tree cover and VCF data.
Datasets
  • hansen-gfc
  • modis-vcf
AOI modes
adminasset
Simulated previewPaste the script in Earth Engine for live results
Outputs the script produces
map Map layers
map Zonal stats table
map Export GeoTIFF
map Area statistics
Open Code Editor ↗
forest-carbon.js · 5 lines
// Forest Carbon Stock Estimation
var hansen = ee.Image('UMD/hansen/global_forest_change_2023_v1_11');
var treecover = hansen.select('treecover2000');
var vcf = ee.ImageCollection('MODIS/061/MOD44B').first().select('Percent_Tree_Cover');
var result = treecover.clip(aoi);
#carbon#forest#biomass#estimation