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.
- Format: JSON
- Contents: Simple array of line codes
Example:["10A", "10B", "11Ü"]
- Use Case: Lightweight use when only line IDs are needed.
- 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.
- 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.
- Format: JSON
- Contents: Array of objects with
code
andname
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.
- Format: XML
- Contents: XML with
code
andname
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.
- All files are UTF-8 encoded.
- Turkish special characters are preserved using proper decoding.