The Gridder3DistanceSmooth option sets the interpolation smoothing factor in the Inverse Distance gridding method weighting formula. The OptionValue is any number, representing the distance. The option is only available if Gridder3Aniso=2.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Gridder”)
object.Option(“Gridder3DistanceSmooth”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to set the smoothing factor used for the Inverse Distance gridding method.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Gridder")
CommandApi.Option ("Gridder3DistanceSmooth", "4.1")
CommandApi.Do()
Used by: Gridder
See Also