mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
39 lines
535 B
JavaScript
39 lines
535 B
JavaScript
|
'use strict'
|
||
|
|
||
|
module.exports = [
|
||
|
{
|
||
|
id: 'national-train',
|
||
|
mode: 'train',
|
||
|
bitmasks: [2],
|
||
|
name: 'InterCity',
|
||
|
short: 'IC',
|
||
|
default: true
|
||
|
},
|
||
|
// todo: 4
|
||
|
{
|
||
|
id: 'local-train',
|
||
|
mode: 'train',
|
||
|
bitmasks: [8],
|
||
|
name: 'Commuter',
|
||
|
short: 'Commuter',
|
||
|
default: true
|
||
|
},
|
||
|
{
|
||
|
id: 'suburban',
|
||
|
mode: 'train',
|
||
|
bitmasks: [16],
|
||
|
name: 'Dublin Area Rapid Transit',
|
||
|
short: 'DART',
|
||
|
default: true
|
||
|
},
|
||
|
// todo: 32
|
||
|
{
|
||
|
id: 'luas',
|
||
|
mode: 'train',
|
||
|
bitmasks: [64],
|
||
|
name: 'LUAS Tram',
|
||
|
short: 'LUAS',
|
||
|
default: true
|
||
|
}
|
||
|
]
|