Logo Lanfrica

open-admin-data/eritrea-administrative-divisions

Domain:

geospatial

Record type:

dataset
Creator:
ope
Host:
Open dataset of Eritrea's administrative divisions — 6 regions, 58 sub-regions with coordinates. CC-BY-4.0 # Eritrea Administrative Divisions / ኤርትራ ## Overview | Item | Details | |------|---------| | Region | 6 | | Sub-region | 58 | | 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 Eritrea National Anthem MP3 | ## Browse by Region | # | Region | Sub-regions | Link | |---|----|----|------| | 1 | Anseba | 11 | Browse | | 2 | Debub | 12 | Browse | | 3 | Debubawi Keih Bahri | 4 | Browse | | 4 | Gash Barka | 14 | Browse | | 5 | Maekel | 7 | Browse | | 6 | Semienawi Keih Bahri | 10 | Browse | ## Data Files | File | Format | Description | |------|--------|-------------| | all-region.json | JSON | All 6 region records | | all-subregion.json | JSON | All 58 sub-region records | | all-flat.json | JSON | Levels 1-1 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", encoding="utf-8") as f: data = json.load(f) for r in data: print(f"{r['name']['local']} ({r['name']['en']}) — {r['children_count']['subregion']} sub-regions") ``` ### JavaScript ```javascript import { readFileSync } from "fs"; const data = JSON.parse(readFileSync("data/all-region.json", "utf-8")); console.log(`Total: ${data.length} regions`); ``` ## Schema | Field | Type | Description | |-------|------|-------------| | `id` | string | Unique identifier | | `level` | integer | 1=region, 2=sub-region | | `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 ances …