Calculates the angle formed by the 2D vector [x, y]. Args: right: The y values. Returns: An ee.Array.
(self, right: _arg_types.Array)
| 167 | return apifunction.ApiFunction.call_(self.name() + '.atan', self) |
| 168 | |
| 169 | def atan2(self, right: _arg_types.Array) -> Array: |
| 170 | """Calculates the angle formed by the 2D vector [x, y]. |
| 171 | |
| 172 | Args: |
| 173 | right: The y values. |
| 174 | |
| 175 | Returns: |
| 176 | An ee.Array. |
| 177 | """ |
| 178 | |
| 179 | return apifunction.ApiFunction.call_(self.name() + '.atan2', self, right) |
| 180 | |
| 181 | def bitCount(self) -> Array: |
| 182 | """Calculates the number of one-bits. |