 | CMULTIGRID3DUTILGenerateRBF Method |
Note: This API is now obsolete.
Creates a VOXEL from an database using RBF.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2025.1.0.25
Syntax[ObsoleteAttribute("Deprecated since 9.6, Removed.")]
public static void GenerateRBF(
CGXNETCore gxNetShared,
CDB db,
string output_file,
string data_channel,
double cell_size,
double error_tolerance,
int max_iterations,
int desample,
int kernel,
double kernel_epsilon
)
[ObsoleteAttribute("Deprecated since 9.6, Removed.")]
public static void GenerateRBF(
CGXNETCore gxNetShared,
CDB db,
string output_file,
string data_channel,
double cell_size,
double error_tolerance,
int max_iterations,
int desample,
int kernel,
double kernel_epsilon
)
<ObsoleteAttribute("Deprecated since 9.6, Removed.")>
Public Shared Sub GenerateRBF (
gxNetShared As CGXNETCore,
db As CDB,
output_file As String,
data_channel As String,
cell_size As Double,
error_tolerance As Double,
max_iterations As Integer,
desample As Integer,
kernel As Integer,
kernel_epsilon As Double
)
<ObsoleteAttribute("Deprecated since 9.6, Removed.")>
Public Shared Sub GenerateRBF (
gxNetShared As CGXNETCore,
db As CDB,
output_file As String,
data_channel As String,
cell_size As Double,
error_tolerance As Double,
max_iterations As Integer,
desample As Integer,
kernel As Integer,
kernel_epsilon As Double
)
public:
[ObsoleteAttribute(L"Deprecated since 9.6, Removed.")]
static void GenerateRBF(
CGXNETCore^ gxNetShared,
CDB^ db,
String^ output_file,
String^ data_channel,
double cell_size,
double error_tolerance,
int max_iterations,
int desample,
int kernel,
double kernel_epsilon
)
public:
[ObsoleteAttribute(L"Deprecated since 9.6, Removed.")]
static void GenerateRBF(
CGXNETCore^ gxNetShared,
CDB^ db,
String^ output_file,
String^ data_channel,
double cell_size,
double error_tolerance,
int max_iterations,
int desample,
int kernel,
double kernel_epsilon
)
[<ObsoleteAttribute("Deprecated since 9.6, Removed.")>]
static member GenerateRBF :
gxNetShared : CGXNETCore *
db : CDB *
output_file : string *
data_channel : string *
cell_size : float *
error_tolerance : float *
max_iterations : int *
desample : int *
kernel : int *
kernel_epsilon : float -> unit
[<ObsoleteAttribute("Deprecated since 9.6, Removed.")>]
static member GenerateRBF :
gxNetShared : CGXNETCore *
db : CDB *
output_file : string *
data_channel : string *
cell_size : float *
error_tolerance : float *
max_iterations : int *
desample : int *
kernel : int *
kernel_epsilon : float -> unit
Parameters
- gxNetShared
- Type: GeoEngine.Core.GXNetXCGXNETCore
A shared CGXNETCore - db
- Type: GeoEngine.Core.GXNetXCDB
Handle to a database - output_file
- Type: SystemString
Name of the output grid3d - data_channel
- Type: SystemString
Channel to grid` - cell_size
- Type: SystemDouble
Cell size - error_tolerance
- Type: SystemDouble
Error Tolerance - max_iterations
- Type: SystemInt32
Maximum number of iterations (>0) - desample
- Type: SystemInt32
Desample data (1) or use as is (0) - kernel
- Type: SystemInt32
<define>RBFKERNEL</define> - kernel_epsilon
- Type: SystemDouble
Kernel Epsilon
See Also