https://github.com/mekramy/ircity
Iran province, county and city data in json format.
https://github.com/mekramy/ircity
data iran-city json mekramy
Last synced: about 1 year ago
JSON representation
Iran province, county and city data in json format.
- Host: GitHub
- URL: https://github.com/mekramy/ircity
- Owner: mekramy
- License: isc
- Created: 2025-01-26T15:56:00.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-26T16:06:46.000Z (over 1 year ago)
- Last Synced: 2025-02-11T17:54:07.645Z (over 1 year ago)
- Topics: data, iran-city, json, mekramy
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IR City Data Repository
This repository contains comprehensive data of Iran's provinces, counties, and cities in JSON format.
## Features
- Detailed information about each province, county, and city in Iran.
- Data is structured in easy-to-use JSON format.
- Regular updates to ensure data accuracy.
## Usage
Clone the repository:
```sh
git clone https://github.com/mekramy/ircity.git
```
## Structure
```ts
interface Province {
id: number;
name: string;
code: number;
}
interface County {
id: number;
name: string;
code: number;
province: number;
}
interface City {
id: number;
name: string;
code: number;
county: number;
province: number;
type: number;
bakhsh: number;
}
```