db-vendo-client/p
2021-05-01 10:58:45 +02:00
..
avv pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
bart pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
bvg pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
cfl pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
cmta pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
db pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
db-busradar-nrw pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
hvv pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
insa pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
invg pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
irish-rail pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
mobil-nrw pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
mobiliteit-lu pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
nahsh pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
nvv pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
oebb pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
pkp pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
rejseplanen pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
rmv pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
rsag pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
saarfahrplan pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
sbahn-muenchen pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
sbb pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
sncb pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
svv pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
vbb pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
vbn pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
vkg pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
vmt pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
vos pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
vrn pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
vsn pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
vvt pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
zvv pull more profile base data from transport-apis 2021-05-01 10:58:45 +02:00
readme.md Add Rejseplanen to list 2021-03-29 02:52:19 +02:00

hafas-client profiles

This directory contains specific customisations for each endpoint, called profiles. They parse data from the API differently, add additional information, or add special methods specific to the endpoint (such as journeysFromTrip).

built-in profiles

There are built-in profiles for these public transportation networks:

HAFAS endpoint wrapper library docs example code profile name
Deutsche Bahn (DB) db-hafas docs example db
Swiss Railways (SBB) - docs example sbb
Polskie Koleje Państwowe (PKP) pkp-hafas docs example pkp
Belgian National Railways (SNCB/NMBS) - docs example sncb
Iarnród Éireann (Irish Rail) - docs example irish-rail
Berlin & Brandenburg public transport (VBB) vbb-hafas docs example vbb
Berlin public transport (BVG) bvg-hafas docs example bvg
Österreichische Bundesbahnen (ÖBB) oebb-hafas docs example oebb
Mobilitéitszentral (Luxembourg) - docs example mobiliteit-lu
Bay Area Rapid Transit (BART) - docs example bart
Nahverkehr Sachsen-Anhalt (NASA)/INSA insa-hafas docs example insa
Nahverkehrsverbund Schleswig-Holstein (NAH.SH) nahsh-hafas docs example nahsh
Rhein-Main-Verkehrsverbund (RMV) - docs example rmv
Austin, Texas (CMTA/CapMetro) - docs example cmta
S-Bahn München - docs example sbahn-muenchen
Saarfahrplan/VGS (Saarland) - docs example saarfahrplan
Société Nationale des Chemins de Fer Luxembourgeois (CFL) - docs example cfl
Hamburg public transport (HVV) - docs example hvv
Nordhessischer Verkehrsverbund (NVV) (Hesse) - docs example nvv
mobil.nrw - docs example mobil-nrw
DB Busradar NRW (DB Regio Bus) - docs example db-busradar-nrw
Verkehrsverbund Süd-Niedersachsen (VSN) - docs example vsn
Ingolstädter Verkehrsgesellschaft (INVG) - docs example invg
Verkehrsverbund Bremen/Niedersachsen (VBN) - docs example vbn
Verkehrsverbund Rhein-Neckar (VRN) - docs example vrn
Rostocker Straßenbahn AG (RSAG) - docs example rsag
Verkehrsverbund Mittelthüringen (VMT) - docs example vmt
Verkehrsgemeinschaft Osnabrück (VOS) - docs example vos
Aachener Verkehrsverbund (AVV) - docs example avv
Rejseplanen in Denmark - docs example rejseplanen
Salzburg public transport (SVV) - docs example svv
Verkehrsverbund Tirol (VVT) - docs example vvt
Kärntner Linien/Verkehrsverbund Kärnten (VKG/VVK) - docs example vkg
Zürich public transport (ZVV) - docs example zvv

writing your own

If you want to write a profile for an endpoint, check out the writing a profile guide.

Your profile must be passed into createClient and is expected to be in a certain structure:

const createClient = require('hafas-client')

const myCustomProfile = {
	// …
}

// create a client with the profile
const client = createClient(myCustomProfile)

// use it to query data
await client.journeys('1234', '2345')