layout: default title: RasterBandStatistics parent: Core Classes —
dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components.Layers
RasterBandStatistics Class
Raster statistics information returned that meets the specified ImageHistogramParameters from the computeStatisticsHistograms() method on ImageryLayer or ImageryTileLayer.
public class RasterBandStatistics :
System.IEquatable<dymaptic.GeoBlazor.Core.Components.Layers.RasterBandStatistics>
Inheritance System.Object 🡒 RasterBandStatistics
Implements System.IEquatable<RasterBandStatistics>
Constructors
RasterBandStatistics(double, double, double, double, Nullable, Nullable, Nullable, Nullable) Constructor
Raster statistics information returned that meets the specified ImageHistogramParameters from the computeStatisticsHistograms() method on ImageryLayer or ImageryTileLayer.
public RasterBandStatistics(double Min, double Max, double Avg, double Stddev, System.Nullable<int> Count, System.Nullable<double> Mode, System.Nullable<double> Median, System.Nullable<double> Sum);
Parameters
Min
System.Double
Minimum value of the statistics.
Max
System.Double
Maximum value of the statistics.
Avg
System.Double
Average of the statistics.
Stddev
System.Double
Standard deviation of the statistics.
Count
System.Nullable<System.Int32>
Count of the statistics.
Mode
System.Nullable<System.Double>
Mode value of the statistics.
Median
System.Nullable<System.Double>
Median value of the statistics.
Sum
System.Nullable<System.Double>
Sum of the statistics.
Properties
RasterBandStatistics.Avg Property
Average of the statistics.
public double Avg { get; set; }
Property Value
RasterBandStatistics.Count Property
Count of the statistics.
public System.Nullable<int> Count { get; set; }
Property Value
RasterBandStatistics.Max Property
Maximum value of the statistics.
public double Max { get; set; }
Property Value
RasterBandStatistics.Median Property
Median value of the statistics.
public System.Nullable<double> Median { get; set; }
Property Value
System.Nullable<System.Double>
RasterBandStatistics.Min Property
Minimum value of the statistics.
public double Min { get; set; }
Property Value
RasterBandStatistics.Mode Property
Mode value of the statistics.
public System.Nullable<double> Mode { get; set; }
Property Value
System.Nullable<System.Double>
RasterBandStatistics.Stddev Property
Standard deviation of the statistics.
public double Stddev { get; set; }
Property Value
RasterBandStatistics.Sum Property
Sum of the statistics.
public System.Nullable<double> Sum { get; set; }