お知らせ:
2025 年 4 月 15 日より前に Earth Engine の使用を登録したすべての非商用プロジェクトは、Earth Engine へのアクセスを維持するために
非商用目的での利用資格を確認する必要があります。
ee.Image.cat
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
指定された画像を 1 つの画像に結合します。この画像には、すべての画像のすべてのバンドが含まれます。
複数の帯域が同じ名前を共有している場合は、増分インデックスが接尾辞として付加されます。
生成される画像には、最初の入力画像のメタデータのみが含まれます。
この関数は、定数値を定数画像に昇格させます。
結合された画像を返します。
用途 | 戻り値 |
---|
ee.Image.cat(var_args) | 画像 |
引数 | タイプ | 詳細 |
---|
var_args | VarArgs<Image> | 結合する画像。 |
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-07-25 UTC。
[null,null,["最終更新日 2025-07-25 UTC。"],[[["\u003cp\u003eCombines multiple images into a single multi-band image containing all original bands.\u003c/p\u003e\n"],["\u003cp\u003eShared band names are distinguished by automatically appending incrementing indices.\u003c/p\u003e\n"],["\u003cp\u003eOutput image inherits metadata solely from the first input image.\u003c/p\u003e\n"],["\u003cp\u003eConstant input values are transformed into constant images within the output.\u003c/p\u003e\n"],["\u003cp\u003eReturns the consolidated multi-band image.\u003c/p\u003e\n"]]],[],null,["# ee.Image.cat\n\n\u003cbr /\u003e\n\nCombines the given images into a single image which contains all bands from all of the images.\n\n\u003cbr /\u003e\n\nIf two or more bands share a name, they are suffixed with an incrementing index.\n\nThe resulting image will have the metadata from the first input image, only.\n\nThis function will promote constant values into constant images.\n\nReturns the combined image.\n\n| Usage | Returns |\n|--------------------------|---------|\n| `ee.Image.cat(var_args)` | Image |\n\n| Argument | Type | Details |\n|------------|------------------|----------------------------|\n| `var_args` | VarArgs\\\u003cImage\\\u003e | The images to be combined. |"]]