db-vendo-client/p/cfl/products.js

48 lines
720 B
JavaScript
Raw Normal View History

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',
default: true,
2018-04-12 21:25:40 +02:00
},
{
id: 'local-train',
mode: 'train',
bitmasks: [8, 16],
name: 'local trains',
short: 'local',
default: true,
2018-04-12 21:25:40 +02:00
},
{
id: 'tram',
mode: 'train',
bitmasks: [256],
name: 'tram',
short: 'tram',
default: true,
2018-04-12 21:25:40 +02:00
},
{
id: 'bus',
mode: 'bus',
bitmasks: [32],
name: 'bus',
short: 'bus',
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
short: 'Fun', // abbreviation for funicular?
default: true,
},
];
2022-05-07 16:17:37 +02:00
export {
products,
};