cleanCoords
描述
🌐 Description
从任何 GeoJSON 几何体中删除冗余坐标。
🌐 Removes redundant coordinates from any GeoJSON Geometry.
参数
🌐 Parameters
| 名称 | 类型 | 描述 |
|---|---|---|
| geojson | Geometry | Feature | 特性或几何 |
| options? | Object | 可选参数 (默认 {}) |
| options.mutate? | boolean | 允许修改 GeoJSON 输入 (默认 false) |
返回
🌐 Returns
Geometry | Feature 已清理的输入特性/几何
示例
🌐 Examples
var line = turf.lineString([
[0, 0],
[0, 2],
[0, 5],
[0, 8],
[0, 8],
[0, 10],
]);
var multiPoint = turf.multiPoint([
[0, 0],
[0, 0],
[2, 2],
]);
turf.cleanCoords(line).geometry.coordinates;
//= [[0, 0], [0, 10]]
turf.cleanCoords(multiPoint).geometry.coordinates;
//= [[0, 0], [2, 2]]
安装
🌐 Installation
$ npm install @turf/clean-coords
import { cleanCoords } from "@turf/clean-coords";
const result = cleanCoords(...);
$ npm install @turf/turf
import * as turf from "@turf/turf";
const result = turf.cleanCoords(...);