From a34bee6272a5f31108e7bdf8faa7e57aa5591b0f Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Tue, 16 Jun 2026 15:32:06 +0200 Subject: [PATCH] feat: append missing locations to map data --- lib/map-data.ts | 72 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/lib/map-data.ts b/lib/map-data.ts index ad162b54a..2599c4a08 100644 --- a/lib/map-data.ts +++ b/lib/map-data.ts @@ -901,5 +901,77 @@ export const minorLocations: Location[] = [ y: 77.37, description: 'pv', }, + { + id: 'lautzenhausen-55483', + name: 'PV-Anlage, 55483 Lautzenhausen', + type: 'minor_node', + x: 22.12, + y: 66.90, + description: 'pv', + }, + { + id: 'schleiz-07907', + name: 'Breitbandausbau, 07907 Schleiz', + type: 'minor_node', + x: 60.19, + y: 58.32, + description: 'fiber', + }, + { + id: 'grosshartau-01909', + name: 'PV-Anlage, 01909 Großhartau', + type: 'minor_node', + x: 79.46, + y: 51.69, + description: 'pv', + }, + { + id: 'halsbrücke-09600', + name: 'Breitbandausbau, 09600 Halsbrücke', + type: 'minor_node', + x: 73.13, + y: 53.60, + description: 'fiber', + }, + { + id: 'seinsheim-97342', + name: 'PV-Anlage, 97342 Seinsheim', + type: 'minor_node', + x: 46.84, + y: 70.21, + description: 'pv', + }, + { + id: 'schenkenberg-17291', + name: 'Kabelschutzrohrtrasse, 17291 Schenkenberg-Polen', + type: 'minor_node', + x: 78.11, + y: 23.31, + description: 'power', + }, + { + id: 'thundorf-97711', + name: 'PV-Anlage, 97711 Thundorf OT Theinfeld', + type: 'minor_node', + x: 47.79, + y: 62.99, + description: 'pv', + }, + { + id: 'tarnow-18249', + name: 'Windpark, 18249 Tarnow-Prüzen', + type: 'minor_node', + x: 61.91, + y: 17.91, + description: 'wind', + }, + { + id: 'ennigerloh-59320', + name: 'PV-Anlage, 59320 Ennigerloh-Oelde', + type: 'minor_node', + x: 28.56, + y: 42.47, + description: 'pv', + }, ]; export const projectLocations = [...defaultLocations, ...minorLocations];