ee.ImageCollection.combine
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
สร้างคอลเล็กชันใหม่ซึ่งเป็นสำเนาของรูปภาพในคอลเล็กชันหลัก โดยเพิ่มแถบทั้งหมดจากรูปภาพในคอลเล็กชันรองที่มีรหัสที่ตรงกัน หากไม่มีรหัสที่ตรงกัน คอลเล็กชันผลลัพธ์จะว่างเปล่า ซึ่งเทียบเท่ากับการรวมภายในในรหัสที่มีการผสานแถบของผลลัพธ์
โปรดทราบว่าอัลกอริทึมนี้ถือว่าอินพุตคู่ที่ตรงกันมีร่องรอยและข้อมูลเมตาเหมือนกัน
การใช้งาน | การคืนสินค้า |
---|
ImageCollection.combine(secondary, overwrite) | ImageCollection |
อาร์กิวเมนต์ | ประเภท | รายละเอียด |
---|
ดังนี้ primary | ImageCollection | คอลเล็กชันหลักที่จะเข้าร่วม |
secondary | ImageCollection | คอลเล็กชันรองที่จะเข้าร่วม |
overwrite | บูลีน ค่าเริ่มต้น: false | หากเป็นจริง ระบบจะเขียนทับวงดนตรีที่มีชื่อเดียวกัน หากเป็นเท็จ ระบบจะเปลี่ยนชื่อวงดนตรีที่มีชื่อเดียวกัน |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-26 UTC
[null,null,["อัปเดตล่าสุด 2025-07-26 UTC"],[[["\u003cp\u003eCreates a new image collection by combining images from two input collections based on matching IDs.\u003c/p\u003e\n"],["\u003cp\u003eMerges bands from matching images, resulting in an empty collection if no IDs match.\u003c/p\u003e\n"],["\u003cp\u003eImages with the same ID in both input collections are assumed to have identical footprint and metadata.\u003c/p\u003e\n"],["\u003cp\u003eBand names are preserved by default, but can be overwritten using the \u003ccode\u003eoverwrite\u003c/code\u003e parameter.\u003c/p\u003e\n"]]],["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,["# ee.ImageCollection.combine\n\nMakes a new collection that is a copy of the images in primary, adding all the bands from the image in secondary with a matching ID. If there are no matching IDs, the resulting collection will be empty. This is equivalent to an inner join on ID with merging of the bands of the result.\n\n\u003cbr /\u003e\n\nNote that this algorithm assumes that for a matching pair of inputs, both have the same footprint and metadata.\n\n| Usage | Returns |\n|-----------------------------------------------------|-----------------|\n| ImageCollection.combine`(secondary, `*overwrite*`)` | ImageCollection |\n\n| Argument | Type | Details |\n|-----------------|-------------------------|-------------------------------------------------------------------------------------------------------------|\n| this: `primary` | ImageCollection | The primary collection to join. |\n| `secondary` | ImageCollection | The secondary collection to join. |\n| `overwrite` | Boolean, default: false | If true, bands with the same name will get overwritten. If false, bands with the same name will be renamed. |"]]