removeProperties#
- geetools.ee_feature.FeatureAccessor.removeProperties(properties)#
Remove properties from a feature.
- Parameters:
- Returns:
The feature without the properties
- Return type:
Example
import ee, geetools from geetools.utils import initialize_documentation initialize_documentation() feature = ee.Feature(None).set("foo", "bar", "baz", "foo") feature = feature.geetools.removeProperties(["foo"]) feature.getInfo()
{'type': 'Feature', 'geometry': None, 'properties': {'baz': 'foo'}}