公告:凡是在
2025 年 4 月 15 日前註冊使用 Earth Engine 的非商業專案,都必須
驗證非商業用途資格,才能繼續存取 Earth Engine。
ee.Feature.length
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
傳回指定特徵幾何圖形的線性部分長度。系統會忽略多邊形部分。多重幾何圖形的長度是其元件長度的總和。
用量 | 傳回 |
---|
Feature.length(maxError, proj) | 浮點值 |
引數 | 類型 | 詳細資料 |
---|
這個:feature | 元素 | 用來取得幾何圖形的地圖項目。 |
maxError | ErrorMargin,預設值:null | 執行任何必要重投影時可容許的最大誤差量。 |
proj | 投影,預設值:null | 如果指定,結果會以這個投影的座標系統單位表示。否則單位為公尺。 |
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-07-26 (世界標準時間)。
[null,null,["上次更新時間:2025-07-26 (世界標準時間)。"],[[["\u003cp\u003eThis function calculates the total length of linear geometries within a given feature, excluding any polygonal parts.\u003c/p\u003e\n"],["\u003cp\u003eFor features with multiple geometries, the function sums the lengths of each individual component to determine the overall length.\u003c/p\u003e\n"],["\u003cp\u003eResults are given in meters by default, but can be specified in the units of a provided projection.\u003c/p\u003e\n"],["\u003cp\u003eAn optional error margin can be specified for handling reprojection, if needed.\u003c/p\u003e\n"]]],["The `Feature.length()` method calculates the total length of linear components within a feature's geometry, excluding polygonal parts. It returns a float value representing this length. The method accepts optional `maxError` and `proj` arguments. `maxError` defines the acceptable error during reprojection, and `proj` specifies the desired coordinate system for the output, defaulting to meters if unspecified. The feature itself is mandatory for which the length is calculated.\n"],null,["# ee.Feature.length\n\nReturns the length of the linear parts of the geometry of a given feature. Polygonal parts are ignored. The length of multi geometries is the sum of the lengths of their components.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------------------|---------|\n| Feature.length`(`*maxError* `, `*proj*`)` | Float |\n\n| Argument | Type | Details |\n|-----------------|----------------------------|----------------------------------------------------------------------------------------------------------------------------|\n| this: `feature` | Element | The feature from which the geometry is taken. |\n| `maxError` | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |\n| `proj` | Projection, default: null | If specified, the result will be in the units of the coordinate system of this projection. Otherwise it will be in meters. |"]]