geetools.Feature.FeatureAccessor.removeProperties#

geetools.Feature.FeatureAccessor.removeProperties(properties)#

Remove properties from a feature.

Parameters:

properties (geetools.types.ee_list) – List of properties to remove

Returns:

The feature without the properties

Return type:

ee.Feature

Example

import ee
import geetools

ee.Initialize()

feature = ee.Feature(None).set("foo", "bar", "baz", "foo")
feature = feature.geetools.removeProperties(["foo"])
print(feature.getInfo())