お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Feature.area
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
対象物のデフォルトのジオメトリの面積を返します。ポイントとライン文字列の面積は 0 で、マルチ ジオメトリの面積はコンポーネントの面積の合計です(交差する面積は複数回カウントされます)。
用途 | 戻り値 |
---|
Feature.area(maxError, proj) | 浮動小数点数 |
引数 | タイプ | 詳細 |
---|
これ: feature | 要素 | ジオメトリが取得されるフィーチャー。 |
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\u003eThe \u003ccode\u003earea()\u003c/code\u003e function calculates and returns the area of a feature's geometry.\u003c/p\u003e\n"],["\u003cp\u003ePoints and line strings have an area of 0, while the area of multi-geometries is the sum of their component areas.\u003c/p\u003e\n"],["\u003cp\u003eThe returned area is in square meters by default, but can be calculated in the units of a specified projection.\u003c/p\u003e\n"],["\u003cp\u003eYou can specify a maximum error tolerance for reprojection during area calculation.\u003c/p\u003e\n"]]],["The function calculates the area of a feature's default geometry, returning a float value. Point and line string geometries return an area of 0, while multi-geometries return the sum of their component areas. The `maxError` argument controls reprojection error tolerance, and `proj` specifies the output projection; otherwise, the area is returned in square meters. The function takes a feature element as the primary input.\n"],null,["# ee.Feature.area\n\nReturns the area of the feature's default geometry. Area of points and line strings is 0 and the area of multi geometries is the sum of the areas of their components (intersecting areas are counted multiple times).\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------|---------|\n| Feature.area`(`*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 square meters. |"]]