forked from FarmMaps/FarmMapsApiClient
pepijn van oort
1bc326cfd2
Added some extra Tasks to /FarmmapsApi/Services/GeneralService.cs Added class SatelliteStatistics.cs to /FarmmapsApi/Models
29 lines
816 B
C#
29 lines
816 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FarmmapsBulkSatDownload.Models
|
|
{
|
|
public class GroenmonitorTable
|
|
{
|
|
//double? makes a member nullable
|
|
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;
|
|
}
|
|
}
|