2021-05-11 13:03:08 +00:00
|
|
|
using System;
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
|
namespace FarmmapsDataDownload.Models
|
|
|
|
{
|
|
|
|
public class DataDownloadInput
|
|
|
|
{
|
|
|
|
public bool UseCreatedCropfield { get; set; }
|
|
|
|
public string File { get; set; }
|
|
|
|
public string InputVariable { get; set; }
|
|
|
|
public string OutputFileName { get; set; }
|
2021-05-26 08:16:29 +00:00
|
|
|
public string DownloadFolder { get; set; }
|
|
|
|
public int CropYear { get; set; }
|
2021-05-11 13:03:08 +00:00
|
|
|
public JObject GeometryJson { get; set; }
|
|
|
|
public string InputLayerName { get; set; }
|
|
|
|
public string fieldName { get; set; }
|
|
|
|
public bool GetSatelliteData { get; set; }
|
|
|
|
public bool GetVanDerSatData { get; set; }
|
|
|
|
public string SatelliteBand { get; set; }
|
2021-05-26 08:16:29 +00:00
|
|
|
public bool StoreSatelliteStatisticsSingleImage { get; set; }
|
2021-05-12 11:05:17 +00:00
|
|
|
public bool StoreSatelliteStatisticsCropYear { get; set; }
|
2021-05-11 13:03:08 +00:00
|
|
|
public bool StoreVanDerSatStatistics { get; set; }
|
|
|
|
public bool GetShadowData { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|