MCPcopy Index your code
hub / github.com/google/earthengine-api / And

Method And

python/ee/ee_array.py:135–145  ·  view source on GitHub ↗

Returns 1 if both values are non-zero. Args: right: The values to add. Returns: An ee.Array.

(self, right: _arg_types.Array)

Source from the content-addressed store, hash-verified

133 return apifunction.ApiFunction.call_(self.name() + '.add', self, right)
134
135 def And(self, right: _arg_types.Array) -> Array:
136 """Returns 1 if both values are non-zero.
137
138 Args:
139 right: The values to add.
140
141 Returns:
142 An ee.Array.
143 """
144
145 return apifunction.ApiFunction.call_(self.name() + '.and', self, right)
146
147 def argmax(self) -> ee_list.List:
148 """Returns the position of the maximum value in an array.

Callers

nothing calls this directly

Calls 2

nameMethod · 0.95
call_Method · 0.80

Tested by

no test coverage detected