Open dataset of Zimbabwe's administrative divisions — 10 provinces, 91 districts, 1961 wards with coordinates. CC-BY-4.0
# Zimbabwe Administrative Divisions / Zimbabwe
## Overview
| Item | Details |
|------|---------|
| Province | 10 |
| District | 91 |
| Ward | 1,961 |
| Coordinates | ✅ Included (all levels) |
| Formats | JSON, NDJSON, CSV |
| License | CC-BY-4.0 |
| Last Updated | 2026-08-20 |
| Website |
openadmindata.org |
| API |
openadmindata.org |
| Flag | PNG · SVG · PDF |
| National Anthem | 🎵 Listen & Download Zimbabwe National Anthem MP3 |
## Browse by Province
| # | Province | Districts | Wards | Link |
|---|----|----|----|------|
| 1 | Bulawayo | 1 | 29 | Browse |
| 2 | Harare | 4 | 78 | Browse |
| 3 | Manicaland | 10 | 260 | Browse |
| 4 | Mashonaland Central | 10 | 232 | Browse |
| 5 | Mashonaland East | 11 | 229 | Browse |
| 6 | Mashonaland West | 13 | 231 | Browse |
| 7 | Masvingo | 9 | 243 | Browse |
| 8 | Matabeleland North | 9 | 193 | Browse |
| 9 | Matabeleland South | 10 | 170 | Browse |
| 10 | Midlands | 14 | 296 | Browse |
## Data Files
| File | Format | Description |
|------|--------|-------------|
| all-province.json | JSON | All 10 province records |
| all-district.json | JSON | All 91 district records |
| all-ward.json | JSON | All 1,961 ward 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
```python
import json
with open("data/all-province.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']['district']} districts")
```
### JavaScript
```javascript
import { readFileSync } from "fs";
const data = JSON.parse(readFileSync("data/all-province.json", "utf-8"));
console.log(`Total: ${data.length} provinces`);
```
## Schema
| Field | Type | Description |
|-------|------|-------------|
| `id` | string | Unique identifier |
| `level` | intege …