Skip to content

Comprehensive dataset of trains, coaches, classes and railway stations in Bangladesh, provided in both English and Bengali JSON formats for easy integration into applications and projects.

License

Notifications You must be signed in to change notification settings

nishatrhythm/Bangladesh-Railway-Trains-Stations-Coaches-Classes-Info

Repository files navigation

Bangladesh Railway Information Dataset

Overview

This repository contains data related to trains, coaches, classes and railway stations in Bangladesh. The information is provided in both English and Bengali, formatted as JSON files.

Files

  • trains_en.json: Train names and numbers in English.
  • trains_bn.json: Train names and numbers in Bengali.
  • coaches_en.json: Coach names in English.
  • coaches_bn.json: Coach names in Bengali.
  • classes_en.json: Class names in English.
  • classes_bn.json: Class names in Bengali.
  • stations_en.json: Station names in English.
  • stations_bn.json: Station names in Bengali.

Example Data

Train Data

  • English: "SONAR BANGLA EXPRESS (787)"
  • Bengali: "সোনার বাংলা এক্সপ্রেস (৭৮৭)"

Coach Names

  • English: "KA", "SCHA"
  • Bengali: "ক", "ছ"

Class Names

  • English: "SHOVAN", "SNIGDHA"
  • Bengali: "শোভন", "স্নিগ্ধা"

Station Names

  • English: "Dhaka", "Chattogram"
  • Bengali: "ঢাকা", "চট্টগ্রাম"

How to Use

  1. Load the data in your project using JSON libraries in any programming language.
  2. Utilize the data for applications like train schedules, ticket booking systems, or railway analysis.

Python Example

import json

# Load train data in English
with open('trains_en.json') as file:
    trains = json.load(file)
    print(trains["trains"])

# Load station data in Bengali
with open('stations_bn.json') as file:
    stations = json.load(file)
    print(stations["stations"])

Contribution

Contributions are welcome! Fork the repo, make your changes, and create a pull request.

About

Comprehensive dataset of trains, coaches, classes and railway stations in Bangladesh, provided in both English and Bengali JSON formats for easy integration into applications and projects.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages