@turf/polygon-smooth
polygonSmooth
Smooths a Polygon or MultiPolygon. Based on Chaikin's algorithm.
Warning: may create degenerate polygons.
Parameters
inputPolys
(FeatureCollection | Feature<(Polygon | MultiPolygon)>) (Multi)Polygon(s) to smoothoptions
Object Optional parameters (optional, default {}
)
options.iterations
string THe number of times to smooth the polygon. A higher value means a smoother polygon. (optional, default 1
)
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})
var addToMap = [smoothed, polygon];
Returns FeatureCollection<Polygon> FeatureCollection containing the smoothed polygon/poylgons
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 module individually:
$ npm install @turf/polygon-smooth
Or install the Turf module that includes it as a function:
$ npm install @turf/turf
6.3.0
Fix issues importing Turf for react-native, webpack 5, and other bundlers
(PR https://github.com/Turfjs/turf/pull/2004 - Author r0b0t3d)
(PR https://github.com/Turfjs/turf/pull/2011 - Author mfedderly)
[@turf/turf
][turf] expose @turf/boolean-intersect
(PR https://github.com/Turfjs/turf/pull/2007 - Author rowanwins)