12345678910111213141516171819202122232425 |
- import { Point, Polygon, Units, FeatureCollection, Grid } from "@turf/helpers";
- /**
- * http://turfjs.org/docs/#interpolate
- */
- export default function interpolate(
- points: FeatureCollection<Point>,
- cellSize: number,
- options?: {
- gridType?: "point";
- property?: string;
- units?: Units;
- weight?: number;
- }
- ): FeatureCollection<Point>;
- export default function interpolate(
- points: FeatureCollection<Point>,
- cellSize: number,
- options?: {
- gridType?: Grid;
- property?: string;
- units?: Units;
- weight?: number;
- }
- ): FeatureCollection<Polygon>;
|