The Gridder3DistancePower option sets the exponent 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(“Gridder3DistancePower”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to set the exponent used for the Inverse Distance gridding method.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Gridder")
CommandApi.Option ("Gridder3DistancePower", "2.4")
CommandApi.Do()
Used by: Gridder
See Also