Skip to content

open-admin-data/oman-administrative-divisions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Oman Administrative Divisions / عُمان

Overview

Item Details
Governorate 11
Wilayat 49
Village 361
Coordinates ✅ Included (all levels)
Formats JSON, NDJSON, CSV
License CC-BY-4.0
Last Updated 2026-06-02
Website openadmindata.org/om
API openadmindata.org/api/om

Browse by Governorate

# Governorate Wilayats Villages Link
1 الداخلية (Ad Dakhliyah) 8 87 Browse
2 شمال الباطنة (Al Batinah North) 6 104 Browse
3 جنوب الباطنة (Al Batinah South) 5 30 Browse
4 البريمي (Al Buraymi) 2 0 Browse
5 الظاهرة (Al Dhahira) 3 26 Browse
6 الوسطى (Al Wusta) 1 0 Browse
7 شمال الشرقية (Ash Sharqiyah North) 5 46 Browse
8 جنوب الشرقية (Ash Sharqiyah South) 3 51 Browse
9 ظفار (Dhofar) 7 0 Browse
10 مسندم (Musandam) 4 0 Browse
11 مسقط (Muscat) 5 17 Browse

Data Files

File Format Description
all-governorate.json JSON All 11 governorate records
all-wilayat.json JSON All 49 wilayat records
all-village.json JSON All 361 village records
all-flat.json JSON Levels 1-2 flat array
all-flat.ndjson NDJSON Streaming format
all-flat.csv CSV Spreadsheet format
hierarchy.json JSON Nested tree
schema.json JSON Schema Data schema

Quick Start

Python

import json

with open("data/all-governorate.json", "r", encoding="utf-8") as f:
    data = json.load(f)

for r in data:
    print(f"{r['name']['local']} ({r['name']['en']}) — {r['children_count']['wilayat']} wilayats")

JavaScript

import { readFileSync } from "fs";

const data = JSON.parse(readFileSync("data/all-governorate.json", "utf-8"));
console.log(`Total: ${data.length} governorates`);

Schema

Field Type Description
id string Unique identifier
level integer 1=governorate, 2=wilayat, 3=village
level_name object Level label (local + English)
name.local string Name in local script
name.en string English name
name.slug string URL-safe slug
parent object/null Parent division reference
ancestors array Full ancestor chain
children_count object Count of children per level
zip_codes array Postal codes (where available)
geo.lat string Latitude (WGS84)
geo.lon string Longitude (WGS84)

Full schema: data/schema.json

Hierarchy Browse

divisions/{governorate-slug}/
divisions/{governorate-slug}/{wilayat-slug}/

Villages are listed inline in each wilayat's README.

AI Integration

Citation

Oman Administrative Divisions Dataset (CC-BY-4.0)
URL: https://github.com/open-admin-data/oman-administrative-divisions

See CITATION.cff for machine-readable citation.

License

Related

  • Open Admin Data — Browse, search and explore administrative divisions for every country
  • open-admin-data — GitHub organization with all country repos
  • ListBase — Structured reference data for every country

About

Open dataset of Oman's administrative divisions — 11 governorates, 49 wilayats, 361 villages. Bilingual Arabic + English. CC-BY-4.0

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors