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
26 lines (24 loc) • 581 B
TypeScript
import { Point, Polygon, Units, FeatureCollection, Grid } from "@turf/helpers";
/**
* http://turfjs.org/docs/#interpolate
*/
export default function interpolate(
points: FeatureCollection<Point>,
cellSize: number,
options?: {
gridType?: "point";
property?: string;
units?: Units;
weight?: number;
}
): FeatureCollection<Point>;
export default function interpolate(
points: FeatureCollection<Point>,
cellSize: number,
options?: {
gridType?: Grid;
property?: string;
units?: Units;
weight?: number;
}
): FeatureCollection<Polygon>;