Open dataset of Cameroon's administrative hierarchy: 10 regions, 58 divisions, 360 subdivisions. Bilingual (French + English) with coordinates.
# Cameroon Administrative Divisions / Cameroun
Open dataset of Cameroon's administrative hierarchy — 10 regions, 58 divisions, and 360 subdivisions. This repository provides structured, bilingual (French + English) reference data with geographic coordinates at every level. Designed for developers, researchers, government agencies, and AI agents.
Licensed under CC-BY-4.0. Browse the hierarchy through GitHub's folder navigation, download aggregate files in JSON/CSV/NDJSON, or integrate directly via raw URLs.
## Overview
| Item | Details |
|------|---------|
| Region | 10 |
| Division | 58 |
| Subdivision | 360 |
| 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 Cameroon National Anthem MP3 |
## Browse by Region
| # | Region | Divisions | Subdivisions | Link |
|---|----|----|----|------|
| 1 | Adamaoua (Adamawa) | 5 | 21 | Browse |
| 2 | Centre | 10 | 70 | Browse |
| 3 | Est (East) | 4 | 33 | Browse |
| 4 | Extrême-Nord (Far-North) | 6 | 47 | Browse |
| 5 | Littoral | 4 | 34 | Browse |
| 6 | Nord (North) | 4 | 21 | Browse |
| 7 | Nord-Ouest (North-West) | 7 | 34 | Browse |
| 8 | Sud (South) | 4 | 29 | Browse |
| 9 | Sud-Ouest (South-West) | 6 | 31 | Browse |
| 10 | Ouest (West) | 8 | 40 | Browse |
## Data Files
| File | Format | Description |
|------|--------|-------------|
| all-region.json | JSON | All 10 region records |
| all-division.json | JSON | All 58 division records |
| all-subdivision.json | JSON | All 360 subdivision 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-region.json", "r", e …