একটি ee.Filter
দ্বারা নির্দিষ্ট শর্তের উপর ভিত্তি করে বিভিন্ন সংগ্রহ (যেমন ImageCollection
বা FeatureCollection
) থেকে উপাদানগুলিকে একত্রিত করতে Joins ব্যবহার করা হয়। ফিল্টারটি একে অপরের সাথে সম্পর্কিত প্রতিটি সংগ্রহের বৈশিষ্ট্যগুলির জন্য আর্গুমেন্ট দিয়ে তৈরি করা হয়। বিশেষত, leftField
প্রাথমিক সংগ্রহের সম্পত্তি নির্দিষ্ট করে যা সেকেন্ডারি সংগ্রহে rightField
এর সাথে সম্পর্কিত। ফিল্টারের ধরন (যেমন equals
, greaterThanOrEquals
, lessThan
, ইত্যাদি) ক্ষেত্রের মধ্যে সম্পর্ক নির্দেশ করে। যোগদানের ধরনটি সংগ্রহের উপাদানগুলির মধ্যে এক-থেকে-অনেক বা এক-থেকে-এক সম্পর্ক এবং কতগুলি ম্যাচ ধরে রাখতে হবে তা নির্দেশ করে। যোগদানের আউটপুট join.apply()
দ্বারা উত্পাদিত হয় এবং যোগদানের ধরন অনুসারে পরিবর্তিত হবে।
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-02-18 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-02-18 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["Joins combine elements from different collections like `ImageCollection` and `FeatureCollection` based on a specified condition using an `ee.Filter`."],["The `ee.Filter` defines the relationship between properties in the collections using `leftField` and `rightField` along with a filter type like `equals` or `lessThan`."],["Different join types handle one-to-one or one-to-many relationships and control the number of matches retained, impacting the output produced by `join.apply()`."]]],["Joins combine elements from different collections using an `ee.Filter` based on a specified condition. `leftField` and `rightField` define related properties within the primary and secondary collections, respectively. The filter type determines the relationship between these fields (e.g., equals, greaterThan). Join type specifies one-to-many or one-to-one relationships and the number of matches. The `join.apply()` method produces the output, which varies based on the chosen join type.\n"]]