# truncate
Takes a GeoJSON Feature or FeatureCollection and truncates the precision of the geometry.
接受一个GeoJSONFeature
或FeatureCollection
,并截断几何图形的精度。
参数
参数 | 类型 | 描述 |
---|---|---|
geojson | GeoJSON | 任何 GeoJSON Feature, FeatureCollection, Geometry or GeometryCollection. |
options | Object | 可选参数:见下文 |
options选项
属性 | 类型 | 默认值 | 描述 |
---|---|---|---|
precision | number | 6 | 坐标的小数精度 |
coordinates | number | 3 | 最大坐标数(主要用于删除z坐标) |
mutate | boolean | false | 允许修改GeoJSON输入(如果为真,性能将显著提高) |
返回
GeoJSON - 截断的图层
示例
var point = turf.point([
70.46923055566859,
58.11088890802906
]);
var options = {precision: 3, coordinates: 2};
var truncated = turf.truncate(point, options);
//=truncated.geometry.coordinates => [70.469, 58.111]