MCPcopy
hub / github.com/google/earthengine-api / arrayDimensions

Method arrayDimensions

python/ee/image.py:828–834  ·  view source on GitHub ↗

Returns the number of dimensions in each array band. Gives 0 for scalar image bands.

(self)

Source from the content-addressed store, hash-verified

826 )
827
828 def arrayDimensions(self) -> Image:
829 """Returns the number of dimensions in each array band.
830
831 Gives 0 for scalar image bands.
832 """
833
834 return apifunction.ApiFunction.call_(self.name() + '.arrayDimensions', self)
835
836 def arrayDotProduct(self, image2: _arg_types.Image) -> Image:
837 """Computes the dot product.

Callers 1

test_array_dimensionsMethod · 0.80

Calls 2

nameMethod · 0.95
call_Method · 0.80

Tested by 1

test_array_dimensionsMethod · 0.64