公告:凡是在
2025 年 4 月 15 日前註冊使用 Earth Engine 的非商業專案,都必須
驗證非商業用途資格,才能繼續存取 Earth Engine。
ee.Geometry.Point.cutLines
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
將 LineString、MultiLineString 和 LinearRing 幾何圖形轉換為 MultiLineString,方法是沿著長度將這些幾何圖形切成多個部分,且每個部分不得超過指定距離。所有其他幾何類型都會轉換為空白的 MultiLineString。
用量 | 傳回 |
---|
Point.cutLines(distances, maxError, proj) | 幾何圖形 |
引數 | 類型 | 詳細資料 |
---|
這個:geometry | 幾何圖形 | 剪斷此幾何圖形的線條。 |
distances | 清單 | 沿著每個 LineString 將線條切成不同片段的距離,以指定 proj 的單位測量,如果未指定 proj,則以公尺為單位。 |
maxError | ErrorMargin,預設值:null | 執行任何必要重投影時可容許的最大誤差量。 |
proj | 投影,預設值:null | 結果和距離測量的投影,如未指定,則為 EPSG:4326。 |
範例
程式碼編輯器 (JavaScript)
// Notice: the cutLines geometry method applies only to LineString,
// MultiLineString, and LinearRing geometries. All other geometry types result
// in an empty MultiLineString.
Python 設定
請參閱
Python 環境頁面,瞭解 Python API 和如何使用 geemap
進行互動式開發。
import ee
import geemap.core as geemap
Colab (Python)
# Notice: the cutLines geometry method applies only to LineString,
# MultiLineString, and LinearRing geometries. All other geometry types result
# in an empty MultiLineString.
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-07-26 (世界標準時間)。
[null,null,["上次更新時間:2025-07-26 (世界標準時間)。"],[],["The `cutLines` method transforms LineString, MultiLineString, and LinearRing geometries into a MultiLineString. It divides the lines into segments based on specified distances. The `distances` parameter defines the cutting points along the line. `maxError` sets the tolerance for reprojection errors. `proj` determines the projection and units, defaulting to EPSG:4326. Other geometry types result in an empty MultiLineString. The method operates on a geometry and returns a new Geometry object.\n"],null,[]]