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

17 lines (15 loc) 320 B
import { Feature, FeatureCollection, Polygon, MultiPolygon, } from "@turf/helpers"; /** * http://turfjs.org/docs/#polygonSmooth */ export default function <T extends Polygon | MultiPolygon>( polygon: FeatureCollection<T> | Feature<T> | T, options?: { iterations?: number; } ): FeatureCollection<T>;