ee.ImageCollection.toArray
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
इमेज कलेक्शन को 2D ऐरे की इमेज में बदलता है. हर पिक्सल पर, ऐसी इमेज को ऐरे के पहले ऐक्सिस के साथ लेआउट किया जाता है जिनमें सभी बैंड में मान्य (मास्क नहीं की गई) वैल्यू होती हैं. इमेज को इमेज कलेक्शन में दिखने के क्रम में लेआउट किया जाता है. हर इमेज के बैंड, ऐरे के दूसरे ऐक्सिस के साथ-साथ लेआउट किए जाते हैं. ये बैंड, इमेज में दिखने के क्रम में होते हैं. ऐरे एलिमेंट का टाइप, हर बैंड के टाइप का यूनियन होगा.
इस्तेमाल | रिटर्न |
---|
ImageCollection.toArray() | इमेज |
आर्ग्यूमेंट | टाइप | विवरण |
---|
यह: collection | ImageCollection | इमेज कलेक्शन को ऐरे इमेज में बदलने के लिए. बैंड में स्केलर वैल्यू होनी चाहिए, न कि ऐरे वैल्यू. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eTransforms an image collection into a single image where each pixel represents a 2D array containing data from all valid images in the collection.\u003c/p\u003e\n"],["\u003cp\u003eThe 2D array at each pixel is organized with images along the first axis and their respective bands along the second axis, preserving the original order.\u003c/p\u003e\n"],["\u003cp\u003eThe resulting image's array element type adapts to accommodate the various data types present in the input image collection's bands.\u003c/p\u003e\n"],["\u003cp\u003eThis operation is initiated using the \u003ccode\u003etoArray()\u003c/code\u003e method on an ImageCollection object, returning a new Image object.\u003c/p\u003e\n"],["\u003cp\u003eInput image collections should only contain bands with scalar values, not array values, for proper conversion.\u003c/p\u003e\n"]]],[],null,["# ee.ImageCollection.toArray\n\nConverts an image collection into an image of 2D arrays. At each pixel, the images that have valid (unmasked) values in all bands are laid out along the first axis of the array in the order they appear in the image collection. The bands of each image are laid out along the second axis of the array, in the order the bands appear in that image. The array element type will be the union of the types of each band.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------|---------|\n| ImageCollection.toArray`()` | Image |\n\n| Argument | Type | Details |\n|--------------------|-----------------|-------------------------------------------------------------------------------------------------|\n| this: `collection` | ImageCollection | Image collection to convert to an array image. Bands must have scalar values, not array values. |"]]