公告:所有在
2025 年 4 月 15 日之前注册使用 Earth Engine 的非商业项目都必须
验证是否符合非商业性质的资格条件,才能继续使用 Earth Engine。
ee.Image.cat
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
将给定的图片合并为一张包含所有图片中所有波段的图片。
如果两个或多个频段共用一个名称,则会在名称后添加递增的索引。
生成的图片将仅包含第一个输入图片的元数据。
此函数会将常量值提升为常量图片。
返回合并后的图片。
用法 | 返回 |
---|
ee.Image.cat(var_args) | 图片 |
参数 | 类型 | 详细信息 |
---|
var_args | VarArgs<Image> | 要组合的图片。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-25。
[null,null,["最后更新时间 (UTC):2025-07-25。"],[[["\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. |"]]