full#
- classmethod geetools.ImageAccessor.full(values=None, names=None)#
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())