Skip to main content

flywave-terrain-datasource.groundmodificationoptions

Home > @flywave/flywave-terrain-datasource > GroundModificationOptions

GroundModificationOptions interface

Kriging interpolation parameter configuration

This interface defines the parameters used for kriging interpolation in ground modification operations. Kriging is a geostatistical method for spatial interpolation that provides optimal predictions.

Signature:

export interface GroundModificationOptions 

Properties

Property

Modifiers

Type

Description

alpha?

number

(Optional) Smoothing parameter (alpha)

Controls the smoothness of the interpolation. Lower values produce smoother surfaces, while higher values allow for more local variation.

model?

"gaussian" | "exponential" | "spherical"

(Optional) Interpolation model type

Different models have different characteristics: - "gaussian": Smooth interpolation with rapid decay - "exponential": Moderate smoothness with exponential decay - "spherical": Limited range with compact support

numPoints?

number

(Optional) Number of interpolation points

Specifies how many points to use in the interpolation process. More points generally produce more accurate results but require more computational resources.

sigma2?

number

(Optional) Variance parameter (sigma squared)

Controls the overall variance of the interpolation model. Higher values result in more variation in the interpolated surface.