お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Geometry.BBox.transform
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
ジオメトリを特定の投影に変換します。
用途 | 戻り値 |
---|
BBox.transform(proj, maxError) | ジオメトリ |
引数 | タイプ | 詳細 |
---|
これ: geometry | ジオメトリ | 再投影するジオメトリ。 |
proj | 投影(省略可) | ターゲット プロジェクション。デフォルトは EPSG:4326 です。これに地理的 CRS がある場合、ジオメトリのエッジは測地線として解釈されます。そうしないと、投影で直線として解釈されます。 |
maxError | ErrorMargin、デフォルト: null | 最大投影誤差。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003e\u003ccode\u003etransform()\u003c/code\u003e modifies a geometry's projection to a target projection, defaulting to EPSG:4326.\u003c/p\u003e\n"],["\u003cp\u003eThe geometry's edges are treated as geodesics if the target projection has a geographic CRS, otherwise as straight lines within the projection.\u003c/p\u003e\n"],["\u003cp\u003eAn optional \u003ccode\u003emaxError\u003c/code\u003e parameter controls the acceptable projection error during transformation.\u003c/p\u003e\n"]]],["The `transform` function reprojects a given geometry to a target projection. It accepts the geometry to be reprojected, the desired projection (defaulting to EPSG:4326), and an optional maximum projection error. If the target projection is geographic, geometry edges are treated as geodesics; otherwise, they're considered straight lines. The function returns the transformed geometry after the projection operation is complete.\n"],null,["# ee.Geometry.BBox.transform\n\nTransforms the geometry to a specific projection.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------------------|----------|\n| BBox.transform`(`*proj* `, `*maxError*`)` | Geometry |\n\n| Argument | Type | Details |\n|------------------|----------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `geometry` | Geometry | The geometry to reproject. |\n| `proj` | Projection, optional | The target projection. Defaults to EPSG:4326. If this has a geographic CRS, the edges of the geometry will be interpreted as geodesics. Otherwise they will be interpreted as straight lines in the projection. |\n| `maxError` | ErrorMargin, default: null | The maximum projection error. |"]]