2020-08-19 13:40:42 +02:00
|
|
|
|
using System;
|
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
|
|
|
namespace FarmmapsPoten.Models
|
|
|
|
|
{
|
|
|
|
|
public class PotenInput
|
|
|
|
|
{
|
2021-02-16 09:46:50 +01:00
|
|
|
|
|
2020-08-19 13:40:42 +02:00
|
|
|
|
public string File { get; set; }
|
2021-04-14 20:53:26 +02:00
|
|
|
|
public string InputLayerName { get; set; }
|
2020-08-19 13:40:42 +02:00
|
|
|
|
public string OutputFileName { get; set; }
|
|
|
|
|
public string FieldName { get; set; }
|
|
|
|
|
public int PlantingYear { get; set; }
|
|
|
|
|
public string MeanDensity { get; set; }
|
|
|
|
|
public string Variation { get; set; }
|
2021-02-12 17:10:25 +01:00
|
|
|
|
public bool UseShadow { get; set; }
|
2021-03-01 16:31:31 +01:00
|
|
|
|
public bool CountPerArea { get; set; }
|
2020-08-19 13:40:42 +02:00
|
|
|
|
public JObject GeometryJson { get; set; }
|
2021-02-12 17:10:25 +01:00
|
|
|
|
|
|
|
|
|
public bool GenerateTaskmap { get; set; }
|
2021-04-07 10:38:42 +02:00
|
|
|
|
public string OutputType { get; set; }
|
|
|
|
|
public string DdiCode { get; set; }
|
2021-02-12 17:10:25 +01:00
|
|
|
|
public string CellWidth { get; set; }
|
|
|
|
|
public string CellHeight { get; set; }
|
2021-03-01 16:31:31 +01:00
|
|
|
|
public string Centered { get; set; }
|
2021-02-12 17:10:25 +01:00
|
|
|
|
public JObject StartPoint { get; set; }
|
|
|
|
|
public JObject EndPoint { get; set; }
|
|
|
|
|
public string Angle { get; set; }
|
2021-04-12 14:22:24 +02:00
|
|
|
|
public string Precision { get; set; }
|
|
|
|
|
public string MaximumClasses { get; set; }
|
2021-02-12 17:10:25 +01:00
|
|
|
|
|
2020-08-19 13:40:42 +02:00
|
|
|
|
}
|
|
|
|
|
}
|