Gridder3Method Option

 

The Gridder3Method option changes the gridding interpolation method used to create the output grid, created from a Gridder module. The OptionValue is 0, 1, or 2 for Data Metric, Inverse Distance, or Local Polynomial.

 

Syntax

object.Construct(“ModifyModule”)

object.Option(“Module”, “Gridder”)

object.Option(“Gridder3Method”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to set the gridding method to "Data Metric".

 

  CommandApi.Construct ("ModifyModule")

  CommandApi.Option ("Module", "Gridder")

  CommandApi.Option ("Gridder3Method", "0")

  CommandApi.Do()

 

 

Used by: Gridder

 

 

See Also

Automation Model