GEEでImageコレクションを作成し、関数を使用してNDVIインデックスを計算し、それをマッピングして、NDVIをバンドとして使用する別のコレクションを作成しました。
次に、画像コレクション全体のNDVIバンドを1つの画像に積み上げた画像を作成します。したがって、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');