 | CPGUNumericToThematic Method |
NumericToThematic_PGU Set index values in a pager based on a numeric pager with translation VV.
Returns Nothing
Namespace:
Geosoft.Desktop.GXNet
Assembly:
geosoft.desktop.gxnet (in geosoft.desktop.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void NumericToThematic(
CPG pg_i,
CVV vv,
CPG pg_o
)
public static void NumericToThematic(
CPG pg_i,
CVV vv,
CPG pg_o
)
Public Shared Sub NumericToThematic (
pg_i As CPG,
vv As CVV,
pg_o As CPG
)
Public Shared Sub NumericToThematic (
pg_i As CPG,
vv As CVV,
pg_o As CPG
)
public:
static void NumericToThematic(
CPG^ pg_i,
CVV^ vv,
CPG^ pg_o
)
public:
static void NumericToThematic(
CPG^ pg_i,
CVV^ vv,
CPG^ pg_o
)
static member NumericToThematic :
pg_i : CPG *
vv : CVV *
pg_o : CPG -> unit
static member NumericToThematic :
pg_i : CPG *
vv : CVV *
pg_o : CPG -> unit
Parameters
- pg_i
- Type: GeoEngine.Core.GXNetCPG
Input numeric PG - vv
- Type: GeoEngine.Core.GXNetCVV
Translation VV (see notes above) - pg_o
- Type: GeoEngine.Core.GXNetCPG
Output thematic PG
Remarks
The values in the input data VV represent the center-of-range
values of unique properties with indices 0 to N-1, where N
is the number of items in the input VV.
This VV is sorted from smallest to largest, and each value in
in the input numeric PG is tested to see into which range it goes.
The closest range value for each item is used, so the half-way point
is the dividing point. The top and bottom-most range widths are determined
by the "inside half-width" to the nearest range.
The INDEX of the closest range is then inserted into the output PG, so
it can be used in a thematic voxel (for instance).
See Also