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
18 lines (15 loc) • 418 B
text/typescript
import { GeoJsonProperties, Feature, LineString, MultiLineString } from 'geojson';
import { Coord } from '@turf/helpers';
/**
* http://turfjs.org/docs/#greatcircle
*/
declare function greatCircle(
start: Coord,
end: Coord,
options?: {
properties?: GeoJsonProperties;
npoints?: number;
offset?: number;
}
): Feature<LineString | MultiLineString>;
export { greatCircle as default, greatCircle };