Skip to content

Latest commit

 

History

History
178 lines (159 loc) · 3.1 KB

README.md

File metadata and controls

178 lines (159 loc) · 3.1 KB

Iran country list of provinces, cities , ... , Tehran Neighbourhood

Iran Statistic Official WebSite (Markaz Amare Iran)

the key feature which is just exists in this repository is Finglish names.

you can get cities.sql file and import it in your mysql database.

List of Iran provinces (استان) in json format

{
  "RECORDS":[
    {
      "id":1,
      "title":"مرکزی",
      "slug":"Markazi",
      "latitude":34.6123,
      "longitude":49.8547
    },
    {
      "id":2,
      "title":"گيلان",
      "slug":"Gilan",
      "latitude":37.2809,
      "longitude":49.5924
    },
    {
      "id":3,
      "title":"مازندران",
      "slug":"Mazandaran",
      "latitude":36.2262393,
      "longitude":52.5318604
    },
    ...
    
    ]
  }

List of Iran cities(شهرستان) in json format

{
  "RECORDS":[
    {
      "id":1,
      "title":"اراک",
      "slug":"Arak",
      "province_id":1,
      "latitude":34.091667,
      "longitude":49.689167
    },
    {
      "id":2,
      "title":"آشتيان",
      "slug":"Ashtian",
      "province_id":1,
      "latitude":34.521944,
      "longitude":50.006111
    },
    {
      "id":3,
      "title":"تفرش",
      "slug":"Tafresh",
      "province_id":1,
      "latitude":34.691944,
      "longitude":50.013056
    },
    ...
    ]
  }
  

List of Iran sections (بخش) in json format

{
  "RECORDS":
  [
    {
      "id":"2",
      "title":"مرکزي",
      "slug":"Markazi",
      "city_id":"2"
    },
    {
      "id":"3",
      "title":"ساروق",
      "slug":"Sarough",
      "city_id":"2"
    },
    {
      "id":"4",
      "title":"معصوميه",
      "slug":"Immaculate",
      "city_id":"2"
    },
    {
      "id":"5",
      "title":"کمره",
      "slug":"Camera",
      "city_id":"5"
    },
    ...
    ]
  }
  

List of Iran towns (دهستان) in json format

{
  "RECORDS":[
    {
      "id":"2",
      "title":"امان آباد",
      "slug":"Amanabad",
      "section_id":"2"
    },
    {
      "id":"3",
      "title":"اميريه",
      "slug":"Amiriyeh",
      "section_id":"2"
    },
    {
      "id":"4",
      "title":"داودآباد",
      "slug":"Davoudabadi",
      "section_id":"2"
    },
    {
      "id":"5",
      "title":"سده",
      "slug":"Century",
      "section_id":"2"
    },
    ...
    ]
  }
  

List of Tehran neighbourhood (محلات) in json format

{
  "RECORDS" :
  [
       {
          "name":"آرارات, آفتاب",
          "slug":"Ararat, Sunshine",
          "id":1
       },
       {
          "name":"آفریقا, آرامش",
          "slug":"Africa, Aramesh",
          "id":2
       },
       {
          "name":"آرارات, آرارات",
          "slug":"Ararat, Ararat",
          "id":3
       },
       {
          "name":"آفریقا, امین کاج آبادی",
          "slug":"Africa, Amin Kaaj Abadi",
          "id":4
       },
       ...
  ]
}