Skip to content

TransDeveloper/Istanbul-Bus-Numbers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Metro Lines Dataset

This repository contains parsed and cleaned data of Istanbul bus line information extracted from the official HTML source. It is exported in multiple formats for convenience and compatibility.


Files

1. Array.json

  • Format: JSON
  • Contents: Simple array of line codes
    Example:
    ["10A", "10B", "11Ü"]
  • Use Case: Lightweight use when only line IDs are needed.

2. Array.xml

  • Format: XML
  • Contents: XML version of the array above.
    Example:
    <lines>
      <line>10A</line>
      <line>10B</line>
      <line>11Ü</line>
    </lines>
  • Use Case: Interoperability with XML-based tools.

3. Data.csv

  • Format: CSV
  • Contents: Line codes and human-readable names.
    Example:
    code,name
    "10A","ESATPAŞA - YEDİTEPE ÜNİVERSİTESİ / FERHATPAŞA"
    "10B","BOSTANCI - KADIKÖY"
    
  • Use Case: Easy import into Excel, spreadsheets, or data analysis tools.

4. Less Details.json

  • Format: JSON
  • Contents: Array of objects with code and name keys.
    Example:
    [
      { "code": "10A", "name": "ESATPAŞA - YEDİTEPE ÜNİVERSİTESİ / FERHATPAŞA" },
      { "code": "10B", "name": "BOSTANCI - KADIKÖY" }
    ]
  • Use Case: When both ID and name are needed in a structured format.

5. Less Details.xml

  • Format: XML
  • Contents: XML with code and name fields.
    Example:
    <lines>
      <line>
        <code>10A</code>
        <name>ESATPAŞA - YEDİTEPE ÜNİVERSİTESİ / FERHATPAŞA</name>
      </line>
      <line>
        <code>10B</code>
        <name>BOSTANCI - KADIKÖY</name>
      </line>
    </lines>
  • Use Case: XML-based systems needing both the code and description.

Notes

  • All files are UTF-8 encoded.
  • Turkish special characters are preserved using proper decoding.

About

With multiple formats too!!

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published