मैंने 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');