前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Google Earth Engine(GEE)——ImageCollection.fromImages, argument ‘images‘: Invalid type. Expected type

Google Earth Engine(GEE)——ImageCollection.fromImages, argument ‘images‘: Invalid type. Expected type

作者头像
此星光明
发布2024-02-02 14:07:36
1610
发布2024-02-02 14:07:36
举报

当我们遇到下面问题时,我们就是可能嵌套类型太多了,所以我们需要去掉原有的括号,也就是括号嵌套太多了,所以我们用在打印list时我们就需要脱掉外面的一层括号,这样才能正确展示,这里我们首先看看错误提示

错误:

ImageCollection (Error)

ImageCollection.fromImages, argument 'images': Invalid type.

Expected type: List<Image<unknown bands>>.

Actual type: List<List<Image<[LST_Day_1km]>>>. Actual value: [[<Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>], [<Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>], [<Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>], [<Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>], [<Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>, <Image<[LST_Day_1km]>>]]

原始代码:

代码语言:javascript
复制
var ROI = ee.FeatureCollection("projects/geemijan/assets/Bangladesh");

var modis  = ee.ImageCollection("MODIS/006/MOD11A2") 
                .select('LST_Day_1km')
                .filterDate('2012-01-01','2016-12-31')
                .filterBounds(ROI)


Map.setOptions('SATELLITE')

Map.addLayer(ROI)
Map.centerObject(ROI,5)

 
var LST_Res = function(image){
  var LST_temp =  image.toFloat().multiply(0.02).subtract(273.15)
  image = image.addBands(LST_temp);
  
  return image;
}

var LST_new = modis.map(LST_Res)

var modis = LST_new.select('LST_Day_1km')
            .map(function(img){
              var d = ee.Date(ee.Number(img.get('system:time_start')));
              var m = ee.Number(d.get('month'));
              var y = ee.Number(d.get('year'));
              
              return img.set({'month':m, 'year':y})
            })
print(modis)           
var months = ee.List.sequence(1,12)
var years = ([2012, 2013, 2014, 2015, 2016])

var byYearMonth = ee.ImageCollection.fromImages(
  years.map(function(y){
    return months.map(function(m){
      return modis.filterMetadata('year','equals',y)
                  .filterMetadata('month','equals',m)
                  .select('LST_Day_1km').mean()
                  .set('year',y)
                  .set('month',m)
                  .set('date', ee.Date.fromYMD(y,m,1))
    });
  }) 
  )

print( byYearMonth  )

此处的需要一个函数:

flatten()

Flattens collections of collections.

Arguments:

this:collection (FeatureCollection):

The input collection of collections.

Returns: FeatureCollection

flatten()

Flattens any sublists into a single list.

Arguments:

this:list (List)

Returns: List

修改后的代码:

代码语言:javascript
复制
var modis  = ee.ImageCollection("MODIS/006/MOD11A2") 
                .select('LST_Day_1km')
                .filterDate('2012-01-01','2016-12-31')
                .filterBounds(ROI)


Map.setOptions('SATELLITE')

Map.addLayer(ROI)
Map.centerObject(ROI,5)

 
var LST_Res = function(image){
  var LST_temp =  image.toFloat().multiply(0.02).subtract(273.15)
  image = image.addBands(LST_temp);
  
  return image;
}

var LST_new = modis.map(LST_Res)

var modis = LST_new.select('LST_Day_1km')
            .map(function(img){
              var d = ee.Date(ee.Number(img.get('system:time_start')));
              var m = ee.Number(d.get('month'));
              var y = ee.Number(d.get('year'));
              
              return img.set({'month':m, 'year':y})
            })
print(modis)           
var months = ee.List.sequence(1,12)
// var years = ([2012, 2013, 2014, 2015, 2016]
var years = ee.List.sequence(2012,2016)

var byYearMonth = ee.ImageCollection.fromImages(
  years.map(function(y){
    return months.map(function(m){
      return modis.filterMetadata('year','equals',y)
                  .filterMetadata('month','equals',m)
                  .select('LST_Day_1km').mean()
                  .set('year',y)
                  .set('month',m)
                  .set('date', ee.Date.fromYMD(y,m,1))
    });
  }).flatten() 
  )

print( byYearMonth  )
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-02-01,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Arguments:
  • Returns: FeatureCollection
  • Arguments:
  • Returns: List
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档