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 (18 loc) • 694 B
text/typescript
import { Feature, Geometry } from 'geojson';
/**
* Boolean-touches true if none of the points common to both geometries
* intersect the interiors of both geometries.
*
* @function
* @param {Geometry|Feature<any>} feature1 GeoJSON Feature or Geometry
* @param {Geometry|Feature<any>} feature2 GeoJSON Feature or Geometry
* @returns {boolean} true/false
* @example
* var line = turf.lineString([[1, 1], [1, 2], [1, 3], [1, 4]]);
* var point = turf.point([1, 1]);
*
* turf.booleanTouches(point, line);
* //=true
*/
declare function booleanTouches(feature1: Feature<any> | Geometry, feature2: Feature<any> | Geometry): boolean;
export { booleanTouches, booleanTouches as default };