Package-level declarations

Types

Link copied to clipboard

Boolean values associated with each point across a two-dimensional (x, y) extent. A boolean field identifies areas for which some condition is met and provides a means of identifying areas to be included in or excluded from analysis.

Link copied to clipboard

A function that returns a BooleanField when evaluated. Use BooleanFieldFunction.evaluate to compute the result of this function.

Link copied to clipboard

Continuous floating-point values associated with each point across a two-dimensional (x, y) extent. Continuous fields represent phenomena that vary continuously across the two-dimensional extent. For example, a field in which each location is an interpolated measure of a phenomenon. Continuous data is also referred to as nondiscrete, or surface data.

Link copied to clipboard

A function that returns a ContinuousField when evaluated. Use ContinuousFieldFunction.evaluate to compute the result of this function.

Link copied to clipboard

Discrete integer values associated with each point across a two-dimensional (x, y) extent. Discrete fields are sometimes called thematic, categorical, or discontinuous data. They most often represent objects with known and definable boundaries. A lake is a discrete object within the surrounding landscape. Where the water's edge meets the land can be definitively established. Other examples of discrete objects include buildings, roads, and parcels. Discrete objects are usually nouns.

Link copied to clipboard

A function that returns a DiscreteField when evaluated. Use DiscreteFieldFunction.evaluate to compute the result of this function.

Link copied to clipboard
sealed class HeightOrigin

An enumeration of the various ways a height value may be interpreted.

Functions

Link copied to clipboard
fun abs(continuousFieldFunction: ContinuousFieldFunction): ContinuousFieldFunction

Composes a function that returns the absolute value of continuousFieldFunction's field result across its extent.

fun abs(discreteFieldFunction: DiscreteFieldFunction): DiscreteFieldFunction

Composes a function that returns the absolute value of discreteFieldFunction's field result across its extent.

Link copied to clipboard

Composes a function that rounds continuousFieldFunction's field result, point-wise, upwards to the nearest integer across its extent.

Link copied to clipboard

Composes a function that rounds continuousFieldFunction's field result, point-wise, downwards to the nearest integer across its extent.

Link copied to clipboard

Composes a function that rounds continuousFieldFunction's field result, point-wise, to the nearest integer.