Projects FarmmapsBulkSatDownload and FarmmapsDataDownload fully updated and tested
Added some extra Tasks to /FarmmapsApi/Services/GeneralService.cs Added class SatelliteStatistics.cs to /FarmmapsApi/Models
This commit is contained in:
29
FarmmapsApi/Models/SatelliteStatistics.cs
Normal file
29
FarmmapsApi/Models/SatelliteStatistics.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace FarmmapsApi.Models
|
||||
{
|
||||
public class SatelliteStatistics
|
||||
{
|
||||
public string fieldName;
|
||||
public DateTime satelliteDate;
|
||||
public string satelliteBand;
|
||||
public double max;
|
||||
public double min;
|
||||
public double mean;
|
||||
public double mode;
|
||||
public double median;
|
||||
public double stddev;
|
||||
public double minPlus;
|
||||
public double curtosis;
|
||||
public double maxMinus;
|
||||
public double skewness;
|
||||
public double variance;
|
||||
public int populationCount;
|
||||
public double variationCoefficient;
|
||||
public double confidenceIntervalLow;
|
||||
public double confidenceIntervalHigh;
|
||||
public double confidenceIntervalErrorMargin;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user