公告:凡是在
2025 年 4 月 15 日前註冊使用 Earth Engine 的非商業專案,都必須
驗證非商業用途資格,才能繼續存取 Earth Engine。
ee.Geometry.MultiPolygon.cutLines
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
將 LineString、MultiLineString 和 LinearRing 幾何圖形轉換為 MultiLineString,方法是沿著長度將這些幾何圖形切成多個部分,且每個部分不得超過指定距離。所有其他幾何類型都會轉換為空白的 MultiLineString。
用量 | 傳回 |
---|
MultiPolygon.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 (世界標準時間)。"],[[["\u003cp\u003eCuts LineString, MultiLineString, and LinearRing geometries into smaller parts based on specified distances.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ecutLines\u003c/code\u003e method results in a MultiLineString geometry, with the cut segments as its components.\u003c/p\u003e\n"],["\u003cp\u003eGeometries other than LineString, MultiLineString, and LinearRing will be converted to an empty MultiLineString when using \u003ccode\u003ecutLines\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eDistances for cutting the lines are specified in a list and are measured in the units of the provided projection or meters if no projection is given.\u003c/p\u003e\n"],["\u003cp\u003eUsers can optionally define a maximum error tolerance for reprojection and the projection for the output.\u003c/p\u003e\n"]]],[],null,["# ee.Geometry.MultiPolygon.cutLines\n\nConverts LineString, MultiLineString, and LinearRing geometries into a MultiLineString by cutting them into parts no longer than the given distance along their length. All other geometry types will be converted to an empty MultiLineString.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------------------------------------|----------|\n| MultiPolygon.cutLines`(distances, `*maxError* `, `*proj*`)` | Geometry |\n\n| Argument | Type | Details |\n|------------------|----------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `geometry` | Geometry | Cuts the lines of this geometry. |\n| `distances` | List | Distances along each LineString to cut the line into separate pieces, measured in units of the given proj, or meters if proj is unspecified. |\n| `maxError` | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |\n| `proj` | Projection, default: null | Projection of the result and distance measurements, or EPSG:4326 if unspecified. |\n\nExamples\n--------\n\n### Code Editor (JavaScript)\n\n```javascript\n// Notice: the cutLines geometry method applies only to LineString,\n// MultiLineString, and LinearRing geometries. All other geometry types result\n// in an empty MultiLineString.\n```\nPython setup\n\nSee the [Python Environment](/earth-engine/guides/python_install) page for information on the Python API and using\n`geemap` for interactive development. \n\n```python\nimport ee\nimport geemap.core as geemap\n```\n\n### Colab (Python)\n\n```python\n# Notice: the cutLines geometry method applies only to LineString,\n# MultiLineString, and LinearRing geometries. All other geometry types result\n# in an empty MultiLineString.\n```"]]