Final Nordex fix: swap KSF offsets (12m towards road, 24m away) and place areas accordingly
Deploy Bürgerwind / deploy (push) Successful in 17s Details

This commit is contained in:
Johannes Baumeister 2026-05-11 12:43:55 +02:00
parent cbd680eaf4
commit f9dfe4c26b
1 changed files with 4 additions and 4 deletions

8
app.js
View File

@ -196,18 +196,18 @@ document.addEventListener('DOMContentLoaded', async () => {
// Nordex Geometries (Based on technical drawing: Tower is not centered in KSF width)
// Foundation: R=5.5
// KSF: 59.65m (L) x 36.50m (B).
// Width Offset: Tower center is approx. 12.1m from one edge and 24.4m from the other (Total 36.5m)
ksfCoords = [[-12.1, -5.5], [24.4, -5.5], [24.4, -65.15], [-12.1, -65.15], [-12.1, -5.5]];
// Width Offset: Narrow side (12.1m) is towards the road, wider side (24.4m) is away.
ksfCoords = [[-24.4, -5.5], [12.1, -5.5], [12.1, -65.15], [-24.4, -65.15], [-24.4, -5.5]];
// AMF: 180.00m (L) x 15.00m (B). Centered on tower axis.
const amf = [[-7.5, -65.15], [7.5, -65.15], [7.5, -245.15], [-7.5, -245.15], [-7.5, -65.15]];
// NVM (Nabenvor-Montagefläche): 26,00m (L) x 10,50m (B).
// Positioned on the RIGHT side (the 24.4m side), starting at 18.25m from center.
// Positioned on the RIGHT side (the 12.1m road side), starting at 18.25m from center.
const nvm = [[18.25, -5.5], [28.75, -5.5], [28.75, -31.5], [18.25, -31.5], [18.25, -5.5]];
// CRANE BOOM PAD (Triangular auxiliary area): 120.00m (L).
// Narrows from 18m to 7.5m width.
// Narrows from 18m to 7.5m width on the wider side (Left).
const cbp = [[-18.0, -65.15], [-7.5, -65.15], [-7.5, -185.15], [-18.0, -65.15]];
mfParts = [amf, nvm, cbp];