Update Nordex KSF orientation to match Enercon style
Deploy Bürgerwind / deploy (push) Successful in 16s Details

This commit is contained in:
Johannes Baumeister 2026-05-08 14:08:54 +02:00
parent 19a4f0f165
commit f9c0532140
1 changed files with 11 additions and 7 deletions

18
app.js
View File

@ -178,13 +178,17 @@ document.addEventListener('DOMContentLoaded', async () => {
let blfCoords, ksfCoords, mfParts; let blfCoords, ksfCoords, mfParts;
if (hersteller === 'Nordex') { if (hersteller === 'Nordex') {
// Nordex Geometries // Nordex Geometries (Oriented Downwards at 0 deg to match Enercon style)
blfCoords = [[65.15, 18.25], [155.15, 18.25], [155.15, 33.25], [65.15, 33.25], [65.15, 18.25]]; // Foundation: R=5.5
ksfCoords = [[5.5, -18.25], [65.15, -18.25], [65.15, 18.25], [5.5, 18.25], [5.5, -18.25]]; // KSF: 59.65m (L) x 36.50m (B). Starts at foundation edge (5.5m)
mfParts = [ ksfCoords = [[-18.25, -5.5], [18.25, -5.5], [18.25, -65.15], [-18.25, -65.15], [-18.25, -5.5]];
[[65.15, -7.5], [295.15, -7.5], [295.15, 7.5], [65.15, 7.5], [65.15, -7.5]], // AMF // AMF: 230.00m (L) x 15.00m (B).
[[5.5, 18.25], [31.5, 18.25], [31.5, 28.75], [5.5, 28.75], [5.5, 18.25]] // Naben-MF const amf = [[-7.5, -65.15], [7.5, -65.15], [7.5, -295.15], [-7.5, -295.15], [-7.5, -65.15]];
]; // NVM: 26,00m (L) x 10,50m (B).
const nvm = [[18.25, -5.5], [28.75, -5.5], [28.75, -31.5], [18.25, -31.5], [18.25, -5.5]];
mfParts = [amf, nvm];
// BLF: 90,00m (L) x 15,00m (B).
blfCoords = [[18.25, -65.15], [33.25, -65.15], [33.25, -155.15], [18.25, -155.15], [18.25, -65.15]];
} else { } else {
// Enercon / Vestas / GE (Standard) // Enercon / Vestas / GE (Standard)
blfCoords = [[-41, 9], [-61, 9], [-61, -81], [-41, -81], [-41, 9]]; blfCoords = [[-41, 9], [-61, 9], [-61, -81], [-41, -81], [-41, 9]];