Skip to main content

Type Alias: Affine

Affine = readonly [number, number, number, number, number, number]

Defined in: affine.ts:11

Affine geotransform: [a, b, c, d, e, f].

Maps pixel (col, row) to geographic (x, y):

x = a * col + b * row + c
y = d * col + e * row + f