お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Image.setDefaultProjection
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
この画像に適用するデフォルトの投影法を設定します。プロジェクションの解像度は、後続のオペレーションでオーバーライドされることがあります。
用途 | 戻り値 |
---|
Image.setDefaultProjection(crs, crsTransform, scale) | 画像 |
引数 | タイプ | 詳細 |
---|
これ: image | 画像 | 再投影する画像。 |
crs | 予測 | 画像を投影する CRS。 |
crsTransform | リスト、デフォルト: null | CRS 変換値のリスト。これは 3x2 変換行列の行優先順序です。このオプションは scale オプションと相互に排他的であり、投影にすでに存在する変換を置き換えます。 |
scale | 浮動小数点数、デフォルト: null | スケールが指定されている場合、指定されたスケール値を指定された投影法のメートル単位の公称サイズで割ることで、投影法がスケーリングされます。scale が指定されていない場合は、指定された投影の scale が使用されます。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-26 UTC。
[null,null,["最終更新日 2025-07-26 UTC。"],[[["\u003cp\u003eDefine a default projection and resolution for an image, which can be modified by subsequent operations.\u003c/p\u003e\n"],["\u003cp\u003eSpecify the target Coordinate Reference System (CRS), an optional CRS transformation matrix, and an optional scale factor to adjust the projection.\u003c/p\u003e\n"],["\u003cp\u003eProviding a CRS transformation matrix overrides any existing transformations, while the scale factor adjusts the projection's scale based on the specified value and the projection's nominal meter size.\u003c/p\u003e\n"]]],[],null,["# ee.Image.setDefaultProjection\n\nSet a default projection to be applied to this image. The projection's resolution may be overridden by later operations.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------------------------------|---------|\n| Image.setDefaultProjection`(crs, `*crsTransform* `, `*scale*`)` | Image |\n\n| Argument | Type | Details |\n|----------------|----------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `image` | Image | The image to reproject. |\n| `crs` | Projection | The CRS to project the image to. |\n| `crsTransform` | List, default: null | The list of CRS transform values. This is a row-major ordering of the 3x2 transform matrix. This option is mutually exclusive with the scale option, and replaces any transform already on the projection. |\n| `scale` | Float, default: null | If scale is specified, then the projection is scaled by dividing the specified scale value by the nominal size of a meter in the specified projection. If scale is not specified, then the scale of the given projection will be used. |"]]