Truncates precision of GeoJSON coordinates.
npm install @turf/truncateTakes a GeoJSON Feature or FeatureCollection and truncates the precision of the geometry.
* geojson [GeoJSON][1] any GeoJSON Feature, FeatureCollection, Geometry or GeometryCollection.
* options [Object][2] Optional parameters (optional, default {})
* options.precision [number][3] coordinate decimal precision (optional, default 6)
* options.coordinates [number][3] maximum number of coordinates (primarly used to remove z coordinates) (optional, default 3)
* options.mutate [boolean][4] allows GeoJSON input to be mutated (significant performance increase if true) (optional, default false)
``javascript
var point = turf.point([
70.46923055566859,
58.11088890802906,
1508
]);
var options = {precision: 3, coordinates: 2};
var truncated = turf.truncate(point, options);
//=truncated.geometry.coordinates => [70.469, 58.111]
//addToMap
var addToMap = [truncated];
`
Returns [GeoJSON][1] layer with truncated geometry
[1]: https://tools.ietf.org/html/rfc7946#section-3
[2]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object
[3]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number
[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/truncate
Or install the all-encompassing @turf/turf module that includes all modules as functions:
`sh``
$ npm install @turf/turf