some adjustments to zoning, included vandersat among others

This commit is contained in:
2021-01-28 15:29:11 +01:00
11 changed files with 472 additions and 242 deletions

View File

@@ -4,7 +4,8 @@ namespace FarmmapsHaulmkilling.Models
{
public string CropfieldItemCode { get; set; }
public string CropfieldName { get; set; }
public string SatelliteTaskCode { get; set; }
public string VanDerSatTaskCode { get; set; }
public string WatBalTaskCode { get; set; }
}
}

View File

@@ -1,7 +1,6 @@
using System;
using Newtonsoft.Json.Linq;
namespace FarmmapsZonering.Models
{
public class ZoneringInput
@@ -17,6 +16,9 @@ namespace FarmmapsZonering.Models
public bool CreateNewCropfield { get; set; }
public int CropYear { get; set; }
public JObject GeometryJson { get; set; }
public bool GetWatBal { get; set; }
public bool GetVanDerSat { get; set; }
public bool storeVanDerSatStatistics { get; set; }
}
}