full#
- geetools.ArrayAccessor.full(width, height, value)#
Create an
ee.Arraywith the given dimensions, initialized to the given value.- Parameters:
- Returns:
An array with the given dimensions, initialized to the given value.
- Return type:
Examples
import ee, geetools from geetools.utils import initialize_documentation initialize_documentation() array = ee.Array.geetools.full(3, 3, 1) array.getInfo()
[[1, 1, 1], [1, 1, 1], [1, 1, 1]]