-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Description
In general, but especially also in the QGIS plugin and the Web Editor, openEO processes in JSON need to be fully defined including their potential metadata (see example 1), i.e. it is not enough to just list the graph nodes (see example 2). Unfortunately, the R client and Python client export the graphs without their metadata. This leads reportedly to some confusion when users try to copy/paste the "incomplete" processes into the Web Editor, QGIS Plugin or the Hub for example, which then can't handle them properly. Therefore, I'd really like to see that the R and Python clients print out the full process (see example 1).
Example 1:
{
"process_graph": {
"1": {
"process_id": "add",
"arguments": {
"x": 1,
"y": 2
},
"result": true
}
}
}Example 2:
{
"1": {
"process_id": "add",
"arguments": {
"x": 1,
"y": 2
},
"result": true
}
}