ঘোষণা : 
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অ্যাক্সেস বজায় রাখার জন্য 
অবাণিজ্যিক যোগ্যতা যাচাই করতে হবে। আপনি যদি 26 সেপ্টেম্বর, 2025 এর মধ্যে যাচাই না করে থাকেন তবে আপনার অ্যাক্সেস হোল্ডে রাখা হতে পারে।
        
 
       
     
  
  
  
    
  
  
  
    
      ee.Dictionary.toArray
    
    
      
    
    
      
      সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
    
    
      
      আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
    
  
  
      
    
  
  
  
  
  
    
  
  
    
    
  
  
একটি অ্যারে হিসাবে একটি অভিধানের সাংখ্যিক মান প্রদান করে। কোনো কী নির্দিষ্ট না থাকলে, অভিধানের কীগুলির স্বাভাবিক ক্রমানুসারে সমস্ত মান ফেরত দেওয়া হয়। ডিফল্ট 'অক্ষ' হল 0।
| ব্যবহার | রিটার্নস | | Dictionary. toArray ( keys , axis ) | অ্যারে | 
| যুক্তি | টাইপ | বিস্তারিত | | এই: dictionary | অভিধান |  | 
| keys | তালিকা, ডিফল্ট: নাল |  | 
| axis | পূর্ণসংখ্যা, ডিফল্ট: 0 |  | 
উদাহরণ 
 কোড এডিটর (জাভাস্ক্রিপ্ট) 
// A dictionary (e.g. results of ee.Image.reduceRegion of an S2 image).
var dict = ee.Dictionary({
  B1: 182,
  B2: 219,
  B3: 443
});
print('Values for selected keys converted to ee.Array',
      dict.toArray(['B1', 'B2']));
print('Values for all keys converted to ee.Array',
      dict.toArray()); পাইথন সেটআপ
 পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য geemap ব্যবহার করার জন্য পাইথন এনভায়রনমেন্ট পৃষ্ঠাটি দেখুন।
import ee
import geemap.core as geemap
 Colab (পাইথন) 
# A dictionary (e.g. results of ee.Image.reduceRegion of an S2 image).
dic = ee.Dictionary({
    'B1': 182,
    'B2': 219,
    'B3': 443
})
display('Values for selected keys converted to ee.Array:',
        dic.toArray(['B1', 'B2']))
display('Values for all keys converted to ee.Array:',
        dic.toArray())
  
  
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
  2025-10-30 UTC-তে শেষবার আপডেট করা হয়েছে।
  
  
  
    
      [null,null,["2025-10-30 UTC-তে শেষবার আপডেট করা হয়েছে।"],[],["The `toArray()` method converts dictionary values into an array.  It accepts an optional list of `keys` to specify which values to include; if omitted, all values are included in the dictionary's natural key order. An optional `axis` argument (defaulting to 0) can also be passed. The method returns an array of numeric values. The example shows how to use it, both to get the values from specified keys or all keys.\n"]]