UNPKG

gis-tools-ts

Version:

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.

44 lines 1.82 kB
import type { MValue, Properties, RGBA, VectorPoint } from '../../index.js'; export * from './average.js'; export * from './bilinear.js'; export * from './idw.js'; export * from './kriging.js'; export * from './lanczos.js'; export * from './nearest.js'; /** Interpolation method */ export type InterpolationMethod = 'average' | 'nearest' | 'idw' | 'lanczos'; /** * Get the interpolation function based on the method type. * Options are: * - average * - nearest * - idw * - lanczos [default] * @param method - interpolation method as a string * @returns - interpolation function */ export declare function getInterpolation<T extends MValue = Properties>(method: InterpolationMethod): InterpolationFunction<T>; /** * Get the interpolation function based on the method type. * Options are: * - average * - nearest * - idw * - lanczos [default] * @param method - interpolation method as a string * @returns - interpolation function */ export declare function getRGBAInterpolation(method: InterpolationMethod): RGBAInterpolationFunction; /** Function to get the value of a point */ export type GetInterpolateValue<T extends MValue = Properties> = (point: VectorPoint<T>) => number; /** The standard interpolation function */ export type InterpolationFunction<T extends MValue = Properties> = (point: VectorPoint, refData: VectorPoint<T>[], getValue: GetInterpolateValue<T>) => number; /** The standard RGBA interpolation function */ export type RGBAInterpolationFunction = (point: VectorPoint, refData: VectorPoint<RGBA>[]) => RGBA; /** * Default function to get the value of a point * @param point - vector point to pull data from * @returns - the z value */ export declare function defaultGetInterpolateCurrentValue<T extends Properties>(point: VectorPoint<T>): number; //# sourceMappingURL=index.d.ts.map