mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
Update some product comments and disable unused/unknown ones
This commit is contained in:
parent
b7a6dbc504
commit
46eadcfde6
1 changed files with 6 additions and 21 deletions
|
@ -4,7 +4,7 @@
|
||||||
// so the bitmasks had to be determined by querying some stations and looking at the results..
|
// so the bitmasks had to be determined by querying some stations and looking at the results..
|
||||||
const products = [
|
const products = [
|
||||||
{
|
{
|
||||||
id: 'nationalExpress',
|
id: 'national-express',
|
||||||
mode: 'train',
|
mode: 'train',
|
||||||
bitmasks: [1],
|
bitmasks: [1],
|
||||||
name: 'InterCityExpress',
|
name: 'InterCityExpress',
|
||||||
|
@ -19,15 +19,17 @@ const products = [
|
||||||
short: 'IC/EC',
|
short: 'IC/EC',
|
||||||
default: true
|
default: true
|
||||||
},
|
},
|
||||||
// 4: not always used, could not be confirmed..
|
// todo: not always true when a station has RE stopping at it
|
||||||
|
// maybe something else?
|
||||||
{
|
{
|
||||||
id: 'regionalExp',
|
id: 'regional-express',
|
||||||
mode: 'train',
|
mode: 'train',
|
||||||
bitmasks: [4],
|
bitmasks: [4],
|
||||||
name: 'Regionalexpress',
|
name: 'Regionalexpress',
|
||||||
short: 'RE',
|
short: 'RE',
|
||||||
default: true
|
default: true
|
||||||
},
|
},
|
||||||
|
// todo: also used for replacement service incl. S-Bahn replacement
|
||||||
{
|
{
|
||||||
id: 'regional',
|
id: 'regional',
|
||||||
mode: 'train',
|
mode: 'train',
|
||||||
|
@ -36,7 +38,6 @@ const products = [
|
||||||
short: 'RB/RE',
|
short: 'RB/RE',
|
||||||
default: true
|
default: true
|
||||||
},
|
},
|
||||||
// 16: often appears together with 8 even when there are only S-Bahn trains at the station
|
|
||||||
{
|
{
|
||||||
id: 'suburban',
|
id: 'suburban',
|
||||||
mode: 'train',
|
mode: 'train',
|
||||||
|
@ -53,7 +54,6 @@ const products = [
|
||||||
short: 'Bus',
|
short: 'Bus',
|
||||||
default: true
|
default: true
|
||||||
},
|
},
|
||||||
// 64, 128, 256: could not be confirmed
|
|
||||||
{
|
{
|
||||||
id: 'ferry',
|
id: 'ferry',
|
||||||
mode: 'watercraft',
|
mode: 'watercraft',
|
||||||
|
@ -62,22 +62,7 @@ const products = [
|
||||||
short: 'F',
|
short: 'F',
|
||||||
default: true
|
default: true
|
||||||
},
|
},
|
||||||
{
|
// todo: are `128` & `256` unused?
|
||||||
id: 'subway',
|
|
||||||
mode: 'train',
|
|
||||||
bitmasks: [128],
|
|
||||||
name: 'U-Bahn',
|
|
||||||
short: 'U',
|
|
||||||
default: true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 'tram',
|
|
||||||
mode: 'train',
|
|
||||||
bitmasks: [256],
|
|
||||||
name: 'Tram',
|
|
||||||
short: 'T',
|
|
||||||
default: true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: 'taxi',
|
id: 'taxi',
|
||||||
mode: 'taxi',
|
mode: 'taxi',
|
||||||
|
|
Loading…
Add table
Reference in a new issue