master #16

Merged
mark merged 70 commits from :master into master 2025-01-10 15:39:26 +00:00
3 changed files with 7 additions and 13 deletions
Showing only changes of commit 55f00da9d0 - Show all commits

View File

@ -14,7 +14,7 @@ namespace FarmmapsApiSamples
public const string BLIGHT_ITEMTYPE = "vnd.farmmaps.itemtype.blight"; public const string BLIGHT_ITEMTYPE = "vnd.farmmaps.itemtype.blight";
public const string CROPREC_ITEMTYPE = "vnd.farmmaps.itemtype.crprec.operation"; public const string CROPREC_ITEMTYPE = "vnd.farmmaps.itemtype.crprec.operation";
public const string CROPSCHEME_ITEMTYPE = "vnd.farmmaps.itemtype.croppingscheme"; // deze toegevoegd, misschien is het type van de KPI task wel een croppingscheme public const string CROPSCHEME_ITEMTYPE = "vnd.farmmaps.itemtype.croppingscheme"; // deze toegevoegd, misschien is het type van de KPI task wel een croppingscheme
public const string KPI_ITEM = "vnd.farmmaps.itemtype.kpi.data";
public const string VRANBS_TASK = "vnd.farmmaps.task.vranbs"; public const string VRANBS_TASK = "vnd.farmmaps.task.vranbs";
public const string VRAHERBICIDE_TASK = "vnd.farmmaps.task.vraherbicide"; public const string VRAHERBICIDE_TASK = "vnd.farmmaps.task.vraherbicide";

View File

@ -277,7 +277,7 @@ namespace FarmmapsApi.Services
return bofekItem; return bofekItem;
} }
public async Task<Item> RunKPITask(Item cropfieldItem) // dit is dus nieuw om de KPI task te runnen public async Task<List<Item>> GetKpiItemsForCropField(Item cropfieldItem) // dit is dus nieuw om de KPI task te runnen
{ {
var taskmapRequest = new TaskRequest { TaskType = KPI_TASK }; //hier KPI request van maken var taskmapRequest = new TaskRequest { TaskType = KPI_TASK }; //hier KPI request van maken
taskmapRequest.attributes["processAggregateKpi"] = "false"; // zo de properties meegeven?, moet dit niet bij de KPIinput? taskmapRequest.attributes["processAggregateKpi"] = "false"; // zo de properties meegeven?, moet dit niet bij de KPIinput?
@ -298,20 +298,14 @@ namespace FarmmapsApi.Services
_logger.LogError($"Something went wrong with task execution: {itemTask.Message}"); _logger.LogError($"Something went wrong with task execution: {itemTask.Message}");
return null; return null;
} }
await Task.Delay(60000); //wacht hier een minuut tot de KPIs berekend zijn
//hier nog definieren waar in de hierarchie een KPI item is? //hier nog definieren waar in de hierarchie een KPI item is?
//the kpi data is a child of the cropfield --> is dit wel zo? //the kpi data is a child of the cropfield --> is dit wel zo? is kpi ook de itemName?
var itemName = "kpi";
var KPIItem = await FindChildItemAsync(cropfieldItem.Code,
CROPFIELD_ITEMTYPE, itemName); //hier moet ik dus verwijzen naar waar het KPIItem zit? ik gok dat het een cropfield item type is.-> of onderdeel van een croppingscheme? net toegevoegd.
if (KPIItem == null)
{
_logger.LogError("could not find the KPI data as a child item under the cropfield");
return null;
}
return KPIItem; return await _farmmapsApiService.GetItemChildrenAsync(cropfieldItem.Code, KPI_ITEM);
} }
public async Task<Item> RunAhnTask(Item cropfieldItem) { public async Task<Item> RunAhnTask(Item cropfieldItem) {

View File

@ -145,7 +145,7 @@ namespace FarmmapsKPI
// Get KPI data // Get KPI data
_logger.LogInformation("Calculate KPI map for field"); _logger.LogInformation("Calculate KPI map for field");
var KPIItem = await _generalService.RunKPITask(cropfieldItem);// hier dus verwijzen naar de KPI task var KPIItem = await _generalService.GetKpiItemsForCropField(cropfieldItem);// hier dus verwijzen naar de KPI task
if ((object)null == null) if ((object)null == null)
{ {
_logger.LogError("Something went wrong while obtaining the KPI map"); _logger.LogError("Something went wrong while obtaining the KPI map");