2022-05-07 16:17:37 +02:00
|
|
|
const products = [
|
2018-04-12 21:25:40 +02:00
|
|
|
// todo: other bits
|
|
|
|
{
|
|
|
|
id: 'express-train',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [1, 2],
|
|
|
|
name: 'TGV, ICE, EuroCity',
|
|
|
|
short: 'TGV/ICE/EC',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-04-12 21:25:40 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'local-train',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [8, 16],
|
|
|
|
name: 'local trains',
|
|
|
|
short: 'local',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-04-12 21:25:40 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'tram',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [256],
|
|
|
|
name: 'tram',
|
|
|
|
short: 'tram',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-04-12 21:25:40 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'bus',
|
|
|
|
mode: 'bus',
|
|
|
|
bitmasks: [32],
|
|
|
|
name: 'bus',
|
|
|
|
short: 'bus',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-04-12 21:25:40 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'gondola',
|
|
|
|
mode: 'gondola',
|
|
|
|
bitmasks: [512],
|
|
|
|
name: 'Fun', // taken from the horaires.cfl.lu website
|
2021-10-26 14:17:34 +02:00
|
|
|
short: 'Fun', // abbreviation for funicular?
|
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
|
|
|
};
|