ee.Dictionary.select

শুধুমাত্র নির্দিষ্ট কী সহ একটি অভিধান প্রদান করে।

ব্যবহার রিটার্নস
Dictionary. select (selectors, ignoreMissing ) অভিধান
যুক্তি টাইপ বিস্তারিত
এই: dictionary অভিধান
selectors তালিকা নির্বাচন করার জন্য কী বা রেগুলার এক্সপ্রেশনের একটি তালিকা।
ignoreMissing বুলিয়ান, ডিফল্ট: মিথ্যা অন্তত 1 কী মেলে না এমন নির্বাচকদের উপেক্ষা করুন।

উদাহরণ

কোড এডিটর (জাভাস্ক্রিপ্ট)

// A dictionary (e.g. results of ee.Image.reduceRegion of an S2 image).
var dict = ee.Dictionary({
  B1: 182,
  B2: 219,
  B3: 443
});

print('Select keys by name', dict.select(['B1', 'B2']));
print('Select keys by regex', dict.select(['B[1-2]']));
print('Set ignoreMissing as true to avoid an unmatched key error',
      dict.select({selectors: ['B1', 'B2', 'Region'], ignoreMissing: true}));

পাইথন সেটআপ

পাইথন এপিআই এবং ইন্টারেক্টিভ ডেভেলপমেন্টের জন্য 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
})

print('Select keys by name:', dic.select(['B1', 'B2']).getInfo())
print('Select keys by regex:', dic.select(['B[1-2]']).getInfo())

dic_select = dic.select(**{'selectors': ['B1', 'B2', 'Region'],
                           'ignoreMissing': True})
print('Set ignoreMissing as true to avoid an unmatched key error:',
      dic_select.getInfo())