公告:凡是在 
2025 年 4 月 15 日前註冊使用 Earth Engine 的非商業專案,都必須
驗證非商業用途資格,才能繼續存取。如未在 2025 年 9 月 26 日前完成驗證,存取權可能會暫停。
  
        
 
       
     
  
  
  
    
  
  
  
    
      ee.Geometry.MultiPoint.simplify
    
    
      
    
    
      
      透過集合功能整理內容
    
    
      
      你可以依據偏好儲存及分類內容。
    
  
  
      
    
  
  
  
  
  
    
  
  
    
    
    
  
  
將幾何圖形簡化至指定誤差範圍內。請注意,除非明確將 maxError 指定為空值,否則這項設定不會遵守此演算法消費者要求誤差範圍。
這會覆寫 Earth Engine 傳播誤差範圍的預設政策,因此無論輸出內容要求的幾何準確度為何,系統都會以這個演算法引數中指定的誤差範圍要求輸入內容。這樣一來,算繪的向量地圖在所有縮放等級都會一致算繪,但在較低的縮放等級 (即縮小) 時,幾何圖形不會簡化,可能會影響效能。
| 用量 | 傳回 | 
|---|
| MultiPoint.simplify(maxError, proj) | 幾何圖形 | 
| 引數 | 類型 | 詳細資料 | 
|---|
| 這個: geometry | 幾何圖形 | 要簡化的幾何圖形。 | 
| maxError | ErrorMargin | 結果與輸入內容之間的最大誤差量。 | 
| proj | 投影,預設值:null | 如果指定,結果會以這個投影方式呈現。否則會與輸入內容的投影相同。如果誤差範圍是以預測單位表示,系統會將誤差範圍解讀為預測單位。 | 
  
  
  範例
  
    
  
  
    
    
  
  
  
  
    
    
    
      程式碼編輯器 (JavaScript)
    
    
  // Define a MultiPoint object.
var multiPoint = ee.Geometry.MultiPoint([[-122.082, 37.420], [-122.081, 37.426]]);
// Apply the simplify method to the MultiPoint object.
var multiPointSimplify = multiPoint.simplify({'maxError': 1});
// Print the result to the console.
print('multiPoint.simplify(...) =', multiPointSimplify);
// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(multiPoint,
             {'color': 'black'},
             'Geometry [black]: multiPoint');
Map.addLayer(multiPointSimplify,
             {'color': 'red'},
             'Result [red]: multiPoint.simplify');
  
    
  
  
    
  
  
  
  
    
  
    
  Python 設定
  請參閱 
    Python 環境頁面,瞭解 Python API 和如何使用 geemap 進行互動式開發。
  import ee
import geemap.core as geemap
  
    
    
      Colab (Python)
    
    
  # Define a MultiPoint object.
multipoint = ee.Geometry.MultiPoint([[-122.082, 37.420], [-122.081, 37.426]])
# Apply the simplify method to the MultiPoint object.
multipoint_simplify = multipoint.simplify(maxError=1)
# Print the result.
display('multipoint.simplify(...) =', multipoint_simplify)
# Display relevant geometries on the map.
m = geemap.Map()
m.set_center(-122.085, 37.422, 15)
m.add_layer(multipoint, {'color': 'black'}, 'Geometry [black]: multipoint')
m.add_layer(
    multipoint_simplify, {'color': 'red'}, 'Result [red]: multipoint.simplify'
)
m
  
  
  
  
  
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
  上次更新時間:2025-07-26 (世界標準時間)。
  
  
  
    
      [null,null,["上次更新時間:2025-07-26 (世界標準時間)。"],[],[]]