 | CIMUGridStatExt64 Method |
Reports statistics of a grid's elements (64-bit counts for large grids).
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2026.1.0.24
Syntaxpublic static void GridStatExt64(
string grid,
int force,
ref long items,
ref long dums,
ref double min,
ref double max,
ref double mean,
ref double stddev
)
public static void GridStatExt64(
string grid,
int force,
ref long items,
ref long dums,
ref double min,
ref double max,
ref double mean,
ref double stddev
)
Public Shared Sub GridStatExt64 (
grid As String,
force As Integer,
ByRef items As Long,
ByRef dums As Long,
ByRef min As Double,
ByRef max As Double,
ByRef mean As Double,
ByRef stddev As Double
)
Public Shared Sub GridStatExt64 (
grid As String,
force As Integer,
ByRef items As Long,
ByRef dums As Long,
ByRef min As Double,
ByRef max As Double,
ByRef mean As Double,
ByRef stddev As Double
)
public:
static void GridStatExt64(
String^ grid,
int force,
long long% items,
long long% dums,
double% min,
double% max,
double% mean,
double% stddev
)
public:
static void GridStatExt64(
String^ grid,
int force,
long long% items,
long long% dums,
double% min,
double% max,
double% mean,
double% stddev
)
static member GridStatExt64 :
grid : string *
force : int *
items : int64 byref *
dums : int64 byref *
min : float byref *
max : float byref *
mean : float byref *
stddev : float byref -> unit
static member GridStatExt64 :
grid : string *
force : int *
items : int64 byref *
dums : int64 byref *
min : float byref *
max : float byref *
mean : float byref *
stddev : float byref -> unit
Parameters
- grid
- Type: SystemString
Name of the grid to get stats from - force
- Type: SystemInt32
<define>IMU_STAT_FORCED</define> - items
- Type: SystemInt64
Number of valid elements in grid - dums
- Type: SystemInt64
Number of dummies in grid - min
- Type: SystemDouble
Minimum grid value - max
- Type: SystemDouble
Maximum grid value - mean
- Type: SystemDouble
Grid mean - stddev
- Type: SystemDouble
Grid standard deviation
Remarks
Use instead of GridStatExt_IMU for grids exceeding ~2.1 billion cells
(i.e. where the product of X and Y dimensions exceeds 2,147,483,647).
If the <define>IMU_STAT_FORCED</define> value is set, the statistics will be recalculated.
Statistics are returned in the parameter set.
See Also