mirror of
https://github.com/CIMEngine/cimengine-build-tools.git
synced 2025-02-20 19:33:12 +03:00
feat: area
This commit is contained in:
parent
4c340926bf
commit
ace13c9b01
3 changed files with 9 additions and 6 deletions
|
@ -379,16 +379,19 @@ if (config?.reProperty) {
|
|||
console.log();
|
||||
}
|
||||
|
||||
console.log("Set new ids");
|
||||
console.time("Set new ids");
|
||||
console.log("Set new ids and area");
|
||||
console.time("Set new ids and area");
|
||||
|
||||
let id = 0;
|
||||
geo.features = geo.features.map((val) => {
|
||||
val.id = id++;
|
||||
val.properties.area = (turf.area(val) / 1000000)
|
||||
.toFixed(2)
|
||||
.replace(/(\d)(?=(\d\d\d)+([^\d]|$))/g, "$1 ");
|
||||
return val;
|
||||
});
|
||||
|
||||
console.timeEnd("Set new ids");
|
||||
console.timeEnd("Set new ids and area");
|
||||
|
||||
fs.writeFileSync(geofixConf.output, JSON.stringify(geo, null, " "));
|
||||
console.timeEnd("Total");
|
||||
|
|
Loading…
Add table
Reference in a new issue