Israeli Bus & Train Stops
All 30,000+ public-transport stops in Israel with precise location and route info.
About this dataset
Complete Israeli public-transport data (GTFS) — every bus/train stop, every route, every schedule. This is the global standard (GTFS = General Transit Feed Specification) used by Google Maps, Moovit and Waze.
Who it's for
How to use it
- 1Download the GTFS feed from the Ministry of Transport.
- 2Parse with gtfs-kit (Python) or gtfs-realtime-bindings.
- 3GTFS-realtime provides live bus updates.
Installation & setup
`pip install gtfs-kit` in Python. The GTFS file is a ZIP of CSVs — stops.txt, routes.txt, trips.txt etc.
Code examples
import gtfs_kit as gk
feed = gk.read_feed("israel-public-transportation.zip", dist_units="km")
print(f"סה\"כ תחנות: {len(feed.stops)}")
print(f"סה\"כ קווים: {len(feed.routes)}")Sample response
{
"stop_id": "38000",
"stop_name": "שאול המלך/רמב\"ם",
"stop_lat": 32.076,
"stop_lon": 34.792,
"routes": [
5,
7,
129
]
}FAQ
Tips & pitfalls
More datasets in this category
Israeli Gas Stations
All 1,100+ gas stations in Israel with location, company and services.
Israeli Educational Institutions
All 5,400+ schools and kindergartens in Israel with institution code, address, student count.
Israel Cadastre (Gush/Helka)
Every parcel of land in Israel — block, parcel, geographic location and boundaries.
Israeli Tourist Sites
2,000+ official Israeli tourist sites — historical sites, beaches, nature reserves and more.
Road Accidents in Israel
All recorded Israeli road accidents — location, cause, severity, vehicles involved.
Israeli Election Results
All Israeli election results at ballot-box level, since 1996.