UNPKG

node-red-contrib-tak-registration

Version:

A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK

31 lines (28 loc) 682 B
import { FeatureCollection, Point, BBox, Polygon } from 'geojson'; import { Units, Grid } from '@turf/helpers'; /** * http://turfjs.org/docs/#interpolate */ declare function interpolate( points: FeatureCollection<Point>, cellSize: number, options?: { gridType?: "point"; property?: string; units?: Units; weight?: number; bbox?: BBox; } ): FeatureCollection<Point>; declare function interpolate( points: FeatureCollection<Point>, cellSize: number, options?: { gridType?: Grid; property?: string; units?: Units; weight?: number; bbox?: BBox; } ): FeatureCollection<Polygon>; export { interpolate as default, interpolate };