2021-05-18 16:19:28 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace FarmmapsBulkSatDownload.Models
|
|
|
|
|
{
|
|
|
|
|
public class GroenmonitorTable
|
|
|
|
|
{
|
2021-05-26 08:16:29 +00:00
|
|
|
|
//double? makes a member nullable
|
2021-05-18 16:19:28 +00:00
|
|
|
|
public int parcelid;
|
|
|
|
|
public string date;
|
|
|
|
|
public string source;
|
|
|
|
|
public int wdvi_pixelcount; //count of pixels with data
|
|
|
|
|
public double wdvi_max;
|
|
|
|
|
public double wdvi_mean;
|
|
|
|
|
public double wdvi_min;
|
|
|
|
|
public double wdvi_stdev;
|
|
|
|
|
public double wdvi_median;
|
|
|
|
|
public double wdvi_p90;
|
|
|
|
|
public int ndvi_pixelcount; //count of pixels with data
|
|
|
|
|
public double ndvi_max;
|
|
|
|
|
public double ndvi_mean;
|
|
|
|
|
public double ndvi_min;
|
|
|
|
|
public double ndvi_stdev;
|
|
|
|
|
public double ndvi_median;
|
|
|
|
|
public double ndvi_p90;
|
|
|
|
|
}
|
|
|
|
|
}
|