2022-05-07 16:17:37 +02:00
|
|
|
const products = [
|
2018-09-07 19:56:05 +02:00
|
|
|
{
|
|
|
|
id: 'ice',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [1],
|
|
|
|
name: 'InterCityExpress',
|
|
|
|
short: 'ICE',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-09-07 19:56:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'ic-ec',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [2],
|
|
|
|
name: 'InterCity/EuroCity',
|
|
|
|
short: 'IC/EC',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-09-07 19:56:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'ir-d',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [4],
|
|
|
|
name: 'Interregio/Schnellzug',
|
|
|
|
short: 'IRE',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-09-07 19:56:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'region',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [8],
|
|
|
|
name: 'Regio- und Nahverkehr',
|
|
|
|
short: 'RE/RB',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-09-07 19:56:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'sbahn',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [16],
|
|
|
|
name: 'S-Bahn',
|
|
|
|
short: 'S',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-09-07 19:56:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'bus',
|
|
|
|
mode: 'bus',
|
|
|
|
bitmasks: [32],
|
|
|
|
name: 'Bus',
|
|
|
|
short: 'Bus',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-09-07 19:56:05 +02:00
|
|
|
},
|
|
|
|
// todo: 64
|
|
|
|
{
|
|
|
|
id: 'ubahn',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [128],
|
|
|
|
name: 'U-Bahn',
|
|
|
|
short: 'U',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-09-07 19:56:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'tram',
|
|
|
|
mode: 'train',
|
|
|
|
bitmasks: [256],
|
|
|
|
name: 'Straßenbahn',
|
|
|
|
short: 'Tram',
|
2024-02-06 22:58:49 +01:00
|
|
|
default: true,
|
2018-09-07 19:56:05 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'on-call',
|
|
|
|
mode: 'taxi', // todo: or `bus`?
|
|
|
|
bitmasks: [512],
|
|
|
|
name: 'Anrufsammeltaxi',
|
|
|
|
short: 'Sammeltaxi',
|
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
|
|
|
};
|