feat: check countries polygons

This commit is contained in:
Artemy 2023-07-05 15:46:25 +03:00
parent 0431260e02
commit b6fa1f5d3d
3 changed files with 12 additions and 3 deletions

View file

@ -42,6 +42,15 @@ for (country of layers) {
)
);
co_features.features = co_features.features.map((val) => {
if (val.geometry.type == "Polygon") {
val.properties = {};
} else if (val.geometry.type == "MultiPolygon") {
console.error("Error: MultiPolygons are not allowed!");
process.exit(1);
}
});
fs.writeFileSync(
path.join(geofixConf.countries, `${country}.geojson`),
JSON.stringify(co_features, null, " ")