update_user_process {openeo} | R Documentation |
Update an user defined process
Description
You can change details on an already created user defined process. You can either edit the meta data like the summary or the description. Or you can replace the process graph. However, you cannot delete the process graph, but by passing NA to the meta data fields you can empty those fields in the user defined process.
Usage
update_user_process(
id,
graph = NULL,
summary = NULL,
description = NULL,
con = NULL,
...
)
Arguments
id |
process graph id |
graph |
a process graph definition created by combining 'process()', 'collection()' or using a |
summary |
summary of the process graph (optional) |
description |
description of the process graph (optional) |
con |
connected and authorized openEO client object (optional) otherwise |
... |
additional parameters passed to jsonlite::toJSON() (like 'digits') |
[Package openeo version 1.3.1 Index]