公告:所有在
2025 年 4 月 15 日之前注册使用 Earth Engine 的非商业项目都必须
验证是否符合非商业性质的资格条件,才能继续使用 Earth Engine。
ee.ImageCollection.combine
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
创建一个新集合,该集合是主集合中图片的副本,并添加了次集合中具有匹配 ID 的图片的所有波段。如果没有匹配的 ID,则生成的集合将为空。这相当于对 ID 进行内部联接,并合并结果的频段。
请注意,此算法假定对于匹配的输入对,两者具有相同的覆盖区和元数据。
用法 | 返回 |
---|
ImageCollection.combine(secondary, overwrite) | ImageCollection |
参数 | 类型 | 详细信息 |
---|
此:primary | ImageCollection | 要加入的主集合。 |
secondary | ImageCollection | 要联接的辅助集合。 |
overwrite | 布尔值,默认值:false | 如果为 true,则同名频段将被覆盖。如果为 false,则会重命名名称相同的频段。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-26。
[null,null,["最后更新时间 (UTC):2025-07-26。"],[],["The function combines two `ImageCollections` (`primary` and `secondary`) by performing an inner join based on matching IDs. It copies images from the `primary` collection and adds bands from the `secondary` collection with the corresponding ID. If no matching ID is found, the resulting collection is empty. Band names that are the same can either be renamed or overwritten based on the `overwrite` flag. The function returns a new `ImageCollection`.\n"],null,[]]