diff --git a/index.html b/index.html
index 597edef3..ab9a073a 100644
--- a/index.html
+++ b/index.html
@@ -4447,22 +4447,58 @@
Warning! This operation is destructive and irreversible. Don't forget to save your map!
diff --git a/main.js b/main.js
index 7f6b451d..93b14fea 100644
--- a/main.js
+++ b/main.js
@@ -1413,6 +1413,7 @@ function reMarkFeatures() {
cells.harbor[i] = water.length;
};
+ if (!cells.i.length) return; // no cells -> there is nothing to do
for (let i = 1, queue = [0]; queue[0] !== -1; i++) {
const start = queue[0]; // first cell
cells.f[start] = i; // assign feature number
diff --git a/modules/ui/submap.js b/modules/ui/submap.js
index 5a2223a2..15906e52 100644
--- a/modules/ui/submap.js
+++ b/modules/ui/submap.js
@@ -25,6 +25,12 @@ window.UISubmap = (function () {
function openRemapOptions() {
resetZoom(0);
+ document.getElementById("submapRotationAngle").value = 0;
+ document.getElementById("submapRotationAngleOutput").value = "0°";
+ document.getElementById("submapShiftX").value = 0;
+ document.getElementById("submapShiftY").value = 0;
+ document.getElementById("submapMirrorH").checked = false;
+ document.getElementById("submapMirrorV").checked = false;
$("#remapOptionsDialog").dialog({
title: "Resampler options",
resizable: false,
@@ -47,10 +53,36 @@ window.UISubmap = (function () {
const resampleCurrentMap = debounce(function () {
// Resample the whole map to different cell resolution or shape
const cellNumId = Number(document.getElementById("submapPointsInput").value);
+ const angle = Number(document.getElementById("submapRotationAngle").value) / 180 * Math.PI;
+ const shiftX = Number(document.getElementById("submapShiftX").value);
+ const shiftY = Number(document.getElementById("submapShiftY").value);
+ const mirrorH = document.getElementById("submapMirrorH").checked;
+ const mirrorV = document.getElementById("submapMirrorV").checked;
if (!cellsDensityConstants[cellNumId]) {
console.error("Unknown cell number!");
return;
}
+
+ const [cx, cy] = [graphWidth / 2, graphHeight / 2];
+ const rot = alfa => (x, y) => [
+ (x - cx) * Math.cos(alfa) - (y - cy) * Math.sin(alfa) + cx,
+ (y - cy) * Math.cos(alfa) + (x - cx) * Math.sin(alfa) + cy
+ ];
+ const shift = (dx, dy) => (x, y) => [x + dx, y + dy];
+ const flipH = (x, y) => [-x + 2 * cx, y];
+ const flipV = (x, y) => [x, -y + 2 * cy];
+ const app = (f, g) => (x, y) => f(...g(x, y));
+ const id = (x, y) => [x, y];
+ let projection = id, inverse = id;
+
+ if (angle) [projection, inverse] = [rot(angle), rot(-angle)];
+ if (shiftX || shiftY) {
+ projection = app(shift(shiftX, shiftY), projection);
+ inverse = app(inverse, shift(-shiftX, -shiftY));
+ }
+ if (mirrorH) [projection, inverse] = [app(flipH, projection), app(inverse, flipH)];
+ if (mirrorV) [projection, inverse] = [app(flipV, projection), app(inverse, flipV)];
+
changeCellsDensity(cellNumId);
WARN && console.warn("Resampling current map");
startResample({
@@ -61,8 +93,8 @@ window.UISubmap = (function () {
promoteTowns: false,
smoothHeightMap: false,
rescaleStyles: false,
- projection: (x, y) => [x, y],
- inverse: (x, y) => [x, y]
+ projection,
+ inverse,
});
}, 1000);