The Gridder3AnisoXLength option sets the anisotropic scale length along the X 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(“Gridder3AnisoXLength”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to set the inverse distance gridding anisotropy X distance.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Gridder")
CommandApi.Option ("Gridder3AnisoXLength", "50")
CommandApi.Do()
Used by: Gridder
See Also