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

Method arrayArgmax

python/ee/image.py:799–806  ·  view source on GitHub ↗

Returns the positional indices of the maximum value of array values. If there are multiple occurrences of the maximum, the indices reflect the first.

(self)

Source from the content-addressed store, hash-verified

797 )
798
799 def arrayArgmax(self) -> Image:
800 """Returns the positional indices of the maximum value of array values.
801
802 If there are multiple occurrences of the maximum, the indices reflect the
803 first.
804 """
805
806 return apifunction.ApiFunction.call_(self.name() + '.arrayArgmax', self)
807
808 def arrayCat(
809 self, image2: _arg_types.Image, axis: _arg_types.Integer

Callers 1

test_array_argmaxMethod · 0.80

Calls 2

nameMethod · 0.95
call_Method · 0.80

Tested by 1

test_array_argmaxMethod · 0.64