This repository contains comprehensive data of Iran's provinces, counties, and cities in JSON format.
- 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.
Clone the repository:
git clone https://github.com/mekramy/ircity.gitinterface 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;
}