Socket
Socket
Sign inDemoInstall

turf-voronoi-delaunay

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

turf-voronoi-delaunay

turf voronoi module based on d3-delaunay


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

turf-voronoi-delaunay

Build Status Version Dependencies npm License

voronoi

Takes a FeatureCollection of points, and a bounding box, and returns a FeatureCollection of Voronoi polygons.

The Voronoi algorithim used comes from the d3-delaunay package.

Parameters

  • points FeatureCollection<Point> to find the Voronoi polygons around.

  • options Options Optional parameters (optional, default {keepProperties:false,bbox:[-180,-85,180,85]})

    • options.keepProperties boolean switch to enable/disable preservation of feature properties (optional, default false)
    • options.bbox BBox clipping rectangle, in [minX, minY, maxX, MaxY] order. (optional, default [-180,-85,180,85])

Examples

const options = {
  bbox: [-70, 40, -60, 60]
};
const points = turf.randomPoint(100, options);
const voronoiPolygons = voronoiDelaunay(points, options);

//addToMap
const addToMap = [voronoiPolygons, points];

Returns FeatureCollection<Polygon> a set of polygons, one per input point.


This module can be used together with the Turfjs project, an open source module collection dedicated to geographic algorithms. It is maintained in the Turfjs/turf repository.

Installation

Install this module:

$ npm install turf-voronoi-delaunay

To install the Turf module:

$ npm install @turf/turf

Keywords

FAQs

Package last updated on 22 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc