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

61 lines
885 B
JavaScript
Raw Normal View History

2018-02-26 22:14:11 +01:00
'use strict'
2018-03-16 14:23:27 +01:00
module.exports = [
{
product: 'nationalExp',
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
{
product: 'national',
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
{
product: 'regional',
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
{
product: 'suburban',
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
{
product: 'tram',
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
{
product: 'bus',
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
{
product: 'tourismTrain',
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
}
]