🔗 Pixel Time-Series Chart Version
📌 Code Snippet to load and visualize a model in Google Earth Engine - Code Editor:
// Replace 'TEWA' and '2010' with your species and year of interest.
var demoImage = ee.Image('projects/rnationalmodel/assets/TEWA_mosaic_2010')
.select([0]); // Selects the first band (population prediction)
// Display the raster on the map
Map.addLayer(demoImage, {min: 0, max: 1, palette: ['blue', 'green', 'red']}, 'Demo Raster');
// Zoom the map to North America
Map.setCenter(-98.5, 55, 4);