Added option to use satellite data in NBS

This commit is contained in:
Riepma
2020-10-14 14:34:42 +02:00
parent 92a8e0d68f
commit 5b4888517e
6 changed files with 337 additions and 152 deletions

View File

@@ -13,5 +13,8 @@ namespace FarmmapsNbs.Models
public string PotatoPurposeType { get; set; }
public int TargetYield { get; set; }
public JObject GeometryJson { get; set; }
public string InputLayerName { get; set; }
}
}

View File

@@ -0,0 +1,8 @@
namespace FarmmapsNbs.Models
{
public class Settings
{
public string CropfieldItemCode { get; set; }
public string SatelliteTaskCode { get; set; }
}
}