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

20 lines (18 loc) 378 B
import { Point, MultiPolygon, FeatureCollection, Properties, } from "@turf/helpers"; /** * http://turfjs.org/docs/#isobands */ export default function isobands( points: FeatureCollection<Point>, breaks: number[], options?: { zProperty?: string; commonProperties?: Properties; breaksProperties?: Properties[]; } ): FeatureCollection<MultiPolygon>;