ee.Dictionary.remove
Returns a dictionary with the specified keys removed.
Usage | Returns | Dictionary.remove(selectors, ignoreMissing) | Dictionary |
Argument | Type | Details | this: dictionary | Dictionary | |
selectors | List | A list of keys names or regular expressions of key names to remove. |
ignoreMissing | Boolean, default: false | Ignore selectors that don't match at least 1 key. |
Examples
Code Editor (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 setup
See the
Python Environment page for information on the Python API and using
geemap
for interactive development.
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())
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["The `remove()` method returns a new dictionary with the specified keys removed from the original dictionary."],["`selectors` argument accepts a list of key names or regular expressions to identify the keys to be removed."],["`ignoreMissing`, when set to true, prevents errors if any of the specified selectors do not match existing keys in the dictionary."]]],[]]