The Gridder3AnisoZLength option sets the anisotropic scale length along the Z axis for the anisotropy for the Inverse Distance gridding method. The OptionValue is any number, representing the distance. The option is only available if Gridder3Aniso=1.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Gridder”)
object.Option(“Gridder3AnisoZLength”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to set the inverse distance gridding anisotropy Z distance.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Gridder")
CommandApi.Option ("Gridder3AnisoZLength", "300")
CommandApi.Do()
Used by: Gridder
See Also