-
Notifications
You must be signed in to change notification settings - Fork 17
Closed
Description
@m-mohr, @flahn
I was testing the EODC backend and couldn't get batch jobs to run. I'm using the dev backend (batch is currently not working on live).
The Process Graphs from the R-Client fill the schema part like this:
p = processes()
data = p$load_collection(id = collection,
spatial_extent = bbox,
temporal_extent = time_range,
bands = bands)
ndvi_calc = p$reduce_dimension(data = data,
dimension = "bands",
reducer = function(data, context) {
red = data[1]
nir = data[2]
ndvi = (nir-red)/(nir+red)
return(ndvi)
})
result = p$save_result(data = ndvi_calc, format="NetCDF")
graph_info = create_user_process(result, id = "test", submit = FALSE)
print(jsonlite::toJSON(graph_info, pretty = TRUE, auto_unbox = TRUE))
{
"id": "test",
"process_graph": {
"load_collection_CXXKP3729P": {
"process_id": "load_collection",
"arguments": {
"id": "boa_sentinel_2",
"spatial_extent": {
"west": 11.5383,
"east": 11.5383,
"south": 46.4867,
"north": 46.4867
},
"temporal_extent": [
"2016-01-07T12:00:00Z",
"2016-04-29T12:00:00Z"
],
"bands": [
"B04",
"B08"
]
}
},
"reduce_dimension_ZUASW3097D": {
"process_id": "reduce_dimension",
"arguments": {
"data": {
"from_node": "load_collection_CXXKP3729P"
},
"reducer": {
"process_graph": {
"array_element_NKODW5210T": {
"process_id": "array_element",
"arguments": {
"data": {
"from_parameter": "data"
},
"index": 1,
"return_nodata": true
}
},
"array_element_IJDDF0819R": {
"process_id": "array_element",
"arguments": {
"data": {
"from_parameter": "data"
},
"index": 0,
"return_nodata": true
}
},
"subtract_SJQET9903U": {
"process_id": "subtract",
"arguments": {
"x": {
"from_node": "array_element_NKODW5210T"
},
"y": {
"from_node": "array_element_IJDDF0819R"
}
}
},
"add_EEYVX5550O": {
"process_id": "add",
"arguments": {
"x": {
"from_node": "array_element_NKODW5210T"
},
"y": {
"from_node": "array_element_IJDDF0819R"
}
}
},
"divide_ODGYJ5214M": {
"process_id": "divide",
"arguments": {
"x": {
"from_node": "subtract_SJQET9903U"
},
"y": {
"from_node": "add_EEYVX5550O"
}
},
"result": true
}
}
},
"dimension": "bands",
"context": null
}
},
"save_result_MVCCL0551V": {
"process_id": "save_result",
"arguments": {
"data": {
"from_node": "reduce_dimension_ZUASW3097D"
},
"format": "NetCDF",
"options": [
"{}"
]
},
"result": true
}
},
"parameters": [],
"returns": {
"schema": {
"type": "boolean",
"subtype": [],
"pattern": [],
"parameters": [],
"items": {
"type": {}
},
"minItems": [],
"maxItems": []
}
}
}
The error the I get from EODC is this:
> job = create_job(graph = result,
+ title = out_name,
+ description = out_name,
+ format = "netCDF",
+ con = con)
SERVER-ERROR: {'returns': {'schema': {0: {'minItems': ['Not a valid number.'], 'subtype': ['Not a valid string.'], 'pattern': ['Not a valid string.'], 'maxItems': ['Not a valid number.']}}}, 'id': ['Field may not be null.']}
@sophieherrmann pointed out that the API Spec asks some parameters to be strings:
https://api.openeo.org/#operation/create-job
On other backends (VITO, EURAC) I don't get this error.