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

Method list

python/ee/batch.py:193–202  ·  view source on GitHub ↗

Returns the tasks submitted to EE by the current user. These include all currently running tasks as well as recently canceled or failed tasks. Returns: A list of Tasks.

()

Source from the content-addressed store, hash-verified

191
192 @staticmethod
193 def list() -> list[Task]:
194 """Returns the tasks submitted to EE by the current user.
195
196 These include all currently running tasks as well as recently canceled or
197 failed tasks.
198
199 Returns:
200 A list of Tasks.
201 """
202 return list(map(_transform_operation_to_task, data.listOperations()))
203
204 def __repr__(self) -> str:
205 """Returns a string representation of the task."""

Callers 6

getAlgorithmsFunction · 0.80
listOperationsFunction · 0.80
data.jsFile · 0.80
getResponseFunction · 0.80
GetExportedFilesMethod · 0.80

Calls 1

mapClass · 0.85

Tested by 1