We try to maintain a list of all the stations in Belgium using CSV so everyone can help to maintain it on github. Furthermore, we have a PHP composer/packagist library for you to go from station name to ID and vice versa and we convert the CSV file to JSON-LD for maximum semantic interoperability.
This file describes all NMBS/SNCB stations in Belgium. A station can have multiple platforms (stops), which are described in stops.csv
.
URI
: this is the URI where we can find more information (such as the real-time departures) about this station (this already contains the ID of the NMBS/SNCB as well)longitude
: the longitude of the stationlatitude
: the latitude of the stationname
: the most neutral name of the station (e.g., in Wallonia use the French name, for Brussels use both, for Flanders use nl name)alternative-fr
: alt. name in French, if availablealternative-nl
: alt. name in Dutch, if availablealternative-de
: alt. name in German, if availablealternative-en
: alt. name in English, if availabletaf-tap-code
: TSI TAF/TAP number for the station Source: Infrabel Operational point of the railway network .telegraph-code
: abbreviated name for Belgian stations, used by NMBS/SNCB internally. Source: Infrabel Network Statement, attachment D file D06-RIEI-12_N_20230915.pdf.country-code
: the code of the country the station belongs toavg_stop_times
: the average number of vehicles stopping each day in this station (computed field)official_transfer_time
: the time needed for an average person to make a transfer in this station, according to official sources (NMBS/SNCB) (computed field)
This file describes all NMBS/SNCB stops in Belgium. Each platform is a separate stop location. All fields are computed using gtfs_data_extractor.php
.
URI
: this is the URI where we can find more information about this stop/platform (exists out of URI of the parent station + '#' + platform code)parent_stop
: this is the URI of the parent stop defined in stations.csvlongitude
: the longitude of the stoplatitude
: the latitude of the stopname
: stop namealternative-fr
: alt. name in French, if availablealternative-nl
: alt. name in Dutch, if availablealternative-de
: alt. name in German, if availablealternative-en
: alt. name in English, if availableplatform
: the platform code (can also consist of letters, so do not treat this as a number!)
This file describes facilities available in NMBS/SNCB stations. All fields are computed using web_facilities_extractor.php
.
URI
: The URI identifying this station.name
: The name of this station.street
: The street of this station's address.zip
: The postal code of this station's address.city
: The city of this station's address.ticket_vending_machine
: Whether or not ticket vending machines are available. Note: Ticket vending machines might be located inside a building (and can be locked when the station is closed).luggage_lockers
: Whether or not luggage lockers are available.free_parking
: Whether or not free parking spots are available.taxi
: Whether or not parking spots for taxis / waiting taxis are available.bicycle_spots
: Whether or not bicycle parking spots are available.blue-bike
: Whether or not the has blue-bikes (rental bikes).bus
: Whether or not transferring to a bus line is possible in this station.tram
: Whether or not transferring to a tram line is possible in this station.metro
: Whether or not transferring to a metro line is possible in this station.wheelchair_available
: Whether or not the station has wheelchairs available.ramp
: Whether or not the station has a ramp for wheelchair users to board a train.disabled_parking_spots
: The number of reserved parking spots for travellers with a disability.elevated_platform
: Whether or not the station has elevated platforms.escalator_up
: Whether or not the station has an ascending escalator from or to the platform(s).escalator_down
: Whether or not the station has a descending escalator from or to the platform(s).elevator_platform
: Whether or not the station has an elevator to the platform(s).audio_induction_loop
: Whether or not an Audio induction loop (Dutch: Ringleiding) is available.sales_open_monday
-sales_open_sunday
: The time at which ticket boots open on this day of the week.sales_close_monday
-sales_close_sunday
:The time at which ticket boots close on this day of the week.
This file describes how many people embark a train at the given station per day. Statistics from october 2023, source: belgiantrain.be, Cijfers opgestapte reizigers
URI
: The URI identifying this station.name
: The name of this station.nmbs_short_name
: The short name of this station, as used in the original source data. For verification and future update purposes.average_weekday_embarkments
: The average number of travelers embarking on a weekday. Empty when a station does not have traffic on weekdays.average_saturday_embarkments
: The average number of travelers embarking on a saturday. Empty when a station does not have traffic on saturdays.average_sunday_embarkments
: The average number of travelers embarking on a sunday. Empty when a station does not have traffic on sundays.
This repository contains two PHP scripts which can load all data from the NMBS GTFS public data and the NMBS website. These scripts can be used to generate all CSV files from scratch, and to update existing files.
Manual changes and corrections can be made to stations.csv
. It is recommended to use the stations.csv
file in this repository as a starting point instead of using the scripts to generate this file, as the repository versions includes manual fixes to station names and translations.
Any changes made to stops.csv
or facilities.csv
will be overwritten by the scripts. Therefore, any pull requests with the sole purpose of updating/modifying these files won't be accepted
Missing stations and missing fields in stations.csv
are automatically added when the gtfs_data_extractor tool runs.
Corrections to names, translations and locations can be made by adjusting fields in stations.csv
:
- Names or translations will never be overwritten by the scripts.
- Names in
facilities.csv
orstops.csv
are derived from the names in stations.csv, meaning you only need to updatestations.csv
. - The GTFS data extractor script will warn on wrong locations, but won't correct them.
If you want to make a correction to facilities.csv
or stops.csv
, don't fix the files, but fix the scripts instead, and let these scripts run to update the file for you.
JSON-LD is available at https://irail.be/stations/NMBS if you add the right accept header. For example, using curl on the command line, you would do this:
curl -H "accept: application/json" https://irail.be/stations/NMBS
If you want to change this output, please change the CSV files over here first (we love pull requests)
Using composer (mind that we also require nodejs to be installed on your system in order to use the linked-data interface):
composer require irail/stations
Then you can use the stations in your code as follows:
use irail\stations\Stations;
use irail\stations\StationsLd;
// Using the strongly typed CSV parser:
// getStations() returns a irail\stations\Station array
$brusselsnorth = Stations::getStations("Brussels North")[0];
// getStationByID($id) returns a irail\stations\Station object with the station or null
$ghentstpieters = Stations::getStationByID("http://irail.be/stations/NMBS/008892007");
// Using the linked-data interface
// getStations() returns a json-ld document
$brusselsnorth = StationsLd::getStations("Brussels North")->{"@graph"}[0];
// getStationByID($id) returns a simple object with the station or null
$ghentstpieters = StationsLd::getStationByID("http://irail.be/stations/NMBS/008892007");
Don't forget to do a composer update
from time to time to update the data
Using scripts, this data can be converted to JSON-LD. In order to run the script, run this command:
First time run this in your terminal (nodejs needs to be installed on your system):
npm install
Or install it globally using the npm package (you will need to run this again when there's an update to the stations file):
npm install -g irail-stations
From then on, you can always run:
# using this repo
./bin/build.js
# or with the global package:
irail-stations
For extra commands, check:
./bin/build.js --help
# or
irail-stations --help
We currently support the output formats TRiG, N-Quads and JSON-LD (default)
CC0: This dataset belongs to the public domain. You're free to reuse it without any restrictions whatsoever.
If you contribute to this repository, you agree that your contributions will be licensed under the CC0 open data license.
We do appreciate a link back to this repository, or a mention of the iRail project.