2022-05-07 16:17:37 +02:00
|
|
|
const products = [
|
2018-03-16 14:23:27 +01:00
|
|
|
{
|
2019-02-01 14:58:18 +01:00
|
|
|
id: 'nationalExpress',
|
2018-03-16 14:23:27 +01:00
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [1],
|
2018-02-26 22:14:11 +01:00
|
|
|
name: 'InterCityExpress',
|
|
|
|
short: 'ICE',
|
2018-03-16 14:23:27 +01:00
|
|
|
default: true
|
2018-02-26 22:14:11 +01:00
|
|
|
},
|
2018-03-16 14:23:27 +01:00
|
|
|
{
|
2018-03-16 17:06:32 +01:00
|
|
|
id: 'national',
|
2018-03-16 14:23:27 +01:00
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [2],
|
2018-02-26 22:14:11 +01:00
|
|
|
name: 'InterCity & EuroCity',
|
|
|
|
short: 'IC/EC',
|
2018-03-16 14:23:27 +01:00
|
|
|
default: true
|
2018-02-26 22:14:11 +01:00
|
|
|
},
|
2018-03-16 14:23:27 +01:00
|
|
|
{
|
2018-03-16 17:06:32 +01:00
|
|
|
id: 'regional',
|
2018-03-16 14:23:27 +01:00
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [8],
|
2018-02-26 22:14:11 +01:00
|
|
|
name: 'RegionalExpress & RegionalBahn',
|
|
|
|
short: 'RE/RB',
|
2018-03-16 14:23:27 +01:00
|
|
|
default: true
|
2018-02-26 22:14:11 +01:00
|
|
|
},
|
2018-03-16 14:23:27 +01:00
|
|
|
{
|
2018-03-16 17:06:32 +01:00
|
|
|
id: 'suburban',
|
2018-03-16 14:23:27 +01:00
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [16],
|
2018-02-26 22:14:11 +01:00
|
|
|
name: 'S-Bahn',
|
|
|
|
short: 'S',
|
2018-03-16 14:23:27 +01:00
|
|
|
default: true
|
2018-02-26 22:14:11 +01:00
|
|
|
},
|
2018-03-16 14:23:27 +01:00
|
|
|
{
|
2018-03-16 17:06:32 +01:00
|
|
|
id: 'tram',
|
2018-03-16 14:23:27 +01:00
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [32],
|
2018-02-26 22:14:11 +01:00
|
|
|
name: 'Tram',
|
|
|
|
short: 'T',
|
2018-03-16 14:23:27 +01:00
|
|
|
default: true
|
2018-02-26 22:14:11 +01:00
|
|
|
},
|
2018-03-16 14:23:27 +01:00
|
|
|
{
|
2018-03-16 17:06:32 +01:00
|
|
|
id: 'bus',
|
2018-03-16 14:23:27 +01:00
|
|
|
mode: 'bus',
|
|
|
|
bitmasks: [64, 128],
|
2018-02-26 22:14:11 +01:00
|
|
|
name: 'Bus',
|
|
|
|
short: 'B',
|
2018-03-16 14:23:27 +01:00
|
|
|
default: true
|
2018-02-26 22:14:11 +01:00
|
|
|
},
|
2018-03-16 14:23:27 +01:00
|
|
|
{
|
2018-03-16 17:06:32 +01:00
|
|
|
id: 'tourismTrain',
|
2018-03-16 14:23:27 +01:00
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [256],
|
2018-02-26 22:14:11 +01:00
|
|
|
name: 'Tourism Train',
|
|
|
|
short: 'TT',
|
2018-03-16 14:23:27 +01:00
|
|
|
default: true
|
2018-02-26 22:14:11 +01:00
|
|
|
}
|
|
|
|
]
|
2022-05-07 16:17:37 +02:00
|
|
|
|
|
|
|
export {
|
|
|
|
products,
|
|
|
|
}
|