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
306 lines (287 loc) • 7.18 kB
TypeScript
import { GeoJsonProperties, Feature, FeatureCollection, GeometryCollection, Geometry, GeometryObject, BBox, LineString, MultiLineString, Polygon, MultiPolygon, Point } from 'geojson';
import { AllGeoJSON, Id, Lines } from '@turf/helpers';
/**
* http://turfjs.org/docs/#coordreduce
*/
declare function coordReduce<Reducer>(
geojson: AllGeoJSON,
callback: (
previousValue: Reducer,
currentCoord: number[],
coordIndex: number,
featureIndex: number,
multiFeatureIndex: number,
geometryIndex: number
) => Reducer,
initialValue?: Reducer
): Reducer;
/**
* http://turfjs.org/docs/#coordeach
*/
declare function coordEach(
geojson: AllGeoJSON,
callback: (
currentCoord: number[],
coordIndex: number,
featureIndex: number,
multiFeatureIndex: number,
geometryIndex: number
) => void,
excludeWrapCoord?: boolean
): void;
/**
* http://turfjs.org/docs/#propeach
*/
declare function propEach<Props extends GeoJsonProperties>(
geojson: Feature<any> | FeatureCollection<any> | Feature<GeometryCollection>,
callback: (currentProperties: Props, featureIndex: number) => void
): void;
/**
* http://turfjs.org/docs/#propreduce
*/
declare function propReduce<
Reducer,
P extends GeoJsonProperties = GeoJsonProperties,
>(
geojson: Feature<any, P> | FeatureCollection<any, P> | Geometry,
callback: (
previousValue: Reducer,
currentProperties: P,
featureIndex: number
) => Reducer,
initialValue?: Reducer
): Reducer;
/**
* http://turfjs.org/docs/#featurereduce
*/
declare function featureReduce<
Reducer,
G extends GeometryObject,
P extends GeoJsonProperties = GeoJsonProperties,
>(
geojson:
| Feature<G, P>
| FeatureCollection<G, P>
| Feature<GeometryCollection, P>,
callback: (
previousValue: Reducer,
currentFeature: Feature<G, P>,
featureIndex: number
) => Reducer,
initialValue?: Reducer
): Reducer;
/**
* http://turfjs.org/docs/#featureeach
*/
declare function featureEach<
G extends GeometryObject,
P extends GeoJsonProperties = GeoJsonProperties,
>(
geojson:
| Feature<G, P>
| FeatureCollection<G, P>
| Feature<GeometryCollection, P>,
callback: (currentFeature: Feature<G, P>, featureIndex: number) => void
): void;
/**
* http://turfjs.org/docs/#coordall
*/
declare function coordAll(geojson: AllGeoJSON): number[][];
/**
* http://turfjs.org/docs/#geomreduce
*/
declare function geomReduce<
Reducer,
G extends GeometryObject,
P extends GeoJsonProperties = GeoJsonProperties,
>(
geojson:
| Feature<G, P>
| FeatureCollection<G, P>
| G
| GeometryCollection
| Feature<GeometryCollection, P>,
callback: (
previousValue: Reducer,
currentGeometry: G,
featureIndex: number,
featureProperties: P,
featureBBox: BBox,
featureId: Id
) => Reducer,
initialValue?: Reducer
): Reducer;
/**
* http://turfjs.org/docs/#geomeach
*/
declare function geomEach<
G extends GeometryObject | null,
P extends GeoJsonProperties = GeoJsonProperties,
>(
geojson:
| Feature<G, P>
| FeatureCollection<G, P>
| G
| GeometryCollection
| Feature<GeometryCollection, P>,
callback: (
currentGeometry: G,
featureIndex: number,
featureProperties: P,
featureBBox: BBox,
featureId: Id
) => void
): void;
/**
* http://turfjs.org/docs/#flattenreduce
*/
declare function flattenReduce<
Reducer,
G extends GeometryObject,
P extends GeoJsonProperties = GeoJsonProperties,
>(
geojson:
| Feature<G, P>
| FeatureCollection<G, P>
| G
| GeometryCollection
| Feature<GeometryCollection, P>,
callback: (
previousValue: Reducer,
currentFeature: Feature<G, P>,
featureIndex: number,
multiFeatureIndex: number
) => Reducer,
initialValue?: Reducer
): Reducer;
/**
* http://turfjs.org/docs/#flatteneach
*/
declare function flattenEach<
G extends GeometryObject = GeometryObject,
P extends GeoJsonProperties = GeoJsonProperties,
>(
geojson:
| Feature<G, P>
| FeatureCollection<G, P>
| G
| GeometryCollection
| Feature<GeometryCollection, P>,
callback: (
currentFeature: Feature<G, P>,
featureIndex: number,
multiFeatureIndex: number
) => void
): void;
/**
* http://turfjs.org/docs/#segmentreduce
*/
declare function segmentReduce<
Reducer,
P extends GeoJsonProperties = GeoJsonProperties,
>(
geojson:
| FeatureCollection<Lines, P>
| Feature<Lines, P>
| Lines
| Feature<GeometryCollection, P>
| GeometryCollection,
callback: (
previousValue?: Reducer,
currentSegment?: Feature<LineString, P>,
featureIndex?: number,
multiFeatureIndex?: number,
segmentIndex?: number,
geometryIndex?: number
) => Reducer,
initialValue?: Reducer
): Reducer;
/**
* http://turfjs.org/docs/#segmenteach
*/
declare function segmentEach<P extends GeoJsonProperties = GeoJsonProperties>(
geojson: AllGeoJSON,
callback: (
currentSegment?: Feature<LineString, P>,
featureIndex?: number,
multiFeatureIndex?: number,
segmentIndex?: number,
geometryIndex?: number
) => void
): void;
/**
* http://turfjs.org/docs/#linereduce
*/
declare function lineReduce<
Reducer,
P extends GeoJsonProperties = GeoJsonProperties,
>(
geojson:
| FeatureCollection<Lines, P>
| Feature<Lines, P>
| Lines
| Feature<GeometryCollection, P>
| GeometryCollection,
callback: (
previousValue?: Reducer,
currentLine?: Feature<LineString, P>,
featureIndex?: number,
multiFeatureIndex?: number,
geometryIndex?: number
) => Reducer,
initialValue?: Reducer
): Reducer;
/**
* http://turfjs.org/docs/#lineeach
*/
declare function lineEach<P extends GeoJsonProperties = GeoJsonProperties>(
geojson:
| FeatureCollection<Lines, P>
| Feature<Lines, P>
| Lines
| Feature<GeometryCollection, P>
| GeometryCollection,
callback: (
currentLine: Feature<LineString, P>,
featureIndex?: number,
multiFeatureIndex?: number,
geometryIndex?: number
) => void
): void;
/**
* http://turfjs.org/docs/#findsegment
*/
declare function findSegment<
G extends LineString | MultiLineString | Polygon | MultiPolygon,
P extends GeoJsonProperties = GeoJsonProperties,
>(
geojson: Feature<G, P> | FeatureCollection<G, P> | G,
options?: {
featureIndex?: number;
multiFeatureIndex?: number;
geometryIndex?: number;
segmentIndex?: number;
properties?: P;
bbox?: BBox;
id?: Id;
}
): Feature<LineString, P>;
/**
* http://turfjs.org/docs/#findpoint
*/
declare function findPoint<
G extends GeometryObject,
P extends GeoJsonProperties = GeoJsonProperties,
>(
geojson: Feature<G, P> | FeatureCollection<G, P> | G,
options?: {
featureIndex?: number;
multiFeatureIndex?: number;
geometryIndex?: number;
coordIndex?: number;
properties?: P;
bbox?: BBox;
id?: Id;
}
): Feature<Point, P>;
export { coordAll, coordEach, coordReduce, featureEach, featureReduce, findPoint, findSegment, flattenEach, flattenReduce, geomEach, geomReduce, lineEach, lineReduce, propEach, propReduce, segmentEach, segmentReduce };