ฉันได้สร้างคอลเลกชันรูปภาพใน GEE และด้วยความช่วยเหลือของฟังก์ชั่นฉันได้คำนวณดัชนี NDVI และแมปมันเพื่อสร้างคอลเลกชันอื่นที่มี NDVI เป็นวงดนตรี
ตอนนี้ฉันต้องการสร้างภาพซ้อนกับแถบ NDVI ของการเก็บภาพทั้งหมดเป็นภาพเดียว ดังนั้นควรเป็น NDVI_1, NDVI_2 เป็นต้น ...
ฉันจะทำสิ่งนี้ได้อย่างไร ฉันกำลังวางรหัสที่แสดงคอลเลกชัน NDVI ที่ฉันมีจนถึงตอนนี้
// Collection of Images
var collection = ee.ImageCollection([feb1,feb2,Mar2,April1, April2, May1, May2, Jun1,Jun2,
July2, Aug2, Sep1, Sep2,Oct1, Oct2, Nov1, Nov2, Dec1, Dec2 ]);
//Using the following function,NDVI of the entire collection is computed
var indicesS2 = function(scene)
{ var ndvi = scene.normalizedDifference(['B8', 'B4']).rename('NDVI');
var image = ee.Image()
.set('system:time_start', ee.Date(scene.get('system:time_start')));
return image.addBands([ndvi]).clip(Sheikhupura);
};
var NDVIcollection = collection.map(indicesS2);
print (NDVIcollection, 'NDVI');