Click or drag to resize

CIMUGridStatExt64 Method

Reports statistics of a grid's elements (64-bit counts for large grids).

Namespace:  GeoEngine.Core.GXNetX
Assembly:  geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2026.1.0.24
Syntax
public static void GridStatExt64(
	CGXNETCore gxNetShared,
	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(
	CGXNETCore gxNetShared,
	string grid,
	int force,
	ref long items,
	ref long dums,
	ref double min,
	ref double max,
	ref double mean,
	ref double stddev
)

Parameters

gxNetShared
Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore
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