MCPcopy
hub / github.com/google/earthengine-api / test_atan

Method test_atan

python/ee/tests/ee_array_test.py:264–273  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

262 self.assertEqual(expect, result)
263
264 def test_atan(self):
265 expect = make_expression_graph({
266 'arguments': {
267 'input': ARRAY_ONE,
268 },
269 'functionName': 'Array.atan',
270 })
271 expression = ee.Array([1]).atan()
272 result = json.loads(expression.serialize())
273 self.assertEqual(expect, result)
274
275 def test_atan2(self):
276 expect = make_expression_graph({

Callers

nothing calls this directly

Calls 3

make_expression_graphFunction · 0.70
atanMethod · 0.45
serializeMethod · 0.45

Tested by

no test coverage detected