Skip to content

open-admin-data/south-sudan-administrative-divisions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

South Sudan Administrative Divisions / South Sudan

Overview

Item Details
State 10
County 79
Payam 512
Coordinates ✅ Included (all levels)
Formats JSON, NDJSON, CSV
License CC-BY-4.0
Last Updated 2026-06-01
Website openadmindata.org/ss
API openadmindata.org/api/ss

Browse by State

# State Countys Payams Link
1 Central Equatoria 6 46 Browse
2 Eastern Equatoria 8 53 Browse
3 Jonglei 11 72 Browse
4 Lakes 8 50 Browse
5 Northern Bahr el Ghazal 5 39 Browse
6 Unity 9 73 Browse
7 Upper Nile 12 69 Browse
8 Warrap 6 47 Browse
9 Western Bahr el Ghazal 3 15 Browse
10 Western Equatoria 10 47 Browse

Data Files

File Format Description
all-state.json JSON All 10 state records
all-county.json JSON All 79 county records
all-payam.json JSON All 512 payam 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-state.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']['county']} countys")

JavaScript

import { readFileSync } from "fs";

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

Schema

Field Type Description
id string Unique identifier
level integer 1=state, 2=county, 3=payam
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/{state-slug}/
divisions/{state-slug}/{county-slug}/

Payams are listed inline in each county's README.

AI Integration

Citation

South Sudan Administrative Divisions Dataset (CC-BY-4.0)
URL: https://github.com/open-admin-data/south-sudan-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 South Sudan's administrative divisions — 10 states, 79 counties, 512 payams with coordinates. CC-BY-4.0

Topics

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors