Returns the position of the maximum value in an array. If there are multiple occurrences of the maximum, returns the position of the first. Returns: An ee.List that is empty if the input in an empty ee.Array.
(self)
| 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. |
| 149 | |
| 150 | If there are multiple occurrences of the maximum, returns the position of |
| 151 | the first. |
| 152 | |
| 153 | Returns: |
| 154 | An ee.List that is empty if the input in an empty ee.Array. |
| 155 | """ |
| 156 | |
| 157 | return apifunction.ApiFunction.call_(self.name() + '.argmax', self) |
| 158 | |
| 159 | def asin(self) -> Array: |
| 160 | """Computes the arcsine in radians of the input.""" |