ee.Dictionary.remove

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

इस्तेमालरिटर्न
Dictionary.remove(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('Dictionary with selected keys removed', dict.remove(['B2', 'B3']));

print('Set ignoreMissing as true to avoid an unmatched key error',
      dict.remove({selectors: ['B2', 'B3', '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('Dictionary with selected keys removed:',
      dic.remove(['B2', 'B3']).getInfo())

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