本章节的内容主要是实现我们所选不同的波段影像添加,很多时候我们有了既定的公式表达式,但是Landsat的影像波段也不是全是按照B开头的,所以这里我们就需要用到一个非常关键的功能。select(selectors, names)从一个集合中的每个图像中选择带子。返回带有选择带的图像集合。参数。this:imagecollection(ImageCollection)。The ImageCollection instance.selectors (ListObject):A list of names, regexes or numeric indices specifying the bands to select.names (ListString, optional):A list of new names for the output bands. Must match the number of bands selected.Returns: ImageCollection一般情况下我们进行波段的换名称就用这个函数//原始的Landsat波段计算 var landsat = ee.ImageCollection('LANDSAT/LC09/C02/T1_L2') .select('SR_B1','SR_B4','SR_B3','SR_B2') print("original_landsat",landsat.fir