mirror of
https://github.com/CIMEngine/cimengine-build-tools.git
synced 2025-02-20 19:33:12 +03:00
fix: errors
This commit is contained in:
parent
b6fa1f5d3d
commit
14a250323d
3 changed files with 5 additions and 5 deletions
|
@ -43,9 +43,9 @@ for (country of layers) {
|
|||
);
|
||||
|
||||
co_features.features = co_features.features.map((val) => {
|
||||
if (val.geometry.type == "Polygon") {
|
||||
if (val?.geometry?.type == "Polygon") {
|
||||
val.properties = {};
|
||||
} else if (val.geometry.type == "MultiPolygon") {
|
||||
} else if (val?.geometry?.type == "MultiPolygon") {
|
||||
console.error("Error: MultiPolygons are not allowed!");
|
||||
process.exit(1);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue