API Workflow parameters #115
-
Hi all, I have a VM running Farmvibes and the API exposed to be consumed by our product but I have some issues regarding the parameters of the following workflow: data_processing/index/index This is the error message
For this I sent this parameters:
Can you please help me with this? I want to understand what parameters the workflow expects. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, @hugo-codestack. Thanks for using FarmVibes.AI and raising this question. You are missing a workflow that downloads a Raster, over which the NDVI will be computed. The workflow The following examples and documentation will probably help you:
Please, let me know if you are able to run your workflow. |
Beta Was this translation helpful? Give feedback.
Hi, @hugo-codestack. Thanks for using FarmVibes.AI and raising this question.
You are missing a workflow that downloads a Raster, over which the NDVI will be computed. The workflow
data_processing/index/index
expects aRaster
object, which comes from a few of our data_ingestion workflows (e.g., Sentinel-2, LandSat, etc). You are passing as input aDataVibe
with the geometry and time range, but these should first be used to download the raster.The following examples and documentation will probably help you:
data_processing/index/index
workflow to compute several indic…