 | CIMUDecimateCrookedSectionGrid Method |
Decimate a crooked section grid.
Namespace:
GeoEngine.Core.GXNet
Assembly:
geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2024.2.0.25
Syntaxpublic static void DecimateCrookedSectionGrid(
CIMG img,
int dec_X,
int dec_y,
string out
)
public static void DecimateCrookedSectionGrid(
CIMG img,
int dec_X,
int dec_y,
string out
)
Public Shared Sub DecimateCrookedSectionGrid (
img As CIMG,
dec_X As Integer,
dec_y As Integer,
out As String
)
Public Shared Sub DecimateCrookedSectionGrid (
img As CIMG,
dec_X As Integer,
dec_y As Integer,
out As String
)
public:
static void DecimateCrookedSectionGrid(
CIMG^ img,
int dec_X,
int dec_y,
String^ out
)
public:
static void DecimateCrookedSectionGrid(
CIMG^ img,
int dec_X,
int dec_y,
String^ out
)
static member DecimateCrookedSectionGrid :
img : CIMG *
dec_X : int *
dec_y : int *
out : string -> unit
static member DecimateCrookedSectionGrid :
img : CIMG *
dec_X : int *
dec_y : int *
out : string -> unit
Parameters
- img
- Type: GeoEngine.Core.GXNetCIMG
Input grid IMG - dec_X
- Type: SystemInt32
:def:Decimation factor along section (>=1) - dec_y
- Type: SystemInt32
:def:Decimation factor down section (>=1) - out
- Type: SystemString
File name of output grid
Remarks
For decimation factor N, every MN'th value is selected
for M = 0, 1, 2, ...
The full distance is recalculated based on the remaining
points because it will almost certainly be smaller.
See Also