Skip to content
On this page

反转方向(rewind)

js
npm install @turf/rewind

将(多)线或(多)多边形的外环逆时针方向重排,并将内环按顺时针方向排列使用Shoelace公式)

Rewind (Multi)LineString or (Multi)Polygon outer ring counterclockwise and inner rings clockwise (Uses Shoelace Formula ).

TIP

“Shoelace公式”,是一种计算多边形面积的方法,可以保证准确性和有效性

参数

参数类型描述
geojsonGeoJSON输入GeoJSON多边形
optionsObject配置项

配置项(Options)

Prop类型默认值描述
reversebooleanfalse启用反向绕组
mutatebooleanfalse允许GeoJSON输入被修改,如果为true性能将显著提高

返回(Returns)

GeoJSON - 重新构造多边形

示例