2020-04-08 19:43:03 +00:00
|
|
|
using System;
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
|
namespace FarmmapsNbs.Models
|
|
|
|
{
|
|
|
|
public class NitrogenInput
|
|
|
|
{
|
2021-02-15 16:06:09 +00:00
|
|
|
public bool UseCreatedCropfield { get; set; }
|
2020-06-15 18:50:43 +00:00
|
|
|
public string File { get; set; }
|
2020-04-28 14:35:14 +00:00
|
|
|
public string InputVariable { get; set; }
|
2020-04-08 19:43:03 +00:00
|
|
|
public string OutputFileName { get; set; }
|
|
|
|
public DateTime PlantingDate { get; set; }
|
|
|
|
public DateTime MeasurementDate { get; set; }
|
|
|
|
public string PotatoPurposeType { get; set; }
|
|
|
|
public int TargetYield { get; set; }
|
|
|
|
public JObject GeometryJson { get; set; }
|
2020-12-11 13:02:01 +00:00
|
|
|
public string InputLayerName { get; set; }
|
2021-01-28 14:08:32 +00:00
|
|
|
public string fieldName{ get; set; }
|
|
|
|
public bool storeSatelliteStatistics { get; set; }
|
2021-02-15 16:06:09 +00:00
|
|
|
public bool GenerateTaskmap { get; set; }
|
|
|
|
public string CellWidth { get; set; }
|
|
|
|
public string CellHeight { get; set; }
|
|
|
|
public JObject StartPoint { get; set; }
|
|
|
|
public JObject EndPoint { get; set; }
|
|
|
|
public string Angle { get; set; }
|
2020-12-11 13:02:01 +00:00
|
|
|
|
|
|
|
|
2020-04-08 19:43:03 +00:00
|
|
|
}
|
|
|
|
}
|