forked from FarmMaps/FarmMapsApiClient
updated names of output KPI B1 and B2 + added yieldStraw to output (non functional)
This commit is contained in:
@@ -16,16 +16,17 @@ namespace FarmmapsKPI.Models
|
||||
public string parentName { get; set; }
|
||||
public string targetValue { get; set; }
|
||||
public string thresholdValue { get; set; }
|
||||
|
||||
|
||||
public List<string> A1elements; //TtD
|
||||
public List<string> B1elements;
|
||||
public List<string> B2elements;
|
||||
public List<string> C1elements; //TtD
|
||||
public List<string> C1elements;
|
||||
public KPIOutput()
|
||||
{
|
||||
this.B1elements = new List<string>() { "disposal", "nFixationNKgHa", "nDepositionNKgHa","nFertilizerNKgHa","sowPlantingNKgHa" }; //TODO Tamara: rename disposal to nHarvestedNKgHa
|
||||
this.B2elements = new List<string>() { "disposal", "pFertillizerNKgHa", "sowPlantingNKgHa" }; //TODO Tamara: rename from pFertilizerNKgHa to pFertilizerPKgHa; rename disposal to pHarvestedPKgHa
|
||||
this.C1elements = new List<string>() { "fertilizerEom", "greenManureEom", "cropLeftoversEom" }; //TtD
|
||||
|
||||
this.A1elements = new List<string>() { "yield", "strawYield" }; //TtD
|
||||
this.B1elements = new List<string>() { "nHarvestedKgHa", "nHarvestedStrawKgHa", "nFixationNKgHa", "nDepositionNKgHa","nFertilizerNKgHa","sowPlantingNKgHa" }; //TtD
|
||||
this.B2elements = new List<string>() { "pHarvestedKgHa", "pHarvestedStrawKgHa", "pFertillizerPKgHa", "sowPlantingPKgHa" }; //TtD
|
||||
this.C1elements = new List<string>() { "fertilizerEom", "greenManureEom", "cropLeftoversEom" }; //TtD to do rename
|
||||
}
|
||||
}
|
||||
public class KPIOutputData
|
||||
@@ -50,18 +51,20 @@ namespace FarmmapsKPI.Models
|
||||
}
|
||||
public class KPIelementsOfBalance
|
||||
{
|
||||
public string disposal { get; set; } //TODO Tamara: rename this one
|
||||
public string yield { get; set; } //TtD
|
||||
public string strawYield { get; set; } //TtD
|
||||
public string nHarvestedKgHa { get; set; } //TtD
|
||||
public string nHarvestedStrawKgHa { get; set; } //TtD
|
||||
public string nFixationNKgHa { get; set; }
|
||||
public string nDepositionNKgHa { get; set; }
|
||||
public string nFertilizerNKgHa { get; set; }
|
||||
public string sowPlantingNKgHa { get; set; }
|
||||
public string pFertillizerNKgHa { get; set; } //TODO Tamara: delete this one after renaming
|
||||
public string pFertilizerPKgHa { get; set; }
|
||||
public string sowPlantingPKgHa { get; set; }
|
||||
public string pHarvestedKgHa { get; set; } //TtD
|
||||
public string pHarvestedStrawKgHa { get; set; } //TtD
|
||||
public string pFertillizerPKgHa { get; set; } //TtD
|
||||
public string sowPlantingPKgHa { get; set; } //TtD
|
||||
public string fertilizerEom { get; set; } //TtD
|
||||
public string greenManureEom { get; set; } //TtD
|
||||
public string cropLeftoversEom { get; set; } //TtD
|
||||
|
||||
|
||||
public string cropLeftoversEom { get; set; } //TtD tamara: rename
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user