fox/resources/js/fox-data.js

43 lines
3.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// Fox HUD — statische Daten (Wien U-Bahn-Linien + Haltestellen).
// ES-Modul, wird via app.js gebundlet und in fox-hud.js importiert.
export const WIEN_UBAHN = {
type: 'FeatureCollection',
features: [
{ type: 'Feature', properties: { line: 'U1', color: '#E2001A', name: 'U1 LeopoldauOberlaa' }, geometry: { type: 'LineString', coordinates: [
[16.4447,48.2806],[16.4058,48.2486],[16.3936,48.2411],[16.3738,48.2082],[16.3698,48.1987],[16.3534,48.1699],[16.3478,48.1511]
]}},
{ type: 'Feature', properties: { line: 'U2', color: '#9B27AF', name: 'U2 SeestadtKarlsplatz' }, geometry: { type: 'LineString', coordinates: [
[16.5045,48.2218],[16.4441,48.2186],[16.3820,48.2100],[16.3738,48.2082],[16.3663,48.2003],[16.3636,48.1988]
]}},
{ type: 'Feature', properties: { line: 'U3', color: '#F07D00', name: 'U3 OttakringSimmering' }, geometry: { type: 'LineString', coordinates: [
[16.2969,48.2131],[16.3412,48.2100],[16.3636,48.2082],[16.3738,48.2082],[16.4058,48.2082],[16.4317,48.1987],[16.4554,48.1872]
]}},
{ type: 'Feature', properties: { line: 'U4', color: '#00A650', name: 'U4 HütteldorfHeiligenstadt' }, geometry: { type: 'LineString', coordinates: [
[16.2730,48.1987],[16.3102,48.2037],[16.3534,48.2020],[16.3738,48.2082],[16.3820,48.2333],[16.3738,48.2486],[16.3602,48.2622]
]}},
{ type: 'Feature', properties: { line: 'U6', color: '#9B6400', name: 'U6 SiebenhirtenFloridsdorf' }, geometry: { type: 'LineString', coordinates: [
[16.3412,48.1388],[16.3412,48.1699],[16.3461,48.1932],[16.3534,48.2131],[16.3534,48.2411],[16.3534,48.2700],[16.3658,48.2900]
]}},
],
};
export const WIEN_STOPS = [
{ name: 'Stephansplatz', line: 'U1/U3', lng: 16.3720, lat: 48.2082, color: '#E2001A' },
{ name: 'Karlsplatz', line: 'U1/U2/U4', lng: 16.3698, lat: 48.1987, color: '#9B27AF' },
{ name: 'Praterstern', line: 'U1/U2', lng: 16.3936, lat: 48.2176, color: '#E2001A' },
{ name: 'Westbahnhof', line: 'U3/U6', lng: 16.3412, lat: 48.1968, color: '#F07D00' },
{ name: 'Schwedenplatz', line: 'U1/U4', lng: 16.3780, lat: 48.2108, color: '#E2001A' },
{ name: 'Spittelau', line: 'U4/U6', lng: 16.3534, lat: 48.2486, color: '#00A650' },
{ name: 'Schottenring', line: 'U2/U4', lng: 16.3658, lat: 48.2176, color: '#9B27AF' },
{ name: 'Hütteldorf', line: 'U4', lng: 16.2730, lat: 48.1987, color: '#00A650' },
{ name: 'Heiligenstadt', line: 'U4', lng: 16.3602, lat: 48.2622, color: '#00A650' },
{ name: 'Floridsdorf', line: 'U6', lng: 16.3658, lat: 48.2900, color: '#9B6400' },
{ name: 'Siebenhirten', line: 'U6', lng: 16.3412, lat: 48.1388, color: '#9B6400' },
{ name: 'Ottakring', line: 'U3', lng: 16.2969, lat: 48.2131, color: '#F07D00' },
{ name: 'Simmering', line: 'U3', lng: 16.4554, lat: 48.1872, color: '#F07D00' },
{ name: 'Leopoldau', line: 'U1', lng: 16.4447, lat: 48.2806, color: '#E2001A' },
{ name: 'Oberlaa', line: 'U1', lng: 16.3478, lat: 48.1511, color: '#E2001A' },
{ name: 'Seestadt', line: 'U2', lng: 16.5045, lat: 48.2218, color: '#9B27AF' },
];