dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components
PixelBlockStatistics Class
An array of objects containing numeric statistical properties.
ArcGIS Maps SDK for JavaScript
public class PixelBlockStatistics : dymaptic.GeoBlazor.Core.Components.MapComponent
Inheritance System.Object 🡒 Microsoft.AspNetCore.Components.ComponentBase 🡒 MapComponent 🡒 PixelBlockStatistics
Constructors
PixelBlockStatistics() Constructor
Parameterless constructor for use as a Razor Component.
public PixelBlockStatistics();
PixelBlockStatistics(Nullable, Nullable, Nullable) Constructor
Constructor for use in C# code. Use named parameters (e.g., item1: value1, item2: value2) to set properties in any order.
public PixelBlockStatistics(System.Nullable<double> maxValue=null, System.Nullable<double> minValue=null, System.Nullable<double> noDataValue=null);
Parameters
maxValue
System.Nullable<System.Double>
The maximum pixel value in the pixels array.
ArcGIS Maps SDK for JavaScript
minValue
System.Nullable<System.Double>
The minimum pixel value in the pixels array.
ArcGIS Maps SDK for JavaScript
noDataValue
System.Nullable<System.Double>
Value representing areas of no data.
ArcGIS Maps SDK for JavaScript
Properties
PixelBlockStatistics.MaxValue Property
The maximum pixel value in the pixels array.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> MaxValue { get; set; }
Property Value
System.Nullable<System.Double>
PixelBlockStatistics.MinValue Property
The minimum pixel value in the pixels array.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> MinValue { get; set; }
Property Value
System.Nullable<System.Double>
PixelBlockStatistics.NoDataValue Property
Value representing areas of no data.
ArcGIS Maps SDK for JavaScript
public System.Nullable<double> NoDataValue { get; set; }
Property Value
System.Nullable<System.Double>
Methods
PixelBlockStatistics.GetMaxValue() Method
Asynchronously retrieve the current value of the MaxValue property.
public System.Threading.Tasks.Task<System.Nullable<double>> GetMaxValue();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Double>>
PixelBlockStatistics.GetMinValue() Method
Asynchronously retrieve the current value of the MinValue property.
public System.Threading.Tasks.Task<System.Nullable<double>> GetMinValue();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Double>>
PixelBlockStatistics.GetNoDataValue() Method
Asynchronously retrieve the current value of the NoDataValue property.
public System.Threading.Tasks.Task<System.Nullable<double>> GetNoDataValue();
Returns
System.Threading.Tasks.Task<System.Nullable<System.Double>>
PixelBlockStatistics.SetMaxValue(Nullable) Method
Asynchronously set the value of the MaxValue property after render.
public System.Threading.Tasks.Task SetMaxValue(System.Nullable<double> value);
Parameters
value
System.Nullable<System.Double>
The value to set.
Returns
PixelBlockStatistics.SetMinValue(Nullable) Method
Asynchronously set the value of the MinValue property after render.
public System.Threading.Tasks.Task SetMinValue(System.Nullable<double> value);
Parameters
value
System.Nullable<System.Double>
The value to set.
Returns
PixelBlockStatistics.SetNoDataValue(Nullable) Method
Asynchronously set the value of the NoDataValue property after render.
public System.Threading.Tasks.Task SetNoDataValue(System.Nullable<double> value);
Parameters
value
System.Nullable<System.Double>
The value to set.