Types
enum ImageInterpolation {
NEAREST = 'NEAREST',
LINEAR = 'LINEAR',
CUBIC = 'CUBIC',
}
Image interpolation method.
NEAREST
- no interpolation, fastestLINEAR
- medium interpolation qualityCUBIC
- best interpolation quality, slowest
enum ImageType {
SCALAR = 'SCALAR',
VECTOR = 'VECTOR',
}
Image type.
SCALAR
- contains a single variableVECTOR
- contains two variables,u
andv
vector components
type ImageUnscale = [min: number, max: number] | null;
Value bounds to unscale image data to original data, or null if image contains original data already and no unscaling is needed.
interface TextureData {
data: GeoTIFF.TypedArray | Uint8ClampedArray;
width: number;
height: number;
}
Texture data to be used as input to raster rendering layers.
interface UnitFormat {
unit: string;
scale?: number;
offset?: number;
decimals?: number;
}
Format definition to be used for formatting raw values with units.
interface RasterPointProperties {
value: number;
direction?: number;
}
Raster point properties for a particular position.
type DatetimeISOString = string;
Valid ISO 8601 datetime.
type DatetimeISOStringRange = [start: DatetimeISOString, end: DatetimeISOString];
Valid ISO 8601 datetime range.
Last modified 27d ago