removeProperties#
- geetools.ImageAccessor.removeProperties(properties)#
Remove a list of properties from an image.
- Parameters:
properties (list | ee.List) – List of properties to remove from the image.
- Returns:
Image with the specified properties removed.
- Return type:
Examples
import ee, geetools ee.Initialize() image = ee.Image('COPERNICUS/S2_SR/20190828T151811_20190828T151809_T18GYT') image = image.geetools.removeProperties(["system:time_start"])