Earth Engine ने गैर-व्यावसायिक इस्तेमाल के लिए कोटा टियर लॉन्च किए हैं. इससे शेयर किए गए कंप्यूट संसाधनों को सुरक्षित रखने और सभी के लिए भरोसेमंद परफ़ॉर्मेंस को पक्का करने में मदद मिलेगी. गैर-व्यावसायिक प्रोजेक्ट के लिए, डिफ़ॉल्ट रूप से कम्यूनिटी टियर का इस्तेमाल किया जाता है. हालांकि, किसी प्रोजेक्ट के टियर को कभी भी बदला जा सकता है.
Google uses AI technology to translate content into your preferred language. AI translations can contain errors.
ee.ImageCollection.iterate
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
यह फ़ंक्शन, उपयोगकर्ता के दिए गए फ़ंक्शन को कलेक्शन के हर एलिमेंट पर लागू करता है. उपयोगकर्ता के दिए गए फ़ंक्शन को दो आर्ग्युमेंट दिए जाते हैं: मौजूदा एलिमेंट और iterate() को पिछली बार कॉल करने पर मिली वैल्यू या पहली बार के लिए पहला आर्ग्युमेंट. नतीजा, उपयोगकर्ता के दिए गए फ़ंक्शन को किए गए आखिरी कॉल से मिली वैल्यू होती है.
यह फ़ंक्शन, Collection.iterate() कॉल का नतीजा दिखाता है.
इस्तेमाल
रिटर्न
ImageCollection.iterate(algorithm, first)
ComputedObject
आर्ग्यूमेंट
टाइप
विवरण
यह: collection
संग्रह
कलेक्शन इंस्टेंस.
algorithm
फ़ंक्शन
हर एलिमेंट पर लागू किया जाने वाला फ़ंक्शन. इसमें दो आर्ग्युमेंट होने चाहिए: कलेक्शन का एक एलिमेंट और पिछले इटरेशन की वैल्यू.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[],["`iterate()` applies a user-defined function to each collection element. This function receives the current element and the prior iteration's result as arguments. The process starts with an optional initial state (`first`). The final output is the value produced by the user-defined function's last execution. It's used on a `Collection` with the `algorithm` being a function and `first` as optional. It returns a `ComputedObject`.\n"]]