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

Method atan

python/ee/ee_array.py:164–167  ·  view source on GitHub ↗

Computes the arctangent in radians of the input.

(self)

Source from the content-addressed store, hash-verified

162 return apifunction.ApiFunction.call_(self.name() + '.asin', self)
163
164 def atan(self) -> Array:
165 """Computes the arctangent in radians of the input."""
166
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].

Callers

nothing calls this directly

Calls 2

nameMethod · 0.95
call_Method · 0.80

Tested by

no test coverage detected