Script Library
BasicForestAdvanced
Forest Carbon Stock Estimation
Estimate above-ground carbon stock from tree cover and VCF data.
Pipeline (1 steps)
- Estimate above-ground carbon stock from tree cover and VCF data.
Datasets
- hansen-gfc
- modis-vcf
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
// 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);# Forest Carbon Stock Estimation
import ee
hansen = ee.Image('UMD/hansen/global_forest_change_2023_v1_11')
treecover = hansen.select('treecover2000')
vcf = ee.ImageCollection('MODIS/061/MOD44B').first().select('Percent_Tree_Cover')
result = treecover.clip(aoi)