ee.Dictionary.select

यह फ़ंक्शन, सिर्फ़ तय की गई कुंजियों वाली डिक्शनरी दिखाता है.

इस्तेमालरिटर्न
Dictionary.select(selectors, ignoreMissing)शब्दकोश
आर्ग्यूमेंटटाइपविवरण
यह: dictionaryशब्दकोश
selectorsसूचीचुनी जाने वाली कुंजियों या रेगुलर एक्सप्रेशन की सूची.
ignoreMissingबूलियन, डिफ़ॉल्ट वैल्यू: falseउन सिलेक्टर को अनदेखा करें जो कम से कम एक कुंजी से मेल नहीं खाते.

उदाहरण

कोड एडिटर (JavaScript)

// 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}));

Python सेटअप करना

Python API और इंटरैक्टिव डेवलपमेंट के लिए geemap का इस्तेमाल करने के बारे में जानकारी पाने के लिए, Python एनवायरमेंट पेज देखें.

import ee
import geemap.core as geemap

Colab (Python)

# 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())