mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 23:29:35 +02:00
45 lines
643 B
JavaScript
45 lines
643 B
JavaScript
|
'use strict'
|
||
|
|
||
|
module.exports = [
|
||
|
{
|
||
|
id: 'express-train',
|
||
|
mode: 'train',
|
||
|
bitmasks: [1],
|
||
|
name: 'local train (TGV/ICE)',
|
||
|
short: 'TGV/ICE',
|
||
|
default: true
|
||
|
},
|
||
|
{
|
||
|
id: 'national-train',
|
||
|
mode: 'train',
|
||
|
bitmasks: [6],
|
||
|
name: 'national train (IC/RE/IRE)',
|
||
|
short: 'IC/RE/IRE',
|
||
|
default: true
|
||
|
},
|
||
|
{
|
||
|
id: 'local-train',
|
||
|
mode: 'train',
|
||
|
bitmasks: [8],
|
||
|
name: 'local train (RB/TER)',
|
||
|
short: 'RB/TER',
|
||
|
default: true
|
||
|
},
|
||
|
{
|
||
|
id: 'bus',
|
||
|
mode: 'bus',
|
||
|
bitmasks: [32],
|
||
|
name: 'Bus',
|
||
|
short: 'Bus',
|
||
|
default: true
|
||
|
},
|
||
|
{
|
||
|
id: 'tram',
|
||
|
mode: 'train',
|
||
|
bitmasks: [256],
|
||
|
name: 'Tram',
|
||
|
short: 'Tram',
|
||
|
default: true
|
||
|
}
|
||
|
]
|