ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.ImageCollection.combine
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি নতুন সংগ্রহ তৈরি করে যা প্রাইমারিতে ছবিগুলির একটি অনুলিপি, একটি মিলে যাওয়া আইডির সাথে সেকেন্ডারিতে চিত্র থেকে সমস্ত ব্যান্ড যোগ করে৷ যদি কোন মিলিত আইডি না থাকে, ফলাফল সংগ্রহ খালি হবে। এটি ফলাফলের ব্যান্ডগুলিকে একত্রিত করে আইডিতে একটি অভ্যন্তরীণ যোগদানের সমতুল্য।
মনে রাখবেন যে এই অ্যালগরিদমটি অনুমান করে যে ইনপুটগুলির একটি মিলিত জোড়ার জন্য, উভয়েরই একই পদচিহ্ন এবং মেটাডেটা রয়েছে৷
ব্যবহার | রিটার্নস | ImageCollection. combine (secondary, overwrite ) | ইমেজ কালেকশন |
যুক্তি | টাইপ | বিস্তারিত | এই: primary | ইমেজ কালেকশন | যোগদানের প্রাথমিক সংগ্রহ। |
secondary | ইমেজ কালেকশন | মাধ্যমিক সংগ্রহ যোগদান. |
overwrite | বুলিয়ান, ডিফল্ট: মিথ্যা | সত্য হলে, একই নামের ব্যান্ডগুলি ওভাররাইট করা হবে। মিথ্যা হলে, একই নামের ব্যান্ডের নাম পরিবর্তন করা হবে। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 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. |"]]