13 lines
381 B
TypeScript
13 lines
381 B
TypeScript
|
|
export const faktiskaStations = [
|
||
|
|
"Liepāja", "Ventspils", "Stende", "Saldus", "Rīga", "Jelgava", "Ainaži",
|
||
|
|
"Valmiera", "Madona", "Alūksne", "Zīlāni", "Daugavpils", "Rēzekne",
|
||
|
|
] as const;
|
||
|
|
|
||
|
|
export type FaktiskaStation = typeof faktiskaStations[number];
|
||
|
|
|
||
|
|
export const faktiskaExport = {
|
||
|
|
width: 3840,
|
||
|
|
height: 1440,
|
||
|
|
mapType: "map_3840x1440_wind" as const,
|
||
|
|
};
|