layout: default title: RasterStatistics parent: Core Classes —
dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components.Renderers
RasterStatistics Class
The input statistics for rasters
ArcGIS Maps SDK for JavaScript
public class RasterStatistics :
System.IEquatable<dymaptic.GeoBlazor.Core.Components.Renderers.RasterStatistics>
Inheritance System.Object 🡒 RasterStatistics
Implements System.IEquatable<RasterStatistics>
Constructors
RasterStatistics(double, double, Nullable, Nullable) Constructor
The input statistics for rasters
ArcGIS Maps SDK for JavaScript
public RasterStatistics(double Min, double Max, System.Nullable<double> Avg=null, System.Nullable<double> Stddev=null);
Parameters
Min
System.Double
The minimum pixel value.
Max
System.Double
The maximum pixel value.
Avg
System.Nullable<System.Double>
The average pixel value.
Stddev
System.Nullable<System.Double>
The standard deviation of the pixel value.
Properties
RasterStatistics.Avg Property
The average pixel value.
public System.Nullable<double> Avg { get; set; }
Property Value
System.Nullable<System.Double>
RasterStatistics.Max Property
The maximum pixel value.
public double Max { get; set; }
Property Value
RasterStatistics.Min Property
The minimum pixel value.
public double Min { get; set; }
Property Value
RasterStatistics.Stddev Property
The standard deviation of the pixel value.
public System.Nullable<double> Stddev { get; set; }