ee_monitoring {rgee} | R Documentation |
Monitoring Earth Engine task progress
Description
Monitoring Earth Engine task progress
Usage
ee_monitoring(
task,
task_time = 5,
eeTaskList = FALSE,
quiet = FALSE,
max_attempts = 5
)
ee_check_task_status(task, quiet = FALSE)
Arguments
task |
List generated after a task is started (i.e., after run
|
task_time |
Numeric. How often (in seconds) should a task be polled? |
eeTaskList |
Logical. If |
quiet |
Logical. Suppress info message |
max_attempts |
Number of times to monitor the tasks before ending. |
Value
An ee$batch$Task
object with a state "COMPLETED" or "FAILED"
according to the Earth Engine server's response.
See Also
Other helper functions:
ee_help()
,
ee_print()
Examples
## Not run:
library(rgee)
ee_Initialize()
ee_monitoring(eeTaskList = TRUE)
## End(Not run)
[Package rgee version 1.1.7 Index]