お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Geometry.coveringGrid
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
このジオメトリをカバーするフィーチャーのコレクションを返します。各フィーチャーは、指定された投影で定義されたグリッド内の長方形です。
用途 | 戻り値 |
---|
Geometry.coveringGrid(proj, scale) | FeatureCollection |
引数 | タイプ | 詳細 |
---|
これ: geometry | ジオメトリ | 結果は、このリージョンと交差するグリッド セルです。 |
proj | 予測 | グリッドを構築する投影法。「geometry」と交差する各グリッド セルに対して特徴が生成されます。ここで、セルの角は投影内の整数値の位置にあります。投影がメートル単位でスケーリングされている場合、ポイントは真のスケール ポイントでそのサイズのグリッド上に配置されます。 |
scale | 浮動小数点数、デフォルト: null | 指定されている場合は、投影のスケールをオーバーライドします。投影がまだスケーリングされていない場合は、必要になることがあります。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003eReturns a FeatureCollection representing a grid that covers the input Geometry.\u003c/p\u003e\n"],["\u003cp\u003eThe grid is defined by the provided Projection and an optional scale parameter.\u003c/p\u003e\n"],["\u003cp\u003eEach feature in the collection is a rectangle within the grid that intersects with the input Geometry.\u003c/p\u003e\n"],["\u003cp\u003eIf the Projection is scaled in meters, grid cells are aligned to integer positions at the true scale point.\u003c/p\u003e\n"],["\u003cp\u003eA scale parameter can override the Projection's inherent scale if necessary.\u003c/p\u003e\n"]]],["The `coveringGrid` function generates a `FeatureCollection` of rectangular grid cells that intersect a given `Geometry`. It uses a specified `Projection` to define the grid, with each cell represented as a feature. The grid's scale is determined by the projection, or overridden by an optional `scale` argument. The function returns cells where their corners are located at integer-valued positions within the specified `Projection`.\n"],null,["# ee.Geometry.coveringGrid\n\nReturns a collection of features that cover this geometry, where each feature is a rectangle in the grid defined by the given projection.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|------------------------------------------|-------------------|\n| Geometry.coveringGrid`(proj, `*scale*`)` | FeatureCollection |\n\n| Argument | Type | Details |\n|------------------|----------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `geometry` | Geometry | The result is the grid cells that intersect with this region. |\n| `proj` | Projection | The projection in which to construct the grid. A feature is generated for each grid cell that intersects 'geometry', where cell corners are at integer-valued positions in the projection. If the projection is scaled in meters, the points will be on a grid of that size at the point of true scale. |\n| `scale` | Float, default: null | Overrides the scale of the projection, if provided. May be required if the projection isn't already scaled. |"]]