ee.Filter.inList
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
सूची में मौजूद मेटाडेटा के हिसाब से फ़िल्टर करें.
बनाया गया फ़िल्टर दिखाता है.
इस्तेमाल | रिटर्न |
---|
ee.Filter.inList(leftField, rightValue, rightField, leftValue) | फ़िल्टर |
आर्ग्यूमेंट | टाइप | विवरण |
---|
leftField | स्ट्रिंग, ज़रूरी नहीं | बाईं ओर मौजूद ऑपरेंड के लिए सिलेक्टर. अगर leftValue की वैल्यू दी गई है, तो rightValue की वैल्यू नहीं दी जानी चाहिए. |
rightValue | List<Object>|Object, ज़रूरी नहीं | राइट ऑपरेंड की वैल्यू. अगर rightField की वैल्यू दी गई है, तो leftField की वैल्यू नहीं दी जानी चाहिए. |
rightField | स्ट्रिंग, ज़रूरी नहीं | राइट ऑपरेंड के लिए सिलेक्टर. अगर rightValue की वैल्यू दी गई है, तो leftValue की वैल्यू नहीं दी जानी चाहिए. |
leftValue | List<Object>|Object, ज़रूरी नहीं | बाईं ओर मौजूद ऑपरेंड की वैल्यू. अगर leftField की वैल्यू दी गई है, तो rightField की वैल्यू नहीं दी जानी चाहिए. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eThe \u003ccode\u003eee.Filter.inList\u003c/code\u003e function filters data based on whether a property value is present in a specified list.\u003c/p\u003e\n"],["\u003cp\u003eIt constructs a filter that checks if the values in the 'left' field or list match any values in the 'right' field or list.\u003c/p\u003e\n"],["\u003cp\u003eThe function is flexible, allowing you to specify the field or list for both the left and right operands using the provided parameters.\u003c/p\u003e\n"],["\u003cp\u003eReturns a Filter object ready for use in your Earth Engine workflows to refine data selections.\u003c/p\u003e\n"]]],["The core function, `ee.Filter.inList`, creates a filter based on metadata within a list. It takes either a left field selector and a right value (list), or a right field selector and a left value (list). The `leftField` and `rightField` arguments are string selectors, while `rightValue` and `leftValue` are lists. Only one pair (field and value) should be specified. The function's output is a filter.\n"],null,["# ee.Filter.inList\n\n\u003cbr /\u003e\n\nFilter on metadata contained in a list.\n\n\u003cbr /\u003e\n\nReturns the constructed filter.\n\n| Usage | Returns |\n|-------------------------------------------------------------------------------------|---------|\n| `ee.Filter.inList(`*leftField* `, `*rightValue* `, `*rightField* `, `*leftValue*`)` | Filter |\n\n| Argument | Type | Details |\n|--------------|----------------------------------|---------------------------------------------------------------------------------------|\n| `leftField` | String, optional | A selector for the left operand. Should not be specified if leftValue is specified. |\n| `rightValue` | List\\\u003cObject\\\u003e\\|Object, optional | The value of the right operand. Should not be specified if rightField is specified. |\n| `rightField` | String, optional | A selector for the right operand. Should not be specified if rightValue is specified. |\n| `leftValue` | List\\\u003cObject\\\u003e\\|Object, optional | The value of the left operand. Should not be specified if leftField is specified. |"]]