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) 389 B
import { Point, MultiLineString, FeatureCollection, Properties, } from "@turf/helpers"; /** * http://turfjs.org/docs/#isolines */ export default function isolines( points: FeatureCollection<Point, any>, breaks: number[], options?: { zProperty?: string; commonProperties?: Properties; breaksProperties?: Properties[]; } ): FeatureCollection<MultiLineString>;