お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Feature.intersects
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
フィーチャ ジオメトリが交差する場合にのみ true を返します。
用途 | 戻り値 |
---|
Feature.intersects(right, maxError, proj) | ブール値 |
引数 | タイプ | 詳細 |
---|
これ: left | 要素 | オペレーションの左オペランドとして使用されるジオメトリを含む特徴。 |
right | 要素 | オペレーションの右オペランドとして使用されるジオメトリを含むフィーチャー。 |
maxError | ErrorMargin、デフォルト: null | 必要な再投影を行う際に許容される最大誤差。 |
proj | Projection、デフォルト: null | オペレーションを実行するプロジェクション。指定しない場合、演算は球面座標系で実行され、線形距離は球面のメートル単位になります。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003e\u003ccode\u003eintersects()\u003c/code\u003e determines if two feature geometries share any portion of space.\u003c/p\u003e\n"],["\u003cp\u003eThe function considers two features, designated as \u003ccode\u003eleft\u003c/code\u003e and \u003ccode\u003eright\u003c/code\u003e, and evaluates their spatial relationship.\u003c/p\u003e\n"],["\u003cp\u003eUsers can specify an error margin (\u003ccode\u003emaxError\u003c/code\u003e) for reprojection and a projection (\u003ccode\u003eproj\u003c/code\u003e) for the operation.\u003c/p\u003e\n"],["\u003cp\u003eBy default, calculations are done in a spherical coordinate system with distances measured in meters on the sphere.\u003c/p\u003e\n"],["\u003cp\u003eThe function returns \u003ccode\u003etrue\u003c/code\u003e if the geometries intersect, and \u003ccode\u003efalse\u003c/code\u003e otherwise.\u003c/p\u003e\n"]]],[],null,["# ee.Feature.intersects\n\nReturns true if and only if the feature geometries intersect.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|------------------------------------------------------|---------|\n| Feature.intersects`(right, `*maxError* `, `*proj*`)` | Boolean |\n\n| Argument | Type | Details |\n|--------------|----------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `left` | Element | The feature containing the geometry used as the left operand of the operation. |\n| `right` | Element | The feature containing the geometry used as the right operand of the operation. |\n| `maxError` | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |\n| `proj` | Projection, default: null | The projection in which to perform the operation. If not specified, the operation will be performed in a spherical coordinate system, and linear distances will be in meters on the sphere. |"]]