JSPM

  • Created
  • Published
  • Downloads 383978
  • Score
    100M100P100Q291149F
  • License MIT

turf polygon smooth module

Package Exports

  • @turf/polygon-smooth
  • @turf/polygon-smooth/package.json

Readme

@turf/polygon-smooth

polygonSmooth

Smooths a Polygon or MultiPolygon. Based on Chaikin's algorithm. Warning: may create degenerate polygons.

Parameters

Examples

var polygon = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]);

var smoothed = turf.polygonSmooth(polygon, {iterations: 3})

//addToMap
var addToMap = [smoothed, polygon];

Returns FeatureCollection<(Polygon | MultiPolygon)> FeatureCollection containing the smoothed polygon/multipoylgons


This module is part of the Turfjs project, an open source module collection dedicated to geographic algorithms. It is maintained in the Turfjs/turf repository, where you can create PRs and issues.

Installation

Install this single module individually:

$ npm install @turf/polygon-smooth

Or install the all-encompassing @turf/turf module that includes all modules as functions:

$ npm install @turf/turf