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

Method atan2

python/ee/ee_array.py:169–179  ·  view source on GitHub ↗

Calculates the angle formed by the 2D vector [x, y]. Args: right: The y values. Returns: An ee.Array.

(self, right: _arg_types.Array)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 2

nameMethod · 0.95
call_Method · 0.80

Tested by

no test coverage detected