/**** Start of imports. If edited, may not auto-convert in the playground. ****/
var canopy_vis = {"min":0,"max":50,"palette":["#010005","#150b37","#3b0964","#61136e","#85216b","#a92e5e","#cc4248","#e75e2e","#f78410","#fcae12","#f5db4c","#fcffa4"]},
    sd_vis = {"min":0,"max":15,"palette":["#0d0406","#241628","#36274d","#403a76","#3d5296","#366da0","#3488a6","#36a2ab","#44bcad","#6dd3ad","#aee3c0","#def5e5"]},
    canopy_height = ee.Image("users/nlang/ETH_GlobalCanopyHeight_2020_10m_v1"),
    standard_deviation = ee.Image("users/nlang/ETH_GlobalCanopyHeightSD_2020_10m_v1");
/***** End of imports. If edited, may not auto-convert in the playground. *****/
Map.addLayer(canopy_height, canopy_vis, 'Canopy top height');
Map.addLayer(standard_deviation, sd_vis, 'Standard deviation');
