公告:凡是在 
2025 年 4 月 15 日前註冊使用 Earth Engine 的非商業專案,都必須
驗證非商業用途資格,才能繼續存取。如未在 2025 年 9 月 26 日前完成驗證,存取權可能會暫停。
  
        
 
       
     
  
  
  
    
  
  
  
    
      ee.ImageCollection.select
    
    
      
    
    
      
      透過集合功能整理內容
    
    
      
      你可以依據偏好儲存及分類內容。
    
  
  
      
    
  
  
  
  
  
    
  
  
    
    
    
  
  
從集合中的每張圖片選取波段。
傳回包含所選波段的圖像集合。
| 用量 | 傳回 | 
|---|
| ImageCollection.select(selectors, names) | ImageCollection | 
| 引數 | 類型 | 詳細資料 | 
|---|
| 這個: imagecollection | ImageCollection | ImageCollection 執行個體。 | 
| selectors | List<Object> | 名稱、正則運算式或數字索引清單,用於指定要選取的頻帶。 | 
| names | List<String> (選用) | 輸出波段的新名稱清單。必須與所選頻帶數量相符。 | 
  
  
  範例
  
    
  
  
    
    
  
  
  
  
    
    
    
      程式碼編輯器 (JavaScript)
    
    
  // A Sentinel-2 surface reflectance image collection.
var col = ee.ImageCollection('COPERNICUS/S2_SR')
    .filterBounds(ee.Geometry.Point(-122.152, 37.336))
    .filterDate('2021-01-01', '2021-02-01');
print('All band names', col.first().bandNames());
print('Select a band by name',
      col.select('B11').first().bandNames());
print('Select a band by index',
      col.select(10).first().bandNames());
print('Select bands using a list',
      col.select(['B11', 'B8', 'B3']).first().bandNames());
print('Select bands by an argument series',
      col.select('B11', 'B8', 'B3').first().bandNames());
print('Mixing string and integer selectors is valid',
      col.select(10, 'B8', 2).first().bandNames());
print('Rename selected bands using two corresponding lists',
      col.select(['B11', 'B8', 'B3'], ['SWIR1', 'NIR', 'Green'])
      .first().bandNames());
// Use regular expressions to select bands.
print('Match "QA" followed by any two characters',
      col.select('QA..').first().bandNames());
print('Match "B" followed by any character, any number of times',
      col.select('B.*').first().bandNames());
print('Match "B" followed by any character, and any optional third character',
      col.select('B..?').first().bandNames());
print('Match "B" followed by a character in the range 6-8',
      col.select('B[6-8]').first().bandNames());
print('Match "B" followed by a character in the range 1-9 and then 1-2',
      col.select('B[1-9][1-2]').first().bandNames());
print('Match "B" or "QA" each followed by any character, any number of times.',
      col.select('B.*|QA.*').first().bandNames());
  
    
  
  
    
  
  
  
  
    
  
    
  Python 設定
  請參閱 
    Python 環境頁面,瞭解 Python API 和如何使用 geemap 進行互動式開發。
  import ee
import geemap.core as geemap
  
    
    
      Colab (Python)
    
    
  # A Sentinel-2 surface reflectance image collection.
col = ee.ImageCollection('COPERNICUS/S2_SR').filterBounds(
    ee.Geometry.Point(-122.152, 37.336)
    ).filterDate('2021-01-01', '2021-02-01')
display('All band names', col.first().bandNames())
display('Select a band by name:',
        col.select('B11').first().bandNames())
display('Select a band by index:',
        col.select(10).first().bandNames())
display('Select bands using a list:',
        col.select(['B11', 'B8', 'B3']).first().bandNames())
display('Select bands by an argument series:',
        col.select('B11', 'B8', 'B3').first().bandNames())
display('Mixing string and integer selectors is valid:',
        col.select(10, 'B8', 2).first().bandNames())
display('Rename selected bands using two corresponding lists:',
        col.select(['B11', 'B8', 'B3'], ['SWIR1', 'NIR', 'Green'])
        .first().bandNames())
# Use regular expressions to select bands.
display('Match "QA" followed by any two characters:',
        col.select('QA..').first().bandNames())
display('Match "B" followed by any character, any number of times:',
        col.select('B.*').first().bandNames())
display('Match "B" followed by any character, and any optional third character:',
        col.select('B..?').first().bandNames())
display('Match "B" followed by a character in the range 6-8:',
        col.select('B[6-8]').first().bandNames())
display('Match "B" followed by a character in the range 1-9 and then 1-2:',
        col.select('B[1-9][1-2]').first().bandNames())
display('Match "B" or "QA" each followed by any character, any number of times:',
        col.select('B.*|QA.*').first().bandNames())
  
  
  
  
  
 
  
    
    
      
       
    
    
  
  
  除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
  上次更新時間:2025-10-30 (世界標準時間)。
  
  
  
    
      [null,null,["上次更新時間:2025-10-30 (世界標準時間)。"],[],["The `select` method extracts specific bands from an ImageCollection, returning a new ImageCollection with those bands. Band selection can be done by name, index, or a list of these. New band names can be assigned using an optional list, which must match the number of selected bands. Regular expressions can also be used to select bands based on pattern matching. The code examples demonstrate these selection techniques for both JavaScript and Python.\n"]]