2022-05-07 16:17:37 +02:00
|
|
|
const products = [
|
2018-07-28 13:43:15 +02:00
|
|
|
{
|
|
|
|
id: 'suburban',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [1],
|
|
|
|
name: 'S-Bahn',
|
|
|
|
short: 'S',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-07-28 13:43:15 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'subway',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [2],
|
|
|
|
name: 'U-Bahn',
|
|
|
|
short: 'U',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-07-28 13:43:15 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'tram',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [4],
|
|
|
|
name: 'Tram',
|
|
|
|
short: 'T',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-07-28 13:43:15 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'bus',
|
|
|
|
mode: 'bus',
|
|
|
|
bitmasks: [8],
|
|
|
|
name: 'Bus',
|
|
|
|
short: 'B',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-07-28 13:43:15 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'ferry',
|
|
|
|
mode: 'watercraft',
|
|
|
|
bitmasks: [16],
|
|
|
|
name: 'Fähre',
|
|
|
|
short: 'F',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-07-28 13:43:15 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'express',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [32],
|
|
|
|
name: 'IC/ICE',
|
|
|
|
short: 'E',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-07-28 13:43:15 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'regional',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [64],
|
|
|
|
name: 'RB/RE',
|
|
|
|
short: 'R',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
];
|
2022-05-07 16:17:37 +02:00
|
|
|
|
|
|
|
export {
|
|
|
|
products,
|
2024-02-06 22:58:49 +01:00
|
|
|
};
|