Types

Image Types

ImageInterpolation

enum ImageInterpolation {
  NEAREST = 'NEAREST',
  LINEAR = 'LINEAR',
  CUBIC = 'CUBIC',
}

Image interpolation method.

  • NEAREST - no interpolation, fastest

  • LINEAR - medium interpolation quality

  • CUBIC - best interpolation quality, slowest

ImageType

enum ImageType {
  SCALAR = 'SCALAR',
  VECTOR = 'VECTOR',
}

Image type.

  • SCALAR - contains a single variable

  • VECTOR - contains two variables, u and v vector components

ImageUnscale

Value bounds to unscale image data to original data, or null if image contains original data already and no unscaling is needed.

ImageProperties

Properties to render a single image.

DirectionType

Direction type to be used for formatting.

  • INWARD - formats direction inwards from outside to the current point

    • meteorological - wind, waves

  • OUTWARD - formats direction outwards from the current point to outside

    • climatological data - currents

DirectionFormat

Direction format to be used for formatting.

  • VALUE - formats direction as a value in degrees

  • CARDINAL - formats direction as a 1-letter cardinal (4 possible values)

    • N, E, S, W

  • CARDINAL2 - formats direction as a 2-letter cardinal (8 possible values)

    • N, NE, E, SE, S, SW, W, NW

  • CARDINAL3 - formats direction as a 3-letter cardinal (16 possible values)

    • N, NNE, NE, ENE, E, ESE, SE, SSE, S, SSW, SW, WSW, W, WNW, NW, NNW

Compass Rose (Source: Wikipedia)

Placement

Tooltip control placement from the mouse cursor position.

Load Types

TextureData

Texture data to be used as input to raster rendering layers.

UnitFormat

Format definition to be used for formatting raw values with units.

RasterPointProperties

Raster point properties for a particular position.

Datetime Types

DatetimeISOString

Valid ISO 8601 datetime.

DatetimeISOStringRange

Valid ISO 8601 datetime range.

OpenDatetimeISOStringRange

Valid ISO 8601 datetime range. Null start/end represent an open end.

DurationISOString

Valid ISO 8601 duration.

Last updated