我是编码新手,刚开始使用Google地球引擎代码编辑器。 我在Google地球引擎提供的实验2上:https://docs.google.com/document/d/1NojoqhGbsBnIWE2OSwYCgMmRxeZDn7F1g3kkNuMGJ1E/edit
当完成实用编号1.a.v.我收到两个错误。
请参阅以下完整代码:
var myd09 = ee.ImageCollection('MODIS/006/MYD09GA');
// Define a region of interest as a point at SFO airport.
var sfoPoint = ee.Geometry.Point(-122.3774, 37.6194);
// Center the map at that point.
Map.centerObject(sfoPoint, 16);
// Get a surface reflectance image from the MODIS MYD09GA collection.
var modisImage = ee.Image(myd09.filterDate('2011-08-28').first());
// Use these MODIS bands for red, green, blue, respectively.
var modisBands = ['sur_refl_b01', 'sur_refl_b04', 'sur_refl_b03'];
// Define visualization parameters for MODIS.
var modisVis = {bands: modisBands, min: 0, max: 3000};
// Add the MODIS image to the map.
Map.addLayer(modisImage, modisVis, 'MODIS');
// Get the scale of the data from the first band's projection:
var modisScale =
modisImage.select('sur_refl_b01').projection().nominalScale();
print('MODIS scale:', modisScale);
我收到的错误是:
1)数量(错误) Image.select:参数'input'是必需的。 2)MODIS:图层错误:资产不是图像或ImageCollection。
是否有人能够帮助我解决方案或指出我正确的方向!
谢谢你, 哈丽特威尔逊
答案 0 :(得分:0)
是的,如果您打印图像(以查看其信息),例如:
print(modisImage)
你会发现它是 null ,所以我打印出了这个集合:
print(myd09)
并发现该集合于2016年开始,因此只需更改过滤日期:
var modisImage = ee.Image(myd09.filterDate('2016-08-11').first());
答案 1 :(得分:0)