Gridder3Metric Option

 

The Gridder3Metric option changes the data metric type used to create the output grid, created from a Gridder module. This option is only available if the Gridder3Method = 0. The OptionValue is 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, or 20. These are defined by:

 

For

0=Minimum

1=Lower Quartile

2=Median

3=Upper Quartile

4=Maximum

5=Range

6=Midrange

7=Inter-quartile Range

 8=Mean

9=Standard Deviation

10=Variance

11=Coefficient of Variation

12=Sum

13=Median Absolute Deviation

 14=Root Mean Square

15=Count

16=Density

17=Nearest

18=Farthest

19=Median Distance

20=Average Distance

 

Syntax

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

This example shows how to set the data metric type to "Count".

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("Gridder3Metric", "15")

  CommandApi.Do()

 

Used by: Gridder

 

 

See Also

Automation Model