Removes redundant coordinates from a GeoJSON Geometry.
npm install @turf/clean-coordsRemoves redundant coordinates from any GeoJSON Geometry.
* geojson ([Geometry][1] | [Feature][2]) Feature or Geometry
* options [Object][3] Optional parameters (optional, default {})
* options.mutate [boolean][4] allows GeoJSON input to be mutated (optional, default false)
``javascript
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]]
`
Returns ([Geometry][1] | [Feature][2]) the cleaned input Feature/Geometry
[1]: https://tools.ietf.org/html/rfc7946#section-3.1
[2]: https://tools.ietf.org/html/rfc7946#section-3.2
[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean
---
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.
Install this single module individually:
`sh`
$ npm install @turf/clean-coords
Or install the all-encompassing @turf/turf module that includes all modules as functions:
`sh``
$ npm install @turf/turf