NodeJs 后端使用 mapshaper

mapshaper 是在cli 使用的工具,这里提供一个在后端代码上使用的方法。可以在代码层面方便的简化 lineString

const { applyCommands } = require("mapshaper");

const input = {
    "lineString.json": {
        type: "LineString",
        coordinates: [[1,1],[1.4,1.4],[1.5,1.5],[1.6,1],[1.7,1],[1.8,1],[1.9,1],[1,1.2],[1,1.3],[1,1.4],[2,2],],
    },
};
const cmd = `-i lineString.json -simplify 10% -o output.geojson`;
const simplified = JSON.parse(
    (await applyCommands(cmd, input))["output.geojson"].toString()
);
console.log(simplified);

说明:其中 10% 可以写浮点数,需要注意浮点数不能大于 1,否则会报错

const cmd = `-i lineString.json -simplify 0.1 -o output.geojson`;

结果

{
    "type": "GeometryCollection",
    "geometries": [
        {
            "type": "LineString",
            "coordinates": [
                [1, 1],
                [1.5, 1.5],
                [1.6, 1],
                [1.1, 1.1],
                [2, 2]
            ]
        }
    ]
}

你可能感兴趣的:(json,node.js)