An open API service indexing awesome lists of open source software.

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.

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;
}
```