Compare commits

..

No commits in common. "8f8f857bf08bcfc9f3575e0e3e2ab9b54401e44d" and "be22d631bce4a6aa8f6f4c8073f17d2f7cbdf083" have entirely different histories.

4 changed files with 4 additions and 17 deletions

View File

@ -13,8 +13,6 @@ namespace FarmmapsApiSamples
public const string GEOJSON_ITEMTYPE = "vnd.farmmaps.itemtype.geojson"; public const string GEOJSON_ITEMTYPE = "vnd.farmmaps.itemtype.geojson";
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 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

@ -300,12 +300,12 @@ namespace FarmmapsApi.Services
//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 //the kpi data is a child of the cropfield
var itemName = "kpi"; var itemname = "KPI";
var KPIItem = await FindChildItemAsync(cropfieldItem.Code, 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. CROPFIELD_ITEMTYPE, itemname); //hier moet ik dus verwijzen naar waar het KPIItem zit? ik gok dat het een cropfield item type is...
if (KPIItem == null) if (KPIItem == null)
{ {
_logger.LogError("could not find the KPI data as a child item under the cropfield"); _logger.LogError("could not find the bofek data as a child item under the cropfield");
return null; return null;
} }

View File

@ -14,7 +14,6 @@
"GetVanDerSatData": false, "GetVanDerSatData": false,
"StoreVanDerSatStatistics": false, "StoreVanDerSatStatistics": false,
"CropYear": 2020, "CropYear": 2020,
"ProcessAggegrateKpi": "false", // toegevoegd, want alleen veld level KPIs voor nu.
"geometryJson": { "geometryJson": {
"type": "Polygon", "type": "Polygon",
"coordinates": [ "coordinates": [

View File

@ -23,17 +23,7 @@ namespace FarmmapsKPI
_farmmapsApiService = farmmapsApiService; _farmmapsApiService = farmmapsApiService;
_generalService = generalService; _generalService = generalService;
} }
// zoiets kan ik overwegen als ik de itemtype niet kan vinden
//public async Task<Item> CreateTargetKPIItem(Item cropfieldItem)
//{
// var itemRequest = new ItemRequest()
// {
// ParentCode = cropfieldItem.ParentCode,
// ItemType = USERINPUT_ITEMTYPE,
// Name = "kpi"
// };
// return await _farmmapsApiService.CreateItemAsync(itemRequest);
//}
} }
} }