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

Method test_asin

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

Source from the content-addressed store, hash-verified

251 self.assertEqual(expect, result)
252
253 def test_asin(self):
254 expect = make_expression_graph({
255 'arguments': {
256 'input': ARRAY_ONE,
257 },
258 'functionName': 'Array.asin',
259 })
260 expression = ee.Array([1]).asin()
261 result = json.loads(expression.serialize())
262 self.assertEqual(expect, result)
263
264 def test_atan(self):
265 expect = make_expression_graph({

Callers

nothing calls this directly

Calls 3

make_expression_graphFunction · 0.70
asinMethod · 0.45
serializeMethod · 0.45

Tested by

no test coverage detected