R/user_defined_processes.R
create_user_process.Rd
Uploads the process graph information to the back-end and stores it. This can be used as a user defined process.
create_user_process(
graph,
id = NULL,
summary = NULL,
description = NULL,
submit = TRUE,
con = NULL,
...
)
a process graph definition
the title of the user process
the summary for the user process (optional)
the description for the user process (optional)
whether to create a new user process at the openEO service or to create it for local use (default set to submit = TRUE)
connected and authorized openEO client object (optional) otherwise active_connection()
is used.
additional parameters passed to jsonlite::toJSON() (like 'digits')
a list assembling a process graph description or the graph id if send
The parameter submit
will be deprecated in the future. Please use as(obj, "Process")
.
This function is useful when copying a JSON representation of your process graph to
another software. In that case use udp = as(obj, "Process")
and simply print or call
object udp
on the console.