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
21 lines (19 loc) • 347 B
TypeScript
import {
LineString,
MultiLineString,
Feature,
Coord,
Properties,
} from "@turf/helpers";
/**
* http://turfjs.org/docs/#greatcircle
*/
export default function greatCircle(
start: Coord,
end: Coord,
options?: {
properties?: Properties;
npoints?: number;
offset?: number;
}
): Feature<LineString | MultiLineString>;