SetBinLimits

SetBinLimits sets the classed post map lower and upper limits of each bin (two elements per bin).

Syntax

object.SetBinLimits( Limits )

Parameter

Type

Required/

Optional

Default

Description

Limits

Array of Doubles

Required

This specifies the minimum and maximum limits for each classes.

Remarks

The Limits array contains the lower and upper limit for each class. The number of classes are adjusted if necessary to correspond to the number of elements divided by two.

Example

This example demonstrates how to create custom bins using an array of doubles named Limits. The even numbered elements within the Limits array represent bin lower limits while the odd numbered elements represent their corresponding upper limits.

Dim Limits(0 to 5) As Double

Limits(0) = 0: Limits(1) = 40

Limits(2) = 40: Limits(3) = 80

Limits(4) = 80: Limits(5) = 120

ClassedPostLayer.SetBinLimits(Limits:=Limits)

Used by: ClassedPostLayer Object