Questions tagged «stack»

4
QGIS中的图层堆叠栅格?
我有一些多光谱数据,其中各个波段是单独的Raster文件。 如何对这些栅格进行分层堆叠,以便获得一个具有3个波段的栅格,而不是3个不同的栅格? 在ERDAS和ArcGIS中这很容易做到,但是我还没有弄清楚如何在QGIS中做到这一点。

2
如何在Google Earth Engine中叠加乐队?
我已经在GEE中创建了一个Image集合,并且借助一个函数,我计算了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', …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.