Last updated

API / geotoolkit / contour / visuals / AbstractVisual / BehaviorType

Enumeration: BehaviorType

visuals.AbstractVisual.BehaviorType

The BehaviorType enumeration is used to describe how contour values are mapped to the colorMap, via the ColorBehavior property. (Default is SIMPLE.)

Table of contents

Enumeration Members

Contents

Enumeration Members

SIMPLE

SIMPLE = "Simple"

This maps contours to colors on a one-to-one basis with Contour #0 colored with the first color in the colorMap. Any contours above the highest colorMap entry are colored with this highest colorMap entry.


STRETCH

STRETCH = "Stretch"

Colors are stretched to cover the full range of contour values. I.e. Contour 0 maps to color 0; and Contour (#Contours-1) maps to Color (#Colors-1).


WRAP

WRAP = "Wrap"

Colors wrap around for higher contour values. I.e. color = contour MODULO #Colors