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) • 333 B
TypeScript
import { Feature, Polygon, Units, Coord, Properties } from "@turf/helpers";
/**
* http://turfjs.org/docs/#sector
*/
export default function sector(
center: Coord,
radius: number,
bearing1: number,
bearing2: number,
options?: {
steps?: number;
units?: Units;
properties?: Properties;
}
): Feature<Polygon>;