お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Feature.cutLines
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
LineString、MultiLineString、LinearRing ジオメトリを、長さに沿って指定された距離以下の部分に分割して MultiLineString に変換します。他のすべてのジオメトリ タイプは、空の MultiLineString に変換されます。
用途 | 戻り値 |
---|
Feature.cutLines(distances, maxError, proj) | 機能 |
引数 | タイプ | 詳細 |
---|
これ: feature | 要素 | このフィーチャーのデフォルトのジオメトリの線をカットします。 |
distances | リスト | 各 LineString に沿った距離。この距離で線を個別の部分に分割します。指定された proj の単位で測定されます。proj が指定されていない場合はメートル単位です。 |
maxError | ErrorMargin、デフォルト: null | 必要な再投影を行う際に許容される最大誤差。 |
proj | Projection、デフォルト: null | 結果と距離の測定値の投影。指定されていない場合は EPSG:4326。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003eThe function \u003ccode\u003ecutLines\u003c/code\u003e converts LineString, MultiLineString, and LinearRing geometries into a MultiLineString by segmenting them into shorter lengths.\u003c/p\u003e\n"],["\u003cp\u003eSegmentation is determined by the \u003ccode\u003edistances\u003c/code\u003e parameter, specifying the length of each segment in the projection units or meters.\u003c/p\u003e\n"],["\u003cp\u003eGeometries other than LineString, MultiLineString, and LinearRing are converted into an empty MultiLineString.\u003c/p\u003e\n"],["\u003cp\u003eUsers can specify the \u003ccode\u003emaxError\u003c/code\u003e for reprojection and the \u003ccode\u003eproj\u003c/code\u003e for distance measurements and output projection.\u003c/p\u003e\n"]]],["The core functionality involves cutting `LineString`, `MultiLineString`, and `LinearRing` geometries into segments based on specified distances. The `cutLines` method, applied to a `Feature`, takes a list of `distances` and divides the line into parts no longer than those distances. `maxError` handles reprojection errors, while `proj` defines the projection for distance measurements, defaulting to EPSG:4326. Other geometry types become empty `MultiLineString`s.\n"],null,["# ee.Feature.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| Feature.cutLines`(distances, `*maxError* `, `*proj*`)` | Feature |\n\n| Argument | Type | Details |\n|-----------------|----------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `feature` | Element | Cuts the lines of this feature's default 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. |"]]