Merge synchronizations with the master branch

This commit is contained in:
Peter 2022-11-27 16:18:19 -05:00
parent f3396941e4
commit 9d18e962ac
6 changed files with 875 additions and 568 deletions

View file

@ -149,6 +149,7 @@ function getPackCellsData() {
religion: Array.from(pack.cells.religion),
province: Array.from(pack.cells.province)
};
const cellObjArr = [];
{
cellConverted.i.forEach(value => {
@ -222,14 +223,3 @@ function getPackVerticesData() {
}
return verticesArray;
}
function getGridCellsDataJson() {
TIME && console.time("getGridCellsDataJson");
const info = getMapInfo();
const gridCells = getGridCellsData()
const exportData = {info,gridCells};
TIME && console.log("getGridCellsDataJson");
return JSON.stringify(exportData);
}