full#
- classmethod geetools.ee_image.ImageAccessor.full(values=[0], names=['constant'])#
Create an image with the given values and names.
- Parameters:
- Returns:
An image with the given values and names.
- Return type:
Examples
import ee, geetools ee.Initialize() image = ee.Image.geetools.full([1, 2, 3], ['a', 'b', 'c']) print(image.bandNames().getInfo())