Some checks failed
Build & Deploy / 🔍 Prepare (push) Failing after 4s
Build & Deploy / 🧪 QA (push) Has been skipped
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s
1096 lines
21 KiB
TypeScript
1096 lines
21 KiB
TypeScript
export interface Location {
|
|
id: string;
|
|
name: string;
|
|
type: 'hq' | 'branch' | 'project' | 'minor_node';
|
|
x: number;
|
|
y: number;
|
|
description: string;
|
|
details?: string[];
|
|
href?: string;
|
|
featuredImage?: string;
|
|
}
|
|
|
|
export const defaultLocations: Location[] = [
|
|
{
|
|
id: 'dettmannsdorf',
|
|
name: 'PV-Anlage, 18334 Dettmannsdorf',
|
|
type: 'project',
|
|
x: 66.38,
|
|
y: 14.04,
|
|
description: 'Netzanbindung Solarpark',
|
|
featuredImage: '/assets/photos/etib_ingenieure_tiefbau_solar_pv_planung_vermessung_gis-256.jpg',
|
|
},
|
|
{
|
|
id: 'proetzel',
|
|
name: 'PV-Anlage, 15345 Prötzel OT Sternebeck',
|
|
type: 'project',
|
|
x: 78.84,
|
|
y: 32.5,
|
|
description: 'Kabeltrasse Solarpark',
|
|
featuredImage: '/assets/photos/etib_ingenieure_tiefbau_solar_pv_planung_vermessung_gis-294.jpg',
|
|
},
|
|
{
|
|
id: 'ostbevern',
|
|
name: 'Windpark, 48346 Ostbevern',
|
|
type: 'project',
|
|
x: 26.64,
|
|
y: 39.84,
|
|
description: 'Netzanbindung Windpark',
|
|
featuredImage: '/assets/photos/Etib_E-tib_Tiefbau_Guben_Netzanbindung_Energie-100.jpg',
|
|
},
|
|
{
|
|
id: 'petershagen',
|
|
name: 'Windpark, 15326 Petershagen',
|
|
type: 'project',
|
|
x: 82.5, y: 33.5,
|
|
description: 'Netzanbindung Windpark',
|
|
featuredImage: '/assets/photos/Etib_E-tib_Tiefbau_Guben_Netzanbindung_Energie-12.jpg',
|
|
},
|
|
{
|
|
id: 'ketzin',
|
|
name: 'MS-Kabeltrasse, 14669 Ketzin',
|
|
type: 'project',
|
|
x: 72,
|
|
y: 34,
|
|
description: 'Netzausbau Gewerbegebiet',
|
|
featuredImage: '/assets/photos/Etib_E-tib_Tiefbau_Guben_Netzanbindung_Energie-14.jpg',
|
|
},
|
|
{
|
|
id: 'jevenstedt',
|
|
name: '110 kV Kabeltrasse, 24808 Jevenstedt',
|
|
type: 'project',
|
|
x: 43,
|
|
y: 9,
|
|
description: '110 kV Kabeltrasse',
|
|
featuredImage: '/assets/photos/Etib_E-tib_Tiefbau_Guben_Netzanbindung_Energie-15.jpg',
|
|
}
|
|
];
|
|
|
|
|
|
export const minorLocations: Location[] = [
|
|
{
|
|
id: 'breddin-16845',
|
|
name: 'PV-Anlage, 16845 Stüdenitz-Schönermark',
|
|
type: 'project',
|
|
x: 63.88,
|
|
y: 29.36,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'bad-liebenwerda-04924',
|
|
name: 'Breitbandausbau, 04924 Bad Liebenwerda',
|
|
type: 'project',
|
|
x: 73.76,
|
|
y: 46.48,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'hünfelden-65597',
|
|
name: 'Windpark, 65597 Hünfelden',
|
|
type: 'project',
|
|
x: 29.35,
|
|
y: 61.68,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'zachow-19376',
|
|
name: 'Einspeisung PV-Anlage, 19376 Zachow',
|
|
type: 'project',
|
|
x: 68.62,
|
|
y: 34.44,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'schnarup-thumby-24891',
|
|
name: 'Windpark, 24891 Schnarup-Thumby',
|
|
type: 'project',
|
|
x: 41.96,
|
|
y: 7.31,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'bartow-17089',
|
|
name: 'PV-Anlage, 17089 Bartow',
|
|
type: 'project',
|
|
x: 73.39,
|
|
y: 17.66,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'regesbostel-21649',
|
|
name: 'Windpark, 21649 Regesbostel',
|
|
type: 'project',
|
|
x: 42.09,
|
|
y: 23.17,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'bomlitz-29699',
|
|
name: 'Breitbandausbau, 29699 Bomlitz',
|
|
type: 'project',
|
|
x: 42.22,
|
|
y: 29.09,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'berzhahn-56459',
|
|
name: 'Windpark, 56459 Berzhahn',
|
|
type: 'project',
|
|
x: 28.1,
|
|
y: 58.9,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'oschersleben-39387',
|
|
name: 'Breitbandausbau, 39387 Hordorf',
|
|
type: 'project',
|
|
x: 55.74,
|
|
y: 40.14,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'jessen-06917',
|
|
name: 'Windpark, 06917 Jessen OT Linda',
|
|
type: 'project',
|
|
x: 70.21,
|
|
y: 42.8,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'dettmannsdorf-18334',
|
|
name: 'PV-Anlage, 18334 Dettmannsdorf',
|
|
type: 'project',
|
|
x: 66.38,
|
|
y: 14.04,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'werneck-97440',
|
|
name: 'Windpark, 97440 Werneck',
|
|
type: 'project',
|
|
x: 45.73,
|
|
y: 65.8,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'badendorf-23619',
|
|
name: 'PV-Anlage, 23619 Badendorf',
|
|
type: 'project',
|
|
x: 49.91,
|
|
y: 17.02,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'hordorf-39387',
|
|
name: 'Breitbandausbau, 39387 Hordorf',
|
|
type: 'project',
|
|
x: 55.17,
|
|
y: 40.57,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'neißemünde-15898',
|
|
name: 'PV-Anlage, 15898 Neißemünde',
|
|
type: 'project',
|
|
x: 84.95,
|
|
y: 39.9,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'wiesenhagen-14959',
|
|
name: 'PV-Anlage, 14959 Wiesenhagen',
|
|
type: 'project',
|
|
x: 72.47,
|
|
y: 38.31,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'gersdorf-09355',
|
|
name: 'Windpark, 09355 Gersdorf',
|
|
type: 'project',
|
|
x: 67.92,
|
|
y: 56.13,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'nauen-14641',
|
|
name: 'PV-Anlage, 14641 Nauen',
|
|
type: 'project',
|
|
x: 68.95,
|
|
y: 32.81,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'eggersdorf-15374',
|
|
name: 'PV-Anlage, 15374 Eggersdorf',
|
|
type: 'project',
|
|
x: 59.59,
|
|
y: 40.82,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'guben-03172',
|
|
name: 'Breitbandausbau, 03172 Guben',
|
|
type: 'project',
|
|
x: 84.55,
|
|
y: 41.12,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'beratzhausen-93176',
|
|
name: 'PV-Anlage, 93176 Beratzhausen',
|
|
type: 'project',
|
|
x: 60.46,
|
|
y: 76.77,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'felm-24161',
|
|
name: 'Windpark, 24161 Felm',
|
|
type: 'project',
|
|
x: 45.58,
|
|
y: 10.19,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'neukieritzsch-04575',
|
|
name: 'Breitbandausbau, 04575 Neukieritzsch',
|
|
type: 'project',
|
|
x: 65.5,
|
|
y: 51.2,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'oberbarnim-15377',
|
|
name: 'PV-Anlage, 15377 Oberbarnim OT Klosterdorf',
|
|
type: 'project',
|
|
x: 79.52,
|
|
y: 33.09,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'berne-27804',
|
|
name: 'Windpark, 27804 Berne',
|
|
type: 'project',
|
|
x: 32.1,
|
|
y: 25.85,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'dossow-16909',
|
|
name: 'PV-Anlage, 16909 Dossow',
|
|
type: 'project',
|
|
x: 66.44,
|
|
y: 26.41,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'krempe-25361',
|
|
name: 'PV-Anlage, 25361 Krempe',
|
|
type: 'project',
|
|
x: 40.7,
|
|
y: 17.42,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'lübars-39291',
|
|
name: 'PV-Anlage, 39291 Lübars',
|
|
type: 'project',
|
|
x: 73.45,
|
|
y: 32.78,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'taarstedt-24893',
|
|
name: 'Windpark, 24893 Taarstedt',
|
|
type: 'project',
|
|
x: 42.4,
|
|
y: 8.17,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'rom-19372',
|
|
name: 'PV-Anlage, 19372 Rom',
|
|
type: 'project',
|
|
x: 61.55,
|
|
y: 22.35,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'bosbüll-25899',
|
|
name: 'PV-Anlage, 25899 Bosbüll',
|
|
type: 'project',
|
|
x: 35.36,
|
|
y: 5,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'schwarzhofen-92447',
|
|
name: 'PV-Anlage, 92447 Schwarzhofen',
|
|
type: 'project',
|
|
x: 64.76,
|
|
y: 73.46,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'göhlsdorf-14797',
|
|
name: 'PV-Anlage, 14797 Göhlsdorf',
|
|
type: 'project',
|
|
x: 68.78,
|
|
y: 35.98,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'zehdenick-16792',
|
|
name: '110 kV Kabeltrasse, 16792 Zehdenick',
|
|
type: 'project',
|
|
x: 73.35,
|
|
y: 28.02,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'osterburg-39606',
|
|
name: 'Windpark, 39606 Osterburg OT Krevese',
|
|
type: 'project',
|
|
x: 59.63,
|
|
y: 30.48,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'holzheim-89438',
|
|
name: 'PV-Anlage, 89438 Holzheim',
|
|
type: 'project',
|
|
x: 49.58,
|
|
y: 84.44,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'adelschlag-85111',
|
|
name: 'Einspeisung PV-Anlage, 85111 Adelschlag',
|
|
type: 'project',
|
|
x: 55.23,
|
|
y: 80.23,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'hoyerswerda-02977',
|
|
name: 'Einspeisung PV-Anlage 02977 Hoyerswerda',
|
|
type: 'project',
|
|
x: 80.8,
|
|
y: 47.74,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'niederhummel-85416',
|
|
name: 'PV-Anlage, 85416 Niederhummel',
|
|
type: 'project',
|
|
x: 60.98,
|
|
y: 85.4,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'löffingen-79843',
|
|
name: 'PV-Anlage, 79843 Löffingen',
|
|
type: 'project',
|
|
x: 31.06,
|
|
y: 92.31,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'holste-27729',
|
|
name: 'Windpark, 27729 Holste',
|
|
type: 'project',
|
|
x: 35.35,
|
|
y: 23.24,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'lasbek-23847',
|
|
name: 'Windpark, 23847 Lasbek',
|
|
type: 'project',
|
|
x: 48.1,
|
|
y: 18.71,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'bernau-bei-berlin-16321',
|
|
name: 'Windpark, 16321 Bernau bei Berlin',
|
|
type: 'project',
|
|
x: 75.39,
|
|
y: 31.83,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'gorgast-15328',
|
|
name: 'PV-Anlage, 15328 Gorgast',
|
|
type: 'project',
|
|
x: 83.44,
|
|
y: 33.39,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'neustadt-dosse-16845',
|
|
name: 'PV-Anlage, 16845 Stüdenitz-Schönermark',
|
|
type: 'project',
|
|
x: 65.82,
|
|
y: 29.83,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'halle-06132',
|
|
name: 'Breitbandausbau, 06132 Halle',
|
|
type: 'project',
|
|
x: 61.88,
|
|
y: 47.76,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'letschin-15324',
|
|
name: 'PV-Anlage, 15324 Letschin',
|
|
type: 'project',
|
|
x: 82.02,
|
|
y: 32.11,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'sallgast-03238',
|
|
name: 'PV-Anlage, 03238 Sallgast',
|
|
type: 'project',
|
|
x: 77.65,
|
|
y: 45.69,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'rodleben-dessau-roßlau-06861',
|
|
name: 'Breitbandausbau, 06861 Rodleben Dessau-Roßlau',
|
|
type: 'project',
|
|
x: 63.69,
|
|
y: 41.69,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'gerbstedt-06347',
|
|
name: 'Windpark, 06347 Gerbstedt OT Freist',
|
|
type: 'project',
|
|
x: 58.88,
|
|
y: 45.36,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'elsterwerda-04910',
|
|
name: 'Breitbandausbau, 04910 Elsterwerda',
|
|
type: 'project',
|
|
x: 74.88,
|
|
y: 47.26,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'magdeburg-39106',
|
|
name: 'PV-Anlage, 39106 Magdeburg',
|
|
type: 'project',
|
|
x: 59.01,
|
|
y: 38.7,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'staßfurt-39443',
|
|
name: 'Batteriespeicher, 39443 Staßfurt OT Förderstedt',
|
|
type: 'project',
|
|
x: 58.97,
|
|
y: 41.85,
|
|
description: 'battery',
|
|
},
|
|
{
|
|
id: 'alsleben-06425',
|
|
name: 'Windpark, 06425 Alsleben',
|
|
type: 'project',
|
|
x: 59.15,
|
|
y: 44.01,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'nienbüttel-25596',
|
|
name: 'PV-Anlage, 25596 Nienbüttel',
|
|
type: 'project',
|
|
x: 40.06,
|
|
y: 14.97,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'werneuchen-16356',
|
|
name: 'Windpark, 16356 Werneuchen OT Seefeld',
|
|
type: 'project',
|
|
x: 76.31,
|
|
y: 32.58,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'stüdenitz-schönermark-16845',
|
|
name: 'PV-Anlage, 16845 Stüdenitz-Schönermark',
|
|
type: 'project',
|
|
x: 64.43,
|
|
y: 29.18,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'gumtow-16866',
|
|
name: 'Windpark, 16866 Gumtow OT Schrepkow',
|
|
type: 'project',
|
|
x: 64.12,
|
|
y: 28.2,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'nöbdenitz-04626',
|
|
name: 'Breitbandausbau 04626 Nöbdenitz',
|
|
type: 'project',
|
|
x: 64.59,
|
|
y: 54.41,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'kröpelin-18236',
|
|
name: 'Windpark, 18236 Kröpelin',
|
|
type: 'project',
|
|
x: 60.24,
|
|
y: 14.56,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'laer-48366',
|
|
name: 'Windpark, 48366 Laer',
|
|
type: 'project',
|
|
x: 22.68,
|
|
y: 39.78,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'ostbevern-48346',
|
|
name: 'Windpark, 48346 Ostbevern',
|
|
type: 'project',
|
|
x: 26.64,
|
|
y: 39.84,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'schwarmstedt-29690',
|
|
name: 'Breitbandausbau, 29690 Schwarmstedt',
|
|
type: 'project',
|
|
x: 41.89,
|
|
y: 31.93,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'prötzel-15345',
|
|
name: 'PV-Anlage, 15345 Prötzel OT Sternebeck',
|
|
type: 'project',
|
|
x: 78.84,
|
|
y: 32.5,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'blindheim-89434',
|
|
name: 'PV-Anlage, 89434 Blindheim OT Wolpertstetten',
|
|
type: 'project',
|
|
x: 50.23,
|
|
y: 82.72,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'großräschen-01983',
|
|
name: 'Windpark, 01983 Großräschen',
|
|
type: 'project',
|
|
x: 78.82,
|
|
y: 45.64,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'wolkenstein-09429',
|
|
name: 'Windpark, 09429 Wolkenstein',
|
|
type: 'project',
|
|
x: 71.1,
|
|
y: 57.44,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'fronhausen-35112',
|
|
name: 'Windpark, 35112 Fronhausen OT Hassenhausen',
|
|
type: 'project',
|
|
x: 34.1,
|
|
y: 56.83,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'dammfleth-25554',
|
|
name: 'Windpark, 25554 Dammfleth OT Rotenmeer',
|
|
type: 'project',
|
|
x: 39.62,
|
|
y: 16.66,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'langwedel-24631',
|
|
name: 'PV-Anlage, 24631 Langwedel',
|
|
type: 'project',
|
|
x: 44.46,
|
|
y: 12.6,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'jerchel-14715',
|
|
name: 'PV-Anlage, 14715 Jerchel',
|
|
type: 'project',
|
|
x: 56.22,
|
|
y: 34.63,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'beeskow-15848',
|
|
name: 'Windpark, 15848 Beeskow',
|
|
type: 'project',
|
|
x: 80.9,
|
|
y: 38.43,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'perleberg-19348',
|
|
name: 'Windpark, 19348 Perleberg OT Schönfeld',
|
|
type: 'project',
|
|
x: 60.84,
|
|
y: 26.25,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'gilching-82205',
|
|
name: 'PV-Anlage, 82205 Gilching',
|
|
type: 'project',
|
|
x: 55.84,
|
|
y: 89.45,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'bodenwöhr-92439',
|
|
name: 'PV-Anlage, 92439 Bodenwöhr OT Altenschwand',
|
|
type: 'project',
|
|
x: 64.41,
|
|
y: 74.55,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'görne-14728',
|
|
name: 'PV-Anlage, 14728 Görne',
|
|
type: 'project',
|
|
x: 66.34,
|
|
y: 31.66,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'agethorst-25560',
|
|
name: 'PV-Anlage, 25560 Agethorst',
|
|
type: 'project',
|
|
x: 40.21,
|
|
y: 15.07,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'ansbach-91522',
|
|
name: 'Windpark, 91522 Ansbach',
|
|
type: 'project',
|
|
x: 49.8,
|
|
y: 74.59,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'schinne-39579',
|
|
name: 'Windpark, 39579 Schinne',
|
|
type: 'project',
|
|
x: 59.69,
|
|
y: 32.23,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'neuengörs-23818',
|
|
name: 'Windpark, 23818 Neuengörs',
|
|
type: 'project',
|
|
x: 48.33,
|
|
y: 16.63,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'denkendorf-85095',
|
|
name: 'PV-Anlage, 85095 Denkendorf',
|
|
type: 'project',
|
|
x: 57.48,
|
|
y: 79.18,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'lindhorst-31698',
|
|
name: 'Windpark, 31698 Lindhorst OT Ottensen',
|
|
type: 'project',
|
|
x: 38.98,
|
|
y: 35.98,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'rohrenfels-86701',
|
|
name: 'PV-Anlage, 86701 Rohrenfels OT Ballersdorf',
|
|
type: 'project',
|
|
x: 54.89,
|
|
y: 82.18,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'ingoldingen-88456',
|
|
name: 'PV-Anlage, 88456 Ingoldingen',
|
|
type: 'project',
|
|
x: 42.75,
|
|
y: 90.62,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'lichtenau-33165',
|
|
name: 'Windpark, 33165 Lichtenau',
|
|
type: 'project',
|
|
x: 35.64,
|
|
y: 45.44,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'nochten-02943',
|
|
name: 'PV-Anlage, 02943 Nochten',
|
|
type: 'project',
|
|
x: 84.03,
|
|
y: 47.68,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'dalkendorf-17166',
|
|
name: 'Windpark, 17166 Dalkendorf',
|
|
type: 'project',
|
|
x: 66.23,
|
|
y: 17.67,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'schopfheim-79650',
|
|
name: 'Windpark, 79650 Schopfheim',
|
|
type: 'project',
|
|
x: 26.98,
|
|
y: 94.96,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'lunow-stolzenhagen-16248',
|
|
name: 'Kabelschutzrohrtrasse, 16248 Lunow-Stolzenhagen',
|
|
type: 'project',
|
|
x: 79.88,
|
|
y: 28.84,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'petershagen-15326',
|
|
name: 'PV-Anlage, 15326 Petershagen',
|
|
type: 'project',
|
|
x: 82.5, y: 33.5,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'krevese-39606',
|
|
name: 'Windpark, 39606 Osterburg OT Krevese',
|
|
type: 'project',
|
|
x: 59.37,
|
|
y: 30.29,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'seckeritz-17440',
|
|
name: 'PV-Anlage, 17440 Seckeritz',
|
|
type: 'project',
|
|
x: 76.91,
|
|
y: 15.43,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'tempelfelde-16230',
|
|
name: 'Windpark, 16230 Tempelfelde',
|
|
type: 'project',
|
|
x: 76.55,
|
|
y: 31.59,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'altenmedingen-29575',
|
|
name: 'Windpark, 29575 Altenmedingen',
|
|
type: 'project',
|
|
x: 50.28,
|
|
y: 26.09,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'neiße-malxetal-03159',
|
|
name: 'PV-Anlage, 03159 Neiße-Malxetal OT Jocksdorf',
|
|
type: 'project',
|
|
x: 84.5,
|
|
y: 45.15,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'eisenhüttenstadt-15890',
|
|
name: 'PV-Anlage, 15890 Eisenhüttenstadt',
|
|
type: 'project',
|
|
x: 84.27,
|
|
y: 38.7,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'groß-pankow-16928',
|
|
name: 'Windpark, 16928 Groß Pankow OT Kuhsdorf',
|
|
type: 'project',
|
|
x: 62.41,
|
|
y: 26.45,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'dahlhausen-16909',
|
|
name: 'PV-Anlage, 16909 Dossow',
|
|
type: 'project',
|
|
x: 22.21,
|
|
y: 50.39,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'gnarrenburg-27442',
|
|
name: 'Windpark, 27442 Gnarrenburg',
|
|
type: 'project',
|
|
x: 36.74,
|
|
y: 23.17,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'greding-91171',
|
|
name: 'PV-Anlage, 91171 Greding OT Euerwang',
|
|
type: 'project',
|
|
x: 56.38,
|
|
y: 77.43,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'scheeßel-27383',
|
|
name: 'Windpark, 27383 Scheeßel OT Wohlsdorf',
|
|
type: 'project',
|
|
x: 40.7,
|
|
y: 25.88,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'egling-an-der-paar-86492',
|
|
name: 'PV-Anlage, 86492 Egling an der Paar',
|
|
type: 'project',
|
|
x: 53.41,
|
|
y: 88.51,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'ellingen-91792',
|
|
name: 'PV-Anlage, 91792 Ellingen',
|
|
type: 'project',
|
|
x: 52.92,
|
|
y: 77.37,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'lautzenhausen-55483',
|
|
name: 'PV-Anlage, 55483 Lautzenhausen',
|
|
type: 'project',
|
|
x: 22.12,
|
|
y: 66.90,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'schleiz-07907',
|
|
name: 'Breitbandausbau, 07907 Schleiz',
|
|
type: 'project',
|
|
x: 60.19,
|
|
y: 58.32,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'grosshartau-01909',
|
|
name: 'PV-Anlage, 01909 Großhartau',
|
|
type: 'project',
|
|
x: 79.46,
|
|
y: 51.69,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'halsbrücke-09600',
|
|
name: 'Breitbandausbau, 09600 Halsbrücke',
|
|
type: 'project',
|
|
x: 73.13,
|
|
y: 53.60,
|
|
description: 'fiber',
|
|
},
|
|
{
|
|
id: 'seinsheim-97342',
|
|
name: 'PV-Anlage, 97342 Seinsheim',
|
|
type: 'project',
|
|
x: 46.84,
|
|
y: 70.21,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'schenkenberg-17291',
|
|
name: 'Kabelschutzrohrtrasse, 17291 Schenkenberg-Polen',
|
|
type: 'project',
|
|
x: 78.11,
|
|
y: 23.31,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'thundorf-97711',
|
|
name: 'PV-Anlage, 97711 Thundorf OT Theinfeld',
|
|
type: 'project',
|
|
x: 47.79,
|
|
y: 62.99,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'tarnow-18249',
|
|
name: 'Windpark, 18249 Tarnow-Prüzen',
|
|
type: 'project',
|
|
x: 61.91,
|
|
y: 17.91,
|
|
description: 'wind',
|
|
},
|
|
{
|
|
id: 'ennigerloh-59320',
|
|
name: 'PV-Anlage, 59320 Ennigerloh-Oelde',
|
|
type: 'project',
|
|
x: 28.56,
|
|
y: 42.47,
|
|
description: 'pv',
|
|
},
|
|
{
|
|
id: 'schenkend-bern-03172',
|
|
name: 'Breitbandausbau, 03172 Guben',
|
|
type: 'project',
|
|
x: 83.38,
|
|
y: 41.01,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'cottbus-03051',
|
|
name: 'MS-Verkabelung, Auras-Cottbus, 03051 Cottbus',
|
|
type: 'project',
|
|
x: 81.78,
|
|
y: 44.10,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'rietz-neuendorf-15848',
|
|
name: 'Windpark, 15848 Beeskow',
|
|
type: 'project',
|
|
x: 80.54,
|
|
y: 38.42,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'schlepzig-15910',
|
|
name: 'NS-Verkabelung, 15910 Schlepzig',
|
|
type: 'project',
|
|
x: 76.88,
|
|
y: 40.21,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'falkenhagen-mark-15306',
|
|
name: 'MS-Verkabelung, 15306 Falkenhagen Mark',
|
|
type: 'project',
|
|
x: 81.61,
|
|
y: 33.99,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'neuzelle-15898',
|
|
name: 'PV-Anlage, 15898 Neißemünde',
|
|
type: 'project',
|
|
x: 83.71,
|
|
y: 39.69,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'eisenh-ttenstadt-15890',
|
|
name: 'PV-Anlage, 15890 Eisenhüttenstadt',
|
|
type: 'project',
|
|
x: 83.26,
|
|
y: 38.35,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'karras-15848',
|
|
name: 'Windpark, 15848 Beeskow',
|
|
type: 'project',
|
|
x: 80.52,
|
|
y: 38.32,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'ketzin-14669',
|
|
name: 'MS-Verkabelung, Gewerbegebiet, 14669 Ketzin',
|
|
type: 'project',
|
|
x: 68.81,
|
|
y: 34.10,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'lieberose-15868',
|
|
name: 'MS-Verkabelung, 15868 Lieberose',
|
|
type: 'project',
|
|
x: 81.35,
|
|
y: 40.33,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'strausberg-15344',
|
|
name: 'MS-Verkabelung, 15344 Strausberg',
|
|
type: 'project',
|
|
x: 77.72,
|
|
y: 33.40,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'neuenhagen-15366',
|
|
name: 'MS-Verkabelung, 15366 Neuenhagen',
|
|
type: 'project',
|
|
x: 75.84,
|
|
y: 33.94,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'jamlitz-15868',
|
|
name: 'MS-Verkabelung, 15868 Jamlitz',
|
|
type: 'project',
|
|
x: 81.40,
|
|
y: 40.37,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'burg-03096',
|
|
name: 'MS-Verkabelung, 03096 Burg (Spreewald)',
|
|
type: 'project',
|
|
x: 80.27,
|
|
y: 42.54,
|
|
description: 'power',
|
|
},
|
|
{
|
|
id: 'bohsdorf-03130',
|
|
name: 'MS-Verkabelung, 03130 Bohsdorf',
|
|
type: 'project',
|
|
x: 82.25,
|
|
y: 45.64,
|
|
description: 'power',
|
|
},
|
|
];
|
|
export const projectLocations = [...defaultLocations, ...minorLocations];
|