0

我正在处理两个卫星数据集合。我想从“集合 1”中选择特定波段,将它们加入“集合 2”,然后运行一个函数。不幸的是,该函数不适用于连接的数据,尽管它适用于“集合 1”。

这是一个仅使用 Sentinel-2 的 B10 的示例

//identifying area and date
var geometry = ee.Geometry.Point([4,45]);

Map.centerObject(geometry,10);
var start = '2019-03-10';
var end   = '2019-05-10';


//my function
function testing(img){
  img = img.updateMask(img.select(['B10']).gt(200).focal_min(2).focal_max(2).not());
  return img;
}

//my two collections
var collection1 = ee.ImageCollection('COPERNICUS/S2').filterDate(start,end)
                  .filterBounds(geometry);
  
var B10s=collection1.select('B10');
//print('B10s',B10s);


var collection2 = ee.ImageCollection('COPERNICUS/S2_SR')
                  .filterDate(start,end)
                  .filterBounds(geometry);
                  
// joining the collections
var filtering = ee.Filter.equals({
  leftField: 'system:time_start',
  rightField: 'system:time_start'
});

var simpleJoin = ee.Join.inner();
var innerJoin = simpleJoin.apply(collection2, B10s, filtering);
var joined = innerJoin.map(function(feature) {
  return ee.Image.cat(feature.get('primary'), feature.get('secondary'));
});

print('Joined', joined);

//just to visualize one image
//var coll1 = ee.Image(collection1.first());
//Map.addLayer(coll1, {bands:['B2'], min:0, max:5000},'B2Coll1 test');

//running the function for collection 1 works
var test = collection1.map(testing);
var tess = ee.Image(test.first());
Map.addLayer(tess, {bands:['B2'], min:0, max:5000},'B2 test');

//here when running with the joined collection, there is a problem
var TestingJoined = joined.map(testing);

错误是:img.select(...).gt is not a function

我该如何进行这项工作?

4

2 回答 2

0

好的。我解决了。谢谢您的意见。我需要在函数中使用强制转换。现在它起作用了。

function testing(img){
  img = ee.Image(img).updateMask(ee.Image(img).select(['B10']).gt(200).focal_min(2).focal_max(2).not());
  return img;
}
于 2020-10-13T20:43:53.787 回答
0

调试时,连接是否按预期工作?日期时间太精确而无法完全加入有什么问题吗?

我要走的第二条路线是确保连接的对象与集合相同。我怀疑如果没有你投射它或其他东西(尽管我不熟悉这个库),情况会是这样。您映射到这些集合的“测试”功能可能仅适用于未连接的集合。如果您提供实际的“问题”或错误输出,那将非常有帮助。

于 2020-10-13T18:25:15.020 回答