Smooths the surface using the Kriging method.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.2516.0

Syntax

C#
public SurfaceOperationSmooth SmoothSurfaceByKriging(
	KrigingMethodOptions krigingOptions,
	SurfacePointOutputOptions pointOutputOptions
)
Visual Basic
Public Function SmoothSurfaceByKriging ( _
	krigingOptions As KrigingMethodOptions, _
	pointOutputOptions As SurfacePointOutputOptions _
) As SurfaceOperationSmooth
Visual C++
public:
SurfaceOperationSmooth^ SmoothSurfaceByKriging(
	KrigingMethodOptions^ krigingOptions, 
	SurfacePointOutputOptions^ pointOutputOptions
)

Parameters

krigingOptions
Type: Autodesk.Civil.DatabaseServices..::..KrigingMethodOptions
The information about the sample data and semivariogram model to smooth a surface using the Kriging method.
pointOutputOptions
Type: Autodesk.Civil.DatabaseServices..::..SurfacePointOutputOptions
The information for interpolation and extrapolation of the point output.

Remarks

Surface smoothing can take a considerable amount of time proportional to the number of output points. For the Kriging method, it is recommended that you use a relatively small sample point set (no more than 100 to 200 points).

See Also