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
16 lines (14 loc) • 312 B
TypeScript
import { Feature, Coord, Polygon, Units, Properties } from "@turf/helpers";
/**
* http://turfjs.org/docs/#ellipse
*/
export default function (
center: Coord,
xSemiAxis: number,
ySemiAxis: number,
options?: {
steps?: number;
units?: Units;
properties?: Properties;
}
): Feature<Polygon>;